diff options
| author | Bastien Guerry | 2014-01-13 23:24:29 +0100 |
|---|---|---|
| committer | Bastien Guerry | 2014-01-13 23:24:29 +0100 |
| commit | 7199b6d4f8e8133459e45985f1eb49b25038d317 (patch) | |
| tree | e7fa7af4ece406b9fc6a879b94bd2994c74d8d2c | |
| parent | ae93878a926442f695ac1f96f316247ff8eccc3a (diff) | |
| download | emacs-7199b6d4f8e8133459e45985f1eb49b25038d317.tar.gz emacs-7199b6d4f8e8133459e45985f1eb49b25038d317.zip | |
Fix/enhance `define-alternatives' docstring again
| -rw-r--r-- | lisp/simple.el | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index 8ff6b9c55f4..ceddfc6421a 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -7659,14 +7659,15 @@ warning using STRING as the message.") | |||
| 7659 | The argument `COMMAND' should be a symbol. | 7659 | The argument `COMMAND' should be a symbol. |
| 7660 | 7660 | ||
| 7661 | Running `M-x COMMAND RET' for the first time prompts for which | 7661 | Running `M-x COMMAND RET' for the first time prompts for which |
| 7662 | alternative to use and record the selected command as a custom | 7662 | alternative to use and records the selected command as a custom |
| 7663 | variable. | 7663 | variable. |
| 7664 | 7664 | ||
| 7665 | Running `C-u M-x COMMAND RET' prompts again and overwrite the | 7665 | Running `C-u M-x COMMAND RET' prompts again for an alternative |
| 7666 | previous choice. | 7666 | and overwrites the previous choice. |
| 7667 | 7667 | ||
| 7668 | The variable `COMMAND-alternatives' contains an alist with | 7668 | The variable `COMMAND-alternatives' contains an alist with |
| 7669 | alternative implementations of COMMAND. | 7669 | alternative implementations of COMMAND. `define-alternatives' |
| 7670 | does not have any effect until this variable is set. | ||
| 7670 | 7671 | ||
| 7671 | CUSTOMIZATIONS, if non-nil, should be composed of alternating | 7672 | CUSTOMIZATIONS, if non-nil, should be composed of alternating |
| 7672 | `defcustom' keywords and values to add to the declaration of | 7673 | `defcustom' keywords and values to add to the declaration of |