comparison lisp/emacs-lisp/backquote.el @ 12606:410385a28fb8

(backquote): Doc fix.
author Richard M. Stallman <rms@gnu.org>
date Wed, 19 Jul 1995 03:42:12 +0000
parents ac7375e60931
children 84acc3adcd63
comparison
equal deleted inserted replaced
12605:c5798bb57fdd 12606:410385a28fb8
101 101
102 For example: 102 For example:
103 103
104 b => (ba bb bc) ; assume b has this value 104 b => (ba bb bc) ; assume b has this value
105 `(a b c) => (a b c) ; backquote acts like quote 105 `(a b c) => (a b c) ; backquote acts like quote
106 `(a (, b) c) => (a (ba bb bc) c) ; insert the value of b 106 `(a ,b c) => (a (ba bb bc) c) ; insert the value of b
107 `(a (,@ b) c) => (a ba bb bc c) ; splice in the value of b 107 `(a ,@b c) => (a ba bb bc c) ; splice in the value of b
108 108
109 Vectors work just like lists. Nested backquotes are permitted." 109 Vectors work just like lists. Nested backquotes are permitted."
110 (cdr (backquote-process arg))) 110 (cdr (backquote-process arg)))
111 111
112 ;; GNU Emacs has no reader macros 112 ;; GNU Emacs has no reader macros