diff options
| author | Chong Yidong | 2007-04-07 16:55:36 +0000 |
|---|---|---|
| committer | Chong Yidong | 2007-04-07 16:55:36 +0000 |
| commit | 7f3afa3d83626a1f1f438207a823638c800f7bf4 (patch) | |
| tree | 3f941bbf7e8c373504d61c813f0b5d74bf6795f0 | |
| parent | 0b3864db32ba08d9684303b96cad293377e5e96e (diff) | |
| download | emacs-7f3afa3d83626a1f1f438207a823638c800f7bf4.tar.gz emacs-7f3afa3d83626a1f1f438207a823638c800f7bf4.zip | |
(grep-find-use-xargs): Rewrite docstring.
| -rw-r--r-- | lisp/progmodes/grep.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/progmodes/grep.el b/lisp/progmodes/grep.el index ac12efe8cdd..2c43abfd50c 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.") | |||
| 326 | 326 | ||
| 327 | ;;;###autoload | 327 | ;;;###autoload |
| 328 | (defvar grep-find-use-xargs nil | 328 | (defvar grep-find-use-xargs nil |
| 329 | "Whether \\[grep-find] uses the `xargs' utility by default. | 329 | "Non-nil means that `grep-find' uses the `xargs' utility by default. |
| 330 | 330 | If `exec', use `find -exec'. | |
| 331 | If `exec', it uses `find -exec'; if `gnu', it uses `find -print0' and `xargs -0'; | 331 | If `gnu', use `find -print0' and `xargs -0'. |
| 332 | if not nil and not `gnu', it uses `find -print' and `xargs'. | 332 | Any other non-nil value means to use `find -print' and `xargs'. |
| 333 | 333 | ||
| 334 | This variable's value takes effect when `grep-compute-defaults' is called.") | 334 | This variable's value takes effect when `grep-compute-defaults' is called.") |
| 335 | 335 | ||