diff options
author | Eli Zaretskii <eliz@gnu.org> | 2010-04-03 12:04:46 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2010-04-03 12:04:46 +0300 |
commit | 8e13db7799d36335d40c8976c070aa764b9ffc08 (patch) | |
tree | 0f0b02d0c9b34f9faaa927929a81018674f3e6db /lisp/emacs-lisp/authors.el | |
parent | ef43a0f4b02b70777952ddd50ceba9d3235a561d (diff) | |
download | emacs-8e13db7799d36335d40c8976c070aa764b9ffc08.tar.gz |
Revert last change in batch-update-authors.
Diffstat (limited to 'lisp/emacs-lisp/authors.el')
-rw-r--r-- | lisp/emacs-lisp/authors.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/authors.el b/lisp/emacs-lisp/authors.el index 38cdf59e805..535df496088 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))) |