aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2014-02-09 22:56:03 -0800
committerLars Ingebrigtsen2014-02-09 22:56:03 -0800
commit410155240f40333f38fbf170a844963b586cf09e (patch)
tree295bb67382b8008bc35712446c158b56736cea32
parent87c79dcb464250600234aa17f941d81f8028d9c3 (diff)
downloademacs-410155240f40333f38fbf170a844963b586cf09e.tar.gz
emacs-410155240f40333f38fbf170a844963b586cf09e.zip
* subr.el (event-start): Say what a nil EVENT value means.
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/subr.el3
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 81d8361366f..19c19fe77fa 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12014-02-10 Lars Ingebrigtsen <larsi@gnus.org> 12014-02-10 Lars Ingebrigtsen <larsi@gnus.org>
2 2
3 * subr.el (event-start): Say what a nil EVENT value means.
4
3 * kmacro.el (kmacro-bind-to-key): Say that the parameter is unused 5 * kmacro.el (kmacro-bind-to-key): Say that the parameter is unused
4 (bug#14197). 6 (bug#14197).
5 7
diff --git a/lisp/subr.el b/lisp/subr.el
index 1d2163267d3..745d0b2f572 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -1019,7 +1019,8 @@ in the current Emacs session, then this function may return nil."
1019 1019
1020(defun event-start (event) 1020(defun event-start (event)
1021 "Return the starting position of EVENT. 1021 "Return the starting position of EVENT.
1022EVENT should be a mouse click, drag, or key press event. 1022EVENT should be a mouse click, drag, or key press event. If
1023EVENT is nil, the value of `posn-at-point' is used instead.
1023 1024
1024The following accessor functions are used to access the elements 1025The following accessor functions are used to access the elements
1025of the position: 1026of the position: