# HG changeset patch # User Eli Zaretskii # Date 1270285486 -10800 # Node ID ff4ed96c4bfaaa7caa40d7459065f7f6448f1a90 # Parent 46621c06afee791499926da07dd661e0186508b5 Revert last change in batch-update-authors. diff -r 46621c06afee -r ff4ed96c4bfa lisp/ChangeLog --- a/lisp/ChangeLog Sat Apr 03 11:59:36 2010 +0300 +++ b/lisp/ChangeLog Sat Apr 03 12:04:46 2010 +0300 @@ -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 diff -r 46621c06afee -r ff4ed96c4bfa lisp/emacs-lisp/authors.el --- a/lisp/emacs-lisp/authors.el Sat Apr 03 11:59:36 2010 +0300 +++ b/lisp/emacs-lisp/authors.el Sat Apr 03 12:04:46 2010 +0300 @@ -950,8 +950,8 @@ (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)))