changeset 16107:6398b414a250

(Fexecute_extended_command): gcpro prefixarg.
author Richard M. Stallman <rms@gnu.org>
date Wed, 04 Sep 1996 03:58:15 +0000
parents fdd1b2ade15d
children 2c9c0c867e00
files src/keyboard.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/keyboard.c	Wed Sep 04 03:55:07 1996 +0000
+++ b/src/keyboard.c	Wed Sep 04 03:58:15 1996 +0000
@@ -6898,12 +6898,12 @@
   Lisp_Object function;
   char buf[40];
   Lisp_Object saved_keys;
-  struct gcpro gcpro1;
+  struct gcpro gcpro1, gcpro2;
 
   saved_keys = Fvector (this_command_key_count,
 			XVECTOR (this_command_keys)->contents);
   buf[0] = 0;
-  GCPRO1 (saved_keys);
+  GCPRO1 (saved_keys, prefixarg);
 
   if (EQ (prefixarg, Qminus))
     strcpy (buf, "- ");