]> git.eshelyaron.com Git - emacs.git/commitdiff
isearch.el (isearch-process-search-char): Add docstring.
authorArtur Malabarba <bruce.connor.am@gmail.com>
Tue, 27 Jan 2015 13:39:27 +0000 (11:39 -0200)
committerArtur Malabarba <bruce.connor.am@gmail.com>
Tue, 27 Jan 2015 13:39:27 +0000 (11:39 -0200)
lisp/ChangeLog
lisp/isearch.el

index 2b02373fbe12e78d3980d47f1a4981b5012c07ca..da9683dc1111c2ebeea1480b9229d2f6fff19987 100644 (file)
@@ -1,3 +1,7 @@
+2015-01-27  Artur Malabarba  <bruce.connor.am@gmail.com>
+
+       * isearch.el (isearch-process-search-char): Add docstring.
+
 2015-01-27  Oleh Krehel  <ohwoeowho@gmail.com>
 
        * emacs-lisp/derived.el (define-derived-mode): Declare indent 3.
index 191ec8270eb6e7bca6dcdadfd5c298aa1b0e136a..99ca73f9f54d892eba9774a93b19074023025daa 100644 (file)
@@ -2349,6 +2349,8 @@ With argument, add COUNT copies of the character."
       (isearch-process-search-char char count))))
 
 (defun isearch-process-search-char (char &optional count)
+  "Add CHAR to the search string, COUNT times.
+Search is updated accordingly."
   ;; * and ? are special in regexps when not preceded by \.
   ;; } and | are special in regexps when preceded by \.
   ;; Nothing special for + because it matches at least once.