emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs etc/NEWS lisp/ChangeLog lisp/progmodes/gr...


From: Juri Linkov
Subject: [Emacs-diffs] emacs etc/NEWS lisp/ChangeLog lisp/progmodes/gr...
Date: Wed, 25 Nov 2009 17:23:50 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Juri Linkov <jurta>     09/11/25 17:23:49

Modified files:
        etc            : NEWS 
        lisp           : ChangeLog 
        lisp/progmodes : grep.el 

Log message:
        Search recursively in gzipped files.  (Bug#4982)
        
        (grep-highlight-matches): Add new options
        `always' and `auto'.  Doc fix.
        (grep-process-setup): Check `grep-highlight-matches' for
        `auto-detect' to determine the need to compute grep defaults.
        Move Windows/DOS specific --colors settings handling
        to `grep-compute-defaults'.  Check `grep-highlight-matches'
        to get the value of "--color=".
        (grep-compute-defaults): Compute `grep-highlight-matches' when it
        has the value `auto-detect'.  Move Windows/DOS specific settings
        from `grep-process-setup'.
        (zrgrep): New command with alias `rzgrep'.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/etc/NEWS?cvsroot=emacs&r1=1.2125&r2=1.2126
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.16735&r2=1.16736
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/progmodes/grep.el?cvsroot=emacs&r1=1.111&r2=1.112

Patches:
Index: etc/NEWS
===================================================================
RCS file: /sources/emacs/emacs/etc/NEWS,v
retrieving revision 1.2125
retrieving revision 1.2126
diff -u -b -r1.2125 -r1.2126
--- etc/NEWS    25 Nov 2009 17:15:19 -0000      1.2125
+++ etc/NEWS    25 Nov 2009 17:23:45 -0000      1.2126
@@ -208,6 +208,10 @@
 
 ** FIXME gdb-mi
 
+** Grep
+
+A new command `zrgrep' searches recursively in gzipped files.
+
 ** Info
 
 *** The new command `Info-virtual-index' bound to "I" displays a menu of

Index: lisp/ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.16735
retrieving revision 1.16736
diff -u -b -r1.16735 -r1.16736
--- lisp/ChangeLog      25 Nov 2009 17:21:12 -0000      1.16735
+++ lisp/ChangeLog      25 Nov 2009 17:23:46 -0000      1.16736
@@ -1,5 +1,21 @@
 2009-11-25  Juri Linkov  <address@hidden>
 
+       Search recursively in gzipped files.  (Bug#4982)
+
+       * progmodes/grep.el (grep-highlight-matches): Add new options
+       `always' and `auto'.  Doc fix.
+       (grep-process-setup): Check `grep-highlight-matches' for
+       `auto-detect' to determine the need to compute grep defaults.
+       Move Windows/DOS specific --colors settings handling
+       to `grep-compute-defaults'.  Check `grep-highlight-matches'
+       to get the value of "--color=".
+       (grep-compute-defaults): Compute `grep-highlight-matches' when it
+       has the value `auto-detect'.  Move Windows/DOS specific settings
+       from `grep-process-setup'.
+       (zrgrep): New command with alias `rzgrep'.
+
+2009-11-25  Juri Linkov  <address@hidden>
+
        * doc-view.el (doc-view-mode): Set buffer-local `view-read-only'
        to nil instead of switching off view-mode.  (Bug#4896)
 

Index: lisp/progmodes/grep.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/progmodes/grep.el,v
retrieving revision 1.111
retrieving revision 1.112
diff -u -b -r1.111 -r1.112
--- lisp/progmodes/grep.el      19 Nov 2009 17:37:25 -0000      1.111
+++ lisp/progmodes/grep.el      25 Nov 2009 17:23:49 -0000      1.112
@@ -69,22 +69,34 @@
   :group 'grep)
 
 (defcustom grep-highlight-matches 'auto-detect
-  "If t, use special markers to highlight grep matches.
+  "Use special markers to highlight grep matches.
 
 Some grep programs are able to surround matches with special
 markers in grep output.  Such markers can be used to highlight
 matches in grep mode.
 
-This option sets the environment variable GREP_COLOR to specify
+This option sets the environment variable GREP_COLORS to specify
 markers for highlighting and GREP_OPTIONS to add the --color
 option in front of any explicit grep options before starting
 the grep.
 
+When this option is `auto', grep uses `--color=auto' to highlight
+matches only when it outputs to a terminal (when `grep' is the last
+command in the pipe), thus avoiding the use of any potentially-harmful
+escape sequences when standard output goes to a file or pipe.
+
+To make grep highlight matches even into a pipe, you need the option
+`always' that forces grep to use `--color=always' to unconditionally
+output escape sequences.
+
 In interactive usage, the actual value of this variable is set up
-by `grep-compute-defaults'; to change the default value, use
-Customize or call the function `grep-apply-setting'."
+by `grep-compute-defaults' when the default value is `auto-detect'.
+To change the default value, use Customize or call the function
+`grep-apply-setting'."
   :type '(choice (const :tag "Do not highlight matches with grep markers" nil)
                 (const :tag "Highlight matches with grep markers" t)
+                (const :tag "Use --color=always" always)
+                (const :tag "Use --color=auto" auto)
                 (other :tag "Not Set" auto-detect))
   :set 'grep-apply-setting
   :version "22.1"
@@ -442,19 +454,16 @@
 (defun grep-process-setup ()
   "Setup compilation variables and buffer for `grep'.
 Set up `compilation-exit-message-function' and run `grep-setup-hook'."
-  (unless (or (not grep-highlight-matches) (eq grep-highlight-matches t))
+  (when (eq grep-highlight-matches 'auto-detect)
     (grep-compute-defaults))
-  (when (eq grep-highlight-matches t)
+  (unless (or (eq grep-highlight-matches 'auto-detect)
+             (null grep-highlight-matches))
     ;; `setenv' modifies `process-environment' let-bound in `compilation-start'
     ;; Any TERM except "dumb" allows GNU grep to use `--color=auto'
     (setenv "TERM" "emacs-grep")
-    ;; `--color=auto' emits escape sequences on a tty rather than on a pipe,
-    ;; thus allowing to use multiple grep filters on the command line
-    ;; and to output escape sequences only on the final grep output
     (setenv "GREP_OPTIONS"
            (concat (getenv "GREP_OPTIONS")
-                   ;; Windows and DOS pipes fail `isatty' detection in Grep.
-                   " --color=" (if (memq system-type '(windows-nt ms-dos))
+                   " --color=" (if (eq grep-highlight-matches 'always)
                                    "always" "auto")))
     ;; GREP_COLOR is used in GNU grep 2.5.1, but deprecated in later versions
     (setenv "GREP_COLOR" "01;31")
@@ -579,14 +588,16 @@
                        (t
                         (format "%s . <X> -type f <F> -print | %s %s"
                                 find-program xargs-program gcmd))))))))
-    (unless (or (not grep-highlight-matches) (eq grep-highlight-matches t))
+    (when (eq grep-highlight-matches 'auto-detect)
       (setq grep-highlight-matches
            (with-temp-buffer
              (and (grep-probe grep-program '(nil t nil "--help"))
                   (progn
                     (goto-char (point-min))
                     (search-forward "--color" nil t))
-                  t))))
+                  ;; Windows and DOS pipes fail `isatty' detection in Grep.
+                  (if (memq system-type '(windows-nt ms-dos))
+                      'always 'auto)))))
 
     ;; Save defaults for this host.
     (setq grep-host-defaults-alist
@@ -978,6 +989,42 @@
          (if (eq next-error-last-buffer (current-buffer))
              (setq default-directory dir)))))))
 
+;;;###autoload
+(defun zrgrep (regexp &optional files dir confirm grep-find-template)
+  "Recursively grep for REGEXP in gzipped FILES in tree rooted at DIR.
+Like `rgrep' but uses `zgrep' for `grep-program', sets the default
+file name to `*.gz', and sets `grep-highlight-matches' to `always'."
+  (interactive
+   (let ((grep-program "zgrep")
+        (grep-find-template nil)  ; output of `grep-compute-defaults'
+        (grep-find-command nil)
+        (grep-host-defaults-alist nil)
+        (grep-files-aliases '(("*.gz" . "*.gz") ; for `grep-read-files'
+                              ("all" . "* .*"))))
+     ;; Recompute defaults using let-bound values above.
+     (grep-compute-defaults)
+     (cond
+      ((and grep-find-command (equal current-prefix-arg '(16)))
+       (list (read-from-minibuffer "Run: " grep-find-command
+                                  nil nil 'grep-find-history)))
+      ((not grep-find-template)
+       (error "grep.el: No `grep-find-template' available"))
+      (t (let* ((regexp (grep-read-regexp))
+               (files (grep-read-files regexp))
+               (dir (read-directory-name "Base directory: "
+                                         nil default-directory t))
+               (confirm (equal current-prefix-arg '(4))))
+          (list regexp files dir confirm grep-find-template))))))
+  ;; Set `grep-highlight-matches' to `always'
+  ;; since `zgrep' puts filters in the grep output.
+  (let ((grep-highlight-matches 'always))
+    ;; `rgrep' uses the dynamically bound value `grep-find-template'
+    ;; from the argument `grep-find-template' whose value is computed
+    ;; in the `interactive' spec.
+    (rgrep regexp files dir confirm)))
+
+;;;###autoload
+(defalias 'rzgrep 'zrgrep)
 
 (provide 'grep)
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]