Mercurial > emacs
changeset 107772:ff4ed96c4bfa
Revert last change in batch-update-authors.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sat, 03 Apr 2010 12:04:46 +0300 |
parents | 46621c06afee |
children | ac009f6ace05 |
files | lisp/ChangeLog lisp/emacs-lisp/authors.el |
diffstat | 2 files changed, 2 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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 <lekktu@gmail.com>
--- 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)))