summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/authors.el
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2010-04-03 12:04:46 +0300
committerEli Zaretskii <eliz@gnu.org>2010-04-03 12:04:46 +0300
commit8e13db7799d36335d40c8976c070aa764b9ffc08 (patch)
tree0f0b02d0c9b34f9faaa927929a81018674f3e6db /lisp/emacs-lisp/authors.el
parentef43a0f4b02b70777952ddd50ceba9d3235a561d (diff)
downloademacs-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.el4
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)))