diff options
| author | Thien-Thi Nguyen | 2006-07-23 21:13:13 +0000 |
|---|---|---|
| committer | Thien-Thi Nguyen | 2006-07-23 21:13:13 +0000 |
| commit | 23eb76c4f7f00bb6c2b7876bf3de95a4340450ba (patch) | |
| tree | 3ed38581403653fc21d4437a315c5b224510434e | |
| parent | 7358462606bab3c5c33dccc133770955bc68bc90 (diff) | |
| download | emacs-23eb76c4f7f00bb6c2b7876bf3de95a4340450ba.tar.gz emacs-23eb76c4f7f00bb6c2b7876bf3de95a4340450ba.zip | |
(mouse-on-link-p): Doc fix.
| -rw-r--r-- | lisp/mouse.el | 6 |
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. |
| 780 | POS must be a buffer position in the current buffer or an mouse | 780 | POS must be a buffer position in the current buffer or a mouse |
| 781 | event location in the selected window, see `event-start'. | 781 | event location in the selected window (see `event-start'). |
| 782 | However, if `mouse-1-click-in-non-selected-windows' is non-nil, | 782 | However, if `mouse-1-click-in-non-selected-windows' is non-nil, |
| 783 | POS may be a mouse event location in any window. | 783 | POS 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 |
| 800 | the call \(FUNC POS) returns non-nil. Return the return value | 800 | the call \(FUNC POS) returns non-nil. Return the return value |
| 801 | from that call. Arg is \(posn-point POS) if POS is a mouse event, | 801 | from 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 | ||