]> git.eshelyaron.com Git - emacs.git/commitdiff
Doc fix for y-or-n-p and yes-or-no-p.
authorChong Yidong <cyd@stupidchicken.com>
Sat, 8 Jan 2011 21:17:58 +0000 (16:17 -0500)
committerChong Yidong <cyd@stupidchicken.com>
Sat, 8 Jan 2011 21:17:58 +0000 (16:17 -0500)
* subr.el (y-or-n-p): Doc fix.
* fns.c (Fyes_or_no_p): Doc fix.

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

index 86f9e8fa0b9f5a8046e6ab95c08853d67463d17e..2df31ccbe7e3596b8de06ef8d94d61ff920804b7 100644 (file)
@@ -1,5 +1,7 @@
 2011-01-08  Chong Yidong  <cyd@stupidchicken.com>
 
+       * subr.el (y-or-n-p): Doc fix.
+
        * custom.el (custom-safe-theme-files): New defcustom.
        (custom-theme-load-confirm): New function.
        (load-theme): Load theme using `load', confirming with
index 0f65fb7fbb05feedb8119aad9f81586d3805140d..8294ab1778230710f8be3493781150979e22871d 100644 (file)
@@ -2043,8 +2043,11 @@ floating point support."
 
 (defun y-or-n-p (prompt &rest args)
   "Ask user a \"y or n\" question.  Return t if answer is \"y\".
-The argument PROMPT is the string to display to ask the question.
-It should end in a space; `y-or-n-p' adds `(y or n) ' to it.
+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 \"(y or n) \"
+to it.
+
 No confirmation of the answer is requested; a single character is enough.
 Also accepts Space to mean yes, or Delete to mean no.  \(Actually, it uses
 the bindings in `query-replace-map'; see the documentation of that variable
index aad0050f0bda469f70076db3f03517f92b3a6fa3..34154e3bf28bf0c075cbe939f225f8f09f8342e4 100644 (file)
@@ -1,3 +1,7 @@
+2011-01-08  Chong Yidong  <cyd@stupidchicken.com>
+
+       * fns.c (Fyes_or_no_p): Doc fix.
+
 2011-01-08  Andreas Schwab  <schwab@linux-m68k.org>
 
        * fns.c (Fyes_or_no_p): Add usage.
index ddc193d85e4cdf607c8a065f7af38bab60e1f3f5..e59bf2121054381ef22033cf8d83976e9af2df1a 100644 (file)
--- a/src/fns.c
+++ b/src/fns.c
@@ -2462,10 +2462,13 @@ do_yes_or_no_p (Lisp_Object prompt)
 
 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.
-Takes one argument, which is the string to display to ask the question.
-It 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.
+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 user must confirm the answer with RET, and can edit it until it
+has been confirmed.
 
 Under a windowing system a dialog box will be used if `last-nonmenu-event'
 is nil, and `use-dialog-box' is non-nil.