summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/authors.el
diff options
context:
space:
mode:
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)))