Mercurial > emacs
comparison src/commands.h @ 6536:4fa1c2b2f1e9
(this_command, last_command): Declared.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 25 Mar 1994 23:49:50 +0000 |
parents | e2bb2d0b8a00 |
children | 945fd4c43a14 |
comparison
equal
deleted
inserted
replaced
6535:01db0be5fec8 | 6536:4fa1c2b2f1e9 |
---|---|
46 extern Lisp_Object last_nonmenu_event; | 46 extern Lisp_Object last_nonmenu_event; |
47 | 47 |
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. |
54 | 64 |
55 read_key_sequence uses this to delay switch-frame events until the | 65 read_key_sequence uses this to delay switch-frame events until the |