emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/emacs-lisp/backquote.el,v


From: Juanma Barranquero
Subject: [Emacs-diffs] Changes to emacs/lisp/emacs-lisp/backquote.el,v
Date: Sat, 17 Nov 2007 02:49:50 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Juanma Barranquero <lektu>      07/11/17 02:49:49

Index: backquote.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/emacs-lisp/backquote.el,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -b -r1.42 -r1.43
--- backquote.el        27 Aug 2007 04:00:16 -0000      1.42
+++ backquote.el        17 Nov 2007 02:49:49 -0000      1.43
@@ -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
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]