about summary refs log tree commit diff
path: root/exwm-input.el
diff options
context:
space:
mode:
authorNacho Barrientos <nacho.barrientos@cern.ch>2022-12-11T11·23+0100
committerAdrián Medraño Calvo <adrian@medranocalvo.com>2023-06-09T00·00+0000
commit4d5b0e81cd0f990c6bb1ef4d17dd7e5e1f63ba6b (patch)
treef268abd4e328f4797f5a03f4f9a6974365b6f472 /exwm-input.el
parentb62d5e79b0c1799f2cd941b4cec5bf8492cb322c (diff)
Make sure the buffer that generates the event is current
* exwm-input.el (exwm-input--on-ButtonPress): Set current buffer
when running pre- and post-command hooks.
Diffstat (limited to 'exwm-input.el')
-rw-r--r--exwm-input.el9
1 files changed, 6 insertions, 3 deletions
diff --git a/exwm-input.el b/exwm-input.el
index 79bc78ef0f..ab22d60a38 100644
--- a/exwm-input.el
+++ b/exwm-input.el
@@ -452,9 +452,12 @@ ARGS are additional arguments to CALLBACK."
             (t
              ;; Replay this event by default.
              (setq fake-last-command t)
-             (setq mode xcb:Allow:ReplayPointer))))
-    (when fake-last-command
-      (exwm-input--fake-last-command))
+             (setq mode xcb:Allow:ReplayPointer)))
+      (when fake-last-command
+        (if buffer
+            (with-current-buffer buffer
+              (exwm-input--fake-last-command))
+          (exwm-input--fake-last-command))))
     (xcb:+request exwm--connection
         (make-instance 'xcb:AllowEvents :mode mode :time xcb:Time:CurrentTime))
     (xcb:flush exwm--connection))