changeset 12606:410385a28fb8

(backquote): Doc fix.
author Richard M. Stallman <rms@gnu.org>
date Wed, 19 Jul 1995 03:42:12 +0000
parents c5798bb57fdd
children 498ce026e14b
files lisp/emacs-lisp/backquote.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/emacs-lisp/backquote.el	Wed Jul 19 03:39:43 1995 +0000
+++ b/lisp/emacs-lisp/backquote.el	Wed Jul 19 03:42:12 1995 +0000
@@ -103,8 +103,8 @@
 
 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)))