Mercurial > emacs
changeset 86169:fb6683560bac
(backquote): Improve argument/docstring consistency.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Sat, 17 Nov 2007 02:49:49 +0000 |
parents | e20f2f0875e8 |
children | e6b555f6c76b |
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 Sat Nov 17 01:27:52 2007 +0000 +++ b/lisp/emacs-lisp/backquote.el Sat Nov 17 02:49:49 2007 +0000 @@ -92,7 +92,7 @@ "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 @@ `(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