Fix minor quoting problems in doc strings

Most of these fixes involve escaping grave accents that are
actually intended to be grave accents, not left quotes.
(Bug#20385)
This commit is contained in:
Paul Eggert 2015-05-28 00:06:14 -07:00
parent 0fd5e6593a
commit dfc2ef11a8
37 changed files with 195 additions and 195 deletions

View file

@ -343,7 +343,7 @@ definitions to shadow the loaded ones for use in file byte-compilation."
(defmacro macroexp-let2 (test var exp &rest exps)
"Bind VAR to a copyable expression that returns the value of EXP.
This is like `(let ((v ,EXP)) ,EXPS) except that `v' is a new generated
This is like \\=`(let ((v ,EXP)) ,EXPS) except that `v' is a new generated
symbol which EXPS can find in VAR.
TEST should be the name of a predicate on EXP checking whether the `let' can
be skipped; if nil, as is usual, `macroexp-const-p' is used."