aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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.