aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love1999-02-08 13:59:24 +0000
committerDave Love1999-02-08 13:59:24 +0000
commit0c6ca44b7a55eb17266f4a85737127b228560540 (patch)
tree5071072b625b7cfaaf7d0163fde47cef85dc5f84 /src
parenta7bc7c2a69a452d7fa57ee3f4d2ad47ae44b0cb5 (diff)
downloademacs-0c6ca44b7a55eb17266f4a85737127b228560540.tar.gz
emacs-0c6ca44b7a55eb17266f4a85737127b228560540.zip
(Fyes_or_no_p, Fy_or_n_p): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/fns.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/fns.c b/src/fns.c
index 95493da13be..821ee247926 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -1,5 +1,5 @@
1/* Random utility Lisp functions. 1/* Random utility Lisp functions.
2 Copyright (C) 1985, 86, 87, 93, 94, 95, 97, 1998 Free Software Foundation, Inc. 2 Copyright (C) 1985, 86, 87, 93, 94, 95, 97, 98, 1999 Free Software Foundation, Inc.
3 3
4This file is part of GNU Emacs. 4This file is part of GNU Emacs.
5 5
@@ -2376,7 +2376,10 @@ DEFUN ("y-or-n-p", Fy_or_n_p, Sy_or_n_p, 1, 1, 0,
2376Takes one argument, which is the string to display to ask the question.\n\ 2376Takes one argument, which is the string to display to ask the question.\n\
2377It should end in a space; `y-or-n-p' adds `(y or n) ' to it.\n\ 2377It should end in a space; `y-or-n-p' adds `(y or n) ' to it.\n\
2378No confirmation of the answer is requested; a single character is enough.\n\ 2378No confirmation of the answer is requested; a single character is enough.\n\
2379Also accepts Space to mean yes, or Delete to mean no.") 2379Also accepts Space to mean yes, or Delete to mean no.\n\
2380\n\
2381Under a windowing system a dialog box will be used if `last-nonmenu-event'\n\
2382is nil.")
2380 (prompt) 2383 (prompt)
2381 Lisp_Object prompt; 2384 Lisp_Object prompt;
2382{ 2385{
@@ -2506,7 +2509,10 @@ DEFUN ("yes-or-no-p", Fyes_or_no_p, Syes_or_no_p, 1, 1, 0,
2506Takes one argument, which is the string to display to ask the question.\n\ 2509Takes one argument, which is the string to display to ask the question.\n\
2507It should end in a space; `yes-or-no-p' adds `(yes or no) ' to it.\n\ 2510It should end in a space; `yes-or-no-p' adds `(yes or no) ' to it.\n\
2508The user must confirm the answer with RET,\n\ 2511The user must confirm the answer with RET,\n\
2509and can edit it until it has been confirmed.") 2512and can edit it until it has been confirmed.\n\
2513\n\
2514Under a windowing system a dialog box will be used if `last-nonmenu-event'\n\
2515is nil.")
2510 (prompt) 2516 (prompt)
2511 Lisp_Object prompt; 2517 Lisp_Object prompt;
2512{ 2518{