diff options
author | Glenn Morris <rgm@gnu.org> | 2016-12-03 18:14:53 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2016-12-03 18:14:53 -0800 |
commit | c387127feea588ef3834cc5e933b5d4d61ecadc4 (patch) | |
tree | 09e31f193d0ccc242730466549e9dc4cb17d391f /lisp/emacs-lisp/subr-x.el | |
parent | 041afb2d37124c5a89e9abcf637a39087e480c9c (diff) | |
download | emacs-c387127feea588ef3834cc5e933b5d4d61ecadc4.tar.gz |
Fix markup in read-multiple-choice doc (Bug#25102)
* lisp/emacs-lisp/subr-x.el (read-multiple-choice): Doc fix.
Diffstat (limited to 'lisp/emacs-lisp/subr-x.el')
-rw-r--r-- | lisp/emacs-lisp/subr-x.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/subr-x.el b/lisp/emacs-lisp/subr-x.el index 7d1e1c9237a..fdcfa7091c4 100644 --- a/lisp/emacs-lisp/subr-x.el +++ b/lisp/emacs-lisp/subr-x.el @@ -219,7 +219,7 @@ The return value is the matching entry from the CHOICES list. Usage example: \(read-multiple-choice \"Continue connecting?\" - '((?a \"always\") + \\='((?a \"always\") (?s \"session only\") (?n \"no\")))" (let* ((altered-names nil) |