diff options
| author | Kim F. Storm | 2006-05-08 10:26:30 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2006-05-08 10:26:30 +0000 |
| commit | 6e7c574fd8d71502741d36a2156fa39923b9ee88 (patch) | |
| tree | f2385ac8613596ebe89d4d422c719354124d39d4 | |
| parent | f615f3a642187ce507bdadf16569e22e41fcf9be (diff) | |
| download | emacs-6e7c574fd8d71502741d36a2156fa39923b9ee88.tar.gz emacs-6e7c574fd8d71502741d36a2156fa39923b9ee88.zip | |
(lgrep, rgrep): Doc fixes.
| -rw-r--r-- | lisp/progmodes/grep.el | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/progmodes/grep.el b/lisp/progmodes/grep.el index 403ea40c839..301ae3dca5b 100644 --- a/lisp/progmodes/grep.el +++ b/lisp/progmodes/grep.el | |||
| @@ -639,9 +639,9 @@ The search is limited to file names matching shell pattern FILES. | |||
| 639 | FILES may use abbreviations defined in `grep-files-aliases', e.g. | 639 | FILES may use abbreviations defined in `grep-files-aliases', e.g. |
| 640 | entering `ch' is equivalent to `*.[ch]'. | 640 | entering `ch' is equivalent to `*.[ch]'. |
| 641 | 641 | ||
| 642 | With \\[universal-argument] prefix, allow user to edit the constructed | 642 | With \\[universal-argument] prefix, you can edit the constructed shell command line |
| 643 | shell command line before it is executed. | 643 | before it is executed. |
| 644 | With two \\[universal-argument] prefixes, edit and run grep shell command. | 644 | With two \\[universal-argument] prefixes, directly edit and run `grep-command'. |
| 645 | 645 | ||
| 646 | Collect output in a buffer. While grep runs asynchronously, you | 646 | Collect output in a buffer. While grep runs asynchronously, you |
| 647 | can use \\[next-error] (M-x next-error), or \\<grep-mode-map>\\[compile-goto-error] | 647 | can use \\[next-error] (M-x next-error), or \\<grep-mode-map>\\[compile-goto-error] |
| @@ -687,14 +687,14 @@ This command shares argument histories with \\[rgrep] and \\[grep]." | |||
| 687 | 687 | ||
| 688 | ;;;###autoload | 688 | ;;;###autoload |
| 689 | (defun rgrep (regexp &optional files dir) | 689 | (defun rgrep (regexp &optional files dir) |
| 690 | "Recusively grep for REGEXP in FILES in directory tree rooted at DIR. | 690 | "Recursively grep for REGEXP in FILES in directory tree rooted at DIR. |
| 691 | The search is limited to file names matching shell pattern FILES. | 691 | The search is limited to file names matching shell pattern FILES. |
| 692 | FILES may use abbreviations defined in `grep-files-aliases', e.g. | 692 | FILES may use abbreviations defined in `grep-files-aliases', e.g. |
| 693 | entering `ch' is equivalent to `*.[ch]'. | 693 | entering `ch' is equivalent to `*.[ch]'. |
| 694 | 694 | ||
| 695 | With \\[universal-argument] prefix, allow user to edit the constructed | 695 | With \\[universal-argument] prefix, you can edit the constructed shell command line |
| 696 | shell command line before it is executed. | 696 | before it is executed. |
| 697 | With two \\[universal-argument] prefixes, edit and run grep-find shell command. | 697 | With two \\[universal-argument] prefixes, directly edit and run `grep-find-command'. |
| 698 | 698 | ||
| 699 | Collect output in a buffer. While find runs asynchronously, you | 699 | Collect output in a buffer. While find runs asynchronously, you |
| 700 | can use \\[next-error] (M-x next-error), or \\<grep-mode-map>\\[compile-goto-error] | 700 | can use \\[next-error] (M-x next-error), or \\<grep-mode-map>\\[compile-goto-error] |