aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Kastrup2006-09-21 18:02:47 +0000
committerDavid Kastrup2006-09-21 18:02:47 +0000
commit89bf250ee6e2a8a21db58b9bf807f349047b06d7 (patch)
tree310f9458b8920546215e5e360293d2073aa82fb2
parent3e7678c825f4760d93f55e4a0923880ebd7ca2b5 (diff)
downloademacs-89bf250ee6e2a8a21db58b9bf807f349047b06d7.tar.gz
emacs-89bf250ee6e2a8a21db58b9bf807f349047b06d7.zip
(mouse-posn-property): Fix typo for `event-start' in
doc string.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/mouse.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 387a30b8ca8..7fbff94578e 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12006-09-21 David Kastrup <dak@gnu.org>
2
3 * mouse.el (mouse-posn-property): Fix typo for `event-start' in
4 doc string.
5
12006-09-21 Kim F. Storm <storm@cua.dk> 62006-09-21 Kim F. Storm <storm@cua.dk>
2 7
3 * emacs-lisp/cl.el (pushnew-internal): Remove defvar. 8 * emacs-lisp/cl.el (pushnew-internal): Remove defvar.
diff --git a/lisp/mouse.el b/lisp/mouse.el
index 18b16c6460d..0b6cccd86c6 100644
--- a/lisp/mouse.el
+++ b/lisp/mouse.el
@@ -778,7 +778,7 @@ If the click is in the echo area, display the `*Messages*' buffer."
778(defun mouse-posn-property (pos property) 778(defun mouse-posn-property (pos property)
779 "Look for a property at click position. 779 "Look for a property at click position.
780POS may be either a buffer position or a click position like 780POS may be either a buffer position or a click position like
781those returned from `start-event'. If the click position is on 781those returned from `event-start'. If the click position is on
782a string, the text property PROPERTY is examined. 782a string, the text property PROPERTY is examined.
783If this is nil or the click is not on a string, then 783If this is nil or the click is not on a string, then
784the corresponding buffer position is searched for PROPERTY. 784the corresponding buffer position is searched for PROPERTY.