diff src/keyboard.c @ 16111:5ad91b5cd2b4

(Fexecute_extended_command): Fix previous change.
author Richard M. Stallman <rms@gnu.org>
date Wed, 04 Sep 1996 05:39:41 +0000
parents 198c6c2846ae
children cc8c3e2cc6ed
line wrap: on
line diff
--- a/src/keyboard.c	Wed Sep 04 04:33:40 1996 +0000
+++ b/src/keyboard.c	Wed Sep 04 05:39:41 1996 +0000
@@ -6901,6 +6901,8 @@
   (prefixarg)
      Lisp_Object prefixarg;
 {
+  defsubr (&Sfocus_frame);
+  defsubr (&Sunfocus_frame);
   Lisp_Object function;
   char buf[40];
   Lisp_Object saved_keys;
@@ -6909,7 +6911,7 @@
   saved_keys = Fvector (this_command_key_count,
 			XVECTOR (this_command_keys)->contents);
   buf[0] = 0;
-  GCPRO1 (saved_keys, prefixarg);
+  GCPRO2 (saved_keys, prefixarg);
 
   if (EQ (prefixarg, Qminus))
     strcpy (buf, "- ");