diff options
| author | Richard M. Stallman | 1998-07-19 22:17:03 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-07-19 22:17:03 +0000 |
| commit | c6d464ec64f5328b243f14fe44e0ff974cd49de5 (patch) | |
| tree | 7c410c81780e8bc9024016af40c80e8b492f852c | |
| parent | eee03ff8abc24f70cb8e9c480ceed1bd0feee238 (diff) | |
| download | emacs-c6d464ec64f5328b243f14fe44e0ff974cd49de5.tar.gz emacs-c6d464ec64f5328b243f14fe44e0ff974cd49de5.zip | |
(grep): Doc fix.
(next-error): Doc fix.
| -rw-r--r-- | lisp/progmodes/compile.el | 7 |
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. |
| 560 | While grep runs asynchronously, you can use the \\[next-error] command | 560 | While grep runs asynchronously, you can use \\[next-error] \ |
| 561 | to find the text that grep hits refer to. | 561 | or \\<compilation-minor-mode-map>\\[compile-goto-error] |
| 562 | to go to the lines where grep found matches. | ||
| 562 | 563 | ||
| 563 | This command uses a special history list for its arguments, so you can | 564 | This command uses a special history list for its arguments, so you can |
| 564 | easily repeat a grep command. | 565 | easily 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. |
| 1347 | This operates on the output from the \\[compile] command. | 1348 | This operates on the output from the \\[compile] and \\[grep] commands. |
| 1348 | If all preparsed error messages have been processed, | 1349 | If all preparsed error messages have been processed, |
| 1349 | the error message buffer is checked for new ones. | 1350 | the error message buffer is checked for new ones. |
| 1350 | 1351 | ||