aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2007-04-06 16:23:26 +0000
committerKim F. Storm2007-04-06 16:23:26 +0000
commit1ae5b5edf7496d2f710bbaf2ef3449b3275d4320 (patch)
treea867cabe46d155b7b23bfdfb93af95c4ef492680
parent384bf310de8dea8a80d5dfc04fc4f1dbc9ed3f30 (diff)
downloademacs-1ae5b5edf7496d2f710bbaf2ef3449b3275d4320.tar.gz
emacs-1ae5b5edf7496d2f710bbaf2ef3449b3275d4320.zip
(grep-program): Remove commentary about zgrep.
Due to lack of papers from Kevin Rodgers.
-rw-r--r--lisp/progmodes/grep.el12
1 files changed, 1 insertions, 11 deletions
diff --git a/lisp/progmodes/grep.el b/lisp/progmodes/grep.el
index fe2bbdec14e..ac12efe8cdd 100644
--- a/lisp/progmodes/grep.el
+++ b/lisp/progmodes/grep.el
@@ -315,17 +315,7 @@ Notice that using \\[next-error] or \\[compile-goto-error] modifies
315This gets tacked on the end of the generated expressions.") 315This gets tacked on the end of the generated expressions.")
316 316
317;;;###autoload 317;;;###autoload
318(defvar grep-program 318(defvar grep-program "grep"
319 ;; Currently zgrep has trouble. It runs egrep instead of grep,
320 ;; and it doesn't pass along long options right.
321 "grep"
322 ;; (if (equal (condition-case nil ; in case "zgrep" isn't in exec-path
323 ;; (call-process "zgrep" nil nil nil
324 ;; "foo" null-device)
325 ;; (error nil))
326 ;; 1)
327 ;; "zgrep"
328 ;; "grep")
329 "The default grep program for `grep-command' and `grep-find-command'. 319 "The default grep program for `grep-command' and `grep-find-command'.
330This variable's value takes effect when `grep-compute-defaults' is called.") 320This variable's value takes effect when `grep-compute-defaults' is called.")
331 321