From 8e13db7799d36335d40c8976c070aa764b9ffc08 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 3 Apr 2010 12:04:46 +0300 Subject: [PATCH] Revert last change in batch-update-authors. --- lisp/ChangeLog | 1 - lisp/emacs-lisp/authors.el | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d65319e9f1..8e40040ad4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -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 --git a/lisp/emacs-lisp/authors.el b/lisp/emacs-lisp/authors.el index 38cdf59e80..535df49608 100644 --- a/lisp/emacs-lisp/authors.el +++ b/lisp/emacs-lisp/authors.el @@ -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))) -- 2.20.1