diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-07-19 03:42:12 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-07-19 03:42:12 +0000 |
commit | 2b1c5e1217503a4c1bd2ef312da494a5dcac2a02 (patch) | |
tree | d1bbe2a079f03be76b5da349aa37fb4022370303 /lisp/emacs-lisp/backquote.el | |
parent | 7d179cea040efc43c5d0723c0497ddbfa70c594c (diff) | |
download | emacs-2b1c5e1217503a4c1bd2ef312da494a5dcac2a02.tar.gz emacs-2b1c5e1217503a4c1bd2ef312da494a5dcac2a02.tar.bz2 emacs-2b1c5e1217503a4c1bd2ef312da494a5dcac2a02.zip |
(backquote): Doc fix.
Diffstat (limited to 'lisp/emacs-lisp/backquote.el')
-rw-r--r-- | lisp/emacs-lisp/backquote.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/backquote.el b/lisp/emacs-lisp/backquote.el index 537c3b64e19..b625fdb9794 100644 --- a/lisp/emacs-lisp/backquote.el +++ b/lisp/emacs-lisp/backquote.el @@ -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))) |