summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/macroexp.el
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2015-05-28 00:06:14 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2015-05-28 00:22:03 -0700
commitdfc2ef11a84d33eab916ff87b8537f8e28c05c92 (patch)
treeb196ac609a67987d5e1e756860de51b4361c8bd2 /lisp/emacs-lisp/macroexp.el
parent0fd5e6593af620863dcf90dff5d04631458e24cd (diff)
downloademacs-dfc2ef11a84d33eab916ff87b8537f8e28c05c92.tar.gz
emacs-dfc2ef11a84d33eab916ff87b8537f8e28c05c92.tar.bz2
emacs-dfc2ef11a84d33eab916ff87b8537f8e28c05c92.zip
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)
Diffstat (limited to 'lisp/emacs-lisp/macroexp.el')
-rw-r--r--lisp/emacs-lisp/macroexp.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/macroexp.el b/lisp/emacs-lisp/macroexp.el
index f0410f87447..05ffa8d52cc 100644
--- a/lisp/emacs-lisp/macroexp.el
+++ b/lisp/emacs-lisp/macroexp.el
@@ -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."