aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2015-03-25 09:34:20 -0400
committerStefan Monnier2015-03-25 09:34:20 -0400
commit76040ddd8a4142e2933f1c24940d9e20c206ee6f (patch)
tree5bf3e4d0e6680bd1d861e9e8ddf73a79524c3dd4
parent176d864cbfb4110eff983dd0053b8401fb76e82c (diff)
downloademacs-76040ddd8a4142e2933f1c24940d9e20c206ee6f.tar.gz
emacs-76040ddd8a4142e2933f1c24940d9e20c206ee6f.zip
* lisp/xt-mouse.el (xterm-mouse--read-number-from-terminal): Fix last commit.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/xt-mouse.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 4fb1999e3e9..91decb31ff0 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12015-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * xt-mouse.el (xterm-mouse--read-number-from-terminal): Fix last commit.
4
12015-03-25 Nicolas Petton <nicolas@petton.fr> 52015-03-25 Nicolas Petton <nicolas@petton.fr>
2 6
3 * emacs-lisp/seq.el: Documentation improvements. 7 * emacs-lisp/seq.el: Documentation improvements.
diff --git a/lisp/xt-mouse.el b/lisp/xt-mouse.el
index 7f1e72260ae..344333a9408 100644
--- a/lisp/xt-mouse.el
+++ b/lisp/xt-mouse.el
@@ -170,7 +170,7 @@ The optional arguments PROMPT and SECONDS work like in
170 (<= ?0 c ?9)) 170 (<= ?0 c ?9))
171 (setq n (+ (* 10 n) c (- ?0)))) 171 (setq n (+ (* 10 n) c (- ?0))))
172 (cons n c)) 172 (cons n c))
173 (cons (- (setq c (read-utf8-char)) 32) c)))) 173 (cons (- (setq c (xterm-mouse--read-utf8-char)) 32) c))))
174 174
175;; XTerm reports mouse events as 175;; XTerm reports mouse events as
176;; <EVENT-CODE> <X> <Y> in default mode, and 176;; <EVENT-CODE> <X> <Y> in default mode, and