diff options
| author | Eli Zaretskii | 2010-04-03 11:59:36 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2010-04-03 11:59:36 +0300 |
| commit | ef43a0f4b02b70777952ddd50ceba9d3235a561d (patch) | |
| tree | c1abab6650e8f38a7f6f89f5498713b78f9a3577 | |
| parent | b372fceb03fbd2f2ff2e113d1da1a3013766837e (diff) | |
| download | emacs-ef43a0f4b02b70777952ddd50ceba9d3235a561d.tar.gz 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.
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/emacs-lisp/authors.el | 5 |
2 files changed, 9 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2b77770180d..d65319e9f11 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2010-04-03 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * emacs-lisp/authors.el (authors-fixed-entries): Add entry for Eli | ||
| 4 | Zaretskii. | ||
| 5 | (batch-update-authors): Fix popping arguments from command line. | ||
| 6 | |||
| 1 | 2010-04-02 Juanma Barranquero <lekktu@gmail.com> | 7 | 2010-04-02 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 8 | ||
| 3 | * cedet/semantic/imenu.el (semantic-imenu-bucketize-type-members) | 9 | * cedet/semantic/imenu.el (semantic-imenu-bucketize-type-members) |
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.") | |||
| 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:. |
| @@ -949,8 +950,8 @@ the Emacs source tree, from which to build the file." | |||
| 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 | ||