]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/subr.el (read-char-choice): Use read-key. Suggested by Stefan.
authorChong Yidong <cyd@stupidchicken.com>
Sun, 9 Jan 2011 14:26:29 +0000 (09:26 -0500)
committerChong Yidong <cyd@stupidchicken.com>
Sun, 9 Jan 2011 14:26:29 +0000 (09:26 -0500)
* src/fns.c (Fyes_or_no_p): Minor doc fix.

lisp/ChangeLog
lisp/subr.el
src/fns.c

index c09c89a5efa5b8592f0aa839ebc8935860f55f22..6da2fe1abb3da167b9af9570287fb5fea83a9cce 100644 (file)
@@ -1,5 +1,7 @@
 2011-01-09  Chong Yidong  <cyd@stupidchicken.com>
 
+       * subr.el (read-char-choice): Use read-key.
+
        * custom.el (custom-safe-themes): Rename from
        custom-safe-theme-files.  Add :risky tag.
        (load-theme, custom-theme-load-confirm): Save sha1 hashes to
index 8294ab1778230710f8be3493781150979e22871d..536e6c262bd6949cab7b785ac8621b60884a82c4 100644 (file)
@@ -1985,7 +1985,7 @@ keyboard-quit events while waiting for a valid input."
       (unless (get-text-property 0 'face prompt)
        (setq prompt (propertize prompt 'face 'minibuffer-prompt)))
       (setq char (let ((inhibit-quit inhibit-keyboard-quit))
-                  (read-event prompt)))
+                  (read-key prompt)))
       (cond
        ((not (numberp char)))
        ((memq char chars)
index e59bf2121054381ef22033cf8d83976e9af2df1a..3b0a19e9239e5408cf7a9bd770e1ad39bfa0b4fb 100644 (file)
--- a/src/fns.c
+++ b/src/fns.c
@@ -2464,8 +2464,8 @@ DEFUN ("yes-or-no-p", Fyes_or_no_p, Syes_or_no_p, 1, MANY, 0,
        doc: /* Ask user a yes-or-no question.  Return t if answer is yes.
 The string to display to ask the question is obtained by
 formatting the string PROMPT with arguments ARGS (see `format').
-The result should end in a space; `y-or-n-p' adds \"(yes or no) \"
-to it.
+The result should end in a space; `yes-or-no-p' adds
+\"(yes or no) \" to it.
 
 The user must confirm the answer with RET, and can edit it until it
 has been confirmed.