aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1996-09-04 03:58:15 +0000
committerRichard M. Stallman1996-09-04 03:58:15 +0000
commit214360e91f995b4e156db7b06e25b05214d0ba01 (patch)
tree79f00278ab747ea9d2b7db7faab597ed7b2f932e /src
parentb839712d7794b146fdc9e05ad65d3097f8ac6d7b (diff)
downloademacs-214360e91f995b4e156db7b06e25b05214d0ba01.tar.gz
emacs-214360e91f995b4e156db7b06e25b05214d0ba01.zip
(Fexecute_extended_command): gcpro prefixarg.
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c4
1 files changed, 2 insertions, 2 deletions
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_
6898 Lisp_Object function; 6898 Lisp_Object function;
6899 char buf[40]; 6899 char buf[40];
6900 Lisp_Object saved_keys; 6900 Lisp_Object saved_keys;
6901 struct gcpro gcpro1; 6901 struct gcpro gcpro1, gcpro2;
6902 6902
6903 saved_keys = Fvector (this_command_key_count, 6903 saved_keys = Fvector (this_command_key_count,
6904 XVECTOR (this_command_keys)->contents); 6904 XVECTOR (this_command_keys)->contents);
6905 buf[0] = 0; 6905 buf[0] = 0;
6906 GCPRO1 (saved_keys); 6906 GCPRO1 (saved_keys, prefixarg);
6907 6907
6908 if (EQ (prefixarg, Qminus)) 6908 if (EQ (prefixarg, Qminus))
6909 strcpy (buf, "- "); 6909 strcpy (buf, "- ");