aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/mouse.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/mouse.el b/lisp/mouse.el
index 145eb76446f..043c78578db 100644
--- a/lisp/mouse.el
+++ b/lisp/mouse.el
@@ -777,8 +777,8 @@ If the click is in the echo area, display the `*Messages*' buffer."
777 777
778(defun mouse-on-link-p (pos) 778(defun mouse-on-link-p (pos)
779 "Return non-nil if POS is on a link in the current buffer. 779 "Return non-nil if POS is on a link in the current buffer.
780POS must be a buffer position in the current buffer or an mouse 780POS must be a buffer position in the current buffer or a mouse
781event location in the selected window, see `event-start'. 781event location in the selected window (see `event-start').
782However, if `mouse-1-click-in-non-selected-windows' is non-nil, 782However, if `mouse-1-click-in-non-selected-windows' is non-nil,
783POS may be a mouse event location in any window. 783POS may be a mouse event location in any window.
784 784
@@ -798,7 +798,7 @@ is a non-nil `mouse-face' property at POS. Return t in this case.
798 798
799- If the value is a function, FUNC, POS is inside a link if 799- If the value is a function, FUNC, POS is inside a link if
800the call \(FUNC POS) returns non-nil. Return the return value 800the call \(FUNC POS) returns non-nil. Return the return value
801from that call. Arg is \(posn-point POS) if POS is a mouse event, 801from that call. Arg is \(posn-point POS) if POS is a mouse event.
802 802
803- Otherwise, return the value itself. 803- Otherwise, return the value itself.
804 804