aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/grep.el
diff options
context:
space:
mode:
authorKim F. Storm <[email protected]>2007-04-06 16:23:26 +0000
committerKim F. Storm <[email protected]>2007-04-06 16:23:26 +0000
commit1ae5b5edf7496d2f710bbaf2ef3449b3275d4320 (patch)
treea867cabe46d155b7b23bfdfb93af95c4ef492680 /lisp/progmodes/grep.el
parent384bf310de8dea8a80d5dfc04fc4f1dbc9ed3f30 (diff)
(grep-program): Remove commentary about zgrep.
Due to lack of papers from Kevin Rodgers.
Diffstat (limited to 'lisp/progmodes/grep.el')
-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 fe2bbdec14..ac12efe8cd 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
This gets tacked on the end of the generated expressions.")
;;;###autoload
-(defvar grep-program
- ;; Currently zgrep has trouble. It runs egrep instead of grep,
- ;; and it doesn't pass along long options right.
- "grep"
- ;; (if (equal (condition-case nil ; in case "zgrep" isn't in exec-path
- ;; (call-process "zgrep" nil nil nil
- ;; "foo" null-device)
- ;; (error nil))
- ;; 1)
- ;; "zgrep"
- ;; "grep")
+(defvar grep-program "grep"
"The default grep program for `grep-command' and `grep-find-command'.
This variable's value takes effect when `grep-compute-defaults' is called.")