aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2005-01-12 10:54:02 +0000
committerKim F. Storm2005-01-12 10:54:02 +0000
commitb41a40196b340cd97700dacbdfc90d7c8393eb38 (patch)
tree36703a43ba2c8af896b412f28dcc970612b557dd
parenta0ec7b7fd7547511c5c06c8a72e644004189ae55 (diff)
downloademacs-b41a40196b340cd97700dacbdfc90d7c8393eb38.tar.gz
emacs-b41a40196b340cd97700dacbdfc90d7c8393eb38.zip
More doc fixes.
-rw-r--r--lisp/mouse.el20
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
772A clickable link is identified by one of the following methods: 772A clickable link is identified by one of the following methods:
773 773
774If 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
775overlay property, use the value of that property as action code, 775overlay property, use the value of that property determines what
776or if there is a local key-binding or a keybinding at position 776to do.
777POS for the `follow-link' event, use the binding of that event as
778action code.
779 777
780The 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
779for the `follow-link' event, the binding of that event determines
780what to do.
781 781
782- If the action code is `mouse-face', POS is inside a link if there 782The resulting value determine whether POS is inside a link:
783
784- If the value is `mouse-face', POS is inside a link if there
783is a non-nil `mouse-face' property at POS. Return t in this case. 785is 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
786the call \(FUNC POS) returns non-nil. Return the return value 788the call \(FUNC POS) returns non-nil. Return the return value
787from that call. 789from that call.
788 790
789- Otherwise, return the action code itself. 791- Otherwise, return the value itself.
790 792
791The return value is interpreted as follows: 793The return value is interpreted as follows:
792 794