Mercurial > emacs
annotate lisp/emacs-lisp/authors.el @ 101114:96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
(authors-fixed-case, authors-ignored-files, authors-valid-file-names):
(authors-renamed-files-alist): Add entries.
(authors-fixed-entries): Update for renamed and removed files.
(authors-canonical-file-name): Add entries to
authors-checked-files-alist based on their full names, expanded relative
to each log-file directory.
(authors-scan-el, authors-add-to-author-list, authors):
Handle multiple authors in a file, via a new :cowrote category.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Sun, 11 Jan 2009 03:03:21 +0000 |
parents | a9dc0e7c3f2b |
children | d48dae481708 |
rev | line source |
---|---|
98259
a11d17643bb1
Ulrich Mueller <ulm at kph.uni-mainz.de>
Glenn Morris <rgm@gnu.org>
parents:
94655
diff
changeset
|
1 ;;; authors.el --- utility for maintaining Emacs' AUTHORS file -*-coding: utf-8;-*- |
30790 | 2 |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
3 ;; Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
4 ;; 2009 Free Software Foundation, Inc. |
30790 | 5 |
33752
9ebf8de0e42c
Remove autoload cookied, add author,
Gerd Moellmann <gerd@gnu.org>
parents:
33151
diff
changeset
|
6 ;; 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
|
7 ;; Maintainer: Kim F. Storm <storm@cua.dk> |
33752
9ebf8de0e42c
Remove autoload cookied, add author,
Gerd Moellmann <gerd@gnu.org>
parents:
33151
diff
changeset
|
8 ;; Keywords: maint |
9ebf8de0e42c
Remove autoload cookied, add author,
Gerd Moellmann <gerd@gnu.org>
parents:
33151
diff
changeset
|
9 |
30790 | 10 ;; This file is part of GNU Emacs. |
11 | |
94655
90a2847062be
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
12 ;; GNU Emacs is free software: you can redistribute it and/or modify |
30790 | 13 ;; it under the terms of the GNU General Public License as published by |
94655
90a2847062be
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
14 ;; the Free Software Foundation, either version 3 of the License, or |
90a2847062be
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
15 ;; (at your option) any later version. |
30790 | 16 |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
94655
90a2847062be
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
30790 | 24 |
25 ;;; Commentary: | |
26 | |
27 ;; Use M-x authors RET to create an *Authors* buffer that can used as | |
28 ;; or merged with Emacs' AUTHORS file. | |
29 | |
30 ;;; Code: | |
31 | |
98259
a11d17643bb1
Ulrich Mueller <ulm at kph.uni-mainz.de>
Glenn Morris <rgm@gnu.org>
parents:
94655
diff
changeset
|
32 (defvar authors-coding-system 'utf-8 |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
33 "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
|
34 |
30790 | 35 (defconst authors-many-files 20 |
36 "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
|
37 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
|
38 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
|
39 files.") |
30790 | 40 |
41 (defconst authors-aliases | |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
42 '( |
100541
feefe0473234
(authors-aliases): Add some more aliases.
Glenn Morris <rgm@gnu.org>
parents:
100535
diff
changeset
|
43 ("Aaron S. Hawley" "Aaron Hawley") |
71215
6a147eb20dc7
(authors-aliases): Add mode aliases.
Kim F. Storm <storm@cua.dk>
parents:
69709
diff
changeset
|
44 ("Andrew Csillag" "Drew Csillag") |
74290
dfdd8a9755b0
(authors-aliases): Add new alias.
Glenn Morris <rgm@gnu.org>
parents:
73748
diff
changeset
|
45 ("Anna M. Bigatti" "Anna Bigatti") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
46 ("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
|
47 "Barry A. Warsaw, ITB" "Barry Warsaw") |
98259
a11d17643bb1
Ulrich Mueller <ulm at kph.uni-mainz.de>
Glenn Morris <rgm@gnu.org>
parents:
94655
diff
changeset
|
48 ("Björn Torkelsson" "Bjorn Torkelsson") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
49 ("Brian Fox" "Brian J. Fox") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
50 ("Christoph Wedler" "Christoph.Wedler@sap.com") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
51 ("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
|
52 "<Daniel.Pfeiffer@Informatik.START.dbp.de>") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
53 ("David Gillespie" "Dave Gillespie") |
98259
a11d17643bb1
Ulrich Mueller <ulm at kph.uni-mainz.de>
Glenn Morris <rgm@gnu.org>
parents:
94655
diff
changeset
|
54 ("David Kågedal" "David K..edal") |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
55 ("David M. Koppelman" "David M. Koppelman, Koppel@Ec?e.Lsu.Edu" |
69709
29132bd8c886
Add a few aliases. Ignore changes to AUTHORS file.
Kim F. Storm <storm@cua.dk>
parents:
68648
diff
changeset
|
56 "David Koppelman") |
56970
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
57 ("David M. Smith" "David Smith" "David M Smith") |
100541
feefe0473234
(authors-aliases): Add some more aliases.
Glenn Morris <rgm@gnu.org>
parents:
100535
diff
changeset
|
58 ("Deepak Goel" "D. Goel") |
56970
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
59 ("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
|
60 ("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
|
61 "Reingold Edward M") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
62 ("Eli Zaretskii" "eliz") |
61387
48fd09671b41
(authors-aliases): Update list.
Kim F. Storm <storm@cua.dk>
parents:
56970
diff
changeset
|
63 ("Emilio C. Lopes" "Emilio Lopes") |
56970
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
64 ("Era Eriksson" "Era@Iki.Fi") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
65 ("Eric M. Ludlam" "Eric Ludlam") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
66 ("Eric S. Raymond" "Eric Raymond") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
67 ("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
|
68 ("Francis J. Wright" "Dr Francis J. Wright" "Francis Wright") |
98259
a11d17643bb1
Ulrich Mueller <ulm at kph.uni-mainz.de>
Glenn Morris <rgm@gnu.org>
parents:
94655
diff
changeset
|
69 ("François Pinard" "Francois Pinard") |
a11d17643bb1
Ulrich Mueller <ulm at kph.uni-mainz.de>
Glenn Morris <rgm@gnu.org>
parents:
94655
diff
changeset
|
70 ("Francesco Potortì" "Francesco Potorti" "Francesco Potorti`") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
71 ("Frederic Pierresteguy" "Fred Pierresteguy") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
72 ("Geoff Voelker" "voelker") |
98259
a11d17643bb1
Ulrich Mueller <ulm at kph.uni-mainz.de>
Glenn Morris <rgm@gnu.org>
parents:
94655
diff
changeset
|
73 ("Gerd Möllmann" "Gerd Moellmann") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
74 ("Hallvard B. Furuseth" "Hallvard B Furuseth") |
98259
a11d17643bb1
Ulrich Mueller <ulm at kph.uni-mainz.de>
Glenn Morris <rgm@gnu.org>
parents:
94655
diff
changeset
|
75 ("Hrvoje Nikšić" "Hrvoje Niksic") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
76 (nil "(afs@hplb.hpl.hp.com)") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
77 (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
|
78 (nil "Code Extracted") |
74944
a4a07479f11c
(authors-aliases): Anchor FSF alias regexp,
Kim F. Storm <storm@cua.dk>
parents:
74466
diff
changeset
|
79 (nil "\\`FSF") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
80 (nil "ISO-2022-JP") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
81 ("Jaeyoun Chung" "Jae-youn Chung" "Jae-you Chung" "Chung Jae-youn") |
98259
a11d17643bb1
Ulrich Mueller <ulm at kph.uni-mainz.de>
Glenn Morris <rgm@gnu.org>
parents:
94655
diff
changeset
|
82 ("Jan Djärv" "Jan D." "Jan Djarv") |
56970
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
83 ("Jay K. Adams" "jka@ece.cmu.edu" "Jay Adams") |
98259
a11d17643bb1
Ulrich Mueller <ulm at kph.uni-mainz.de>
Glenn Morris <rgm@gnu.org>
parents:
94655
diff
changeset
|
84 ("Jérôme Marant" "Jérôme Marant" "Jerome Marant") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
85 ("Jens-Ulrik Holger Petersen" "Jens-Ulrik Petersen") |
69709
29132bd8c886
Add a few aliases. Ignore changes to AUTHORS file.
Kim F. Storm <storm@cua.dk>
parents:
68648
diff
changeset
|
86 ("Jeremy Bertram Maitin-Shepard" "Jeremy Maitin-Shepard") |
98259
a11d17643bb1
Ulrich Mueller <ulm at kph.uni-mainz.de>
Glenn Morris <rgm@gnu.org>
parents:
94655
diff
changeset
|
87 ("Johan Bockgård" "Johan Bockgard") |
61387
48fd09671b41
(authors-aliases): Update list.
Kim F. Storm <storm@cua.dk>
parents:
56970
diff
changeset
|
88 ("John W. Eaton" "John Eaton") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
89 ("Jonathan I. Kamens" "Jonathan Kamens") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
90 ("Joseph Arceneaux" "Joe Arceneaux") |
98259
a11d17643bb1
Ulrich Mueller <ulm at kph.uni-mainz.de>
Glenn Morris <rgm@gnu.org>
parents:
94655
diff
changeset
|
91 ("Juan León Lahoz García" "Juan-Leon Lahoz Garcia") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
92 ("K. Shane Hartman" "Shane Hartman") |
98259
a11d17643bb1
Ulrich Mueller <ulm at kph.uni-mainz.de>
Glenn Morris <rgm@gnu.org>
parents:
94655
diff
changeset
|
93 ("Kai Großjohann" "Kai Grossjohann" "Kai Großjohann" |
56970
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
94 "Kai.Grossjohann@Cs.Uni-Dortmund.De" |
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
95 "Kai.Grossjohann@Gmx.Net") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
96 ("Karl Berry" "K. Berry") |
98259
a11d17643bb1
Ulrich Mueller <ulm at kph.uni-mainz.de>
Glenn Morris <rgm@gnu.org>
parents:
94655
diff
changeset
|
97 ("Károly Lőrentey" "Károly Lőrentey" "Lőrentey Károly") |
56970
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
98 ("Kazushi Marukawa" "Kazushi") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
99 ("Ken Manheimer" "Kenneth Manheimer") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
100 ("Kenichi Handa" "Ken'ichi Handa" "Kenichi HANDA") |
61387
48fd09671b41
(authors-aliases): Update list.
Kim F. Storm <storm@cua.dk>
parents:
56970
diff
changeset
|
101 ("Kevin Greiner" "Kevin J. Greiner") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
102 ("Kim F. Storm" "Kim Storm") |
56970
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
103 ("Kyle Jones" "Kyle E. Jones") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
104 ("Marcus G. Daniels" "Marcus Daniels") |
56970
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
105 ("Mark D. Baushke" "Mark D Baushke") |
98259
a11d17643bb1
Ulrich Mueller <ulm at kph.uni-mainz.de>
Glenn Morris <rgm@gnu.org>
parents:
94655
diff
changeset
|
106 ("Agustín Martín" "Agustin Martin") |
56970
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
107 ("Martin Lorentzon" "Martin Lorentzson") |
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
108 ("Matt Swift" "Matthew Swift") |
61387
48fd09671b41
(authors-aliases): Update list.
Kim F. Storm <storm@cua.dk>
parents:
56970
diff
changeset
|
109 ("Michael R. Mauger" "Michael Mauger") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
110 ("Michael D. Ernst" "Michael Ernst") |
98259
a11d17643bb1
Ulrich Mueller <ulm at kph.uni-mainz.de>
Glenn Morris <rgm@gnu.org>
parents:
94655
diff
changeset
|
111 ("Michaël Cadilhac" "Michael Cadilhac") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
112 ("Michael I. Bushnell" "Michael I Bushnell" "Michael I. Bushnell, P/Bsg") |
61387
48fd09671b41
(authors-aliases): Update list.
Kim F. Storm <storm@cua.dk>
parents:
56970
diff
changeset
|
113 ("Mikio Nakajima" "Nakajima Mikio") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
114 ("Paul Eggert" "eggert") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
115 ("Paul Reilly" "(pmr@legacy.pajato.com)") |
100870
373ba628faa9
(authors-aliases): Addition.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
100541
diff
changeset
|
116 ("Pavel Janík" "Pavel Janík Ml." "Pavel Janik Ml." "Pavel Janik" "Pavel Janík" "Pavel@Janik.Cz") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
117 ("Per Abrahamsen" "Per Abhiddenware") |
56970
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
118 ("Peter S. Galbraith" "Peter Galbraith") |
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
119 ("Peter Runestig" "Peter 'luna' Runestig") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
120 ("Peter S. Galbraith" "Peter S Galbraith") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
121 ("Richard M. Stallman" "Richard M. Stallman,,," "Richard Stallman" |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49506
diff
changeset
|
122 "rms" "rms@gnu.org") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
123 ("Robert J. Chassell" "Bob Chassell") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
124 ("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
|
125 ("Rui-Tao Dong" "Rui-Tao Dong ~{6-Hpln~}") |
71756
d47d35f3df43
(authors-aliases): Update.
Romain Francoise <romain@orebokech.com>
parents:
71215
diff
changeset
|
126 ("Sacha Chua" "Sandra Jean Chua") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
127 ("Sam Steingold" "Sam Shteingold") |
71215
6a147eb20dc7
(authors-aliases): Add mode aliases.
Kim F. Storm <storm@cua.dk>
parents:
69709
diff
changeset
|
128 ("Satyaki Das" "Indexed search by Satyaki Das") |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
129 ;; There are other Stefans. |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
130 ;;; ("Stefan Monnier" "Stefan") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
131 ("Stephen A. Wood" "(saw@cebaf.gov)") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
132 ("Steven L. Baur" "SL Baur" "Steven L Baur") |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
133 ("Stewart M. Clamen" "Stewart Clamen") |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
134 ("Taichi Kawabata" "KAWABATA,? Taichi") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
135 ("Takaaki Ota" "Tak Ota") |
61387
48fd09671b41
(authors-aliases): Update list.
Kim F. Storm <storm@cua.dk>
parents:
56970
diff
changeset
|
136 ("Takahashi Naoto" "Naoto Takahashi") |
56970
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
137 ("Teodor Zlatanov" "Ted Zlatanov") |
98259
a11d17643bb1
Ulrich Mueller <ulm at kph.uni-mainz.de>
Glenn Morris <rgm@gnu.org>
parents:
94655
diff
changeset
|
138 ("Torbjörn Axelsson" "Torbjvrn Axelsson") |
a11d17643bb1
Ulrich Mueller <ulm at kph.uni-mainz.de>
Glenn Morris <rgm@gnu.org>
parents:
94655
diff
changeset
|
139 ("Torbjörn Einarsson" "Torbj.*rn Einarsson") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
140 ("Toru Tomabechi" "Toru Tomabechi,") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
141 ("Vincent Del Vecchio" "Vince Del Vecchio") |
71215
6a147eb20dc7
(authors-aliases): Add mode aliases.
Kim F. Storm <storm@cua.dk>
parents:
69709
diff
changeset
|
142 ("William M. Perry" "Bill Perry") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
143 ("Wlodzimierz Bzyl" "W.*dek Bzyl") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
144 ("Yutaka NIIBE" "NIIBE Yutaka") |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
145 ) |
30790 | 146 "Alist of author aliases. |
147 | |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
148 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
|
149 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
|
150 If REALNAME is nil, ignore that author.") |
30790 | 151 |
100535
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
152 (defconst authors-fixed-case |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
153 '("Bryan O'Sullivan" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
154 "Christian von Roques" |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
155 "Christophe de Dinechin" |
100535
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
156 "Craig McDaniel" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
157 "David J. MacKenzie" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
158 "David McCabe" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
159 "David O'Toole" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
160 "Dominique de Waleffe" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
161 "Edward O'Connor" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
162 "Exal de Jesus Garcia Carrillo" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
163 "Greg McGary" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
164 "Hans de Graaff" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
165 "James TD Smith" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
166 "Michael McNamara" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
167 "Mike McEwan" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
168 "Peter von der Ahe" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
169 "Peter O'Gorman" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
170 "Roland McGrath" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
171 "Sean O'Rourke") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
172 "List of authors whose names cannot be simply capitalized.") |
30790 | 173 |
33151
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
174 (defvar authors-public-domain-files |
100535
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
175 '("emerge\\.el" |
33151
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
176 "vi\\.el" |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
177 "feedmail\\.el" |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
178 "mailpost\\.el" |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
179 "hanoi\\.el" |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
180 "meese\\.el" |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
181 "studly\\.el" |
100535
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
182 "modula2\\.el" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
183 "nnmaildir\\.el" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
184 "nnil\\.el" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
185 "b2m\\.c" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
186 "unexhp9k800\\.c" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
187 "emacsclient\\.1" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
188 "check-doc-strings") |
33151
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
189 "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
|
190 |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
191 |
32028
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
192 (defvar authors-obsolete-files-regexps |
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
193 '("vc-\\*\\.el$" |
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
194 "spec.txt$" |
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
195 "vc-\\(rcs\\|cvs\\|sccs\\)-hooks\\.el$") |
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
196 "List of regexps matching obsolete files. |
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
197 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
|
198 listed.") |
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
199 |
61387
48fd09671b41
(authors-aliases): Update list.
Kim F. Storm <storm@cua.dk>
parents:
56970
diff
changeset
|
200 (defconst authors-ignored-files |
48fd09671b41
(authors-aliases): Update list.
Kim F. Storm <storm@cua.dk>
parents:
56970
diff
changeset
|
201 '("external-lisp" |
48fd09671b41
(authors-aliases): Update list.
Kim F. Storm <storm@cua.dk>
parents:
56970
diff
changeset
|
202 "lock" "share-lib" "local-lisp" |
48fd09671b41
(authors-aliases): Update list.
Kim F. Storm <storm@cua.dk>
parents:
56970
diff
changeset
|
203 "noleim-Makefile.in" |
100535
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
204 "NEWS" "ORDERS" "PROBLEMS" "FAQ" "AUTHORS" "FOR-RELEASE" "TODO" "todo" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
205 "MACHINES" "SERVICE" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
206 "README.unicode" "README.multi-tty" "TUTORIAL.translators" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
207 "NEWS.unicode" "COPYING.DJ" "Makefile.old" "Makefile.am" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
208 "NEWS.1" "OOOOONEWS...OONEWS" "OOOONEWS" "etc/NEWS" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
209 "NEWS.1-17" "NEWS.18" "NEWS.19" "NEWS.20" "NEWS.21" "NEWS.22" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
210 "install-sh" "missing" "mkinstalldirs" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
211 "termcap.dat" "termcap.src" "termcap.ucb" "termcap" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
212 "ChangeLog.nextstep" "Emacs.clr" "spec.txt" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
213 "gfdl.1" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
214 "texi/Makefile.in" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
215 "Imakefile" "icons/sink.ico" "aixcc.lex" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
216 "nxml/char-name/unicode" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
217 ;; Never had any meaningful changes logged, now deleted: |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
218 "split-man" "Xkeymap.txt" "ms-7bkermit" "ulimit.hack" |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
219 "gnu-hp300" "refcard.bit" "ledit.l" "forms.README" "forms-d2.dat" |
100535
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
220 "CXTERM-DIC/PY.tit" "CXTERM-DIC/ZIRANMA.tit" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
221 "CXTERM-DIC/CTLau.tit" "CXTERM-DIC/CTLauB.tit" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
222 "NICKLES.WORTH" "INTERVAL.IDEAS" "RCP" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
223 "3B-MAXMEM" "AIX.DUMP" "SUN-SUPPORT" "XENIX" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
224 "CODINGS" "CHARSETS" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
225 "calc/INSTALL" "calc/Makefile" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
226 "vms-pp.trans" "_emacs" "batcomp.com" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
227 ;; MH-E stuff not in Emacs: |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
228 "import-emacs" "release-utils" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
229 ;; Erc stuff not in Emacs: |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
230 "ChangeLog.2001" "ChangeLog.2002" "ChangeLog.2003" "ChangeLog.2004" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
231 "ChangeLog.2005" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
232 "README.extras" "dir-template" "mkChangeLog" "MkChangeLog" "erc-auto.in" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
233 "CREDITS" "HACKING" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
234 "debian/changelog" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
235 "debian/control" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
236 "debian/copyright" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
237 "debian/maint/conffiles" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
238 "debian/maint/conffiles.in" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
239 "debian/maint/postinst" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
240 "debian/maint/postinst.in" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
241 "debian/maint/prerm" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
242 "debian/maint/prerm.in" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
243 "debian/README.Debian" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
244 "debian/README.erc-speak" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
245 "debian/rules" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
246 "debian/scripts/install" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
247 "debian/scripts/install.in" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
248 "debian/scripts/remove" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
249 "debian/scripts/remove.in" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
250 "debian/scripts/startup" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
251 "debian/scripts/startup.erc" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
252 "debian/scripts/startup.erc-speak" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
253 ) |
61387
48fd09671b41
(authors-aliases): Update list.
Kim F. Storm <storm@cua.dk>
parents:
56970
diff
changeset
|
254 "List of files and directories to ignore. |
48fd09671b41
(authors-aliases): Update list.
Kim F. Storm <storm@cua.dk>
parents:
56970
diff
changeset
|
255 Changes to files in this list are not listed.") |
32028
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
256 |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
257 (defconst authors-fixed-entries |
73748
a74dceb4b5f8
(authors-fixed-entries): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
73514
diff
changeset
|
258 '(("Richard M. Stallman" :wrote "[The original GNU Emacs and numerous files]") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
259 ("Joseph Arceneaux" :wrote "xrdb.c") |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
260 ("Blitz Product Development Corporation" :wrote "ispell.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
261 ("Frank Bresz" :wrote "diff.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
262 ("David M. Brown" :wrote "array.el") |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
263 ;; No longer distributed. |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
264 ;;; ("Gary Byers" :changed "xenix.h") |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
265 ("Shawn M. Carey" :wrote "freebsd.h") |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
266 ;; hp800.h renamed from hp9000s800.h, hpux.h merged into hpux10-20.h. |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
267 ("Eric Decker" :changed "hp800.h" "hpux10-20.h" "sysdep.c") |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
268 ("Lawrence R. Dodd" :cowrote "dired-x.el") |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
269 ;; No longer distributed. |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
270 ;;; ("Viktor Dukhovni" :wrote "unexsunos4.c") |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
271 ("Paul Eggert" :wrote "rcs2log" "vcdiff") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
272 ("Fred Fish" :changed "unexec.c") |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
273 ;; No longer distributed. |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
274 ;;; ("Tim Fleehart" :wrote "makefile.nt") |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
275 ("Keith Gabryelski" :wrote "hexl.c") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
276 ("Kevin Gallagher" :wrote "flow-ctrl.el") |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
277 ;; Also wrote an earlier version of disp-table.el, since replaced |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
278 ;; by Erik Naggum's version; also iso-syntax.el, later renamed to |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
279 ;; latin-1.el, since deleted. |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
280 ("Howard Gayle" :wrote "casetab.c") |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
281 ;; :wrote mh-pick.el, since merged into mh-search.el. |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
282 ;; FIXME current mh-funcs.el says it was written by Bill Wohler. |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
283 ("Stephen Gildea" :wrote "refcard.tex" "mh-funcs.el" |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
284 :cowrote "mh-search.el") |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
285 ;; cl.texinfo renamed to cl.texi. |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
286 ("David Gillespie" :wrote "cl.texi") |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
287 ;; No longer distributed: emacsserver.c. |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
288 ("Hewlett-Packard" :changed "emacsclient.c" "server.el" "keyboard.c") |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
289 ;; No longer distributed. |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
290 ;;; ("Thomas Horsley" :wrote "cxux.h" "cxux7.h") |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
291 ("Indiana University Foundation" :changed "buffer.c" "buffer.h" |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
292 "indent.c" "search.c" "xdisp.c" "region-cache.c" "region-cache.h") |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
293 ;; ibmrt.h, ibmrt-aix.h no longer distributed. |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
294 ("International Business Machines" :changed "emacs.c" "fileio.c" |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
295 "process.c" "sysdep.c" "unexec.c") |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
296 ;; No longer distributed. |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
297 ;;; ("Ishikawa Chiaki" :changed "aviion.h" "dgux.h") |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
298 ;; ymakefile no longer distributed. |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
299 ("Michael K. Johnson" :changed "configure.in" "emacs.c" "intel386.h" |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
300 "mem-limits.h" "process.c" "template.h" "sysdep.c" "syssignal.h" |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
301 "systty.h" "unexec.c" "linux.h") |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
302 ;; No longer distributed. |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
303 ;;; ("Kyle Jones" :wrote "mldrag.el") |
61387
48fd09671b41
(authors-aliases): Update list.
Kim F. Storm <storm@cua.dk>
parents:
56970
diff
changeset
|
304 ("Henry Kautz" :wrote "bib-mode.el") |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
305 ;; No longer distributed: vms-pwd.h, vmsfns.c, uaf.h. |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
306 ("Joseph M. Kelsey" :changed "fileio.c" "dir.h") |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
307 ("Sam Kendall" :changed "etags.c" "etags.el") |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
308 ;; ack.texi: "We're not using his backquote.el any more." |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
309 ("Richard King" :wrote "userlock.el" "filelock.c") |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
310 ("Larry Kolodney" :wrote "cvtmail.c") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
311 ("Sebastian Kremer" :changed "add-log.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
312 ("Mark Lambert" :changed "process.c" "process.h") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
313 ("Aaron Larson" :changed "bibtex.el") |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
314 ;; FIXME current mh-e.el says author Bill Wohler. |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
315 ("James R. Larus" :wrote "mh-e.el") |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
316 ("Lars Lindberg" :changed "dabbrev.el" :cowrote "imenu.el") |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
317 ;; No longer distributed: lselect.el. |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
318 ("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
|
319 "bytecomp.el" "delsel.el" "disass.el" "faces.el" "font-lock.el" |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
320 "lmenu.el" "mailabbrev.el" "select.el" "xfaces.c" "xselect.c") |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
321 ;; No longer distributed: emacsserver.c. |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
322 ("MCC" :changed "etags.c" "emacsclient.c" "movemail.c" |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
323 "rmail.el" "rmailedit.el" "rmailkwd.el" |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
324 "rmailmsc.el" "rmailout.el" "rmailsum.el" "scribe.el" |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
325 ;; FIXME current xmenu.c says authors: Jon Arnold, Roman Budzianowski, |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
326 ;; Robert Krawitz, RMS. |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
327 "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
|
328 ("Niall Mansfield" :changed "etags.c") |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
329 ("Brian Marick" :cowrote "hideif.el") |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
330 ("Marko Kohtala" :changed "info.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
331 ("Sidney Markowitz" :changed "doctor.el") |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
332 ;; No longer distributed: env.c. |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
333 ("Richard Mlynarik" :wrote "ehelp.el") |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
334 ("Mosur Mohan" :changed "etags.c") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
335 ("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
|
336 "vt220.el" "vt240.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
337 ("Motorola" :changed "buff-menu.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
338 ("Hiroshi Nakano" :changed "ralloc.c") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
339 ("Sundar Narasimhan" :changed "rnewspost.el") |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
340 ;; No longer distributed. |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
341 ;;; ("NeXT, Inc." :wrote "unexnext.c") |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
342 ("Mark Neale" :changed "fortran.el") |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
343 ;; Renamed from sc.el. |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
344 ("Martin Neitzel" :changed "supercite.el") |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
345 ("Andrew Oram" :changed "calendar.texi (and other files in man/)") |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
346 ("Frederic Pierresteguy" :wrote "widget.c") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
347 ("Michael D. Prange" :changed "tex-mode.el") |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
348 ;; No longer distributed (dgux5-4r3.h was renamed to dgux5-4-3.h). |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
349 ;;; ("Paul Reilly" :wrote "gux5-4r2.h" "dgux5-4-3.h") |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
350 ("Roland B. Roberts" :changed "files.el" "sort.el" |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
351 "buffer.h" "callproc.c" "dired.c" "process.c" "sysdep.c" "systty.h") |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
352 ;; No longer distributed. |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
353 ;;; "vmspaths.h" "build.com" "compile.com" "kepteditor.com" "precomp.com" |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
354 ;;; "vmsproc.el" :wrote "logout.com" "mailemacs.com") |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
355 ("Guillermo J. Rozas" :wrote "fakemail.c") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
356 ("Wolfgang Rupprecht" :changed "lisp-mode.el" "loadup.el" |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
357 "sort.el" "alloc.c" "callint.c" |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
358 ;; config.in renamed from config.h.in; ecrt0.c from crt0.c. |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
359 "config.in" "ecrt0.c" "data.c" "fns.c" |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
360 "lisp.h" "lread.c" ; "sun3.h" "ymakefile" - no longer distributed |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
361 "print.c" :wrote "float-sup.el" "floatfns.c") |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
362 ("Schlumberger Technology Corporation" :changed "gud.el") |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
363 ;; Replaced by tcl.el. |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
364 ;;; ("Gregor Schmid" :wrote "tcl-mode.el") |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
365 ("Rainer Schoepf" :wrote "alpha.h" "unexalpha.c") |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
366 ;; No longer distributed: emacsserver.c. |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
367 ("William Sommerfeld" :wrote "emacsclient.c" "scribe.el") |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
368 ;; No longer distributed: emacsserver.c. |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
369 ("Leigh Stoller" :changed "emacsclient.c" "server.el") |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
370 ("Steve Strassman" :wrote "spook.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
371 ("Shinichirou Sugou" :changed "etags.c") |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
372 ;; No longer distributed: emacsserver.c. |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
373 ("Sun Microsystems, Inc" :changed "emacsclient.c" "server.el" |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
374 :wrote "emacs.icon" "sun.el") |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
375 ;; No longer distributed. |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
376 ;;; "emacstool.1" "emacstool.c" "sun-curs.el" |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
377 ;;; "sun-fns.el" "sun-mouse.el" "sunfns.c") |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
378 ;; Renamed from sc.el. |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
379 ("Kayvan Sylvan" :changed "supercite.el") |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
380 ;; No longer distributed: emacsserver.c, tcp.c. |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
381 ("Spencer Thomas" :changed "emacsclient.c" "server.el" |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
382 "dabbrev.el" "unexec.c" "gnus.texi") |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
383 ("Jonathan Vail" :changed "vc.el") |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
384 ("James Van Artsdalen" :changed "usg5-4.h" "unexec.c") |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
385 ;; No longer distributed: src/makefile.nt, lisp/makefile.nt |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
386 ;; winnt.el renamed to w32-fns.el; nt.[ch] to w32.[ch]; |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
387 ;; ntheap.[ch] to w32heap.[ch]; ntinevt.c to w32inevt.c; |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
388 ;; ntproc.c to w32proc.c; ntterm.c to w32term.c; |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
389 ;; windowsnt.h to ms-w32.h. |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
390 ("Geoff Voelker" :wrote "w32-fns.el" "w32.c" "w32.h" "w32heap.c" |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
391 "w32heap.h" "w32inevt.c" "w32proc.c" "w32term.c" "ms-w32.h") |
99540
c5c8f07bc47c
* w32-fns.el (w32-shell-dos-semantics):
Juanma Barranquero <lekktu@gmail.com>
parents:
98259
diff
changeset
|
392 ("Morten Welinder" :wrote "dosfns.c" "[many MS-DOS files]" "msdos.h") |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
393 ;; Not using this version any more. |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
394 ;;; ("Pace Willisson" :wrote "ispell.el") |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
395 ("Garrett Wollman" :changed "sendmail.el") |
71215
6a147eb20dc7
(authors-aliases): Add mode aliases.
Kim F. Storm <storm@cua.dk>
parents:
69709
diff
changeset
|
396 ("Dale R. Worley" :changed "mail-extr.el") |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
397 ("Jamie Zawinski" :changed "bytecode.c" :wrote "tar-mode.el" |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
398 :cowrote "disass.el")) |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
399 "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
|
400 |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
401 |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
402 (defconst authors-valid-file-names |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
403 '("aclocal.m4" |
100535
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
404 "build-ins.in" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
405 "Makefile.noleim" |
61387
48fd09671b41
(authors-aliases): Update list.
Kim F. Storm <storm@cua.dk>
parents:
56970
diff
changeset
|
406 "makedist.bat" |
100535
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
407 "makefile.def" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
408 "makefile.nt" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
409 "debug.bat.in" "emacs.bat.in" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
410 ".gdbinit-union" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
411 "alloca.s" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
412 "make-delta" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
413 "config.w95" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
414 "emacstool.1" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
415 "align.umax" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
416 "cxux-crt0.s" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
417 "gould-sigvec.s" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
418 "getdate.y" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
419 "ymakefile" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
420 "permute-index" "index.perm" |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
421 "emacs.ico" |
100535
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
422 "emacs21.ico" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
423 "LPF" "LEDIT" "OTHER.EMACSES" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
424 "emacs16_mac.png" "emacs24_mac.png" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
425 "emacs256_mac.png" "emacs32_mac.png" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
426 "emacs48_mac.png" "emacs512_mac.png" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
427 ;; Deleted vms stuff: |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
428 "temacs.opt" "descrip.mms" "compile.com" "link.com" |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
429 ) |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
430 "File names which are valid, but no longer exist (or cannot be |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
431 found) in the repository.") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
432 |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
433 (defconst authors-renamed-files-alist |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
434 '(("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
|
435 ("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
|
436 ("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
|
437 ("ntproc.c" . "w32proc.c") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
438 ("w32console.c" . "w32term.c") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
439 ("unexnt.c" . "unexw32.c") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
440 ("s/windowsnt.h" . "s/ms-w32.h") |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
441 ("winnt.el" . "w32-fns.el") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
442 ("config.emacs" . "configure") |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
443 ("config.h.dist" . "config.in") |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
444 ("config.h-dist" . "config.in") |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
445 ("config.h.in" . "config.in") |
100535
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
446 ("paths.h-dist" . "paths.h.in") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
447 ("patch1" . "sed1.inp") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
448 ("GETTING.GNU.SOFTWARE" . "FTP") |
100535
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
449 ("etc/MACHINES" . "MACHINES") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
450 ("ONEWS" . "NEWS.19") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
451 ("ONEWS.1" . "NEWS.1-17") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
452 ("ONEWS.2" . "NEWS.1-17") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
453 ("ONEWS.3" . "NEWS.18") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
454 ("ONEWS.4" . "NEWS.18") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
455 ("ORDERS.USA" . "ORDERS") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
456 ("EUROPE" . "ORDERS") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
457 ("DIFF" . "OTHER.EMACSES") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
458 ("CCADIFF" . "OTHER.EMACSES") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
459 ("GOSDIFF" . "OTHER.EMACSES") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
460 ("Makefile.in.in" . "Makefile.in") |
61387
48fd09671b41
(authors-aliases): Update list.
Kim F. Storm <storm@cua.dk>
parents:
56970
diff
changeset
|
461 ("leim-Makefile" . "leim/Makefile") |
48fd09671b41
(authors-aliases): Update list.
Kim F. Storm <storm@cua.dk>
parents:
56970
diff
changeset
|
462 ("leim-Makefile.in" . "leim/Makefile.in") |
74944
a4a07479f11c
(authors-aliases): Anchor FSF alias regexp,
Kim F. Storm <storm@cua.dk>
parents:
74466
diff
changeset
|
463 ("emacs-lisp/testcover-ses.el" . "tcover-ses.el") |
a4a07479f11c
(authors-aliases): Anchor FSF alias regexp,
Kim F. Storm <storm@cua.dk>
parents:
74466
diff
changeset
|
464 ("emacs-lisp/testcover-unsafep.el" . "tcover-unsafep.el") |
61387
48fd09671b41
(authors-aliases): Update list.
Kim F. Storm <storm@cua.dk>
parents:
56970
diff
changeset
|
465 ("INSTALL-CVS" . "INSTALL.CVS") |
100535
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
466 ("refcards/fr-drdref.pdf" . "refcards/fr-dired-ref.pdf") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
467 ("gnus-logo.eps" . "refcards/gnus-logo.eps") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
468 ("build-install" . "build-ins.in") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
469 ("build-install.in" . "build-ins.in") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
470 ("unidata/Makefile" . "unidata/Makefile.in") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
471 ;; Not renamed, but we only have the latter in the Emacs repo. |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
472 ("trampver.texi.in" . "trampver.texi") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
473 ("e/eterm" . "e/eterm-color") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
474 ("e/eterm.ti" . "e/eterm-color.ti") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
475 ("README.txt" . "README") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
476 ("emacs.names" . "JOKES") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
477 ("ED.WORSHIP" . "JOKES") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
478 ("GNU.JOKES" . "JOKES") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
479 ("CHARACTERS" . "TODO") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
480 ("schema/xhtml-basic-form.rnc" . "schema/xhtml-bform.rnc" ) |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
481 ("schema/xhtml-basic-table.rnc" . "schema/xhtml-btable.rnc") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
482 ("schema/xhtml-list.rnc" . "schema/xhtml-lst.rnc") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
483 ("schema/xhtml-target.rnc" . "schema/xhtml-tgt.rnc") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
484 ("schema/xhtml-style.rnc" . "schema/xhtml-xstyle.rnc") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
485 ("schema/docbook-dyntbl.rnc" . "schema/docbk-dyntbl.rnc") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
486 ("schema/docbook-soextbl.rnc" . "schema/docbk-soextbl.rn" ) |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
487 ("texi/url.txi" . "url.texi") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
488 ;; Moved to different directories. |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
489 ("ctags.1" . "ctags.1") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
490 ("etags.1" . "etags.1") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
491 ("emacs.1" . "emacs.1") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
492 ("emacsclient.1" . "emacsclient.1") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
493 ("icons/emacs21.ico" . "emacs21.ico") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
494 ) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
495 "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
|
496 Elements are (OLDNAME . NEWNAME).") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
497 |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
498 (defconst authors-renamed-files-regexps |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
499 '(("^m/m-\\(.*\\.h\\)$" . "m/\\1") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
500 ("^m-\\(.*\\.h\\)$" . "\\1") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
501 ("^s/s-\\(.*\\.h\\)$" . "s/\\1") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
502 ("^s-\\(.*\\.h\\)$" . "\\1") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
503 ("^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
|
504 ("\\(.*\\)\\.cmd$" . "\\1.bat") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
505 ("\\.bat$" . t) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
506 ("\\.[ch]$" . t) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
507 ("\\.el$" . t) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
508 ("\\.ps$" . t) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
509 ("\\.texi?$" . t) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
510 ("\\.texinfo$" . t) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
511 ("\\.xml?$" . t) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
512 ("\\.x[pb]m$" . t) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
513 ("\\.[xp]bm$" . t) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
514 ("^paths\\." . t) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
515 ("^install\\." . t) |
100535
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
516 ("^\\(TUTORIAL[^/]*\\)" . "tutorials/\\1") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
517 ("^\\(tree-widget/\\(?:default\\|folder\\)/[-a-z]+\\.png\\)$" . |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
518 "images/\\1") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
519 ("^\\(images/icons/\\)mac\\(emacs\\)_\\([0-9]+\\)\\(\\.png\\)" . |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
520 "\\1\\2\\3_mac\\4") |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
521 ("\\(images/icons/\\)emacs_\\([0-9][0-9]\\)\\.png" . |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
522 "\\1hicolor/\\2x\\2/apps/emacs.png") |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
523 ) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
524 "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
|
525 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
|
526 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
|
527 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
|
528 |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
529 (defvar authors-checked-files-alist) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
530 (defvar authors-invalid-file-names) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
531 |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
532 (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
|
533 "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
|
534 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
|
535 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
|
536 the file name." |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
537 ;; FILE should be re-checked in every different directory associated |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
538 ;; with a LOG-FILE. Eg configure.in from src/ChangeLog is not the |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
539 ;; same as that from top-level/ChangeLog. |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
540 (let* ((fullname (expand-file-name file (file-name-directory log-file))) |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
541 (entry (assoc fullname authors-checked-files-alist)) |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
542 relname |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
543 valid) |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
544 (if entry |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
545 (cdr entry) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
546 (setq relname (file-name-nondirectory file)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
547 (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
|
548 (file-exists-p file) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
549 (file-exists-p relname) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
550 (file-exists-p (concat "etc/" relname))) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
551 (setq valid relname) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
552 (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
|
553 (if valid |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
554 (setq valid (cdr valid)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
555 (let ((rules authors-renamed-files-regexps)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
556 (while rules |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
557 (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
|
558 (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
|
559 (file-name-nondirectory |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
560 (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
|
561 relname) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
562 rules nil)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
563 (setq rules (cdr rules)))))) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
564 (setq authors-checked-files-alist |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
565 (cons (cons fullname valid) authors-checked-files-alist)) |
71215
6a147eb20dc7
(authors-aliases): Add mode aliases.
Kim F. Storm <storm@cua.dk>
parents:
69709
diff
changeset
|
566 (unless (or valid |
100535
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
567 (member file authors-ignored-files) |
71215
6a147eb20dc7
(authors-aliases): Add mode aliases.
Kim F. Storm <storm@cua.dk>
parents:
69709
diff
changeset
|
568 (string-match "[*]" file) |
6a147eb20dc7
(authors-aliases): Add mode aliases.
Kim F. Storm <storm@cua.dk>
parents:
69709
diff
changeset
|
569 (string-match "^[0-9.]+$" file)) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49506
diff
changeset
|
570 (setq authors-invalid-file-names |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
571 (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
|
572 log-file |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
573 (1+ (count-lines (point-min) pos)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
574 file author) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
575 authors-invalid-file-names))) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
576 valid))) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
577 |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
578 (defun authors-add-fixed-entries (table) |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
579 "Add actions from `authors-fixed-entries' to TABLE." |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
580 (dolist (entry authors-fixed-entries) |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
581 (let ((author (car entry)) |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
582 action) |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
583 (dolist (item (cdr entry)) |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
584 (if (symbolp item) |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
585 (setq action item) |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
586 (authors-add author item action table)))))) |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
587 |
46290
0cd79941b83a
(authors-obsolete-file-p): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
41967
diff
changeset
|
588 |
32028
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
589 (defun authors-obsolete-file-p (file) |
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
590 "Return non-nil if FILE is obsolete. |
46290
0cd79941b83a
(authors-obsolete-file-p): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
41967
diff
changeset
|
591 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
|
592 from `authors-obsolete-files-regexps'." |
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
593 (let (obsolete-p |
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
594 (regexps authors-obsolete-files-regexps)) |
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
595 (while (and regexps (not obsolete-p)) |
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
596 (setq obsolete-p (string-match (car regexps) file) |
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
597 regexps (cdr regexps))) |
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
598 obsolete-p)) |
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
599 |
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
600 |
30790 | 601 (defun authors-add (author file action table) |
602 "Record that AUTHOR worked on FILE. | |
603 ACTION is a keyword symbol describing what he did. Record file, | |
604 author and what he did in hash table TABLE. See the description of | |
605 `authors-scan-change-log' for the structure of the hash table." | |
61387
48fd09671b41
(authors-aliases): Update list.
Kim F. Storm <storm@cua.dk>
parents:
56970
diff
changeset
|
606 (unless (or (member file authors-ignored-files) |
48fd09671b41
(authors-aliases): Update list.
Kim F. Storm <storm@cua.dk>
parents:
56970
diff
changeset
|
607 (authors-obsolete-file-p file) |
32529
efaa4e4c5fef
(authors-add): Don't add an entry if
Gerd Moellmann <gerd@gnu.org>
parents:
32028
diff
changeset
|
608 (equal author "")) |
32028
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
609 (let* ((value (gethash author table)) |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
610 (entry (assoc file value)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
611 slot) |
32028
1bb0e9c9c64d
(authors-obsolete-file-p): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32005
diff
changeset
|
612 (if (null entry) |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
613 (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
|
614 (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
|
615 (setcdr slot (1+ (cdr slot))) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
616 (nconc entry (list (cons action 1)))))))) |
30790 | 617 |
618 | |
619 (defun authors-canonical-author-name (author) | |
620 "Return a canonicalized form of AUTHOR, an author name. | |
100535
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
621 If AUTHOR has an entry in `authors-aliases', use that. Remove |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
622 email addresses. Capitalize words in the author's name, unless |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
623 it is found in `authors-fixed-case'." |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
624 (let* ((aliases authors-aliases) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
625 regexps realname) |
30790 | 626 (while aliases |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
627 (setq realname (car (car aliases)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
628 regexps (cdr (car aliases)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
629 aliases (cdr aliases)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
630 (while regexps |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
631 (if (string-match (car regexps) author) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
632 (setq author realname |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
633 regexps nil |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
634 aliases nil) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
635 (setq regexps (cdr regexps)))))) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
636 (when author |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
637 (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
|
638 (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
|
639 (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
|
640 (setq author (replace-regexp-in-string "[ \t]+" " " author)) |
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
641 (unless (string-match "[-, \t]" author) |
b71fc0f47c9a
(authors-aliases): Add more aliases.
Kim F. Storm <storm@cua.dk>
parents:
52921
diff
changeset
|
642 (setq author "")) |
100535
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
643 (or (car (member author authors-fixed-case)) |
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
644 (capitalize author)))) |
30790 | 645 |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
646 (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
|
647 "Scan change log LOG-FILE for author information. |
30790 | 648 |
649 For each change mentioned in the log, add an entry to hash table TABLE | |
650 under the author's canonical name. | |
651 | |
652 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
|
653 \(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
|
654 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
|
655 with the file and the number of each action. |
30790 | 656 |
657 :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
|
658 :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
|
659 |
85864 | 660 (let* ((enable-local-variables :safe) |
661 (enable-local-eval nil) | |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
662 (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
|
663 (buffer (find-file-noselect log-file)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
664 author file pos) |
30790 | 665 (save-excursion |
666 (set-buffer buffer) | |
667 (save-restriction | |
668 (widen) | |
669 (goto-char (point-min)) | |
670 (while (re-search-forward "^[0-9]\\|^[ \t]+\\* " nil t) | |
671 (beginning-of-line) | |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
672 (setq pos (point)) |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
673 ;; FIXME handle joint authorship. |
30790 | 674 (cond ((looking-at "^[0-9]+-[0-9]+-[0-9]+") |
675 (skip-chars-forward " \t+:0-9-") | |
676 (setq author (buffer-substring-no-properties | |
677 (point) (line-end-position))) | |
678 (setq author (authors-canonical-author-name author)) | |
679 (forward-line 1)) | |
680 ((looking-at "^[ \t]+\\*") | |
681 (let ((line (buffer-substring-no-properties | |
682 (match-end 0) (line-end-position)))) | |
683 (while (and (not (string-match ":" line)) | |
684 (forward-line 1) | |
685 (not (looking-at ":\\|^[ \t]*$"))) | |
686 (setq line (concat line | |
687 (buffer-substring-no-properties | |
688 (line-beginning-position) | |
689 (line-end-position))))) | |
690 (when (string-match ":" line) | |
691 (setq line (substring line 0 (match-beginning 0))) | |
692 (setq line (replace-regexp-in-string "[[(<{].*$" "" line)) | |
693 (setq line (replace-regexp-in-string "," "" line)) | |
694 (dolist (file (split-string line)) | |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
695 (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
|
696 ;;(message "%s changed %s" author file) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
697 (authors-add author file :changed table)))) |
30790 | 698 (forward-line 1))))))) |
699 (unless existing-buffer | |
700 (kill-buffer buffer)))) | |
701 | |
702 | |
703 (defun authors-scan-el (file table) | |
704 "Scan Lisp file FILE for author information. | |
705 TABLE is a hash table to add author information to." | |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
706 (let ((existing-buffer (get-file-buffer file)) |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
707 (enable-local-variables :safe) |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
708 (enable-local-eval nil) |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
709 (buffer (find-file-noselect file))) |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
710 (setq file (file-name-nondirectory file)) |
30790 | 711 (save-excursion |
712 (set-buffer buffer) | |
713 (save-restriction | |
714 (widen) | |
715 (goto-char (point-min)) | |
716 (while (and (re-search-forward | |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
717 "^;+[ \t]*\\(Authors?\\|Commentary\\|Code\\):[ \t]*" nil t) |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
718 (not (member (match-string 1) '("Commentary" "Code")))) |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
719 (let ((continue t) |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
720 (action :wrote) |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
721 authors) |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
722 (while continue |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
723 ;; Some entries contain a year range in front of the |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
724 ;; author's name. |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
725 (skip-chars-forward "-0-9 \t") |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
726 (push (authors-canonical-author-name |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
727 (buffer-substring-no-properties |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
728 (point) (line-end-position))) authors) |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
729 ;; tips.texi says the continuation line should begin |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
730 ;; with a tab, but often spaces are used. |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
731 (setq continue |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
732 (and (zerop (forward-line 1)) |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
733 (looking-at ";;;?\\(\t+ *\\| +\\)[[:alnum:]]") |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
734 (goto-char (1- (match-end 0))) |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
735 (not (looking-at "[[:upper:]][-[:alpha:]]+:[ \t]"))))) |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
736 (and (> (length authors) 1) |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
737 (setq action :cowrote)) |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
738 (mapc (lambda (author) |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
739 (authors-add author file action table)) |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
740 authors))))) |
30790 | 741 (unless existing-buffer |
742 (kill-buffer buffer)))) | |
743 | |
744 | |
33151
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
745 (defun authors-public-domain-p (file) |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
746 "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
|
747 (let ((public-domain-p nil) |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
748 (list authors-public-domain-files)) |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
749 (while (and list (not public-domain-p)) |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
750 (when (string-match (car list) file) |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
751 (setq public-domain-p t)) |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
752 (setq list (cdr list))) |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
753 public-domain-p)) |
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
754 |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
755 (defvar authors-author-list) |
33151
452df6342ae5
(authors-public-domain-files): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
32885
diff
changeset
|
756 |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
757 (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
|
758 "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
|
759 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
|
760 `authors-scan-change-log'. |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
761 The element added to `authors-author-list' is (AUTHOR WROTE CO-WROTE CHANGED), |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
762 where WROTE, CO-WROTE, and CHANGED are lists of the files written, co-written |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
763 and changed by AUTHOR." |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
764 (when author |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
765 (let ((nchanged 0) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
766 wrote-list |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
767 cowrote-list |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
768 changed-list) |
30790 | 769 (dolist (change changes) |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
770 (let* ((actions (cdr change)) |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
771 (file (car change)) |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
772 (filestat (if (authors-public-domain-p file) |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
773 (concat file " (public domain)") |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
774 file)) |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
775 slot) |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
776 (cond ((assq :wrote actions) |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
777 (setq wrote-list (cons filestat wrote-list))) |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
778 ((assq :cowrote actions) |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
779 (setq cowrote-list (cons filestat cowrote-list))) |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
780 (t |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
781 (setq changed-list |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
782 (cons (cons file (cdr (assq :changed actions))) |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
783 changed-list)))))) |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
784 (if wrote-list |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
785 (setq wrote-list (sort wrote-list 'string-lessp))) |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
786 (if cowrote-list |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
787 (setq cowrote-list (sort cowrote-list 'string-lessp))) |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
788 (when changed-list |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
789 (setq changed-list (sort changed-list |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
790 (lambda (a b) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
791 (if (= (cdr a) (cdr b)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
792 (string-lessp (car a) (car b)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
793 (> (cdr a) (cdr b)))))) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
794 (setq nchanged (length changed-list)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
795 (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
|
796 (if (> (- nchanged authors-many-files) 2) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
797 (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
|
798 (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
|
799 (setq authors-author-list |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
800 (cons (list author wrote-list cowrote-list changed-list) |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
801 authors-author-list))))) |
30790 | 802 |
803 (defun authors (root) | |
804 "Extract author information from change logs and Lisp source files. | |
805 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
|
806 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
|
807 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
|
808 buffer *Authors Errors* containing references to unknown files." |
30790 | 809 (interactive "DEmacs source directory: ") |
36010
c486995553f8
(authors): Expand `root' before running
Dave Love <fx@gnu.org>
parents:
33752
diff
changeset
|
810 (setq root (expand-file-name root)) |
88084
60aaa6c4ca3c
(authors): Use `find-program' and `grep-program'
Juanma Barranquero <lekktu@gmail.com>
parents:
87649
diff
changeset
|
811 (let ((logs (process-lines find-program root "-name" "ChangeLog*")) |
30790 | 812 (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
|
813 (buffer-name "*Authors*") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
814 authors-checked-files-alist |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
815 authors-invalid-file-names) |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
816 (authors-add-fixed-entries table) |
30790 | 817 (unless (file-exists-p (expand-file-name "src/emacs.c" root)) |
100870
373ba628faa9
(authors-aliases): Addition.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
100541
diff
changeset
|
818 (unless (y-or-n-p |
373ba628faa9
(authors-aliases): Addition.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
100541
diff
changeset
|
819 (format "Not the root directory of Emacs: %s, continue? " root)) |
373ba628faa9
(authors-aliases): Addition.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
100541
diff
changeset
|
820 (error "Not the root directory."))) |
30790 | 821 (dolist (log logs) |
62431
9ffac6fd4aa8
(authors): Do parse the ChangeLogs of the Emacs Lisp Reference Manual.
Lute Kamstra <lute@gnu.org>
parents:
61387
diff
changeset
|
822 (when (string-match "ChangeLog\\(.[0-9]+\\)?$" log) |
30790 | 823 (message "Scanning %s..." log) |
824 (authors-scan-change-log log table))) | |
88084
60aaa6c4ca3c
(authors): Use `find-program' and `grep-program'
Juanma Barranquero <lekktu@gmail.com>
parents:
87649
diff
changeset
|
825 (let ((els (process-lines find-program root "-name" "*.el"))) |
30790 | 826 (dolist (file els) |
827 (message "Scanning %s..." file) | |
828 (authors-scan-el file table))) | |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
829 (message "Generating buffer %s..." buffer-name) |
30790 | 830 (set-buffer (get-buffer-create buffer-name)) |
831 (erase-buffer) | |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
832 (set-buffer-file-coding-system authors-coding-system) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49506
diff
changeset
|
833 (insert |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
834 "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
|
835 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
|
836 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
|
837 list of their contributions.\n") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
838 (let (authors-author-list a) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
839 (maphash #'authors-add-to-author-list table) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49506
diff
changeset
|
840 (setq authors-author-list |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
841 (sort authors-author-list |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
842 (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
|
843 (dolist (a authors-author-list) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
844 (let ((author (car a)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
845 (wrote (nth 1 a)) |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
846 (cowrote (nth 2 a)) |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
847 (changed (nth 3 a)) |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
848 file) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
849 (insert "\n" author ": ") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
850 (when wrote |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
851 (insert "wrote") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
852 (dolist (file wrote) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
853 (if (> (+ (current-column) (length file)) 72) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
854 (insert "\n ")) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
855 (insert " " file)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
856 (insert "\n")) |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
857 (when cowrote |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
858 (if wrote |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
859 (insert "and ")) |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
860 (insert "co-wrote") |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
861 (dolist (file cowrote) |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
862 (if (> (+ (current-column) (length file)) 72) |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
863 (insert "\n ")) |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
864 (insert " " file)) |
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
865 (insert "\n")) |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
866 (when changed |
101114
96ac887a2e25
(authors-aliases): Add, remove, and adjust some entries.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
867 (if (or wrote cowrote) |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
868 (insert "and ")) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
869 (insert "changed") |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
870 (dolist (file changed) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
871 (if (> (+ (current-column) (length file)) 72) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
872 (insert "\n ")) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
873 (insert " " file)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
874 (insert "\n"))))) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49506
diff
changeset
|
875 (insert "\nLocal" " Variables:\ncoding: " |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
876 (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
|
877 (message "Generating buffer %s... done" buffer-name) |
32885
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
878 (unless noninteractive |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
879 (when authors-invalid-file-names |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
880 (with-current-buffer (get-buffer-create "*Authors Errors*") |
100535
f337e02f9b2e
(authors-fixed-case): New constant.
Glenn Morris <rgm@gnu.org>
parents:
99540
diff
changeset
|
881 (setq buffer-read-only nil) |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
882 (erase-buffer) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
883 (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
|
884 (insert "Unrecognized file entries found:\n\n") |
84894
c9d3d80460e9
(authors): Use `mapc' rather than `mapcar'.
Juanma Barranquero <lekktu@gmail.com>
parents:
78217
diff
changeset
|
885 (mapc (lambda (f) (if (not (string-match "^[A-Za-z]+$" f)) (insert f "\n"))) |
c9d3d80460e9
(authors): Use `mapc' rather than `mapcar'.
Juanma Barranquero <lekktu@gmail.com>
parents:
78217
diff
changeset
|
886 (sort authors-invalid-file-names 'string-lessp)) |
49506
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
887 (goto-char (point-min)) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
888 (compilation-mode) |
ac9e2eeeb03d
New format of AUTHORS file; list each
Kim F. Storm <storm@cua.dk>
parents:
49469
diff
changeset
|
889 (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
|
890 (pop-to-buffer buffer-name)))) |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
891 |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
892 |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
893 (defun batch-update-authors () |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
894 "Produce an AUTHORS file. |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
895 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
|
896 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
|
897 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
|
898 (unless noninteractive |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
899 (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
|
900 (when (/= (length command-line-args-left) 2) |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
901 (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
|
902 (let* ((file (pop command-line-args-left)) |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
903 (root (pop command-line-args-left))) |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
904 (authors root) |
c5fc43371c70
(batch-update-authors): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
32832
diff
changeset
|
905 (write-file file))) |
30790 | 906 |
76951 | 907 (provide 'authors) |
908 | |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
88084
diff
changeset
|
909 ;; 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
|
910 ;;; authors.el ends here |