aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1995-04-10 07:22:15 +0000
committerRichard M. Stallman1995-04-10 07:22:15 +0000
commit652e2240620fcbda4b57002a0cf9ea1385288e34 (patch)
tree88191710421a944649b29625419c47cffb9ec2b0
parent601fa27a78a89bc1016749a6d77d61668c8a4067 (diff)
downloademacs-652e2240620fcbda4b57002a0cf9ea1385288e34.tar.gz
emacs-652e2240620fcbda4b57002a0cf9ea1385288e34.zip
(Fcall_interactively): Call single_kboard_state
to switch to the single-kboard state.
-rw-r--r--src/callint.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/src/callint.c b/src/callint.c
index 11c18b3f97f..8fbd45c3614 100644
--- a/src/callint.c
+++ b/src/callint.c
@@ -296,9 +296,7 @@ Otherwise, this is done only if an arg is read using the minibuffer.")
296 } 296 }
297 else if (EQ (funcar, Qmocklisp)) 297 else if (EQ (funcar, Qmocklisp))
298 { 298 {
299#ifdef MULTI_KBOARD 299 single_kboard_state ();
300 kboard_locked = 1;
301#endif
302 return ml_apply (fun, Qinteractive); 300 return ml_apply (fun, Qinteractive);
303 } 301 }
304 else 302 else
@@ -352,9 +350,7 @@ Otherwise, this is done only if an arg is read using the minibuffer.")
352 Vcommand_history 350 Vcommand_history
353 = Fcons (Fcons (function, values), Vcommand_history); 351 = Fcons (Fcons (function, values), Vcommand_history);
354 } 352 }
355#ifdef MULTI_KBOARD 353 single_kboard_state ();
356 kboard_locked = 1;
357#endif
358 return apply1 (function, specs); 354 return apply1 (function, specs);
359 } 355 }
360 356
@@ -661,9 +657,7 @@ Otherwise, this is done only if an arg is read using the minibuffer.")
661 if (varies[i] >= 1 && varies[i] <= 4) 657 if (varies[i] >= 1 && varies[i] <= 4)
662 XSETINT (args[i], marker_position (args[i])); 658 XSETINT (args[i], marker_position (args[i]));
663 659
664#ifdef MULTI_KBOARD 660 single_kboard_state ();
665 kboard_locked = 1;
666#endif
667 661
668 { 662 {
669 Lisp_Object val; 663 Lisp_Object val;