]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fcall_interactively): Comment fixes.
authorMichaël Cadilhac <michael.cadilhac@lrde.org>
Mon, 10 Sep 2007 09:32:42 +0000 (09:32 +0000)
committerMichaël Cadilhac <michael.cadilhac@lrde.org>
Mon, 10 Sep 2007 09:32:42 +0000 (09:32 +0000)
src/ChangeLog
src/callint.c

index ce9eec41ce261220ec0ea8385c60999796d7f86a..04d261ffaef674a13341be684cab197c7cc93b34 100644 (file)
@@ -1,3 +1,7 @@
+2007-09-10  Micha\e,Ak\e(Bl Cadilhac  <michael@cadilhac.name>
+
+       * callint.c (Fcall_interactively): Comment fixes.
+
 2007-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * callint.c (Fcall_interactively): Use Finteractive_form also for subrs
index 2ad8f4457820e80c5ed409a89e21755a071d98f4..707948e856d0ec8c39ce64c50af566b3ad9001b4 100644 (file)
@@ -329,9 +329,7 @@ invoke it.  If KEYS is omitted or nil, the return value of
   /* If k or K discard an up-event, save it here so it can be retrieved with U */
   up_event = Qnil;
 
-  /* Decode the kind of function.  Either handle it and return,
-     or go to `lose' if not interactive, or set either STRING or SPECS.  */
-
+  /* Set SPECS to the interactive form, or barf if not interactive.  */
   {
     Lisp_Object form;
     GCPRO2 (function, prefix_arg);
@@ -343,7 +341,7 @@ invoke it.  If KEYS is omitted or nil, the return value of
       wrong_type_argument (Qcommandp, function);
   }
 
-  /* If either SPECS or STRING is set to a string, use it.  */
+  /* If SPECS is set to a string, use it as an interactive prompt.  */
   if (STRINGP (specs))
     {
       /* Make a copy of string so that if a GC relocates specs,