Revert last change in batch-update-authors.
authorEli Zaretskii <eliz@gnu.org>
Sat, 3 Apr 2010 09:04:46 +0000 (12:04 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 3 Apr 2010 09:04:46 +0000 (12:04 +0300)
lisp/ChangeLog
lisp/emacs-lisp/authors.el

index d65319e..8e40040 100644 (file)
@@ -2,7 +2,6 @@
 
        * emacs-lisp/authors.el (authors-fixed-entries): Add entry for Eli
        Zaretskii.
-       (batch-update-authors): Fix popping arguments from command line.
 
 2010-04-02  Juanma Barranquero  <lekktu@gmail.com>
 
index 38cdf59..535df49 100644 (file)
@@ -950,8 +950,8 @@ the Emacs source tree, from which to build the file."
     (error "`batch-update-authors' is to be used only with -batch"))
   (when (/= (length command-line-args-left) 2)
     (error "Call `batch-update-authors' with the name of the file to write"))
-  (let* ((root (pop command-line-args-left))
-        (file (pop command-line-args-left)))
+  (let* ((file (pop command-line-args-left))
+        (root (pop command-line-args-left)))
     (authors root)
     (write-file file)))