mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
(map-y-or-n-p): Remove extraneous `not'.
This commit is contained in:
parent
afa95caca6
commit
03d50ed616
2 changed files with 6 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
1999-10-19 Sam Steingold <sds@ksp.com>
|
||||
|
||||
* map-ynp.el (map-y-or-n-p): Remove extraneous `not' to
|
||||
comply with the comment.
|
||||
|
||||
1999-10-19 Gerd Moellmann <gerd@gnu.org>
|
||||
|
||||
* autorevert.el (auto-revert-mode): Make auto-revert-mode
|
||||
|
|
|
|||
|
|
@ -153,7 +153,7 @@ Returns the number of actions taken."
|
|||
(setq char (read-event))
|
||||
;; If we get -1, from end of keyboard
|
||||
;; macro, try again.
|
||||
(not (equal char -1))))
|
||||
(equal char -1)))
|
||||
;; Show the answer to the question.
|
||||
(message "%s(y, n, !, ., q, %sor %s) %s"
|
||||
prompt user-keys
|
||||
|
|
|
|||
Loading…
Reference in a new issue