aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes
diff options
context:
space:
mode:
authorJuanma Barranquero <[email protected]>2002-10-28 07:30:33 +0000
committerJuanma Barranquero <[email protected]>2002-10-28 07:30:33 +0000
commitdc2feacf153f81cbaadade3d56a5231619f14d09 (patch)
tree8c873301687a871cbeb51015012cd217f1b0259c /lisp/progmodes
parent6de0156c569124a413905e29fa75267698bec4e4 (diff)
(grep-find-use-xargs): Fix docstring. Patch from Matt Swift
Diffstat (limited to 'lisp/progmodes')
-rw-r--r--lisp/progmodes/compile.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index a722ae6248..76f430d678 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -632,7 +632,7 @@ This variable's value takes effect when `grep-compute-defaults' is called.")
(defvar grep-find-use-xargs nil
"Whether \\[grep-find] uses the `xargs' utility by default.
-If nil, it uses `grep -exec'; if `gnu', it uses `find -print0' and `xargs -0';
+If nil, 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'.
This variable's value takes effect when `grep-compute-defaults' is called.")
@@ -922,7 +922,7 @@ those sub directories of DIR."
(if (stringp subdirs)
subdirs
(mapconcat 'identity subdirs " "))
- nil) ;; we change default-directory to dir
+ nil) ;; we change default-directory to dir
(and grep-tree-ignore-CVS-directories "-path '*/CVS' -prune -o ")
grep-tree-ignore-case))
(default-directory dir)
@@ -948,9 +948,9 @@ Likewise if `compilation-buffer-name-function' is non-nil.
If current buffer is in Compilation mode for the same mode name
return the name of the current buffer, so that it gets reused.
Otherwise, construct a buffer name from MODE-NAME."
- (cond (name-function
+ (cond (name-function
(funcall name-function mode-name))
- (compilation-buffer-name-function
+ (compilation-buffer-name-function
(funcall compilation-buffer-name-function mode-name))
((and (eq major-mode 'compilation-mode)
(equal mode-name (nth 2 compilation-arguments)))