]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/subr.el (event-start, event-end): Handle `(menu-bar)` events
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 22 Nov 2021 19:23:26 +0000 (14:23 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 22 Nov 2021 19:23:42 +0000 (14:23 -0500)
* lisp/net/browse-url.el (browse-url-interactive-arg): Simplify accordingly

lisp/net/browse-url.el
lisp/subr.el

index 19afb8133171d4399bc8a8d9d3ff85e5e51dbbab..011e43c447b958ec63cb3bca862d52664b728848 100644 (file)
@@ -737,8 +737,7 @@ position clicked before acting.
 This function returns a list (URL NEW-WINDOW-FLAG)
 for use in `interactive'."
   (let ((event (elt (this-command-keys) 0)))
-    (when (mouse-event-p event)
-      (mouse-set-point event)))
+    (mouse-set-point event))
   (list (read-string prompt (or (and transient-mark-mode mark-active
                                     ;; rfc2396 Appendix E.
                                     (replace-regexp-in-string
index 867db47a47e7cf332060d81a06c396176e19fedb..06ea503da6ac44ab3dac8b83af52a5affdbcae4e 100644 (file)
@@ -1553,22 +1553,22 @@ nil or (STRING . POSITION)'.
 `posn-timestamp': The time the event occurred, in milliseconds.
 
 For more information, see Info node `(elisp)Click Events'."
-  (if (consp event) (nth 1 event)
-    ;; Use `window-point' for the case when the current buffer
-    ;; is temporarily switched to some other buffer (bug#50256)
-    (or (posn-at-point (window-point))
-        (list (selected-window) (window-point) '(0 . 0) 0))))
+  (or (and (consp event) (nth 1 event))
+      ;; Use `window-point' for the case when the current buffer
+      ;; is temporarily switched to some other buffer (bug#50256)
+      (posn-at-point (window-point))
+      (list (selected-window) (window-point) '(0 . 0) 0)))
 
 (defun event-end (event)
   "Return the ending position of EVENT.
 EVENT should be a click, drag, or key press event.
 
 See `event-start' for a description of the value returned."
-  (if (consp event) (nth (if (consp (nth 2 event)) 2 1) event)
-    ;; Use `window-point' for the case when the current buffer
-    ;; is temporarily switched to some other buffer (bug#50256)
-    (or (posn-at-point (window-point))
-        (list (selected-window) (window-point) '(0 . 0) 0))))
+  (or (and (consp event) (nth (if (consp (nth 2 event)) 2 1) event))
+      ;; Use `window-point' for the case when the current buffer
+      ;; is temporarily switched to some other buffer (bug#50256)
+      (posn-at-point (window-point))
+      (list (selected-window) (window-point) '(0 . 0) 0)))
 
 (defsubst event-click-count (event)
   "Return the multi-click count of EVENT, a click or drag event.