diff options
| author | Chong Yidong | 2011-01-08 16:17:58 -0500 |
|---|---|---|
| committer | Chong Yidong | 2011-01-08 16:17:58 -0500 |
| commit | 3d91e302868dfb6bf12e697f81167447ce4a7250 (patch) | |
| tree | 890b932020a3984ae076361f026a2695db03fa7a | |
| parent | 278f68456b8c25fff6d2274476cdc8ee3609f68b (diff) | |
| download | emacs-3d91e302868dfb6bf12e697f81167447ce4a7250.tar.gz emacs-3d91e302868dfb6bf12e697f81167447ce4a7250.zip | |
Doc fix for y-or-n-p and yes-or-no-p.
* subr.el (y-or-n-p): Doc fix.
* fns.c (Fyes_or_no_p): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/subr.el | 7 | ||||
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/fns.c | 11 |
4 files changed, 18 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 86f9e8fa0b9..2df31ccbe7e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2011-01-08 Chong Yidong <cyd@stupidchicken.com> | 1 | 2011-01-08 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 2 | ||
| 3 | * subr.el (y-or-n-p): Doc fix. | ||
| 4 | |||
| 3 | * custom.el (custom-safe-theme-files): New defcustom. | 5 | * custom.el (custom-safe-theme-files): New defcustom. |
| 4 | (custom-theme-load-confirm): New function. | 6 | (custom-theme-load-confirm): New function. |
| 5 | (load-theme): Load theme using `load', confirming with | 7 | (load-theme): Load theme using `load', confirming with |
diff --git a/lisp/subr.el b/lisp/subr.el index 0f65fb7fbb0..8294ab17782 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -2043,8 +2043,11 @@ floating point support." | |||
| 2043 | 2043 | ||
| 2044 | (defun y-or-n-p (prompt &rest args) | 2044 | (defun y-or-n-p (prompt &rest args) |
| 2045 | "Ask user a \"y or n\" question. Return t if answer is \"y\". | 2045 | "Ask user a \"y or n\" question. Return t if answer is \"y\". |
| 2046 | The argument PROMPT is the string to display to ask the question. | 2046 | The string to display to ask the question is obtained by |
| 2047 | It should end in a space; `y-or-n-p' adds `(y or n) ' to it. | 2047 | formatting the string PROMPT with arguments ARGS (see `format'). |
| 2048 | The result should end in a space; `y-or-n-p' adds \"(y or n) \" | ||
| 2049 | to it. | ||
| 2050 | |||
| 2048 | No confirmation of the answer is requested; a single character is enough. | 2051 | No confirmation of the answer is requested; a single character is enough. |
| 2049 | Also accepts Space to mean yes, or Delete to mean no. \(Actually, it uses | 2052 | Also accepts Space to mean yes, or Delete to mean no. \(Actually, it uses |
| 2050 | the bindings in `query-replace-map'; see the documentation of that variable | 2053 | the bindings in `query-replace-map'; see the documentation of that variable |
diff --git a/src/ChangeLog b/src/ChangeLog index aad0050f0bd..34154e3bf28 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2011-01-08 Chong Yidong <cyd@stupidchicken.com> | ||
| 2 | |||
| 3 | * fns.c (Fyes_or_no_p): Doc fix. | ||
| 4 | |||
| 1 | 2011-01-08 Andreas Schwab <schwab@linux-m68k.org> | 5 | 2011-01-08 Andreas Schwab <schwab@linux-m68k.org> |
| 2 | 6 | ||
| 3 | * fns.c (Fyes_or_no_p): Add usage. | 7 | * fns.c (Fyes_or_no_p): Add usage. |
| @@ -2462,10 +2462,13 @@ do_yes_or_no_p (Lisp_Object prompt) | |||
| 2462 | 2462 | ||
| 2463 | DEFUN ("yes-or-no-p", Fyes_or_no_p, Syes_or_no_p, 1, MANY, 0, | 2463 | DEFUN ("yes-or-no-p", Fyes_or_no_p, Syes_or_no_p, 1, MANY, 0, |
| 2464 | doc: /* Ask user a yes-or-no question. Return t if answer is yes. | 2464 | doc: /* Ask user a yes-or-no question. Return t if answer is yes. |
| 2465 | Takes one argument, which is the string to display to ask the question. | 2465 | The string to display to ask the question is obtained by |
| 2466 | It should end in a space; `yes-or-no-p' adds `(yes or no) ' to it. | 2466 | formatting the string PROMPT with arguments ARGS (see `format'). |
| 2467 | The user must confirm the answer with RET, | 2467 | The result should end in a space; `y-or-n-p' adds \"(yes or no) \" |
| 2468 | and can edit it until it has been confirmed. | 2468 | to it. |
| 2469 | |||
| 2470 | The user must confirm the answer with RET, and can edit it until it | ||
| 2471 | has been confirmed. | ||
| 2469 | 2472 | ||
| 2470 | Under a windowing system a dialog box will be used if `last-nonmenu-event' | 2473 | Under a windowing system a dialog box will be used if `last-nonmenu-event' |
| 2471 | is nil, and `use-dialog-box' is non-nil. | 2474 | is nil, and `use-dialog-box' is non-nil. |