diff options
| author | Lars Ingebrigtsen | 2014-02-09 22:58:34 -0800 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2014-02-09 22:58:34 -0800 |
| commit | e3692ee0348f19dfc4b5376a34af0e229b60bd5c (patch) | |
| tree | 9cfed53c9110a74f28288c89e515f40f1939b6ee | |
| parent | 410155240f40333f38fbf170a844963b586cf09e (diff) | |
| download | emacs-e3692ee0348f19dfc4b5376a34af0e229b60bd5c.tar.gz emacs-e3692ee0348f19dfc4b5376a34af0e229b60bd5c.zip | |
* simple.el (choose-completion): Doc fix.
Fixes: debbugs:14160
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/simple.el | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 19c19fe77fa..27b313d7c78 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 | * simple.el (choose-completion): Doc fix (bug#14160). | ||
| 4 | |||
| 3 | * subr.el (event-start): Say what a nil EVENT value means. | 5 | * subr.el (event-start): Say what a nil EVENT value means. |
| 4 | 6 | ||
| 5 | * kmacro.el (kmacro-bind-to-key): Say that the parameter is unused | 7 | * kmacro.el (kmacro-bind-to-key): Say that the parameter is unused |
diff --git a/lisp/simple.el b/lisp/simple.el index 1bb0ca46ecd..c20bf134639 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -6913,7 +6913,8 @@ With prefix argument N, move N items (negative N means move backward)." | |||
| 6913 | (setq n (1+ n)))))) | 6913 | (setq n (1+ n)))))) |
| 6914 | 6914 | ||
| 6915 | (defun choose-completion (&optional event) | 6915 | (defun choose-completion (&optional event) |
| 6916 | "Choose the completion at point." | 6916 | "Choose the completion at point. |
| 6917 | If EVENT, use EVENTs position to determine the starting position." | ||
| 6917 | (interactive (list last-nonmenu-event)) | 6918 | (interactive (list last-nonmenu-event)) |
| 6918 | ;; In case this is run via the mouse, give temporary modes such as | 6919 | ;; In case this is run via the mouse, give temporary modes such as |
| 6919 | ;; isearch a chance to turn off. | 6920 | ;; isearch a chance to turn off. |