aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-tl.el
diff options
context:
space:
mode:
authorRahguzar <rahguzar@zohomail.eu>2024-09-30 15:12:12 +0500
committerRahguzar <rahguzar@zohomail.eu>2024-09-30 15:15:54 +0500
commit1b60a9ca18927769f30f7133d712d7459e7dd8ab (patch)
tree6efc20e9b963529625dbbfcaa60ebbf52cbb5602 /lisp/mastodon-tl.el
parent2a3255c48f8e3538a7604d96ebadb9e21b0b9c50 (diff)
Use interactive code to select event window
Diffstat (limited to 'lisp/mastodon-tl.el')
-rw-r--r--lisp/mastodon-tl.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el
index 4058abc..8c41414 100644
--- a/lisp/mastodon-tl.el
+++ b/lisp/mastodon-tl.el
@@ -1054,7 +1054,7 @@ Used for hitting RET on a given link."
(defun mastodon-tl--do-link-action (event)
"Do the action of the link at point.
Used for a mouse-click EVENT on a link."
- (interactive "e")
+ (interactive "@e")
(mastodon-tl--do-link-action-at-point (posn-point (event-end event))))
@@ -1443,7 +1443,7 @@ OPTIONS is an alist."
(defun mastodon-tl--click-image-or-video (event)
"Click to play video with `mpv.el'.
EVENT is a mouse-click arg."
- (interactive "e")
+ (interactive "@e")
(mastodon-tl--view-full-image-or-play-video
(posn-point (event-end event))))