Fix docstring quoting problems with ‘ '’
Problem reported by Artur Malabarba in: http://lists.gnu.org/archive/html/emacs-devel/2015-11/msg01513.html Most of these fixes are to documentation; many involve fixing longstanding quoting glitches that are independent of the recent substitute-command-keys changes. The changes to code are: * lisp/cedet/mode-local.el (mode-local-augment-function-help) (describe-mode-local-overload): Substitute docstrings before displaying them. * lisp/emacs-lisp/cl-macs.el (cl--transform-lambda): Quote the generated docstring for later substitution.
This commit is contained in:
parent
abf673af29
commit
ac16149ba4
142 changed files with 432 additions and 430 deletions
|
@ -148,7 +148,7 @@ BODY contains code to execute each time the mode is enabled or disabled.
|
|||
|
||||
For example, you could write
|
||||
(define-minor-mode foo-mode \"If enabled, foo on you!\"
|
||||
:lighter \" Foo\" :require 'foo :global t :group 'hassle :version \"27.5\"
|
||||
:lighter \" Foo\" :require \\='foo :global t :group \\='hassle :version \"27.5\"
|
||||
...BODY CODE...)"
|
||||
(declare (doc-string 2)
|
||||
(debug (&define name string-or-null-p
|
||||
|
@ -502,7 +502,7 @@ Valid keywords and arguments are:
|
|||
:inherit Parent keymap.
|
||||
:group Ignored.
|
||||
:suppress Non-nil to call `suppress-keymap' on keymap,
|
||||
'nodigits to suppress digits as prefix arguments."
|
||||
`nodigits' to suppress digits as prefix arguments."
|
||||
(let (inherit dense suppress)
|
||||
(while args
|
||||
(let ((key (pop args))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue