aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/callint.c6
2 files changed, 6 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index ce9eec41ce2..04d261ffaef 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12007-09-10 Micha,Ak(Bl Cadilhac <michael@cadilhac.name>
2
3 * callint.c (Fcall_interactively): Comment fixes.
4
12007-09-10 Stefan Monnier <monnier@iro.umontreal.ca> 52007-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
2 6
3 * callint.c (Fcall_interactively): Use Finteractive_form also for subrs 7 * callint.c (Fcall_interactively): Use Finteractive_form also for subrs
diff --git a/src/callint.c b/src/callint.c
index 2ad8f445782..707948e856d 100644
--- a/src/callint.c
+++ b/src/callint.c
@@ -329,9 +329,7 @@ invoke it. If KEYS is omitted or nil, the return value of
329 /* If k or K discard an up-event, save it here so it can be retrieved with U */ 329 /* If k or K discard an up-event, save it here so it can be retrieved with U */
330 up_event = Qnil; 330 up_event = Qnil;
331 331
332 /* Decode the kind of function. Either handle it and return, 332 /* Set SPECS to the interactive form, or barf if not interactive. */
333 or go to `lose' if not interactive, or set either STRING or SPECS. */
334
335 { 333 {
336 Lisp_Object form; 334 Lisp_Object form;
337 GCPRO2 (function, prefix_arg); 335 GCPRO2 (function, prefix_arg);
@@ -343,7 +341,7 @@ invoke it. If KEYS is omitted or nil, the return value of
343 wrong_type_argument (Qcommandp, function); 341 wrong_type_argument (Qcommandp, function);
344 } 342 }
345 343
346 /* If either SPECS or STRING is set to a string, use it. */ 344 /* If SPECS is set to a string, use it as an interactive prompt. */
347 if (STRINGP (specs)) 345 if (STRINGP (specs))
348 { 346 {
349 /* Make a copy of string so that if a GC relocates specs, 347 /* Make a copy of string so that if a GC relocates specs,