]> git.eshelyaron.com Git - emacs.git/commitdiff
(backquote): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Wed, 19 Jul 1995 03:42:12 +0000 (03:42 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 19 Jul 1995 03:42:12 +0000 (03:42 +0000)
lisp/emacs-lisp/backquote.el

index 537c3b64e192af4be0cb1ae97c9d28bcfe4b3db1..b625fdb9794b76c556960fe597ad7a408faaa027 100644 (file)
@@ -103,8 +103,8 @@ 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 (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 arg)))