bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#47755: 27.1; mouse-yank-at-click fails


From: Gregory Heytings
Subject: bug#47755: 27.1; mouse-yank-at-click fails
Date: Tue, 13 Apr 2021 20:57:20 +0000


You should see error "Lisp nesting exceeds `max-lisp-eval-depth`"

It's an infinite recursion inside isearch-mouse-2.

This is because let-binding overriding-terminal-local-map to nil

 (let ((overriding-terminal-local-map nil))
   (key-binding (this-command-keys-vector) t))

doesn't disable its current value anymore.

No, it's because commit 57b14370cd added isearch-mode to minor-mode-map-alist without let-binding it to nil in isearch-mouse-2. Patch attached.


Patch attached now ;-)

Attachment: Fix-Bug-47755-in-Isearch.patch
Description: Text Data


reply via email to

[Prev in Thread] Current Thread [Next in Thread]