(Fexecute_extended_command): Fix previous change.
authorRichard M. Stallman <rms@gnu.org>
Wed, 4 Sep 1996 05:39:41 +0000 (05:39 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 4 Sep 1996 05:39:41 +0000 (05:39 +0000)
src/keyboard.c

index a995e55..b1578a3 100644 (file)
@@ -6901,6 +6901,8 @@ DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_
   (prefixarg)
      Lisp_Object prefixarg;
 {
+  defsubr (&Sfocus_frame);
+  defsubr (&Sunfocus_frame);
   Lisp_Object function;
   char buf[40];
   Lisp_Object saved_keys;
@@ -6909,7 +6911,7 @@ DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_
   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, "- ");