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

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

bug#23007: 24.5; buggy interactive search with middle click


From: Drew Adams
Subject: bug#23007: 24.5; buggy interactive search with middle click
Date: Mon, 29 May 2017 17:41:43 -0700 (PDT)

> > +      (let ((overriding-terminal-local-map nil))
> > +        (setq binding (key-binding (this-command-keys-vector) t)))
> 
> IMO, it would be better style to do something like
> 
> (let ((binding (let ((overriding-terminal-local-map nil))
>                  (key-binding (this-command-keys-vector) t))))
>   ...)
 
(let* ((overriding-terminal-local-map nil)
       (binding (key-binding (this-command-keys-vector) t)))
  ...)

;-)





reply via email to

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