]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fy_or_n_p): Doc fix.
authorKarl Heuer <kwzh@gnu.org>
Mon, 26 Jul 1999 16:42:38 +0000 (16:42 +0000)
committerKarl Heuer <kwzh@gnu.org>
Mon, 26 Jul 1999 16:42:38 +0000 (16:42 +0000)
src/fns.c

index 6591a7b52d5eef462cd35a3e527ef4be81132e90..a9b2d2af9eee3c748b34d6c5c310d1d28f1fd984 100644 (file)
--- a/src/fns.c
+++ b/src/fns.c
@@ -2381,14 +2381,17 @@ DEFUN ("y-or-n-p", Fy_or_n_p, Sy_or_n_p, 1, 1, 0,
 Takes one argument, which is the string to display to ask the question.\n\
 It should end in a space; `y-or-n-p' adds `(y or n) ' to it.\n\
 No confirmation of the answer is requested; a single character is enough.\n\
-Also accepts Space to mean yes, or Delete to mean no.\n\
+Also accepts Space to mean yes, or Delete to mean no.  \(Actually, it uses\n\
+the bindings in query-replace-map; see the documentation of that variable\n\
+for more information.  In this case, the useful bindings are `act', `skip',\n\
+`recenter', and `quit'.\)\n\
 \n\
 Under a windowing system a dialog box will be used if `last-nonmenu-event'\n\
 is nil.")
   (prompt)
      Lisp_Object prompt;
 {
-  register Lisp_Object obj, key, def, answer_string, map;
+  register Lisp_Object obj, key, def, map;
   register int answer;
   Lisp_Object xprompt;
   Lisp_Object args[2];
@@ -2442,7 +2445,6 @@ is nil.")
 
       key = Fmake_vector (make_number (1), obj);
       def = Flookup_key (map, key, Qt);
-      answer_string = Fsingle_key_description (obj);
 
       if (EQ (def, intern ("skip")))
        {