summaryrefslogtreecommitdiff
path: root/lisp/ido.el
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2015-11-18 09:17:20 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2015-11-18 09:17:55 -0800
commitbb4303c536a2ac5fe683a711ef8072074f77670e (patch)
treeb2d254f657728f61262d3b6fe58d972756fcc292 /lisp/ido.el
parent3e309ad86c8f11765d28a875bb2299d0e214d16d (diff)
downloademacs-bb4303c536a2ac5fe683a711ef8072074f77670e.tar.gz
Quote symbols in docstrings using `'
Be more systematic about quoting symbols `like-this' rather than `like-this or 'like-this' in docstrings. This follows up Artur Malabarba's email in: http://lists.gnu.org/archive/html/emacs-devel/2015-11/msg01647.html
Diffstat (limited to 'lisp/ido.el')
-rw-r--r--lisp/ido.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ido.el b/lisp/ido.el
index 22025e2eb51..a254b4fefcf 100644
--- a/lisp/ido.el
+++ b/lisp/ido.el
@@ -756,7 +756,7 @@ matching item, even without typing a slash."
(defcustom ido-create-new-buffer 'prompt
"Specify whether a new buffer is created if no buffer matches substring.
Choices are `always' to create new buffers unconditionally, `prompt' to
-ask user whether to create buffer, or 'never to never create new buffer."
+ask user whether to create buffer, or `never' to never create new buffer."
:type '(choice (const always)
(const prompt)
(const never))