# HG changeset patch # User Chong Yidong # Date 1175964936 0 # Node ID 25b4502cd0b43fd44d009fb433174cf37cd455f2 # Parent 707bb6c48d95000bec715021d389316c436c0e8d (grep-find-use-xargs): Rewrite docstring. diff -r 707bb6c48d95 -r 25b4502cd0b4 lisp/progmodes/grep.el --- a/lisp/progmodes/grep.el Sat Apr 07 16:55:28 2007 +0000 +++ b/lisp/progmodes/grep.el Sat Apr 07 16:55:36 2007 +0000 @@ -326,10 +326,10 @@ ;;;###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.")