diff options
| author | Richard M. Stallman | 1996-09-04 05:39:41 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-09-04 05:39:41 +0000 |
| commit | fde7aff8e2aa69e39a054a9ff739f77d09b67a93 (patch) | |
| tree | bf87d12c579c365b91be9c6b98a71a0fffeedf3c /src | |
| parent | 46d8a55bd1965a90e08b030d6e97bb5a110bb9fc (diff) | |
| download | emacs-fde7aff8e2aa69e39a054a9ff739f77d09b67a93.tar.gz emacs-fde7aff8e2aa69e39a054a9ff739f77d09b67a93.zip | |
(Fexecute_extended_command): Fix previous change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index a995e551ad3..b1578a3a949 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -6901,6 +6901,8 @@ DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_ | |||
| 6901 | (prefixarg) | 6901 | (prefixarg) |
| 6902 | Lisp_Object prefixarg; | 6902 | Lisp_Object prefixarg; |
| 6903 | { | 6903 | { |
| 6904 | defsubr (&Sfocus_frame); | ||
| 6905 | defsubr (&Sunfocus_frame); | ||
| 6904 | Lisp_Object function; | 6906 | Lisp_Object function; |
| 6905 | char buf[40]; | 6907 | char buf[40]; |
| 6906 | Lisp_Object saved_keys; | 6908 | Lisp_Object saved_keys; |
| @@ -6909,7 +6911,7 @@ DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_ | |||
| 6909 | saved_keys = Fvector (this_command_key_count, | 6911 | saved_keys = Fvector (this_command_key_count, |
| 6910 | XVECTOR (this_command_keys)->contents); | 6912 | XVECTOR (this_command_keys)->contents); |
| 6911 | buf[0] = 0; | 6913 | buf[0] = 0; |
| 6912 | GCPRO1 (saved_keys, prefixarg); | 6914 | GCPRO2 (saved_keys, prefixarg); |
| 6913 | 6915 | ||
| 6914 | if (EQ (prefixarg, Qminus)) | 6916 | if (EQ (prefixarg, Qminus)) |
| 6915 | strcpy (buf, "- "); | 6917 | strcpy (buf, "- "); |