diff options
| author | Gerd Moellmann | 1999-10-19 13:40:45 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 1999-10-19 13:40:45 +0000 |
| commit | 03d50ed616a80ce5cc3349f2895a458c8b91f95c (patch) | |
| tree | 73ce6ffab28d1c18000a23a3c3d1dba3e02272a5 | |
| parent | afa95caca641368d2fc054c3fb191d019d793b14 (diff) | |
| download | emacs-03d50ed616a80ce5cc3349f2895a458c8b91f95c.tar.gz emacs-03d50ed616a80ce5cc3349f2895a458c8b91f95c.zip | |
(map-y-or-n-p): Remove extraneous `not'.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/map-ynp.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 175343b0652..7d27d38ecbe 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 1999-10-19 Sam Steingold <sds@ksp.com> | ||
| 2 | |||
| 3 | * map-ynp.el (map-y-or-n-p): Remove extraneous `not' to | ||
| 4 | comply with the comment. | ||
| 5 | |||
| 1 | 1999-10-19 Gerd Moellmann <gerd@gnu.org> | 6 | 1999-10-19 Gerd Moellmann <gerd@gnu.org> |
| 2 | 7 | ||
| 3 | * autorevert.el (auto-revert-mode): Make auto-revert-mode | 8 | * autorevert.el (auto-revert-mode): Make auto-revert-mode |
diff --git a/lisp/map-ynp.el b/lisp/map-ynp.el index e0b150be721..be664e02e11 100644 --- a/lisp/map-ynp.el +++ b/lisp/map-ynp.el | |||
| @@ -153,7 +153,7 @@ Returns the number of actions taken." | |||
| 153 | (setq char (read-event)) | 153 | (setq char (read-event)) |
| 154 | ;; If we get -1, from end of keyboard | 154 | ;; If we get -1, from end of keyboard |
| 155 | ;; macro, try again. | 155 | ;; macro, try again. |
| 156 | (not (equal char -1)))) | 156 | (equal char -1))) |
| 157 | ;; Show the answer to the question. | 157 | ;; Show the answer to the question. |
| 158 | (message "%s(y, n, !, ., q, %sor %s) %s" | 158 | (message "%s(y, n, !, ., q, %sor %s) %s" |
| 159 | prompt user-keys | 159 | prompt user-keys |