diff options
| author | Artur Malabarba | 2015-01-27 11:39:27 -0200 |
|---|---|---|
| committer | Artur Malabarba | 2015-01-27 11:39:27 -0200 |
| commit | 98715c6c242618e18fa11535b2a36e7cf1b461b1 (patch) | |
| tree | 12bc95605deae850207844225fa993a89b5eed46 /lisp | |
| parent | 11527553647f61798562f04c50b789edb8c15ac3 (diff) | |
| download | emacs-98715c6c242618e18fa11535b2a36e7cf1b461b1.tar.gz emacs-98715c6c242618e18fa11535b2a36e7cf1b461b1.zip | |
isearch.el (isearch-process-search-char): Add docstring.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/isearch.el | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2b02373fbe1..da9683dc111 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2015-01-27 Artur Malabarba <bruce.connor.am@gmail.com> | ||
| 2 | |||
| 3 | * isearch.el (isearch-process-search-char): Add docstring. | ||
| 4 | |||
| 1 | 2015-01-27 Oleh Krehel <ohwoeowho@gmail.com> | 5 | 2015-01-27 Oleh Krehel <ohwoeowho@gmail.com> |
| 2 | 6 | ||
| 3 | * emacs-lisp/derived.el (define-derived-mode): Declare indent 3. | 7 | * emacs-lisp/derived.el (define-derived-mode): Declare indent 3. |
diff --git a/lisp/isearch.el b/lisp/isearch.el index 191ec8270eb..99ca73f9f54 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el | |||
| @@ -2349,6 +2349,8 @@ With argument, add COUNT copies of the character." | |||
| 2349 | (isearch-process-search-char char count)))) | 2349 | (isearch-process-search-char char count)))) |
| 2350 | 2350 | ||
| 2351 | (defun isearch-process-search-char (char &optional count) | 2351 | (defun isearch-process-search-char (char &optional count) |
| 2352 | "Add CHAR to the search string, COUNT times. | ||
| 2353 | Search is updated accordingly." | ||
| 2352 | ;; * and ? are special in regexps when not preceded by \. | 2354 | ;; * and ? are special in regexps when not preceded by \. |
| 2353 | ;; } and | are special in regexps when preceded by \. | 2355 | ;; } and | are special in regexps when preceded by \. |
| 2354 | ;; Nothing special for + because it matches at least once. | 2356 | ;; Nothing special for + because it matches at least once. |