isearch.el (isearch-process-search-char): Add docstring.

This commit is contained in:
Artur Malabarba 2015-01-27 11:39:27 -02:00
parent 1152755364
commit 98715c6c24
2 changed files with 6 additions and 0 deletions

View 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.

View 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.