1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-03 18:41:25 -08:00

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

@ -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>

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