aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm2003-02-03 22:52:07 +0000
committerKim F. Storm2003-02-03 22:52:07 +0000
commitf5613d1efd0c380f494d1f0625478277728d70d9 (patch)
tree9327936fade7fb05c3c5621661df0f1d07e0c642 /src
parent578846a3f815853348703ab5fb6ac24c9c817645 (diff)
downloademacs-f5613d1efd0c380f494d1f0625478277728d70d9.tar.gz
emacs-f5613d1efd0c380f494d1f0625478277728d70d9.zip
(syms_of_keyboard) <this-original-command>: Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 279bdc60049..16de5d24239 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -10872,9 +10872,10 @@ will be in `last-command' during the following command. */);
10872 Vthis_command = Qnil; 10872 Vthis_command = Qnil;
10873 10873
10874 DEFVAR_LISP ("this-original-command", &Vthis_original_command, 10874 DEFVAR_LISP ("this-original-command", &Vthis_original_command,
10875 doc: /* If non-nil, the original command bound to the current key sequence. 10875 doc: /* The command bound to the current key sequence before remapping.
10876The value of `this-command' is the result of looking up the original 10876It equals `this-command' if the original command was not remapped through
10877command in the active keymaps. */); 10877any of the active keymaps. Otherwise, the value of `this-command' is the
10878result of looking up the original command in the active keymaps. */);
10878 Vthis_original_command = Qnil; 10879 Vthis_original_command = Qnil;
10879 10880
10880 DEFVAR_INT ("auto-save-interval", &auto_save_interval, 10881 DEFVAR_INT ("auto-save-interval", &auto_save_interval,