diff options
| author | Juanma Barranquero | 2008-10-22 11:11:01 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2008-10-22 11:11:01 +0000 |
| commit | 3f2372cbcb23be0b0a0d4db73946eabcd22caaaa (patch) | |
| tree | 1426ef21ab08b90221b26214f1352725b4a88011 | |
| parent | a9b555d3d091f8a371c81ac565f0e40f59ba8743 (diff) | |
| download | emacs-3f2372cbcb23be0b0a0d4db73946eabcd22caaaa.tar.gz emacs-3f2372cbcb23be0b0a0d4db73946eabcd22caaaa.zip | |
* replace.el (how-many): Fix typo in docstring.
Reported by Leo Liu <sdl.web@gmail.com>.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/replace.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 30837643ffe..38ce13929bb 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2008-10-22 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * replace.el (how-many): Fix typo in docstring. | ||
| 4 | Reported by Leo <sdl.web@gmail.com>. | ||
| 5 | |||
| 1 | 2008-10-22 Glenn Morris <rgm@gnu.org> | 6 | 2008-10-22 Glenn Morris <rgm@gnu.org> |
| 2 | 7 | ||
| 3 | * international/mule-cmds.el (universal-coding-system-argument): | 8 | * international/mule-cmds.el (universal-coding-system-argument): |
diff --git a/lisp/replace.el b/lisp/replace.el index e54939ff8dc..0b57ea35fc1 100644 --- a/lisp/replace.el +++ b/lisp/replace.el | |||
| @@ -703,7 +703,7 @@ starting on the same line at which another match ended is ignored." | |||
| 703 | "Print and return number of matches for REGEXP following point. | 703 | "Print and return number of matches for REGEXP following point. |
| 704 | When called from Lisp and INTERACTIVE is omitted or nil, just return | 704 | When called from Lisp and INTERACTIVE is omitted or nil, just return |
| 705 | the number, do not print it; if INTERACTIVE is t, the function behaves | 705 | the number, do not print it; if INTERACTIVE is t, the function behaves |
| 706 | in all respects has if it had been called interactively. | 706 | in all respects as if it had been called interactively. |
| 707 | 707 | ||
| 708 | If REGEXP contains upper case characters (excluding those preceded by `\\') | 708 | If REGEXP contains upper case characters (excluding those preceded by `\\') |
| 709 | and `search-upper-case' is non-nil, the matching is case-sensitive. | 709 | and `search-upper-case' is non-nil, the matching is case-sensitive. |