* lisp/xt-mouse.el (xterm-mouse--read-number-from-terminal): Fix last commit.
This commit is contained in:
parent
176d864cbf
commit
76040ddd8a
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2015-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* xt-mouse.el (xterm-mouse--read-number-from-terminal): Fix last commit.
|
||||
|
||||
2015-03-25 Nicolas Petton <nicolas@petton.fr>
|
||||
|
||||
* emacs-lisp/seq.el: Documentation improvements.
|
||||
|
|
|
@ -170,7 +170,7 @@ The optional arguments PROMPT and SECONDS work like in
|
|||
(<= ?0 c ?9))
|
||||
(setq n (+ (* 10 n) c (- ?0))))
|
||||
(cons n c))
|
||||
(cons (- (setq c (read-utf8-char)) 32) c))))
|
||||
(cons (- (setq c (xterm-mouse--read-utf8-char)) 32) c))))
|
||||
|
||||
;; XTerm reports mouse events as
|
||||
;; <EVENT-CODE> <X> <Y> in default mode, and
|
||||
|
|
Loading…
Add table
Reference in a new issue