]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix last commit
authorEli Zaretskii <eliz@gnu.org>
Sat, 13 Jul 2019 07:20:48 +0000 (10:20 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 13 Jul 2019 07:20:48 +0000 (10:20 +0300)
* etc/NEWS: Fix formatting and punctuation of last change.

* lisp/isearch.el (isearch-highlight-regexp)
(isearch-highlight-lines-matching-regexp): Doc fix.

etc/NEWS
lisp/isearch.el

index e04760a2c6a184e2d39afef7c0e57716524da30f..451534ab7fe1c6da500783c38a33b06018edffe5 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1124,7 +1124,7 @@ highlight in one iteration while processing the full buffer.
 
 +++
 'M-s h l' invokes highlight-lines-matching-regexp using the search
-string to highlight lines matching the search string. This is similar
+string to highlight lines matching the search string.  This is similar
 to the existing binding 'M-s h r' (highlight-regexp) that highlights
 JUST the search string.
 
index e0f3f05153f6733895cdf146ce3f7c2fc5474852..1aea539e735aa787deace9907b68623b181aaf25 100644 (file)
@@ -2351,8 +2351,8 @@ characters in that string."
   "Run HI-LOCK-FUNC to exit isearch, leaving the matches highlighted.
 This is the internal function used by `isearch-highlight-regexp'
 and `isearch-highlight-lines-matching-regexp' to invoke
-HI-LOCK-FUNC (either `highlight-regexp' or
-`highlight-lines-matching-regexp' respectively)."
+HI-LOCK-FUNC (either `highlight-regexp' or `highlight-lines-matching-regexp',
+respectively)."
   (let (
        ;; Set `isearch-recursive-edit' to nil to prevent calling
        ;; `exit-recursive-edit' in `isearch-done' that terminates
@@ -2385,16 +2385,16 @@ HI-LOCK-FUNC (either `highlight-regexp' or
   (and isearch-recursive-edit (exit-recursive-edit)))
 
 (defun isearch-highlight-regexp ()
-  "Exit Isearch mode, and call `highlight-regexp' with its regexp
-argument from the last search, and the face from
-`hi-lock-read-face-name'."
+  "Exit Isearch mode and call `highlight-regexp'.
+The arguments passed to `highlight-regexp' are the regexp from
+the last search and the face from `hi-lock-read-face-name'."
   (interactive)
   (isearch--highlight-regexp-or-lines 'highlight-regexp))
 
 (defun isearch-highlight-lines-matching-regexp ()
-  "Exit Isearch mode, and call `highlight-lines-matching-regexp'
-with its regexp argument from the last search, and the face from
-`hi-lock-read-face-name'."
+  "Exit Isearch mode and call `highlight-lines-matching-regexp'.
+The arguments passed to `highlight-lines-matching-regexp' are the
+regexp from the last search and the face from `hi-lock-read-face-name'."
   (interactive)
   (isearch--highlight-regexp-or-lines 'highlight-lines-matching-regexp))