lisp/term/xterm.el (xterm--query-name-and-version): Don't quote lambda
This commit is contained in:
parent
b58552ca98
commit
8d968c0f22
1 changed files with 4 additions and 4 deletions
|
@ -912,10 +912,10 @@ We run the first FUNCTION whose STRING matches the input events."
|
|||
(catch 'result
|
||||
(xterm--query
|
||||
"\e[>0q"
|
||||
'(("\eP>|" . (lambda ()
|
||||
;; The reply should be: \e P > | STRING \e \\
|
||||
(let ((str (xterm--read-string ?\e ?\\)))
|
||||
(throw 'result str))))))
|
||||
`(("\eP>|" . ,(lambda ()
|
||||
;; The reply should be: \e P > | STRING \e \\
|
||||
(let ((str (xterm--read-string ?\e ?\\)))
|
||||
(throw 'result str))))))
|
||||
nil)))
|
||||
|
||||
(defun xterm--push-map (map basemap)
|
||||
|
|
Loading…
Add table
Reference in a new issue