diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2015-05-21 10:04:45 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2015-05-21 10:06:44 -0700 |
commit | 96794d2f97cd064e4c2bf4f71459b42558cc8c79 (patch) | |
tree | ae2d3836af726636586f4ed21dbdfcb079715777 /lisp/emacs-lisp/cl-indent.el | |
parent | fc071bf7c6a300f52142b92cf99c5a0e63b3e235 (diff) | |
download | emacs-96794d2f97cd064e4c2bf4f71459b42558cc8c79.tar.gz emacs-96794d2f97cd064e4c2bf4f71459b42558cc8c79.tar.bz2 emacs-96794d2f97cd064e4c2bf4f71459b42558cc8c79.zip |
Don't quote nil and t in doc strings
This is as per "Tips for Documentation Strings" in the elisp manual.
For consistency, do the same in diagnostics and comments.
Diffstat (limited to 'lisp/emacs-lisp/cl-indent.el')
-rw-r--r-- | lisp/emacs-lisp/cl-indent.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/cl-indent.el b/lisp/emacs-lisp/cl-indent.el index 5e75406cf22..57da7159d5c 100644 --- a/lisp/emacs-lisp/cl-indent.el +++ b/lisp/emacs-lisp/cl-indent.el @@ -140,13 +140,13 @@ If non-nil, alignment is done with the first parameter (defcustom lisp-indent-backquote-substitution-mode t "How to indent substitutions in backquotes. -If `t', the default, indent substituted forms normally. -If `nil', do not apply special indentation rule to substituted +If t, the default, indent substituted forms normally. +If nil, do not apply special indentation rule to substituted forms. If `corrected', subtract the `,' or `,@' from the form column, indenting as if this character sequence were not present. In any case, do not backtrack beyond a backquote substitution. -Until Emacs 25.1, the `nil' behavior was hard-wired." +Until Emacs 25.1, the nil behavior was hard-wired." :version "25.1" :type '(choice (const corrected) (const nil) (const t)) :group 'lisp-indent) |