]> git.eshelyaron.com Git - emacs.git/commitdiff
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 d65319e9f11e7240a56c69be84dea37f337b4489..8e40040ad4aecc96ef38f50afa5daf5694a2901c 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 38cdf59e805a580e29e6ad81be52d36ef3fa9376..535df496088209ea587204f859a87c9027dc8da6 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)))