diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2023-02-01 06:30:39 +0100 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2023-02-01 06:30:39 +0100 |
commit | cfde8a1490072f43297af8f85b50f3b18db892ef (patch) | |
tree | feb63038f0d204b1a86c698ba62b8442e17ed47d /lisp | |
parent | f724fca732a61536c684d07f21ef34c0f7ca335e (diff) | |
parent | 66aa9cb450ae3f313e836eed27de553df736e0f3 (diff) | |
download | emacs-cfde8a1490072f43297af8f85b50f3b18db892ef.tar.gz emacs-cfde8a1490072f43297af8f85b50f3b18db892ef.tar.bz2 emacs-cfde8a1490072f43297af8f85b50f3b18db892ef.zip |
Merge from origin/emacs-29
66aa9cb450a ; (Ftreesit_query_capture): Fix typo
f711f4e99f7 (Ftreesit_query_capture): Cache list of predicates for gi...
47ab9ba55d7 * lisp/keymap.el (keymap-global-unset): Correct prompt
49b61405582 Fix cursor-in-echo-area on TTY frames
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/keymap.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/keymap.el b/lisp/keymap.el index caabedd5aec..de90b03ba64 100644 --- a/lisp/keymap.el +++ b/lisp/keymap.el @@ -107,7 +107,7 @@ If REMOVE (interactively, the prefix arg), remove the binding instead of unsetting it. See `keymap-unset' for details." (declare (compiler-macro (lambda (form) (keymap--compile-check key) form))) (interactive - (list (key-description (read-key-sequence "Set key locally: ")) + (list (key-description (read-key-sequence "Unset key globally: ")) current-prefix-arg)) (keymap-unset (current-global-map) key remove)) |