changeset 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 4b672131c37f
children 049d6b31cd42
files src/keyboard.c
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
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, "- ");