summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Gramiak <agrambot@gmail.com>2017-10-05 13:50:02 +0300
committerEli Zaretskii <eliz@gnu.org>2017-10-05 13:50:02 +0300
commitc625fb645afc75fb2b2ece771feb9472937c192d (patch)
tree3bb0415c72d2035654a5c0ab7a00ce4a15ca57fd
parente3f4b71c9de72bce59b4b7cb71627b626e82b573 (diff)
downloademacs-c625fb645afc75fb2b2ece771feb9472937c192d.tar.gz
Set xterm click count to 1 even with no last click
* lisp/xt-mouse.el (xterm-mouse-event): Move the check for the last click so that click-count is initialized properly. Handle the value of t for double-click-time. (Bug#28658)
-rw-r--r--lisp/xt-mouse.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/xt-mouse.el b/lisp/xt-mouse.el
index 772a72d5c50..d268e1a3fe7 100644
--- a/lisp/xt-mouse.el
+++ b/lisp/xt-mouse.el
@@ -288,8 +288,10 @@ which is the \"1006\" extension implemented in Xterm >= 277."
(string-match "down-" last-name)
(equal name (replace-match "" t t last-name)))
(xterm-mouse--set-click-count event click-count)))
- ((not last-time) nil)
- ((and (> double-click-time (* 1000 (- this-time last-time)))
+ ((and last-time
+ double-click-time
+ (or (eq double-click-time t)
+ (> double-click-time (* 1000 (- this-time last-time))))
(equal last-name (replace-match "" t t name)))
(setq click-count (1+ click-count))
(xterm-mouse--set-click-count event click-count))