Mercurial > emacs
annotate lisp/emacs-lisp/authors.el @ 60797:5ce2bc79e2b8
*** empty log message ***
author | Lute Kamstra <lute@gnu.org> |
---|---|
date | Mon, 21 Mar 2005 18:18:54 +0000 |
parents | b71fc0f47c9a |
children | 48fd09671b41 cce1c0ee76ee |
rev | line source |
---|---|
49469 | 1 ;;; authors.el --- utility for maintaining Emacs' AUTHORS file -*-coding: iso-2022-7bit;-*- |
30790 | 2 |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
3 ;; Copyright (C) 2000, 2003 Free Software Foundation, Inc. |
30790 | 4 |
33752
9ebf8de0e42c
Remove autoload cookied, add author,
Gerd Moellmann <gerd@gnu.org>
parents:
33151
diff
changeset
|
5 ;; Author: Gerd Moellmann <gerd@gnu.org> |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
6 ;; Maintainer: Kim F. Storm <storm@cua.dk> |
33752
9ebf8de0e42c
Remove autoload cookied, add author,
Gerd Moellmann <gerd@gnu.org>
parents:
33151
diff
changeset
|
7 ;; Keywords: maint |
9ebf8de0e42c
Remove autoload cookied, add author,
Gerd Moellmann <gerd@gnu.org>
parents:
33151
diff
changeset
|
8 |
30790 | 9 ;; This file is part of GNU Emacs. |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
24 ;; Boston, MA 02111-1307, USA. | |
25 | |
26 ;;; Commentary: | |
27 | |
28 ;; Use M-x authors RET to create an *Authors* buffer that can used as | |
29 ;; or merged with Emacs' AUTHORS file. | |
30 | |
31 ;;; Code: | |
32 | |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
33 (defvar authors-coding-system 'iso-2022-7bit |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
34 "Coding system used in the AUTHORS file.") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
35 |
30790 | 36 (defconst authors-many-files 20 |
37 "Maximum number of files for which to print individual information. | |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
38 If an author has modified more files, only the names of the most |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
39 frequently modified files are printed and a count of the additional |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
40 files.") |
30790 | 41 |
42 (defconst authors-aliases | |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
43 '( |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
44 ("Andrew Innes" "Andrw Innes") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
45 ("Barry A. Warsaw" "Barry A. Warsaw, Century Computing, Inc." |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
46 "Barry A. Warsaw, ITB" "Barry Warsaw") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
47 ("Bj,Av(Brn Torkelsson" "Bjorn Torkelsson") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
48 ("Brian Fox" "Brian J. Fox") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
49 ("Christoph Wedler" "Christoph.Wedler@sap.com") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
50 ("Daniel Pfeiffer" "<Daniel.Pfeiffer@Informatik.START.db.de>" |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
51 "<Daniel.Pfeiffer@Informatik.START.dbp.de>") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
52 ("David Gillespie" "Dave Gillespie") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
53 ("David K,Ae(Bgedal" "David K..edal") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
54 ("David M. Koppelman" "David M. Koppelman, Koppel@Ee.Lsu.Edu") |
56970
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
55 ("David M. Smith" "David Smith" "David M Smith") |
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
56 ("Ed L. Cashin" "Ed L Cashin") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
57 ("Edward M. Reingold" "Ed Reingold" "Edward M Reingold" |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
58 "Reingold Edward M") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
59 ("Eli Zaretskii" "eliz") |
56970
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
60 ; ("Emilio C. Lopes" "Emilio Lopes") |
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
61 ("Era Eriksson" "Era@Iki.Fi") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
62 ("Eric M. Ludlam" "Eric Ludlam") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
63 ("Eric S. Raymond" "Eric Raymond") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
64 ("Eric Youngdale" "(Eric Youngdale at youngdale@v6550c.nrl.navy.mil)") |
56970
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
65 ("Francis J. Wright" "Dr Francis J. Wright" "Francis Wright") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
66 ("Fran,Ag(Bois Pinard" "Francois Pinard") |
52921
cbde46624620
Alias for Francesco Potort?
Francesco Potortì <pot@gnu.org>
parents:
52401
diff
changeset
|
67 ("Francesco Potort,Al(B" "Francesco Potorti" "Francesco Potorti`") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
68 ("Frederic Pierresteguy" "Fred Pierresteguy") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
69 ("Geoff Voelker" "voelker") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
70 ("Hallvard B. Furuseth" "Hallvard B Furuseth") |
56970
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
71 ("Hrvoje Nik,B9(Bi,Bf(B" "Hrvoje Niksic") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
72 (nil "(afs@hplb.hpl.hp.com)") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
73 (nil "<Use-Author-Address-Header@\\[127.1\\]>") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
74 (nil "Code Extracted") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
75 (nil "Fsf") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
76 (nil "ISO-2022-JP") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
77 ("Jaeyoun Chung" "Jae-youn Chung" "Jae-you Chung" "Chung Jae-youn") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
78 ("Jan Dj,Ad(Brv" "Jan D." "Jan Djarv") |
56970
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
79 ("Jay K. Adams" "jka@ece.cmu.edu" "Jay Adams") |
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
80 ("J,Ai(Br,At(Bme Marant" "J,bi(Br,bt(Bme Marant" "Jerome Marant") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
81 ("Jens-Ulrik Holger Petersen" "Jens-Ulrik Petersen") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
82 ("Jonathan I. Kamens" "Jonathan Kamens") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
83 ("Joseph Arceneaux" "Joe Arceneaux") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
84 ("K. Shane Hartman" "Shane Hartman") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
85 ("Kai Gro,A_(Bjohann" "Kai Grossjohann" "Kai Gro,b_(Bjohann" |
56970
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
86 "Kai.Grossjohann@Cs.Uni-Dortmund.De" |
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
87 "Kai.Grossjohann@Gmx.Net") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
88 ("Karl Berry" "K. Berry") |
56970
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
89 ("Kazushi Marukawa" "Kazushi") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
90 ("Ken Manheimer" "Kenneth Manheimer") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
91 ("Kenichi Handa" "Ken'ichi Handa" "Kenichi HANDA") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
92 ("Kim F. Storm" "Kim Storm") |
56970
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
93 ("Kyle Jones" "Kyle E. Jones") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
94 ("Marcus G. Daniels" "Marcus Daniels") |
56970
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
95 ("Mark D. Baushke" "Mark D Baushke") |
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
96 ("Martin Lorentzon" "Martin Lorentzson") |
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
97 ("Matt Swift" "Matthew Swift") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
98 ("Michael D. Ernst" "Michael Ernst") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
99 ("Michael I. Bushnell" "Michael I Bushnell" "Michael I. Bushnell, P/Bsg") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
100 ("Paul Eggert" "eggert") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
101 ("Paul Reilly" "(pmr@legacy.pajato.com)") |
56970
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
102 ("Pavel Jan,Bm(Bk" "Pavel Jan,Am(Bk Ml." "Pavel Jan,Am(Bk" "Pavel@Janik.Cz") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
103 ("Per Abrahamsen" "Per Abhiddenware") |
56970
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
104 ("Peter S. Galbraith" "Peter Galbraith") |
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
105 ("Peter Runestig" "Peter 'luna' Runestig") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
106 ("Peter S. Galbraith" "Peter S Galbraith") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
107 ("Richard M. Stallman" "Richard M. Stallman,,," "Richard Stallman" |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49506
diff
changeset
|
108 "rms" "rms@gnu.org") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
109 ("Robert J. Chassell" "Bob Chassell") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
110 ("Roland B. Roberts" "Roland B Roberts" "Roland Roberts") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
111 ("Rui-Tao Dong" "Rui-Tao Dong ~{6-Hpln~}") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
112 ("Sam Steingold" "Sam Shteingold") |
56970
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
113 ("Stefan Monnier" "Stefan") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
114 ("Stephen A. Wood" "(saw@cebaf.gov)") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
115 ("Steven L. Baur" "SL Baur" "Steven L Baur") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
116 ("Takaaki Ota" "Tak Ota") |
56970
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
117 ("Teodor Zlatanov" "Ted Zlatanov") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
118 ("Torbj,Av(Brn Axelsson" "Torbjvrn Axelsson") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
119 ("Torbj,Av(Brn Einarsson" "Torbj.*rn Einarsson") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
120 ("Toru Tomabechi" "Toru Tomabechi,") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
121 ("Vincent Del Vecchio" "Vince Del Vecchio") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
122 ("Wlodzimierz Bzyl" "W.*dek Bzyl") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
123 ("Yutaka NIIBE" "NIIBE Yutaka") |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
124 ) |
30790 | 125 "Alist of author aliases. |
126 | |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
127 Each entry is of the form (REALNAME REGEXP...). If an author's name |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49506
diff
changeset
|
128 matches one of the REGEXPs, use REALNAME instead. |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
129 If REALNAME is nil, ignore that author.") |
30790 | 130 |
131 | |
33151
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
132 (defvar authors-public-domain-files |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
133 '("auto-show\\.el" |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
134 "form-d2\\.el" |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
135 "emerge\\.el" |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
136 "unused\\.el" |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
137 "vi\\.el" |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
138 "feedmail\\.el" |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
139 "mailpost\\.el" |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
140 "hanoi\\.el" |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
141 "meese\\.el" |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
142 "studly\\.el" |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
143 "modula2\\.el") |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
144 "List of regexps matching files for which the FSF doesn't need papers.") |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
145 |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
146 |
32028
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
147 (defvar authors-obsolete-files-regexps |
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
148 '("vc-\\*\\.el$" |
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
149 "spec.txt$" |
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
150 "vc-\\(rcs\\|cvs\\|sccs\\)-hooks\\.el$") |
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
151 "List of regexps matching obsolete files. |
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
152 Changes to files matching one of the regexps in this list are not |
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
153 listed.") |
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
154 |
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
155 |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
156 (defconst authors-fixed-entries |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
157 '(("Richard M. Stallman" :wrote "[The original GNU emacs and numerous files]") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
158 ("Joseph Arceneaux" :wrote "xrdb.c") |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
159 ("Blitz Product Development Corporation" :wrote "ispell.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
160 ("Frank Bresz" :wrote "diff.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
161 ("David M. Brown" :wrote "array.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
162 ("Gary Byers" :changed "xenix.h") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
163 ("Shawn M. Carey" :wrote "freebsd.h") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
164 ("Eric Decker" :changed "hp9000s800.h" "hpux.h" "sysdep.c") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
165 ("Lawrence R. Dodd" :wrote "dired-x.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
166 ("Viktor Dukhovni" :wrote "unexsunos4.c") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
167 ("Paul Eggert" :wrote "rcs2log" "vcdiff") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
168 ("Fred Fish" :changed "unexec.c") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
169 ("Tim Fleehart" :wrote "makefile.nt") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
170 ("Keith Gabryelski" :wrote "hexl.c") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
171 ("Kevin Gallagher" :wrote "flow-ctrl.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
172 ("Howard Gayle" :wrote "disp-table.el" "iso-syntax.el" "casetab.c") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
173 ("Stephen Gildea" :wrote "refcard.tex" "mh-funcs.el" "mh-pick.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
174 ("David Gillespie" :wrote "cl.texinfo") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
175 ("Hewlett-Packard" :changed "emacsclient.c" "emacsserver.c" |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
176 "server.el" "keyboard.c") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
177 ("Thomas Horsley" :wrote "cxux.h" "cxux7.h") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
178 ("Indiana University Foundation" :changed "buffer.c" "buffer.h" |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
179 "indent.c" "search.c" "xdisp.c" "region-cache.c" "region-cache.h") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
180 ("International Business Machines" :changed "emacs.c" "fileio.c" |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
181 "ibmrt.h" "process.c" "sysdep.c" "unexec.c" "ibmrt-aix.h") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
182 ("Ishikawa Chiaki" :changed "aviion.h" "dgux.h") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
183 ("Michael K. Johnson" :changed "configure.in" "emacs.c" "intel386.h" |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
184 "mem-limits.h" "process.c" "template.h" "sysdep.c" "syssignal.h" "systty.h" "unexec.c" |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
185 "ymakefile" "linux.h") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
186 ("Kyle E. Jones" :wrote "mldrag.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
187 ("Kenry Kautz" :wrote "bib-mode.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
188 ("Joseph M. Kelsey" :changed "fileio.c" "vms-pwd.h" "vmsfns.c" "dir.h" |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
189 "uaf.h") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
190 ("Sam Kendall" :changed "etags.c" "etags.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
191 ("Richard King" :wrote "backquote.el" "userlock.el" "filelock.c") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
192 ("Larry Kolodney" :wrote "cvtmail.c") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
193 ("Sebastian Kremer" :changed "add-log.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
194 ("Mark Lambert" :changed "process.c" "process.h") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
195 ("Aaron Larson" :changed "bibtex.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
196 ("James R. Larus" :wrote "mh-e.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
197 ("Lars Lindberg" :changed "dabbrev.el" :wrote "imenu.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
198 ("Lucid, Inc." :changed "bytecode.c" "byte-opt.el" "byte-run.el" |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
199 "bytecomp.el" "delsel.el" "disass.el" "faces.el" "font-lock.el" |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
200 "lmenu.el" "lselect.el" "mailabbrev.el" "select.el" "xfaces.c" |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
201 "xselect.c") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
202 ("MCC" :changed "etags.c" "emacsclient.c" "emacsserver.c" "movemail.c" |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
203 "rmail.el" "rmailedit.el" "rmailkwd.el" |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
204 "rmailmsc.el" "rmailout.el" "rmailsum.el" "scribe.el" |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
205 "server.el" "lisp.h" "sysdep.c" "unexec.c" :wrote "xmenu.c") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
206 ("Niall Mansfield" :changed "etags.c") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
207 ("Brian Marick" :wrote "hideif.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
208 ("Marko Kohtala" :changed "info.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
209 ("Sidney Markowitz" :changed "doctor.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
210 ("Richard Mlynarik" :wrote "env.c" "ehelp.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
211 ("Mosur Mohan" :changed "etags.c") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
212 ("Jeff Morgenthaler" :changed "flow-ctrl.el" "vt200.el" "vt201.el" |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
213 "vt220.el" "vt240.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
214 ("Motorola" :changed "buff-menu.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
215 ("Hiroshi Nakano" :changed "ralloc.c") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
216 ("Sundar Narasimhan" :changed "rnewspost.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
217 ("NeXT, Inc." :wrote "unexnext.c") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
218 ("Mark Neale" :changed "fortran.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
219 ("Martin Neitzel" :changed "sc.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
220 ("Andrew Oram" :changed "miscellaneous changes to files in man/" |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
221 "man/calendar.texi") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
222 ("Frederic Pierresteguy" :wrote "widget.c") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
223 ("Michael D. Prange" :changed "tex-mode.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
224 ("Paul Reilly" :wrote "gux5-4r2.h" "dgux5-4r3.h") |
56970
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
225 ("Roland B. Roberts" :changed "files.el" "sort.el" "vmsproc.el" |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
226 "buffer.h" "callproc.c" "dired.c" "process.c" "sysdep.c" "systty.h" |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
227 "vmspaths.h" "build.com" "compile.com" "kepteditor.com" "precomp.com" |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
228 :wrote "logout.com" "mailemacs.com") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
229 ("Guillermo J. Rozas" :wrote "fakemail.c") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
230 ("Wolfgang Rupprecht" :changed "lisp-mode.el" "loadup.el" |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
231 "sort.el" "alloc.c" "callint.c" |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
232 "config.h.in" "crt0.c" "data.c" "fns.c" |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
233 "lisp.h" "lread.c" "sun3.h" |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
234 "print.c" "ymakefile" :wrote "float-sup.el" "floatfns.c") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
235 ("Schlumberger Technology Corporation" :changed "gud.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
236 ("Gregor Schmid" :wrote "tcl-mode.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
237 ("Rainer Schoepf" :wrote "alpha.h" "unexalpha.c") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
238 ("William Sommerfeld" :wrote "emacsclient.c" "emacsserver.c" "scribe.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
239 ("Leigh Stoller" :changed "emacsclient.c" "emacsserver.c" "server.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
240 ("Steve Strassman" :wrote "spook.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
241 ("Shinichirou Sugou" :changed "etags.c") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
242 ("Sun Microsystems, Inc" :changed "emacsclient.c" "emacsserver.c" |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
243 "server.el" :wrote "emacs.icon" "emacstool.1" "emacstool.c" "sun-curs.el" |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
244 "sun-fns.el" "sun-mouse.el" "sun.el" "sunfns.c") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
245 ("Kayvan Sylvan" :changed "sc.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
246 ("Spencer Thomas" :changed "emacsclient.c" "emacsserver.c" "server.el" |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
247 "dabbrev.el" "unexec.c" "tcp.c" "gnus.texi") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
248 ("Jonathan Vail" :changed "vc.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
249 ("James Van Artsdalen" :changed "usg5-4.h" "unexec.c") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
250 ("Geoff Voelker" :wrote "src/makefile.nt" "lisp/makefile.nt" "winnt.el" |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
251 "nt.c" "nt.h" "ntheap.c" "ntheap.h" "ntinevt.c" |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
252 "ntproc.c" "ntterm.c" "windowsnt.h") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
253 ("Morten Welinder" :wrote "dosfns.c" "[many MSDOS files]" "msdos.h") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
254 ("Pace Willisson" :wrote "ispell.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
255 ("Garrett Wollman" :changed "sendmail.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
256 ("Dale Worley" :changed "mail-extr.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
257 ("Jamie Zawinski" :changed "bytecode.c" :wrote "disass.el" "tar-mode.el")) |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
258 "Actions taken from the original, manually (un)maintained AUTHORS file.") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
259 |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
260 |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
261 (defconst authors-valid-file-names |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
262 '("aclocal.m4" |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
263 "makedist.bat") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
264 "File names which are valid, but no longer exists (or cannot be |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
265 found) in the repository.") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
266 |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
267 (defconst authors-renamed-files-alist |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
268 '(("nt.c" . "w32.c") ("nt.h" . "w32.h") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
269 ("ntheap.c" . "w32heap.c") ("ntheap.h" . "w32heap.h") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
270 ("ntinevt.c" . "w32inevt.c") ("ntinevt.h" . "w32inevt.h") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
271 ("ntproc.c" . "w32proc.c") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
272 ("w32console.c" . "w32term.c") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
273 ("unexnt.c" . "unexw32.c") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
274 ("s/windowsnt.h" . "s/ms-w32.h") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
275 ("config.emacs" . "configure") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
276 ("GETTING.GNU.SOFTWARE" . "FTP") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
277 ) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
278 "Alist of files which have been renamed during their lifetime. |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
279 Elements are (OLDNAME . NEWNAME).") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
280 |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
281 (defconst authors-renamed-files-regexps |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
282 '(("^m/m-\\(.*\\.h\\)$" . "m/\\1") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
283 ("^m-\\(.*\\.h\\)$" . "\\1") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
284 ("^s/s-\\(.*\\.h\\)$" . "s/\\1") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
285 ("^s-\\(.*\\.h\\)$" . "\\1") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
286 ("^s/[-.a-zA-Z0-9_]+\\.h$" . t) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
287 ("\\(.*\\)\\.cmd$" . "\\1.bat") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
288 ("\\.bat$" . t) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
289 ("\\.[ch]$" . t) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
290 ("\\.el$" . t) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
291 ("\\.ps$" . t) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
292 ("\\.texi?$" . t) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
293 ("\\.texinfo$" . t) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
294 ("\\.xml?$" . t) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
295 ("\\.x[pb]m$" . t) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
296 ("\\.[xp]bm$" . t) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
297 ("^paths\\." . t) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
298 ("^install\\." . t) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
299 ) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
300 "List regexps and rewriting rules for renamed files. |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
301 Elements are (REGEXP . REPLACE). If REPLACE is a string, the file |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
302 name matching REGEXP is replaced by REPLACE using `replace-string'. |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
303 Otherwise, the file name is accepted as is.") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
304 |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
305 (defvar authors-checked-files-alist) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
306 (defvar authors-invalid-file-names) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
307 |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
308 (defun authors-canonical-file-name (file log-file pos author) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
309 "Return canonical file name for FILE found in LOG-FILE at POS for AUTHOR. |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
310 Checks whether FILE is a valid (existing) file name, has been renamed, |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
311 or is on the list of removed files. Returns the non-diretory part of |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
312 the file name." |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
313 (let ((entry (assoc file authors-checked-files-alist)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
314 relname |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
315 valid) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
316 (if entry |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
317 (cdr entry) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
318 (setq relname (file-name-nondirectory file)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
319 (if (or (member relname authors-valid-file-names) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
320 (file-exists-p file) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
321 (file-exists-p relname) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
322 (file-exists-p (concat "etc/" relname))) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
323 (setq valid relname) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
324 (setq valid (assoc file authors-renamed-files-alist)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
325 (if valid |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
326 (setq valid (cdr valid)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
327 (let ((rules authors-renamed-files-regexps)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
328 (while rules |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
329 (if (string-match (car (car rules)) file) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
330 (setq valid (if (stringp (cdr (car rules))) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
331 (file-name-nondirectory |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
332 (replace-match (cdr (car rules)) t nil file)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
333 relname) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
334 rules nil)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
335 (setq rules (cdr rules)))))) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
336 (setq authors-checked-files-alist |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
337 (cons (cons file valid) authors-checked-files-alist)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
338 (unless valid |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49506
diff
changeset
|
339 (setq authors-invalid-file-names |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
340 (cons (format "%s:%d: unrecognized `%s' for %s" |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
341 log-file |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
342 (1+ (count-lines (point-min) pos)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
343 file author) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
344 authors-invalid-file-names))) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
345 valid))) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
346 |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
347 (defun authors-add-fixed-entries (table) |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
348 "Add actions from `authors-fixed-entries' to TABLE." |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
349 (dolist (entry authors-fixed-entries) |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
350 (let ((author (car entry)) |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
351 action) |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
352 (dolist (item (cdr entry)) |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
353 (if (symbolp item) |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
354 (setq action item) |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
355 (authors-add author item action table)))))) |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
356 |
46290
0cd79941b83a
(authors-obsolete-file-p): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
41967
diff
changeset
|
357 |
32028
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
358 (defun authors-obsolete-file-p (file) |
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
359 "Return non-nil if FILE is obsolete. |
46290
0cd79941b83a
(authors-obsolete-file-p): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
41967
diff
changeset
|
360 FILE is considered obsolete if it matches one of the regular expressions |
32028
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
361 from `authors-obsolete-files-regexps'." |
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
362 (let (obsolete-p |
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
363 (regexps authors-obsolete-files-regexps)) |
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
364 (while (and regexps (not obsolete-p)) |
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
365 (setq obsolete-p (string-match (car regexps) file) |
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
366 regexps (cdr regexps))) |
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
367 obsolete-p)) |
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
368 |
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
369 |
30790 | 370 (defun authors-add (author file action table) |
371 "Record that AUTHOR worked on FILE. | |
372 ACTION is a keyword symbol describing what he did. Record file, | |
373 author and what he did in hash table TABLE. See the description of | |
374 `authors-scan-change-log' for the structure of the hash table." | |
32529
efaa4e4c5fef
(authors-add): Don't add an entry if
Gerd Moellmann <gerd@gnu.org>
parents:
32028
diff
changeset
|
375 (unless (or (authors-obsolete-file-p file) |
efaa4e4c5fef
(authors-add): Don't add an entry if
Gerd Moellmann <gerd@gnu.org>
parents:
32028
diff
changeset
|
376 (equal author "")) |
32028
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
377 (let* ((value (gethash author table)) |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
378 (entry (assoc file value)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
379 slot) |
32028
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
380 (if (null entry) |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
381 (puthash author (cons (list file (cons action 1)) value) table) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
382 (if (setq slot (assoc action (cdr entry))) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
383 (setcdr slot (1+ (cdr slot))) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
384 (nconc entry (list (cons action 1)))))))) |
30790 | 385 |
386 | |
387 (defun authors-process-lines (program &rest args) | |
388 "Execute PROGRAM with ARGS, returning its output as a list of lines. | |
389 Signal an error if the program returns with a non-zero exit status." | |
390 (with-temp-buffer | |
391 (let ((status (apply 'call-process program nil (current-buffer) nil args))) | |
392 (unless (eq status 0) | |
393 (error "%s exited with status %s" program status)) | |
394 (goto-char (point-min)) | |
395 (let (lines) | |
396 (while (not (eobp)) | |
397 (setq lines (cons (buffer-substring-no-properties | |
398 (line-beginning-position) | |
399 (line-end-position)) | |
400 lines)) | |
401 (forward-line 1)) | |
402 (nreverse lines))))) | |
403 | |
404 | |
405 (defun authors-canonical-author-name (author) | |
406 "Return a canonicalized form of AUTHOR, an author name. | |
407 If AUTHOR has an alias, use that. Remove email addresses. Capitalize | |
408 words in the author's name." | |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
409 (let* ((aliases authors-aliases) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
410 regexps realname) |
30790 | 411 (while aliases |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
412 (setq realname (car (car aliases)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
413 regexps (cdr (car aliases)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
414 aliases (cdr aliases)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
415 (while regexps |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
416 (if (string-match (car regexps) author) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
417 (setq author realname |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
418 regexps nil |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
419 aliases nil) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
420 (setq regexps (cdr regexps)))))) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
421 (when author |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
422 (setq author (replace-regexp-in-string "[ \t]*[(<].*$" "" author)) |
56970
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
423 (setq author (replace-regexp-in-string "\`[ \t]+" "" author)) |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
424 (setq author (replace-regexp-in-string "[ \t]+$" "" author)) |
56970
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
425 (setq author (replace-regexp-in-string "[ \t]+" " " author)) |
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
426 (unless (string-match "[-, \t]" author) |
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
427 (setq author "")) |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
428 (capitalize author))) |
30790 | 429 |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
430 (defun authors-scan-change-log (log-file table) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
431 "Scan change log LOG-FILE for author information. |
30790 | 432 |
433 For each change mentioned in the log, add an entry to hash table TABLE | |
434 under the author's canonical name. | |
435 | |
436 Keys of TABLE are author names. Values are alists of entries (FILE | |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
437 \(ACTION . COUNT) ...). FILE is one file the author worked on. The |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
438 rest of the entry is a list of keyword symbols describing what he did |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
439 with the file and the number of each action. |
30790 | 440 |
441 :wrote means the author wrote the file | |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
442 :changed means he changed the file COUNT times." |
46290
0cd79941b83a
(authors-obsolete-file-p): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
41967
diff
changeset
|
443 |
30790 | 444 (let* ((enable-local-variables t) |
445 (enable-local-eval t) | |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
446 (existing-buffer (get-file-buffer log-file)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
447 (buffer (find-file-noselect log-file)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
448 author file pos) |
30790 | 449 (save-excursion |
450 (set-buffer buffer) | |
451 (save-restriction | |
452 (widen) | |
453 (goto-char (point-min)) | |
454 (while (re-search-forward "^[0-9]\\|^[ \t]+\\* " nil t) | |
455 (beginning-of-line) | |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
456 (setq pos (point)) |
30790 | 457 (cond ((looking-at "^[0-9]+-[0-9]+-[0-9]+") |
458 (skip-chars-forward " \t+:0-9-") | |
459 (setq author (buffer-substring-no-properties | |
460 (point) (line-end-position))) | |
461 (setq author (authors-canonical-author-name author)) | |
462 (forward-line 1)) | |
463 ((looking-at "^[ \t]+\\*") | |
464 (let ((line (buffer-substring-no-properties | |
465 (match-end 0) (line-end-position)))) | |
466 (while (and (not (string-match ":" line)) | |
467 (forward-line 1) | |
468 (not (looking-at ":\\|^[ \t]*$"))) | |
469 (setq line (concat line | |
470 (buffer-substring-no-properties | |
471 (line-beginning-position) | |
472 (line-end-position))))) | |
473 (when (string-match ":" line) | |
474 (setq line (substring line 0 (match-beginning 0))) | |
475 (setq line (replace-regexp-in-string "[[(<{].*$" "" line)) | |
476 (setq line (replace-regexp-in-string "," "" line)) | |
477 (dolist (file (split-string line)) | |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
478 (when (setq file (authors-canonical-file-name file log-file pos author)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
479 ;;(message "%s changed %s" author file) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
480 (authors-add author file :changed table)))) |
30790 | 481 (forward-line 1))))))) |
482 (unless existing-buffer | |
483 (kill-buffer buffer)))) | |
484 | |
485 | |
486 (defun authors-scan-el (file table) | |
487 "Scan Lisp file FILE for author information. | |
488 TABLE is a hash table to add author information to." | |
489 (let* ((existing-buffer (get-file-buffer file)) | |
490 (enable-local-variables t) | |
491 (enable-local-eval t) | |
492 (buffer (find-file-noselect file))) | |
493 (save-excursion | |
494 (set-buffer buffer) | |
495 (save-restriction | |
496 (widen) | |
497 (goto-char (point-min)) | |
498 (while (and (re-search-forward | |
499 "^;+[ \t]*\\(Author\\|Commentary\\):[ \t]*" nil t) | |
500 (not (string= (match-string 1) "Commentary"))) | |
501 ;; Some entries contain a year range in front of the | |
502 ;; author's name. | |
503 (skip-chars-forward "-0-9 \t") | |
504 (let ((author (buffer-substring-no-properties | |
505 (point) (line-end-position)))) | |
506 (setq author (authors-canonical-author-name author)) | |
507 (setq file (file-name-nondirectory file)) | |
508 (authors-add author file :wrote table))))) | |
509 (unless existing-buffer | |
510 (kill-buffer buffer)))) | |
511 | |
512 | |
33151
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
513 (defun authors-public-domain-p (file) |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
514 "Return t if FILE is a file that was put in public domain." |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
515 (let ((public-domain-p nil) |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
516 (list authors-public-domain-files)) |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
517 (while (and list (not public-domain-p)) |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
518 (when (string-match (car list) file) |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
519 (setq public-domain-p t)) |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
520 (setq list (cdr list))) |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
521 public-domain-p)) |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
522 |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
523 (defvar authors-author-list) |
33151
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
524 |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
525 (defun authors-add-to-author-list (author changes) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
526 "Insert information about AUTHOR's work on Emacs into `authors-author-list'. |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
527 CHANGES is an alist of entries (FILE (ACTION . COUNT) ...), as produced by |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
528 `authors-scan-change-log'. |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
529 The element added to `authors-author-list' is (AUTHOR WROTE CHANGED), where |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49506
diff
changeset
|
530 WROTE and CHANGED are lists of the files written and changed by AUTHOR." |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
531 (when author |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
532 (let ((nchanged 0) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
533 wrote-list |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
534 changed-list) |
30790 | 535 (dolist (change changes) |
536 (let ((actions (cdr change)) | |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
537 (file (car change)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
538 slot) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
539 (if (assq :wrote actions) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
540 (setq wrote-list |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
541 (cons |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
542 (if (authors-public-domain-p file) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
543 (concat file " (public domain)") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
544 file) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
545 wrote-list)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
546 (setq changed-list |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
547 (cons (cons file (cdr (assq :changed actions))) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
548 changed-list))))) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
549 (if wrote-list |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
550 (setq wrote-list (sort wrote-list 'string-lessp))) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
551 (when changed-list |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
552 (setq changed-list (sort changed-list |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
553 (lambda (a b) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
554 (if (= (cdr a) (cdr b)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
555 (string-lessp (car a) (car b)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
556 (> (cdr a) (cdr b)))))) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
557 (setq nchanged (length changed-list)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
558 (setq changed-list (mapcar 'car changed-list))) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
559 (if (> (- nchanged authors-many-files) 2) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
560 (setcdr (nthcdr authors-many-files changed-list) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
561 (list (format "and %d other files" (- nchanged authors-many-files))))) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
562 (setq authors-author-list |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
563 (cons (list author wrote-list changed-list) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
564 authors-author-list))))) |
30790 | 565 |
566 (defun authors (root) | |
567 "Extract author information from change logs and Lisp source files. | |
568 ROOT is the root directory under which to find the files. If called | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49506
diff
changeset
|
569 interactively, ROOT is read from the minibuffer. |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
570 Result is a buffer *Authors* containing authorship information, and a |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
571 buffer *Authors Errors* containing references to unknown files." |
30790 | 572 (interactive "DEmacs source directory: ") |
36010
c486995553f8
(authors): Expand `root' before running
Dave Love <fx@gnu.org>
parents:
33752
diff
changeset
|
573 (setq root (expand-file-name root)) |
30790 | 574 (let ((logs (authors-process-lines "find" root "-name" "ChangeLog*")) |
575 (table (make-hash-table :test 'equal)) | |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
576 (buffer-name "*Authors*") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
577 authors-checked-files-alist |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
578 authors-invalid-file-names) |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
579 (authors-add-fixed-entries table) |
30790 | 580 (unless (file-exists-p (expand-file-name "src/emacs.c" root)) |
581 (error "Not the root directory of Emacs: %s" root)) | |
582 (dolist (log logs) | |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
583 (when (and (string-match "ChangeLog\\(.[0-9]+\\)?$" log) |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
584 (not (string-match "/lispref/" log))) |
30790 | 585 (message "Scanning %s..." log) |
586 (authors-scan-change-log log table))) | |
587 (let ((els (authors-process-lines "find" root "-name" "*.el"))) | |
588 (dolist (file els) | |
589 (message "Scanning %s..." file) | |
590 (authors-scan-el file table))) | |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
591 (message "Generating buffer %s..." buffer-name) |
30790 | 592 (set-buffer (get-buffer-create buffer-name)) |
593 (erase-buffer) | |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
594 (set-buffer-file-coding-system authors-coding-system) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49506
diff
changeset
|
595 (insert |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
596 "Many people have contributed code included in the Free Software |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
597 Foundation's distribution of GNU Emacs. To show our appreciation for |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
598 their public spirit, we list here in alphabetical order a condensed |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
599 list of their contributions.\n") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
600 (let (authors-author-list a) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
601 (maphash #'authors-add-to-author-list table) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49506
diff
changeset
|
602 (setq authors-author-list |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
603 (sort authors-author-list |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
604 (lambda (a b) (string-lessp (car a) (car b))))) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
605 (dolist (a authors-author-list) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
606 (let ((author (car a)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
607 (wrote (nth 1 a)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
608 (changed (nth 2 a)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
609 file) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
610 (insert "\n" author ": ") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
611 (when wrote |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
612 (insert "wrote") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
613 (dolist (file wrote) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
614 (if (> (+ (current-column) (length file)) 72) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
615 (insert "\n ")) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
616 (insert " " file)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
617 (insert "\n")) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
618 (when changed |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
619 (if wrote |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
620 (insert "and ")) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
621 (insert "changed") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
622 (dolist (file changed) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
623 (if (> (+ (current-column) (length file)) 72) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
624 (insert "\n ")) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
625 (insert " " file)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
626 (insert "\n"))))) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49506
diff
changeset
|
627 (insert "\nLocal" " Variables:\ncoding: " |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
628 (symbol-name authors-coding-system) "\nEnd:\n") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
629 (message "Generating buffer %s... done" buffer-name) |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
630 (unless noninteractive |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
631 (when authors-invalid-file-names |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
632 (with-current-buffer (get-buffer-create "*Authors Errors*") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
633 (erase-buffer) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
634 (set-buffer-file-coding-system authors-coding-system) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
635 (insert "Unrecognized file entries found:\n\n") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
636 (mapcar (lambda (f) (if (not (string-match "^[A-Za-z]+$" f)) (insert f "\n"))) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
637 (sort authors-invalid-file-names 'string-lessp)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
638 (goto-char (point-min)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
639 (compilation-mode) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
640 (message "Errors were found. See buffer %s" (buffer-name)))) |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
641 (pop-to-buffer buffer-name)))) |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
642 |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
643 |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
644 (defun batch-update-authors () |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
645 "Produce an AUTHORS file. |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
646 Call this function in batch mode with two command line arguments FILE |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
647 and ROOT. FILE is the file to write, ROOT is the root directory of |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
648 the Emacs source tree, from which to build the file." |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
649 (unless noninteractive |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
650 (error "`batch-update-authors' is to be used only with -batch")) |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
651 (when (/= (length command-line-args-left) 2) |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
652 (error "Call `batch-update-authors' with the name of the file to write")) |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
653 (let* ((file (pop command-line-args-left)) |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
654 (root (pop command-line-args-left))) |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
655 (authors root) |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
656 (write-file file))) |
30790 | 657 |
52401 | 658 ;;; arch-tag: 659d5900-5ff2-43b0-954c-a315cc1e4dc1 |
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
36010
diff
changeset
|
659 ;;; authors.el ends here |