aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1998-07-19 22:17:03 +0000
committerRichard M. Stallman1998-07-19 22:17:03 +0000
commitc6d464ec64f5328b243f14fe44e0ff974cd49de5 (patch)
tree7c410c81780e8bc9024016af40c80e8b492f852c
parenteee03ff8abc24f70cb8e9c480ceed1bd0feee238 (diff)
downloademacs-c6d464ec64f5328b243f14fe44e0ff974cd49de5.tar.gz
emacs-c6d464ec64f5328b243f14fe44e0ff974cd49de5.zip
(grep): Doc fix.
(next-error): Doc fix.
-rw-r--r--lisp/progmodes/compile.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index 92ff015f28f..73646cd6991 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -557,8 +557,9 @@ to a function that generates a unique name."
557;;;###autoload 557;;;###autoload
558(defun grep (command-args) 558(defun grep (command-args)
559 "Run grep, with user-specified args, and collect output in a buffer. 559 "Run grep, with user-specified args, and collect output in a buffer.
560While grep runs asynchronously, you can use the \\[next-error] command 560While grep runs asynchronously, you can use \\[next-error] \
561to find the text that grep hits refer to. 561or \\<compilation-minor-mode-map>\\[compile-goto-error]
562to go to the lines where grep found matches.
562 563
563This command uses a special history list for its arguments, so you can 564This command uses a special history list for its arguments, so you can
564easily repeat a grep command. 565easily repeat a grep command.
@@ -1344,7 +1345,7 @@ other kinds of prefix arguments are ignored."
1344;;;###autoload 1345;;;###autoload
1345(defun next-error (&optional argp) 1346(defun next-error (&optional argp)
1346 "Visit next compilation error message and corresponding source code. 1347 "Visit next compilation error message and corresponding source code.
1347This operates on the output from the \\[compile] command. 1348This operates on the output from the \\[compile] and \\[grep] commands.
1348If all preparsed error messages have been processed, 1349If all preparsed error messages have been processed,
1349the error message buffer is checked for new ones. 1350the error message buffer is checked for new ones.
1350 1351