diff options
| author | Lars Ingebrigtsen | 2014-02-09 22:56:03 -0800 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2014-02-09 22:56:03 -0800 |
| commit | 410155240f40333f38fbf170a844963b586cf09e (patch) | |
| tree | 295bb67382b8008bc35712446c158b56736cea32 | |
| parent | 87c79dcb464250600234aa17f941d81f8028d9c3 (diff) | |
| download | emacs-410155240f40333f38fbf170a844963b586cf09e.tar.gz emacs-410155240f40333f38fbf170a844963b586cf09e.zip | |
* subr.el (event-start): Say what a nil EVENT value means.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/subr.el | 3 |
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 @@ | |||
| 1 | 2014-02-10 Lars Ingebrigtsen <larsi@gnus.org> | 1 | 2014-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. |
| 1022 | EVENT should be a mouse click, drag, or key press event. | 1022 | EVENT should be a mouse click, drag, or key press event. If |
| 1023 | EVENT is nil, the value of `posn-at-point' is used instead. | ||
| 1023 | 1024 | ||
| 1024 | The following accessor functions are used to access the elements | 1025 | The following accessor functions are used to access the elements |
| 1025 | of the position: | 1026 | of the position: |