aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2009-01-21 03:54:29 +0000
committerGlenn Morris2009-01-21 03:54:29 +0000
commit2603d79b46799df9508b7ebdd046ae2084172da0 (patch)
treeb2a6966624ede5a77c761e3e4beb5aef7a255e03
parent994e96474cab595ade7295b3fbb862faaa88422e (diff)
downloademacs-2603d79b46799df9508b7ebdd046ae2084172da0.tar.gz
emacs-2603d79b46799df9508b7ebdd046ae2084172da0.zip
(authors-aliases): Remove some "ignore" entries that are no longer needed.
(authors-scan-change-log): Doc fix. (authors-scan-el): Restore let*, foolishly removed 2009-01-11.
-rw-r--r--lisp/ChangeLog7
-rw-r--r--lisp/emacs-lisp/authors.el25
2 files changed, 22 insertions, 10 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 6bfeb619482..1d12e361c6d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,10 @@
12009-01-21 Glenn Morris <rgm@gnu.org>
2
3 * emacs-lisp/authors.el (authors-aliases): Remove some "ignore" entries
4 that are no longer needed.
5 (authors-scan-change-log): Doc fix.
6 (authors-scan-el): Restore let*, foolishly removed 2009-01-11.
7
12009-01-20 Agustín Martín <agustin.martin@hispalinux.es> 82009-01-20 Agustín Martín <agustin.martin@hispalinux.es>
2 9
3 * textmodes/ispell.el (ispell-find-aspell-dictionaries): Use 10 * textmodes/ispell.el (ispell-find-aspell-dictionaries): Use
diff --git a/lisp/emacs-lisp/authors.el b/lisp/emacs-lisp/authors.el
index 08b8edccc28..c37b617b467 100644
--- a/lisp/emacs-lisp/authors.el
+++ b/lisp/emacs-lisp/authors.el
@@ -76,11 +76,15 @@ files.")
76 ("Gerd Möllmann" "Gerd Moellmann") 76 ("Gerd Möllmann" "Gerd Moellmann")
77 ("Hallvard B. Furuseth" "Hallvard B Furuseth" "Hallvard Furuseth") 77 ("Hallvard B. Furuseth" "Hallvard B Furuseth" "Hallvard Furuseth")
78 ("Hrvoje Nikšić" "Hrvoje Niksic") 78 ("Hrvoje Nikšić" "Hrvoje Niksic")
79 (nil "(afs@hplb.hpl.hp.com)") 79 ;; src/ChangeLog.4, 1994-01-11, since fixed.
80;;; (nil "(afs@hplb.hpl.hp.com)")
81 ;; lisp/gnus/ChangeLog.1, 1998-01-15.
82 ;; http://quimby.gnus.org/cgi-bin/cvsweb.cgi/gnus/lisp/gnus-art.el?rev=4.13
80 (nil "<Use-Author-Address-Header@\\[127.1\\]>") 83 (nil "<Use-Author-Address-Header@\\[127.1\\]>")
81 (nil "Code Extracted") 84 (nil "Code Extracted") ; lisp/newcomment.el's "Author:" header
82 (nil "\\`FSF") 85 (nil "\\`FSF") ; FIXME what is this for - no effect?
83 (nil "ISO-2022-JP") 86 ;; lisp/gnus/ChangeLog.1, 1997-10-12, since fixed.
87;;; (nil "ISO-2022-JP")
84 ("Jaeyoun Chung" "Jae-youn Chung" "Jae-you Chung" "Chung Jae-youn") 88 ("Jaeyoun Chung" "Jae-youn Chung" "Jae-you Chung" "Chung Jae-youn")
85 ("Jan Djärv" "Jan D." "Jan Djarv") 89 ("Jan Djärv" "Jan D." "Jan Djarv")
86 ("Jay K. Adams" "jka@ece.cmu.edu" "Jay Adams") 90 ("Jay K. Adams" "jka@ece.cmu.edu" "Jay Adams")
@@ -691,12 +695,13 @@ under the author's canonical name.
691Keys of TABLE are author names. Values are alists of entries (FILE 695Keys of TABLE are author names. Values are alists of entries (FILE
692\(ACTION . COUNT) ...). FILE is one file the author worked on. The 696\(ACTION . COUNT) ...). FILE is one file the author worked on. The
693rest of the entry is a list of keyword symbols describing what he did 697rest of the entry is a list of keyword symbols describing what he did
694with the file and the number of each action. 698with the file and the number of each action:
695 699
696:wrote means the author wrote the file 700:wrote means the author wrote the file
701:cowrote means he wrote the file in collaboration with others
697:changed means he changed the file COUNT times." 702:changed means he changed the file COUNT times."
698 703
699 (let* ((enable-local-variables :safe) 704 (let* ((enable-local-variables :safe) ; for find-file, hence let*
700 (enable-local-eval nil) 705 (enable-local-eval nil)
701 (existing-buffer (get-file-buffer log-file)) 706 (existing-buffer (get-file-buffer log-file))
702 (buffer (find-file-noselect log-file)) 707 (buffer (find-file-noselect log-file))
@@ -748,10 +753,10 @@ Suggested\\|Trivial\\|Version\\|Originally\\|From:\\|Patch[ \t]+[Bb]y\\)")))
748(defun authors-scan-el (file table) 753(defun authors-scan-el (file table)
749 "Scan Lisp file FILE for author information. 754 "Scan Lisp file FILE for author information.
750TABLE is a hash table to add author information to." 755TABLE is a hash table to add author information to."
751 (let ((existing-buffer (get-file-buffer file)) 756 (let* ((existing-buffer (get-file-buffer file))
752 (enable-local-variables :safe) 757 (enable-local-variables :safe) ; for find-file, hence let*
753 (enable-local-eval nil) 758 (enable-local-eval nil)
754 (buffer (find-file-noselect file))) 759 (buffer (find-file-noselect file)))
755 (setq file (file-name-nondirectory file)) 760 (setq file (file-name-nondirectory file))
756 (save-excursion 761 (save-excursion
757 (set-buffer buffer) 762 (set-buffer buffer)