diff options
| author | Kim F. Storm | 2005-01-12 10:54:02 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2005-01-12 10:54:02 +0000 |
| commit | b41a40196b340cd97700dacbdfc90d7c8393eb38 (patch) | |
| tree | 36703a43ba2c8af896b412f28dcc970612b557dd | |
| parent | a0ec7b7fd7547511c5c06c8a72e644004189ae55 (diff) | |
| download | emacs-b41a40196b340cd97700dacbdfc90d7c8393eb38.tar.gz emacs-b41a40196b340cd97700dacbdfc90d7c8393eb38.zip | |
More doc fixes.
| -rw-r--r-- | lisp/mouse.el | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/lisp/mouse.el b/lisp/mouse.el index 53bfc38d508..edf75753062 100644 --- a/lisp/mouse.el +++ b/lisp/mouse.el | |||
| @@ -771,22 +771,24 @@ If the click is in the echo area, display the `*Messages*' buffer." | |||
| 771 | 771 | ||
| 772 | A clickable link is identified by one of the following methods: | 772 | A clickable link is identified by one of the following methods: |
| 773 | 773 | ||
| 774 | If the character at POS has a non-nil `follow-link' text or | 774 | - If the character at POS has a non-nil `follow-link' text or |
| 775 | overlay property, use the value of that property as action code, | 775 | overlay property, use the value of that property determines what |
| 776 | or if there is a local key-binding or a keybinding at position | 776 | to do. |
| 777 | POS for the `follow-link' event, use the binding of that event as | ||
| 778 | action code. | ||
| 779 | 777 | ||
| 780 | The action code is used to determine whether POS is inside a link: | 778 | - If there is a local key-binding or a keybinding at position POS |
| 779 | for the `follow-link' event, the binding of that event determines | ||
| 780 | what to do. | ||
| 781 | 781 | ||
| 782 | - If the action code is `mouse-face', POS is inside a link if there | 782 | The resulting value determine whether POS is inside a link: |
| 783 | |||
| 784 | - If the value is `mouse-face', POS is inside a link if there | ||
| 783 | is a non-nil `mouse-face' property at POS. Return t in this case. | 785 | is a non-nil `mouse-face' property at POS. Return t in this case. |
| 784 | 786 | ||
| 785 | - If the action code is a function, FUNC, POS is inside a link if | 787 | - If the value is a function, FUNC, POS is inside a link if |
| 786 | the call \(FUNC POS) returns non-nil. Return the return value | 788 | the call \(FUNC POS) returns non-nil. Return the return value |
| 787 | from that call. | 789 | from that call. |
| 788 | 790 | ||
| 789 | - Otherwise, return the action code itself. | 791 | - Otherwise, return the value itself. |
| 790 | 792 | ||
| 791 | The return value is interpreted as follows: | 793 | The return value is interpreted as follows: |
| 792 | 794 | ||