diff options
| author | Richard M. Stallman | 1994-03-25 23:49:50 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-03-25 23:49:50 +0000 |
| commit | c5a02c74d82a84baedb08adc25690687168cc8ee (patch) | |
| tree | 461243bc2052fc6e73cd3741e6e2bdcf05c368f2 /src | |
| parent | 30df2a534050af447ff998ab4cd685bf90f31d33 (diff) | |
| download | emacs-c5a02c74d82a84baedb08adc25690687168cc8ee.tar.gz emacs-c5a02c74d82a84baedb08adc25690687168cc8ee.zip | |
(this_command, last_command): Declared.
Diffstat (limited to 'src')
| -rw-r--r-- | src/commands.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/commands.h b/src/commands.h index 65f16e84989..7ac163f0637 100644 --- a/src/commands.h +++ b/src/commands.h | |||
| @@ -48,6 +48,16 @@ extern Lisp_Object last_nonmenu_event; | |||
| 48 | /* List of command events to be re-read, or Qnil. */ | 48 | /* List of command events to be re-read, or Qnil. */ |
| 49 | extern Lisp_Object unread_command_events; | 49 | extern Lisp_Object unread_command_events; |
| 50 | 50 | ||
| 51 | /* Last command executed by the editor command loop, not counting | ||
| 52 | commands that set the prefix argument. */ | ||
| 53 | |||
| 54 | extern Lisp_Object last_command; | ||
| 55 | |||
| 56 | /* The command being executed by the command loop. | ||
| 57 | Commands may set this, and the value set will be copied into last_command | ||
| 58 | instead of the actual command. */ | ||
| 59 | extern Lisp_Object this_command; | ||
| 60 | |||
| 51 | /* If not Qnil, this is a switch-frame event which we decided to put | 61 | /* If not Qnil, this is a switch-frame event which we decided to put |
| 52 | off until the end of a key sequence. This should be read as the | 62 | off until the end of a key sequence. This should be read as the |
| 53 | next command input, after any unread_command_events. | 63 | next command input, after any unread_command_events. |