diff options
| author | Yuuki Harano | 2020-12-21 01:53:07 +0900 |
|---|---|---|
| committer | Yuuki Harano | 2020-12-21 01:53:07 +0900 |
| commit | 565d8f57d349c19d9bbb5d5d5fdacf3c70b85d42 (patch) | |
| tree | 5a25406b9f4ff091cb6856e857d2857bb3e631e4 /src/keyboard.c | |
| parent | a44cd7c88121bb0e04bdf13d73e15f085cf3b085 (diff) | |
| parent | 87b82a1969edf80d3bd4781454ec9fc968773a6d (diff) | |
| download | emacs-565d8f57d349c19d9bbb5d5d5fdacf3c70b85d42.tar.gz emacs-565d8f57d349c19d9bbb5d5d5fdacf3c70b85d42.zip | |
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs into feature/pgtk
Diffstat (limited to 'src/keyboard.c')
| -rw-r--r-- | src/keyboard.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index e8d0747210a..7f12449a39c 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -11838,6 +11838,13 @@ will be in `last-command' during the following command. */); | |||
| 11838 | doc: /* This is like `this-command', except that commands should never modify it. */); | 11838 | doc: /* This is like `this-command', except that commands should never modify it. */); |
| 11839 | Vreal_this_command = Qnil; | 11839 | Vreal_this_command = Qnil; |
| 11840 | 11840 | ||
| 11841 | DEFSYM (Qcurrent_minibuffer_command, "current-minibuffer-command"); | ||
| 11842 | DEFVAR_LISP ("current-minibuffer-command", Vcurrent_minibuffer_command, | ||
| 11843 | doc: /* This is like `this-command', but bound recursively. | ||
| 11844 | Code running from (for instance) a minibuffer hook can check this variable | ||
| 11845 | to see what command invoked the current minibuffer. */); | ||
| 11846 | Vcurrent_minibuffer_command = Qnil; | ||
| 11847 | |||
| 11841 | DEFVAR_LISP ("this-command-keys-shift-translated", | 11848 | DEFVAR_LISP ("this-command-keys-shift-translated", |
| 11842 | Vthis_command_keys_shift_translated, | 11849 | Vthis_command_keys_shift_translated, |
| 11843 | doc: /* Non-nil if the key sequence activating this command was shift-translated. | 11850 | doc: /* Non-nil if the key sequence activating this command was shift-translated. |