diff options
author | Jared Finder <jared@finder.org> | 2025-02-19 09:41:44 +0200 |
---|---|---|
committer | Juri Linkov <juri@linkov.net> | 2025-02-27 21:01:14 +0200 |
commit | dbae1fc69f82ff481d1591d60a0c44cad354c3b3 (patch) | |
tree | d75fd64051dd16986a54beb782c375244f8a0c75 /lisp/subr.el | |
parent | 62b3d3136fae8830d63f69143b09e99b5173c537 (diff) | |
download | emacs-dbae1fc69f82ff481d1591d60a0c44cad354c3b3.tar.gz emacs-dbae1fc69f82ff481d1591d60a0c44cad354c3b3.tar.bz2 emacs-dbae1fc69f82ff481d1591d60a0c44cad354c3b3.zip |
* lisp/subr.el (read-key): Add 'tab-line' (bug#76408).
Backport:
(cherry picked from commit 0c8abe8bb5072c46a93585cb325c249f85f3d9c2)
Diffstat (limited to 'lisp/subr.el')
-rw-r--r-- | lisp/subr.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index 7552378a781..0394a333b44 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -3377,7 +3377,7 @@ only unbound fallback disabled is downcasing of the last event." nil nil t))) (key (aref keys 0))) (if (and (> (length keys) 1) - (memq key '(mode-line header-line + (memq key '(mode-line header-line tab-line left-fringe right-fringe))) (aref keys 1) key))) |