summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2010-04-03 11:59:36 +0300
committerEli Zaretskii <eliz@gnu.org>2010-04-03 11:59:36 +0300
commitef43a0f4b02b70777952ddd50ceba9d3235a561d (patch)
treec1abab6650e8f38a7f6f89f5498713b78f9a3577 /lisp/emacs-lisp
parentb372fceb03fbd2f2ff2e113d1da1a3013766837e (diff)
downloademacs-ef43a0f4b02b70777952ddd50ceba9d3235a561d.tar.gz
emacs-ef43a0f4b02b70777952ddd50ceba9d3235a561d.tar.bz2
emacs-ef43a0f4b02b70777952ddd50ceba9d3235a561d.zip
Fix bug in batch-update-authors. Add bidi to AUTHORS.
emacs-lisp/authors.el (authors-fixed-entries): Add entry for Eli Zaretskii. (batch-update-authors): Fix popping arguments from command line.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/authors.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/authors.el b/lisp/emacs-lisp/authors.el
index 7728215bb91..38cdf59e805 100644
--- a/lisp/emacs-lisp/authors.el
+++ b/lisp/emacs-lisp/authors.el
@@ -427,6 +427,7 @@ Changes to files in this list are not listed.")
("Geoff Voelker" :wrote "w32-fns.el" "w32.c" "w32.h" "w32heap.c"
"w32heap.h" "w32inevt.c" "w32proc.c" "w32term.c" "ms-w32.h")
("Morten Welinder" :wrote "dosfns.c" "[many MS-DOS files]" "msdos.h")
+ ("Eli Zaretskii" :wrote "bidi.c" "[bidirectional display in xdisp.c]")
;; Not using this version any more.
;;; ("Pace Willisson" :wrote "ispell.el")
;; FIXME overwritten by Author:.
@@ -949,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* ((file (pop command-line-args-left))
- (root (pop command-line-args-left)))
+ (let* ((root (pop command-line-args-left))
+ (file (pop command-line-args-left)))
(authors root)
(write-file file)))