1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-10 15:56:18 +00:00

Fix typo in docstring. Bug #12122.

This commit is contained in:
Bastien Guerry 2012-08-02 18:54:42 +02:00
parent a8333d0357
commit 66ec244299
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2012-08-02 Bastien Guerry <bzg@gnu.org>
* replace.el (occur): Fix docstring (bug#12122).
2012-08-02 Glenn Morris <rgm@gnu.org>
* emacs-lisp/authors.el (authors-renamed-files-alist): Add ms-w32.h.

View File

@ -1140,8 +1140,8 @@ contain \\& and \\N which convention follows `replace-match'.
For example, providing \"defun\\s +\\(\\S +\\)\" for REGEXP and
\"\\1\" for NLINES collects all the function names in a lisp
program. When there is no parenthesized subexpressions in REGEXP
the entire match is collected. In any case the searched buffers
are not modified."
the entire match is collected. In any case the searched buffer
is not modified."
(interactive (occur-read-primary-args))
(occur-1 regexp nlines (list (current-buffer))))