comparison lisp/progmodes/grep.el @ 77033:25b4502cd0b4

(grep-find-use-xargs): Rewrite docstring.
author Chong Yidong <cyd@stupidchicken.com>
date Sat, 07 Apr 2007 16:55:36 +0000
parents e1190fd4a1f2
children c1ec1c8a8d2e 64c6efb87c40 4ef881a120fe
comparison
equal deleted inserted replaced
77032:707bb6c48d95 77033:25b4502cd0b4
324 "The default find program for `grep-find-command'. 324 "The default find program for `grep-find-command'.
325 This variable's value takes effect when `grep-compute-defaults' is called.") 325 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
336 ;; History of grep commands. 336 ;; History of grep commands.
337 ;;;###autoload 337 ;;;###autoload