diff lisp/emacs-lisp/backquote.el @ 91204:53108e6cea98

Merge from emacs--devo--0 Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-294
author Miles Bader <miles@gnu.org>
date Thu, 06 Dec 2007 09:51:45 +0000
parents b83d0dadb2a7 fb6683560bac
children 606f2d163a64
line wrap: on
line diff
--- a/lisp/emacs-lisp/backquote.el	Thu Dec 06 07:36:30 2007 +0000
+++ b/lisp/emacs-lisp/backquote.el	Thu Dec 06 09:51:45 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