diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index 82f09de4f82..aef4f1dc97a 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -6231,7 +6231,15 @@ turns into this character followed by foo."); | |||
| 6231 | DEFVAR_LISP ("last-command", &last_command, | 6231 | DEFVAR_LISP ("last-command", &last_command, |
| 6232 | "The last command executed. Normally a symbol with a function definition,\n\ | 6232 | "The last command executed. Normally a symbol with a function definition,\n\ |
| 6233 | but can be whatever was found in the keymap, or whatever the variable\n\ | 6233 | but can be whatever was found in the keymap, or whatever the variable\n\ |
| 6234 | `this-command' was set to by that command."); | 6234 | `this-command' was set to by that command.\n\ |
| 6235 | \n\ | ||
| 6236 | The value `mode-exit' is special; it means that the previous command\n\ | ||
| 6237 | read an event that told it to exit, and it did so and unread that event.\n\ | ||
| 6238 | In other words, the present command is the event that made the previous\n\ | ||
| 6239 | command exit.\n\ | ||
| 6240 | \n\ | ||
| 6241 | The value `kill-region' is special; it means that the previous command\n\ | ||
| 6242 | was a kill command."); | ||
| 6235 | last_command = Qnil; | 6243 | last_command = Qnil; |
| 6236 | 6244 | ||
| 6237 | DEFVAR_LISP ("this-command", &this_command, | 6245 | DEFVAR_LISP ("this-command", &this_command, |