summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/backquote.el
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2015-05-28 00:44:32 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2015-05-28 00:45:00 -0700
commit4643f6c21a88d27cfb8a3410494bfd7909a98462 (patch)
treee63074a2e35341dc2625cce19e9513b5b3606e18 /lisp/emacs-lisp/backquote.el
parent89ab85f2f499126f025c6780c6ac22458f593a27 (diff)
downloademacs-4643f6c21a88d27cfb8a3410494bfd7909a98462.tar.gz
emacs-4643f6c21a88d27cfb8a3410494bfd7909a98462.tar.bz2
emacs-4643f6c21a88d27cfb8a3410494bfd7909a98462.zip
A few more doc string fixes (Bug#20385)
Diffstat (limited to 'lisp/emacs-lisp/backquote.el')
-rw-r--r--lisp/emacs-lisp/backquote.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/backquote.el b/lisp/emacs-lisp/backquote.el
index d5cdca2b1b5..dc61e156130 100644
--- a/lisp/emacs-lisp/backquote.el
+++ b/lisp/emacs-lisp/backquote.el
@@ -99,9 +99,9 @@ places where expressions are evaluated and inserted or spliced in.
For example:
b => (ba bb bc) ; assume b has this value
-`(a b c) => (a b c) ; backquote acts like quote
-`(a ,b c) => (a (ba bb bc) c) ; insert the value of b
-`(a ,@b c) => (a ba bb bc c) ; splice in the value of b
+\\=`(a b c) => (a b c) ; backquote acts like quote
+\\=`(a ,b c) => (a (ba bb bc) c) ; insert the value of b
+\\=`(a ,@b c) => (a ba bb bc c) ; splice in the value of b
Vectors work just like lists. Nested backquotes are permitted."
(cdr (backquote-process structure)))