aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/grep.el
diff options
context:
space:
mode:
authorChong Yidong <[email protected]>2007-04-07 16:55:36 +0000
committerChong Yidong <[email protected]>2007-04-07 16:55:36 +0000
commit7f3afa3d83626a1f1f438207a823638c800f7bf4 (patch)
tree3f941bbf7e8c373504d61c813f0b5d74bf6795f0 /lisp/progmodes/grep.el
parent0b3864db32ba08d9684303b96cad293377e5e96e (diff)
(grep-find-use-xargs): Rewrite docstring.
Diffstat (limited to 'lisp/progmodes/grep.el')
-rw-r--r--lisp/progmodes/grep.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/progmodes/grep.el b/lisp/progmodes/grep.el
index ac12efe8cd..2c43abfd50 100644
--- a/lisp/progmodes/grep.el
+++ b/lisp/progmodes/grep.el
@@ -326,10 +326,10 @@ This variable's value takes effect when `grep-compute-defaults' is called.")
;;;###autoload
(defvar grep-find-use-xargs nil
- "Whether \\[grep-find] uses the `xargs' utility by default.
-
-If `exec', it uses `find -exec'; if `gnu', it uses `find -print0' and `xargs -0';
-if not nil and not `gnu', it uses `find -print' and `xargs'.
+ "Non-nil means that `grep-find' uses the `xargs' utility by default.
+If `exec', use `find -exec'.
+If `gnu', use `find -print0' and `xargs -0'.
+Any other non-nil value means to use `find -print' and `xargs'.
This variable's value takes effect when `grep-compute-defaults' is called.")