[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#70938: 30.0.50; Edebug appropriates overriding-terminal-local-map
From: |
Michael Heerdegen |
Subject: |
bug#70938: 30.0.50; Edebug appropriates overriding-terminal-local-map |
Date: |
Wed, 15 May 2024 00:02:51 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) |
Michael Heerdegen via "Bug reports for GNU Emacs, the Swiss army knife
of text editors" <bug-gnu-emacs@gnu.org> writes:
> But what can we do - does anyone have a good idea? Could the cleanup
> code that removes the transient map maybe check whether the variable
> `overriding-terminal-local-map' it sees is really the global one?
Here is a recipe that doesn't involve Edebug (please use a separate
emacs session to try) but does the same thing:
#+begin_src emacs-lisp
(progn
(set-transient-map (let ((m (make-sparse-keymap)))
(define-key m [?^]
(lambda () (interactive) (message "Hmm...")))
m))
(let ((overriding-terminal-local-map nil))
(recursive-edit)))
#+end_src
After evaluating this, whenever one returns to top-level one is stuck
with the transient map (just hit ^ to check).
Michael.
- bug#70938: 30.0.50; Edebug appropriates overriding-terminal-local-map, Stephen Berman, 2024/05/14
- bug#70938: 30.0.50; Edebug appropriates overriding-terminal-local-map, Michael Heerdegen, 2024/05/14
- bug#70938: 30.0.50; Edebug appropriates overriding-terminal-local-map, Michael Heerdegen, 2024/05/14
- bug#70938: 30.0.50; Edebug appropriates overriding-terminal-local-map,
Michael Heerdegen <=
- bug#70938: 30.0.50; Edebug appropriates overriding-terminal-local-map, Michael Heerdegen, 2024/05/15
- bug#70938: 30.0.50; Edebug appropriates overriding-terminal-local-map, Stephen Berman, 2024/05/15
- bug#70938: 30.0.50; Edebug appropriates overriding-terminal-local-map, Stephen Berman, 2024/05/21
- bug#70938: 30.0.50; Edebug appropriates overriding-terminal-local-map, Michael Heerdegen, 2024/05/27
- bug#70938: 30.0.50; Edebug appropriates overriding-terminal-local-map, Stephen Berman, 2024/05/27