diff options
| author | Lars Ingebrigtsen | 2014-02-08 19:51:23 -0800 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2014-02-08 19:51:23 -0800 |
| commit | 790aceec52d6acc2c4de19ddd6d8b4f63dd5c1d0 (patch) | |
| tree | 0afe074349610e6f47949a367fdebd2c1894e50a | |
| parent | c359b7bd77cba2b4a90fec69af577f22ebe88b69 (diff) | |
| download | emacs-790aceec52d6acc2c4de19ddd6d8b4f63dd5c1d0.tar.gz emacs-790aceec52d6acc2c4de19ddd6d8b4f63dd5c1d0.zip | |
* repeat.el (repeat-message-function): Reword doc slightly.
Fixes: debbugs:11619
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/repeat.el | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index dae61985be1..1dc72289788 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2014-02-09 Lars Ingebrigtsen <larsi@gnus.org> | 1 | 2014-02-09 Lars Ingebrigtsen <larsi@gnus.org> |
| 2 | 2 | ||
| 3 | * repeat.el (repeat-message-function): Reword doc slightly (bug#11619). | ||
| 4 | |||
| 3 | * icomplete.el (icomplete-with-completion-tables): Doc fix (bug#11654). | 5 | * icomplete.el (icomplete-with-completion-tables): Doc fix (bug#11654). |
| 4 | (icomplete-simple-completing-p): Mention the previous variable. | 6 | (icomplete-simple-completing-p): Mention the previous variable. |
| 5 | 7 | ||
diff --git a/lisp/repeat.el b/lisp/repeat.el index 4f46ee64285..e73531695d4 100644 --- a/lisp/repeat.el +++ b/lisp/repeat.el | |||
| @@ -109,9 +109,9 @@ | |||
| 109 | (defvar repeat-message-function nil | 109 | (defvar repeat-message-function nil |
| 110 | "If non-nil, function used by `repeat' command to say what it's doing. | 110 | "If non-nil, function used by `repeat' command to say what it's doing. |
| 111 | Message is something like \"Repeating command glorp\". | 111 | Message is something like \"Repeating command glorp\". |
| 112 | To disable such messages, set this variable to `ignore'. To customize | 112 | A value of `ignore' will disable such messages. To customize |
| 113 | display, assign a function that takes one string as an arg and displays | 113 | display, assign a function that takes one string as an arg and |
| 114 | it however you want.") | 114 | displays it however you want.") |
| 115 | 115 | ||
| 116 | (defcustom repeat-on-final-keystroke t | 116 | (defcustom repeat-on-final-keystroke t |
| 117 | "Allow `repeat' to re-execute for repeating lastchar of a key sequence. | 117 | "Allow `repeat' to re-execute for repeating lastchar of a key sequence. |