Revert last change in batch-update-authors.

This commit is contained in:
Eli Zaretskii 2010-04-03 12:04:46 +03:00
parent ef43a0f4b0
commit 8e13db7799
2 changed files with 2 additions and 3 deletions

View 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)))