diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 4 |
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, "- "); |