diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2007-11-17 02:49:49 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2007-11-17 02:49:49 +0000 |
commit | 82bb5643229173955379d4b51cd25fee547046df (patch) | |
tree | ea53835da825cc8adf8da59cdc6262f294197c42 /lisp | |
parent | 934b49686de4d606e69fb6a2acbffdf3a7e62997 (diff) | |
download | emacs-82bb5643229173955379d4b51cd25fee547046df.tar.gz emacs-82bb5643229173955379d4b51cd25fee547046df.tar.bz2 emacs-82bb5643229173955379d4b51cd25fee547046df.zip |
(backquote): Improve argument/docstring consistency.
Diffstat (limited to 'lisp')
-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 a2a929d9601..4940e2fd8c6 100644 --- a/lisp/emacs-lisp/backquote.el +++ b/lisp/emacs-lisp/backquote.el @@ -92,7 +92,7 @@ For example (backquote-list* 'a 'b 'c) => (a b . c)" "Symbol used to represent a splice inside a backquote.") ;;;###autoload -(defmacro backquote (arg) +(defmacro backquote (structure) "Argument STRUCTURE describes a template to build. The whole structure acts as if it were quoted except for certain @@ -106,7 +106,7 @@ b => (ba bb bc) ; assume b has this value `(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))) + (cdr (backquote-process structure))) ;; GNU Emacs has no reader macros |