comparison lisp/emacs-lisp/authors.el @ 107771:46621c06afee

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.
author Eli Zaretskii <eliz@gnu.org>
date Sat, 03 Apr 2010 11:59:36 +0300
parents cace278d9d06
children ff4ed96c4bfa
comparison
equal deleted inserted replaced
107770:d4b4f81008b2 107771:46621c06afee
425 ;; ntproc.c to w32proc.c; ntterm.c to w32term.c; 425 ;; ntproc.c to w32proc.c; ntterm.c to w32term.c;
426 ;; windowsnt.h to ms-w32.h. 426 ;; windowsnt.h to ms-w32.h.
427 ("Geoff Voelker" :wrote "w32-fns.el" "w32.c" "w32.h" "w32heap.c" 427 ("Geoff Voelker" :wrote "w32-fns.el" "w32.c" "w32.h" "w32heap.c"
428 "w32heap.h" "w32inevt.c" "w32proc.c" "w32term.c" "ms-w32.h") 428 "w32heap.h" "w32inevt.c" "w32proc.c" "w32term.c" "ms-w32.h")
429 ("Morten Welinder" :wrote "dosfns.c" "[many MS-DOS files]" "msdos.h") 429 ("Morten Welinder" :wrote "dosfns.c" "[many MS-DOS files]" "msdos.h")
430 ("Eli Zaretskii" :wrote "bidi.c" "[bidirectional display in xdisp.c]")
430 ;; Not using this version any more. 431 ;; Not using this version any more.
431 ;;; ("Pace Willisson" :wrote "ispell.el") 432 ;;; ("Pace Willisson" :wrote "ispell.el")
432 ;; FIXME overwritten by Author:. 433 ;; FIXME overwritten by Author:.
433 ("Bill Wohler" :cowrote "mh-e.el") 434 ("Bill Wohler" :cowrote "mh-e.el")
434 ("Garrett Wollman" :changed "sendmail.el") 435 ("Garrett Wollman" :changed "sendmail.el")
947 the Emacs source tree, from which to build the file." 948 the Emacs source tree, from which to build the file."
948 (unless noninteractive 949 (unless noninteractive
949 (error "`batch-update-authors' is to be used only with -batch")) 950 (error "`batch-update-authors' is to be used only with -batch"))
950 (when (/= (length command-line-args-left) 2) 951 (when (/= (length command-line-args-left) 2)
951 (error "Call `batch-update-authors' with the name of the file to write")) 952 (error "Call `batch-update-authors' with the name of the file to write"))
952 (let* ((file (pop command-line-args-left)) 953 (let* ((root (pop command-line-args-left))
953 (root (pop command-line-args-left))) 954 (file (pop command-line-args-left)))
954 (authors root) 955 (authors root)
955 (write-file file))) 956 (write-file file)))
956 957
957 (provide 'authors) 958 (provide 'authors)
958 959