diff options
Diffstat (limited to 'lisp/replace.el')
| -rw-r--r-- | lisp/replace.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/replace.el b/lisp/replace.el index 29ca29384e8..e1e14c92faf 100644 --- a/lisp/replace.el +++ b/lisp/replace.el | |||
| @@ -262,9 +262,9 @@ Applies to lines after point." | |||
| 262 | (defalias 'count-matches 'how-many) | 262 | (defalias 'count-matches 'how-many) |
| 263 | (defun how-many (regexp) | 263 | (defun how-many (regexp) |
| 264 | "Print number of matches for REGEXP following point." | 264 | "Print number of matches for REGEXP following point." |
| 265 | (interactive (list(read-from-minibuffer | 265 | (interactive (list (read-from-minibuffer |
| 266 | "How many matches for (regexp): " | 266 | "How many matches for (regexp): " |
| 267 | nil nil nil 'regexp-history nil t))) | 267 | nil nil nil 'regexp-history nil t))) |
| 268 | (let ((count 0) opoint) | 268 | (let ((count 0) opoint) |
| 269 | (save-excursion | 269 | (save-excursion |
| 270 | (while (and (not (eobp)) | 270 | (while (and (not (eobp)) |