diff options
| author | Richard M. Stallman | 1998-08-10 01:44:59 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-08-10 01:44:59 +0000 |
| commit | b7f096eeeaacce0d73296ed647874b70c95f6cdf (patch) | |
| tree | 79ae8fefd7f8cf9a7fd5ad90a060b4889830989e /lisp/replace.el | |
| parent | 9cc077f663aac6258e2f3bbcc3f879e58291341b (diff) | |
| download | emacs-b7f096eeeaacce0d73296ed647874b70c95f6cdf.tar.gz emacs-b7f096eeeaacce0d73296ed647874b70c95f6cdf.zip | |
Whitespace change.
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)) |