diff options
| author | David Kastrup | 2006-09-21 18:02:47 +0000 |
|---|---|---|
| committer | David Kastrup | 2006-09-21 18:02:47 +0000 |
| commit | 89bf250ee6e2a8a21db58b9bf807f349047b06d7 (patch) | |
| tree | 310f9458b8920546215e5e360293d2073aa82fb2 | |
| parent | 3e7678c825f4760d93f55e4a0923880ebd7ca2b5 (diff) | |
| download | emacs-89bf250ee6e2a8a21db58b9bf807f349047b06d7.tar.gz emacs-89bf250ee6e2a8a21db58b9bf807f349047b06d7.zip | |
(mouse-posn-property): Fix typo for `event-start' in
doc string.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/mouse.el | 2 |
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 @@ | |||
| 1 | 2006-09-21 David Kastrup <dak@gnu.org> | ||
| 2 | |||
| 3 | * mouse.el (mouse-posn-property): Fix typo for `event-start' in | ||
| 4 | doc string. | ||
| 5 | |||
| 1 | 2006-09-21 Kim F. Storm <storm@cua.dk> | 6 | 2006-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. |
| 780 | POS may be either a buffer position or a click position like | 780 | POS may be either a buffer position or a click position like |
| 781 | those returned from `start-event'. If the click position is on | 781 | those returned from `event-start'. If the click position is on |
| 782 | a string, the text property PROPERTY is examined. | 782 | a string, the text property PROPERTY is examined. |
| 783 | If this is nil or the click is not on a string, then | 783 | If this is nil or the click is not on a string, then |
| 784 | the corresponding buffer position is searched for PROPERTY. | 784 | the corresponding buffer position is searched for PROPERTY. |