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

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

bug#17776: 24.3; bug? regression: xterm-mouse-mode does not work any mor


From: Stefan Monnier
Subject: bug#17776: 24.3; bug? regression: xterm-mouse-mode does not work any more with rxvt-unicode
Date: Wed, 18 Jun 2014 18:03:31 -0400
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.4.50 (gnu/linux)

> Great, thanks, so yes I can reproduce the problem here.
> It looks like rxvt-unicode uses yet some other escape sequences for
> mouse clicks which are not documented (but somehow worked) in the code.

No, it was just a dump error on my part in the last change.
I installed the patch below which fixes it.  Sorry, and thanks for
reporting it.


        Stefan


--- lisp/xt-mouse.el    2014-05-08 01:46:15 +0000
+++ lisp/xt-mouse.el    2014-06-18 21:58:58 +0000
@@ -76,7 +76,7 @@
             (is-down (string-match "down" (symbol-name (car down)))))
 
        ;; Retrieve the expected preface for the up-event.
-       (unless is-down
+       (when is-down
          (unless (cond ((null extension)
                         (and (eq (read-event) ?\e)
                              (eq (read-event) ?\[)





reply via email to

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