aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-11-23 09:14:29 +0000
committerRichard M. Stallman1994-11-23 09:14:29 +0000
commit18f2905613f960bbf738451eb92fc00c784135ac (patch)
tree6bbc2823b7b77ecc59cd397e30b5708f080ceb48
parentec63af1b57d3a68fff08b9297cb84c78189229fa (diff)
downloademacs-18f2905613f960bbf738451eb92fc00c784135ac.tar.gz
emacs-18f2905613f960bbf738451eb92fc00c784135ac.zip
(syms_of_keyboard): Doc fix.
-rw-r--r--src/keyboard.c10
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\
6233but can be whatever was found in the keymap, or whatever the variable\n\ 6233but 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\
6236The value `mode-exit' is special; it means that the previous command\n\
6237read an event that told it to exit, and it did so and unread that event.\n\
6238In other words, the present command is the event that made the previous\n\
6239command exit.\n\
6240\n\
6241The value `kill-region' is special; it means that the previous command\n\
6242was 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,