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