diff options
| author | Kim F. Storm | 2003-02-03 22:52:07 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2003-02-03 22:52:07 +0000 |
| commit | f5613d1efd0c380f494d1f0625478277728d70d9 (patch) | |
| tree | 9327936fade7fb05c3c5621661df0f1d07e0c642 /src | |
| parent | 578846a3f815853348703ab5fb6ac24c9c817645 (diff) | |
| download | emacs-f5613d1efd0c380f494d1f0625478277728d70d9.tar.gz emacs-f5613d1efd0c380f494d1f0625478277728d70d9.zip | |
(syms_of_keyboard) <this-original-command>: Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 7 |
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. |
| 10876 | The value of `this-command' is the result of looking up the original | 10876 | It equals `this-command' if the original command was not remapped through |
| 10877 | command in the active keymaps. */); | 10877 | any of the active keymaps. Otherwise, the value of `this-command' is the |
| 10878 | result 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, |