From: Richard M. Stallman Date: Wed, 4 Sep 1996 03:58:15 +0000 (+0000) Subject: (Fexecute_extended_command): gcpro prefixarg. X-Git-Tag: emacs-20.1~3837 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=214360e91f995b4e156db7b06e25b05214d0ba01;p=emacs.git (Fexecute_extended_command): gcpro prefixarg. --- diff --git a/src/keyboard.c b/src/keyboard.c index 9c854a046cc..a1d0c5514b2 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -6898,12 +6898,12 @@ DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_ 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, "- ");