diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2015-05-28 00:44:32 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2015-05-28 00:45:00 -0700 |
commit | 4643f6c21a88d27cfb8a3410494bfd7909a98462 (patch) | |
tree | e63074a2e35341dc2625cce19e9513b5b3606e18 /lisp/emacs-lisp/backquote.el | |
parent | 89ab85f2f499126f025c6780c6ac22458f593a27 (diff) | |
download | emacs-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.el | 6 |
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))) |