]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix typo in docstring. Bug #12122.
authorBastien Guerry <bastien1@free.fr>
Thu, 2 Aug 2012 16:54:42 +0000 (18:54 +0200)
committerBastien Guerry <bastien1@free.fr>
Thu, 2 Aug 2012 16:54:42 +0000 (18:54 +0200)
lisp/ChangeLog
lisp/replace.el

index ec93d25a991e9e6cb2e83778836846c7503568e3..4b0f567ba8e90d7a5b78b9996be169a054750afb 100644 (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.
index 5baf68224c4037079f674aa5250650a94f3a15fb..fecdb35fcaf4964f5746b117918e8de1c36de7ce 100644 (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))))