-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAUTHORS
6732 lines (4368 loc) · 216 KB
/
AUTHORS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Many people have contributed code included in the Free Software
Foundation's distribution of GNU Emacs. To show our appreciation for
their public spirit, we list here in alphabetical order a condensed
list of their contributions.
Aaron Conole: changed gnutls.c process.c
Aaron Ecay: changed ob-R.el ob-core.el org-src.el ox-latex.el nsterm.m
ob-awk.el ob-exp.el ob-python.el ob-tangle.el org-bibtex.el org-id.el
org.el org.texi package.el paren.el
Aaron Jensen: changed nsterm.m frameset.el xdisp-tests.el xdisp.c
Info.plist.in comp.el flyspell.el icomplete.el mouse.el
ruby-bracketed-args-indent.rb ruby-mode-tests.el ruby-mode.el server.el
systhread.c w32term.c xterm.c
Aaron Larson: co-wrote bibtex.el
Aaron L. Zeng: changed savehist.el
Aaron S. Hawley: wrote lisp-tests.el undo-tests.el
and changed simple.el files.texi isearch.el morse.el sgml-mode.el
tar-mode.el textmodes/table.el thingatpt.el add-log.el autoinsert.el
building.texi calc.el cc-fonts.el comint.el compare-w.el custom.texi
diff.el edebug.el etags.el ffap.el files.el and 30 other files
Abdó Roig-Maranges: changed org.el org-agenda.el ox-html.el ox-odt.el
Abhiseck Paira: changed eww.el
Abraham Nahum: changed configure.ac dgux4.h sysdep.c
Abramo Bagnara: changed term.c
Achim Gratz: changed org.el org-compat.el org.texi org-clock.el
ob-core.el ob-exp.el ob.el ob-perl.el ob-tangle.el org-agenda.el
org-macs.el org-table.el ob-C.el ob-R.el ob-eval.el ob-fortran.el
ob-python.el ob-ref.el ob-sh.el org-element.el org-exp-blocks.el
and 22 other files
Ackerley Tng: changed xref.el
Adam Gołębiowski: changed lib-src/Makefile.in
Adam Hupp: changed emacs.py emacs2.py emacs3.py gud.el
progmodes/python.el
Adam Porter: changed vtable.el tab-line.el cl-macs.el map.el control.texi
map-tests.el pcase-tests.el tab-bar.el variables.texi vtable.texi
Adam Sjøgren: changed mml2015.el shr.el spam.el xterm.c blink.xpm
braindamaged.xpm cry.xpm dead.xpm evil.xpm forced.xpm frown.xpm
gnus-sum.el grin.xpm gtkutil.c indifferent.xpm message.el
reverse-smile.xpm sad.xpm smile.xpm wry.xpm gnus-html.el
and 10 other files
Adam Sokolnicki: changed ruby-mode.el
Adam Spiers: changed org.texi calendar.el cus-edit.el org-clock.el
ox-html.el
Adam W: changed mail-source.el
Aditya Siram: changed ob.el
Adrian Aichner: changed erc-log.el erc.el erc-autojoin.el erc-backend.el
erc-dcc.el erc-members.el erc-nets.el erc-sound.el etags.c
gnus-score.el gnus-sum.el gnus.texi
Adrian Colley: changed aix3-2.h
Adrian Lanz: changed mail-source.el spam.el
Adrian Robert: co-wrote ns-win.el
and changed nsterm.m nsfns.m nsfont.m nsterm.h nsmenu.m configure.ac
src/Makefile.in macos.texi README config.in emacs.c font.c keyboard.c
nsgui.h nsimage.m xdisp.c image.c lib-src/Makefile.in lisp.h menu.c
Makefile.in and 79 other files
Ævar Arnfjörð Bjarmason: changed rcirc.el
Agustín Martín: changed ispell.el flyspell.el fixit.texi
Ahmed Khanzada: changed battery.el nsterm.m
Aidan Gauland: wrote em-tramp.el
and changed eshell.texi em-term.el em-unix.el erc-match.el em-cmpl.el
em-dirs.el em-ls.el em-script.el esh-proc.el eshell-tests.el
Aidan Kehoe: changed ipa.el lread.c mm-util.el erc-log.el erc.el
gnus-sum.el gnus-util.el latin-ltx.el nnfolder.el ob-tangle.el
objects.texi
Akash Hiremath: changed README.md eglot.el
Ake Stenhoff: co-wrote imenu.el
and changed cc-mode.el perl-mode.el
Akinori Musha: changed ruby-mode.el Makefile.in sieve-mode.el
Akira Kyle: changed eww.el process.c xwidget.c
Aki Vehtari: changed bibtex.el gnus-art.el gnus-score.el gnus-sum.el
nnmail.el tar-mode.el
Alain Schneble: wrote url-expand-tests.el url-parse-tests.el
and changed url-expand.el process.c url-parse.el w32proc.c message.el
shr.el w32.c
Alakazam Petrofsky: changed hanoi.el
Alan Mackenzie: wrote cc-awk.el debug-early.el
and co-wrote cc-align.el cc-cmds.el cc-defs.el cc-engine.el cc-fonts.el
cc-langs.el cc-mode.el cc-styles.el cc-vars.el
and changed cc-mode.texi bytecomp.el minibuf.c edebug.el subr.el window.c
follow.el frame.c lisp.h display.texi eval.c keyboard.c lread.c
syntax.texi xdisp.c macroexp.el progmodes/compile.el programs.texi
fns.c font-lock.el modes.texi and 203 other files
Alan Modra: changed unexelf.c
Alan Schmitt: co-wrote ox-koma-letter.el
and changed gnus-sum.el nnimap.el ob-ocaml.el org-faces.el
Alan Shutko: changed diary-lib.el calendar.el bindings.el cal-hebrew.el
easy-mmode.el gnus-sum.el ibuf-ext.el ibuffer.el lunar.el macros.el
solar.el
Alan Third: wrote dabbrev-tests.el image-transforms-tests.el
and changed nsterm.m nsterm.h nsfns.m image.c nsmenu.m configure.ac
nsimage.m ns-win.el macfont.m dispextern.h nsfont.m frame.el
display.texi xdisp.c emacs.c frame.c frame.h image.el macos.texi
nsselect.m xterm.c and 39 other files
Alan Zimmerman: changed eglot.el
Alastair Burt: changed gnus-art.el smiley.el
Albert Krewinkel: co-wrote sieve-manage.el
and changed sieve.el gnus-msg.el gnus.texi message.el sieve.texi
Albert L. Ting: changed gnus-group.el mail-hist.el
Aleksandr Vityazev: changed cl.texi epa.el epa.texi tramp-compat.el
treesit.el
Aleksei Gusev: changed progmodes/compile.el
Aleksey Kladov: changed eglot.el
Alexander Adolf: wrote eudc-capf.el eudcb-ecomplete.el
eudcb-macos-contacts.el eudcb-mailabbrev.el
and changed eudc.texi message.el eudc-vars.el ecompleterc eudc-tests.el
eudc.el mailrc
Alexander Becher: changed vc-annotate.el
Alexander Gramiak: changed w32term.c xterm.c nsterm.m dispextern.h
xdisp.c frame.c image.c nsgui.h w32gui.h xfns.c frame.el termhooks.h
w32fns.c w32term.h faces.el nsterm.h xfaces.c xterm.h frame.h xfont.c
configure.ac and 69 other files
Alexander Haeckel: changed getset.el
Alexander Klimov: changed files.el calc-graph.el files.texi man.el rx.el
sendmail.el
Alexander Kreuzer: changed nnrss.el
Alexander Kuleshov: changed dns-mode.el files.texi image-mode.el
keyboard.c ld-script.el xdisp.c
Alexander L. Belikoff: wrote erc.el
Alexander Miller: changed dispextern.h faces.el frame.c frame.h
frames.texi nsfns.m nsterm.m w32fns.c xfaces.c xfns.c xterm.c
Alexander Pohoyda: co-wrote mail/rmailmm.el
and changed rmailsum.el man.el rmail.el sendmail.el
Alexander Shopov: changed code-pages.el
Alexander Vorobiev: changed org-compat.el
Alexander Zhuckov: changed ebrowse.c
Alexandre Adolphe: changed cus-face.el dispextern.h display.texi nsfont.m
nsterm.m w32term.c xdisp.c xfaces.c xterm.c
Alexandre Duret-Lutz: changed gnus-icalendar.el nnmaildir.el
gnus-icalendar-tests.el
Alexandre Garreau: changed message.el
Alexandre Julliard: wrote vc-git.el
and changed vc.el ewoc.el
Alexandre Oliva: wrote gnus-mlspl.el
and changed unexelf.c format.el iris4d.h iris5d.h regex-emacs.c unexsgi.c
Alexandre Veyrenc: changed fr-refcard.tex
Alexandru Harsanyi: wrote soap-client.el soap-inspect.el
and changed emacs3.py vc-hooks.el vc.el xml.el
Alexandr Vityazev: changed shortdoc.el
Alex Bochannek: changed gnus-sum.el gnus.texi gnus-score.el gnus-topic.el
gnus-util.el gnus-fun.el gnus-group.el gnus.el ange-ftp.el gnus-art.el
kmacro-tests.el kmacro.el newst-ticker.el newsticker.texi nnimap.el
tramp-sh.el
Alex Coventry: changed files.el
Alex Dunn: changed subr-tests.el subr.el
Alexei Khlebnikov: changed autorevert.el vc-git.el
Alex Kosorukoff: changed org-capture.el
Alex Kost: changed scheme.el
Alex Mcgrath: changed rcirc.el
Alex Murray: changed erc-desktop-notifications.el network-stream.el
Alex Ott: changed TUTORIAL.ru ede/files.el ru-refcard.tex base.el
cedet-files.el cpp-root.el ede.el ede/generic.el idle.el ispell.el
semantic/format.el
Alex Reed: changed verilog-mode.el
Alex Rezinsky: wrote which-func.el
Alex Schroeder: wrote ansi-color.el cus-theme.el erc-compat.el
erc-join.el erc-lang.el erc-ring.el master.el spam-stat.el sql.el
and co-wrote longlines.el mail/rmailmm.el
and changed erc.el erc-track.el erc-button.el erc-stamp.el erc-match.el
erc-autoaway.el erc-nickserv.el rcirc.texi Makefile erc-autojoin.el
erc-fill.el erc-pcomplete.el erc-complete.el erc-ibuffer.el
erc-members.el rmail.el comint.el custom.el erc-bbdb.el erc-chess.el
erc-ezbounce.el and 35 other files
Alex Shinn: changed files.el
Alfred Correira: changed generic-x.el
Alfred M. Szmidt: changed rmail.el vc-svn.el html2text.el openbsd.h
progmodes/compile.el rmailsum.el vc.el
Alfredo Finelli: changed TUTORIAL.it
Ali Bahrami: changed configure configure.ac sol2-10.h
Alin C. Soare: changed lisp-mode.el hexl.el
Allen Li: changed abbrev.el abbrev-tests.el abbrevs.texi find-dired.el
recentf.el sending.texi autoload.el bookmark.el comint.el dired-aux.el
dired-x.el dired.texi elec-pair.el gnus-group.el misc.texi nsm.el
progmodes/compile.el ring-tests.el ring.el sequences.texi subr.el
xref.el
Allen S. Rout: changed org-capture.el
Alon Albert: wrote rcompile.el
Alp Aker: changed nsfont.m nsterm.m buff-menu.el nsfns.m nsmenu.m
nsterm.h configure.ac macfont.m mule-cmds.el nsselect.m process.c
window.el
Al Petrofsky: changed term.el
Álvar Jesús Ibeas Martín: changed TUTORIAL.es emacs-lisp-intro.texi
Alyssa Ross: changed progmodes/compile.el simple.el vc-git.el
Ami Fischman: changed bindings.el calendar.el diary-lib.el print.c
savehist.el vc-git.el
Amin Bandali: changed erc.el erc-button.el erc.texi erc-backend.el
erc-compat.el erc-match.el erc-track.el erc-dcc.el
erc-desktop-notifications.el erc-services.el erc-speedbar.el
erc-status-sidebar.el erc-autoaway.el erc-fill.el erc-goodies.el
erc-ibuffer.el erc-imenu.el erc-join.el erc-lang.el erc-list.el
erc-log.el and 11 other files
Amos Bird: changed xfns.c
Amritpal Singh: changed decompress.c
Anand Mitra: changed gnus-sum.el
Anders Holst: wrote hippie-exp.el
Anders Lindgren: wrote autorevert.el cwarn.el faceup-test-basics.el
faceup-test-files.el faceup.el follow.el
and changed nsterm.m nsfns.m nsmenu.m nsterm.h font-lock.el nsimage.m
README etags.c term.el window.el Info.plist.in compile.el diff-mode.el
ert.el faceup-test-mode.el faceup-test-this-file-directory.el
lisp-mode.el loadup.el lread.c ns-win.el nsfont.m and 4 other files
Anders Waldenborg: changed emacsclient.c
Andrea Corallo: wrote comp-common.el comp-cstr-tests.el comp-cstr.el
comp-run.el comp-tests.el comp.c comp.el syncdoc-type-hierarchy.el
and changed pdumper.c lread.c bytecomp.el startup.el configure.ac
loadup.el comp.h lisp.h cl-macs.el cl-preloaded.el comp-test-funcs.el
subr.el Makefile.in data.c elisp-mode.el nadvice.el alloc.c byte-run.el
emacs.c lisp/Makefile.in advice.el and 100 other files
André A. Gomes: changed ispell.el
Andrea Greselin: changed electric.el
Andrea Monaco: changed rmailsum.el
Andrea Rossetti: changed ruler-mode.el
Andrea Russo: changed erc-dcc.el info-look.el
Andreas Amann: changed emacsclient.c
Andreas Burtzlaff: changed org.el
Andreas Büsching: changed emacsclient.c
Andreas Fuchs: wrote erc-ezbounce.el erc-match.el erc-replace.el
erc-truncate.el
and co-wrote erc-fill.el
and changed erc.el erc-bbdb.el erc-button.el erc-log.el comp.c
erc-stamp.el comp.el erc-autoaway.el erc-autojoin.el erc-dcc.el
erc-imenu.el erc-list.el erc-members.el erc-menu.el erc-netsplit.el
erc-notify.el erc-ring.el erc-speedbar.el erc-track.el erc-xdcc.el
gnus-registry.el and 3 other files
Andreas Jaeger: changed gnus-msg.el gnus-start.el gnus-xmas.el
nnfolder.el nnml.el
Andreas Leha: changed ob-latex.el ob.el
Andreas Leue: changed artist.el
Andreas Luik: changed xfns.c xterm.c
Andreas Merziger: changed calendar.el
Andreas Politz: changed buffer-tests.el buffer.c itree.h filenotify.el
inotify.c itree.c alloc.c editfns.c xdisp.c buffer.h bytecomp.el
check-sanitize.sh configure.ac elp.el emacs-compat.h filecache.el
fileio.c filenotify-tests.el fns.c frame.c ibuffer.el
and 30 other files
Andreas Rottmann: changed emacsclient.1 emacsclient.c misc.texi server.el
Andreas Schwab: changed configure.ac lisp.h xdisp.c process.c alloc.c
coding.c Makefile.in emacs.c files.el fileio.c keyboard.c fns.c lread.c
xterm.c src/Makefile.in editfns.c print.c eval.c font.c xfns.c sysdep.c
and 663 other files
Andreas Seltenreich: changed nnweb.el gnus.texi message.el gnus-sum.el
gnus.el nnslashdot.el gnus-srvr.el gnus-util.el mm-url.el mm-uu.el
url-http.el xterm.c battery.el comint.el easy-mmode.el gmm-utils.el
gnus-art.el gnus-cite.el gnus-draft.el gnus-group.el gnus-ml.el
and 6 other files
Andreas Vögele: changed pgg-def.el
Andrei Chițu: changed icalendar.el
Andre Spiegel: changed vc.el vc-hooks.el vc-cvs.el vc-rcs.el vc-sccs.el
files.el dired.el files.texi cperl-mode.el ediff-util.el log-view.el
parse-time.el startup.el tramp-vc.el vc-arch.el vc-mcvs.el vc-svn.el
vcdiff viper-util.el
Andrés Ramírez: changed viper-cmd.el
Andre Srinivasan: changed gnus-group.el gnus-sum.el gnus.texi message.el
mm-decode.el mml.el nnmail.el
Andrew Barbarello: wrote erc-status-sidebar.el
Andrew Beals: changed spook.lines
Andrew Burgess: changed cua-base.el
Andrew Choi: changed macterm.c darwin.h mac-win.el sysdep.c emacs.c mac.c
macfns.c fontset.c frame.c keyboard.c xfaces.c dispextern.h macmenu.c
unexmacosx.c configure.ac frame.h macterm.h titdic-cnv.el xdisp.c
alloc.c callproc.c and 27 other files
Andrew Csillag: wrote m4-mode.el
Andrew De Angelis: changed nsxwidget.h nsxwidget.m xwidget.c xwidget.el
Andrew Eggenberger: changed cl-extra.el seq.el
Andrew G Cohen: wrote nnselect.el spam-wash.el
and changed nnir.el gnus-sum.el nnimap.el gnus-group.el gnus.texi
gnus-search.el gnus-msg.el gnus-art.el gnus-int.el gnus.el
auth-source.el gnus-cache.el mailcap.el nnagent.el nnheader.el
nnspool.el deps.mk dns.el doc-view.el fns-tests.el fns.c
and 21 other files
Andrew Hall: changed paren.el
Andrew Hyatt: changed bug-triage CONTRIBUTE buffer.c face-remap.el
org-archive.el org.el org.texi simple.el
Andrew Innes: changed makefile.nt w32fns.c w32term.c w32.c w32proc.c
fileio.c ms-w32.h w32-fns.el dos-w32.el w32term.h makefile.def
unexw32.c w32menu.c w32xfns.c addpm.c cmdproxy.c emacs.c w32-win.el
w32inevt.c configure.bat lread.c and 126 other files
Andrew L. Moore: changed executable.el
Andrew Oram: changed calendar.texi (and other doc files)
Andrew Robbins: changed net-utils.el
Andrew Schein: changed sql.el
Andrew Schwartzmeyer: changed eglot.el subr-tests.el subr.el
Andrew Tropin: changed notifications.el os.texi
Andrew Whatson: changed comp.el
Andrew W. Nosenko: changed tramp.el
Andrew Zhilin: changed emacs22.png emacs22.ico
Andrey Kotlarski: changed eww.el eww.texi tramp.el
Andrey Slusar: changed gnus-async.el gnus.el
Andrey Zhdanov: changed gud.el
Andrii Kolomoiets: changed eglot.el vc-hg.el progmodes/python.el vc.el
eglot-tests.el vc-dir.el vc-git.el EGLOT-NEWS README.md cyril-util.el
ewoc.el frame.c frame.el maintaining.texi ns-win.el nsterm.h nsterm.m
package.el project.el vc-dispatcher.el vc-svn.el
Andrzej P: changed gdb-mi.el
Andy Moreton: changed gnutls.c alloc.c ccl-tests.el ccl.el image.c
w32fns.c w32font.c w32heap.c w32proc.c w32uniscribe.c data.c
decompress.c dynlib.c emacs-module-tests.el emacs.c image.el json.c
lcms.c lisp.h package.el pdumper.c and 12 other files
Andy Norman: wrote ange-ftp.el
Andy Petrusenco: changed w32term.c
Andy Sawyer: changed saveplace.el
Andy Seaborne: changed keyboard.c
Andy Stewart: wrote ol-w3m.el
and co-wrote erc-nicks.el
and changed erc.el erc-nicks-tests.el erc-tests.el erc.texi
Angelo Graziosi: changed sysdep.c term.c
Anmol Khirbat: changed ido.el
Anna M. Bigatti: wrote cal-html.el
Ansgar Burchardt: changed latin-ltx.el
Antero Mejr: changed custom.texi eww.el files.el variables.texi
em-unix.el eshell.texi files-tests.el pcmpl-git.el pcmpl-unix.el
Antoine Beaupré: changed vc-git.el
Antoine Kalmbach: changed README.md eglot.el
Antoine Levitt: changed gnus-group.el gnus-sum.el message.texi
ange-ftp.el cus-edit.el dired-x.el ebnf2ps.el emerge.el erc-button.el
erc-goodies.el erc-stamp.el erc-track.el files.el find-file.el
gnus-art.el gnus-uu.el gnus.el gnus.texi message.el mh-funcs.el
mh-mime.el and 8 other files
Antonin Houska: changed newcomment.el
Antonio Ruiz: changed handwrite.el
Arash Esbati: changed reftex-vars.el efaq-w32.texi reftex-cite.el
reftex-tests.el reftex-parse.el reftex.el gnus.texi reftex-auc.el
reftex-dcr.el reftex-ref.el tex-mode.el align.el eglot.el ffap.el
ispell.el maintaining.texi nnmaildir.el reftex-global.el reftex-toc.el
Arik Mitschang: changed smime.el
Ari Roponen: changed xterm.c image.c atimer.c doc.c ftcrfont.c hash.texi
mule.texi package.el startup.el subr.el svg.el time-date.el woman.el
Arisawa Akihiro: changed characters.el coding.c epa-file.el japan-util.el
language/tibetan.el message.el mm-decode.el mm-view.el ps-print.el
tai-viet.el term.c time.el utf-8.el
Arnaud Giersch: changed gnus-sum.el
Arne Georg Gleditsch: changed gnus-sum.el
Arne Jørgensen: wrote latexenc.el
and changed smime.el mml-smime.el smime-ldap.el flymake.el gnus-art.el
gnus-sieve.el ldap.el message.el mm-decode.el mml-sec.el mml.el
mule-conf.el nnimap.el nnrss.el wid-edit.el
Arni Magnusson: wrote bat-mode.el
and changed frames.texi generic-x.el texinfo.el
Arnold Noronha: changed ido.el
Arsen Arsenović: changed typescript-ts-mode.el
Artem Chuprina: changed message.el
Artem Loenko: changed src/Makefile.in
Artem Pyanykh: changed EGLOT-NEWS README eglot.el
Arthur Miller: changed help-fns.el ange-ftp.el bytecomp.el comp.c comp.el
dired-tests.el dired.c dired.el edebug.el files.texi help.texi lisp.h
ls-lisp.el sysdep.c tramp-adb.el tramp-rclone.el tramp-sh.el
tramp-smb.el tramp.el wdired.el
Artur Malabarba: wrote char-fold-tests.el faces-tests.el isearch-tests.el
let-alist.el simple-tests.el sort-tests.el tabulated-list-tests.el
and changed package.el isearch.el char-fold.el files.el tabulated-list.el
package-test.el menu-bar.el replace.el bytecomp.el faces.el files-x.el
custom.el custom.texi help-fns.el let-alist-tests.el simple.el
subr-tests.el align.el bindings.el cl-lib-tests.el cl-macs.el
and 43 other files
Artyom Loenko: changed Info.plist.in
Arun Isaac: changed quail/indian.el
Arun Persaud: changed org-agenda.el org-src.el
Asher Gordon: changed gomoku.el mml.el
Ashish Shukla: changed emacs-gnutls.texi gnutls.el comp.el
Ashwin Kafle: changed calc.el
Ashwin Ram: wrote refer.el
Ata Etemadi: wrote cdl.el
Atsuo Ohki: changed lread.c
Aubrey Jaffer: changed info.el unexelf.c
August Feng: changed bookmark.el
Augustin Chéneau: changed c-ts-mode.el treesit.el
Augusto Stoffel: co-wrote ansi-osc.el
and changed progmodes/python.el isearch.el eglot.el comint.el eldoc.el
progmodes/compile.el project.el README.md dired.el files.el
font-lock.el glasses.el man.el misc.texi modes.texi outline.el
pcmpl-git.el pcmpl-gnu.el pcmpl-linux.el pcmpl-rpm.el pcmpl-unix.el
and 11 other files
Aurélien Aptel: changed alloc.c emacs-module.h lisp.h Makefile
configure.ac cus-face.el data.c dispextern.h display.texi dynlib.c
dynlib.h emacs-module.c faces.el lread.c modhelp.py nsterm.m ox-html.el
print.c src/Makefile.in subr.el syntax.c and 6 other files
Axel Boldt: changed ehelp.el electric.el
Axel Svensson: changed characters.el display.texi x-win.el
Aymeric Agon-Rambosson: changed indent.el
Azeem Hasan: wrote pakistan.el
and changed shr.el eww.el proced.el
Bahodir Mansurov: changed quail/cyrillic.el
Bake Timmons: changed gnus.texi mail-source.el
B. Anyos: changed w32term.c
Baoqiu Cui: changed org-docbook.el
Barry A. Warsaw: wrote elp.el man.el regi.el reporter.el supercite.el
and co-wrote cc-align.el cc-cmds.el cc-compat.el cc-defs.el cc-engine.el
cc-guess.el cc-langs.el cc-menus.el cc-mode.el cc-styles.el cc-vars.el
and changed c++-mode.el cplus-md1.el syntax.c syntax.h
Barry Fishman: changed configure.ac gnu-linux.h image.c
Barry O'Reilly: changed simple.el lisp.h undo-tests.el eval.c keyboard.c
markers.texi alloc.c bytecode.c casetab.c data.c fileio.c fw.el idle.el
insdel.c lread.c pulse.el search.c subr.el text.texi timer-tests.el
undo.c
Bartosz Duszel: changed allout.el bib-mode.el cc-cmds.el hexl.el icon.el
menu-bar.el meta-mode.el mouse.el pascal.el perl-mode.el senator.el
sendmail.el ses.el simple.el verilog-mode.el vi.el vip.el viper-cmd.el
xscheme.el
Basil L. Contovounesios: changed simple.el subr.el message.el eww.el
modes.texi custom.el text.texi bibtex.el eglot-tests.el js.el
gnus-sum.el internals.texi subr-tests.el customize.texi display.texi
files.texi gnus-art.el gnus-group.el gnus-win.el gnus.texi gravatar.el
and 369 other files
Bastian Beischer: changed semantic/complete.el calc-yank.el include.el
mru-bookmark.el refs.el senator.el
Bastian Beranek: changed tab-bar.el
Bastien Guerry: wrote gnus-bookmark.el
and co-wrote ol-bibtex.el org-list.el org-protocol.el org-src.el
and changed org.el org-agenda.el org.texi ox-html.el org-clock.el
org-capture.el org-table.el ox-latex.el ox.el ox-odt.el org-compat.el
ox-publish.el ob.el org-mobile.el org-colview.el org-macs.el
org-pcomplete.el org-timer.el org-faces.el ox-ascii.el org-archive.el
and 119 other files
Ben A. Mesander: co-wrote erc-dcc.el
Ben Bacarisse: changed nnmh.el
Ben Bonfil: changed macfont.m nsterm.m
Bengt Martensson: co-wrote bibtex.el
Ben Harris: changed configure.ac
Benjamin Andresen: wrote ob-screen.el
Benjamin Carlsson: changed info.texi
Benjamin Drieu: wrote pong.el
and changed org-clock.el org.el
Benjamin Ragheb: changed fortune.el
Benjamin Riefenstahl: changed files.el image-mode.el nnrss-tests.el
w32select.c emacs.c image.el lisp.h mac-win.el macterm.c ms-w32.h
mule-cmds.el mule-tests.el mule.el nnrss.el runemacs.c tcl.el thumbs.el
w32.c w32.h
Benjamin Rutt: co-wrote gnus-dired.el
and changed vc.el gnus-msg.el message.el diff-mode.el ffap.el nnimap.el
nnmbox.el simple.el vc-cvs.el
Benjamin Schwerdtner: changed progmodes/python.el
Ben Key: changed w32.c w32fns.c w32menu.c configure.bat INSTALL w32.h
w32term.c configure.ac emacs.c keyboard.c make-docfile.c ms-w32.h
nsfont.m nsterm.m sound.c xfaces.c
Ben Menasha: changed nnmh.el
Ben North: changed outline.el buffer.c fill.el isearch.el lisp-mode.el
paren.el w32term.c xfaces.c
Benson Chu: changed font-lock.el tab-bar.el tramp-sh.el
Bernhard Herzog: changed vc-hg.el menu.c xsmfns.c
Bernhard Rotter: changed em-cmpl.el esh-ext.el esh-util.el
Bernt Hansen: changed org-agenda.el org-clock.el org.el org-capture.el
org-indent.el org-macs.el org.texi ox-html.el
Bill Atkins: changed wdired.el
Bill Burton: changed ptx.h sequent-ptx.h
Bill Carpenter: wrote feedmail.el (public domain)
Bill Mann: wrote perl-mode.el
and changed configure.ac unexaix.c ibmrs6000.h usg5-4-3.h
Bill Pringlemeir: changed messcompat.el
Bill Richter: changed fill.el quail.el ccl.el encoded-kb.el fontset.el
international/mule-util.el kinsoku.el kkc.el mule-cmds.el mule-conf.el
mule.el
Bill Rozas: wrote scheme.el
and changed xscheme.el
Bill White: changed gnus-start.el
Bill Wohler: wrote mh-buffers.el mh-comp.el mh-compat.el mh-e.el
mh-folder.el mh-funcs.el mh-letter.el mh-mime.el mh-scan.el mh-seq.el
mh-show.el mh-utils.el mh-xface.el
and co-wrote mh-junk.el
and changed mh-customize.el mh-search.el mh-alias.el mh-e.texi Makefile
mh-identity.el README mh-speed.el mh-init.el mh-acros.el mh-gnus.el
mh-unit.el mh-inc.el mh-xemacs-compat.el mh-print.el lisp/Makefile.in
image.el mh-tool-bar.el mh-xemacs.el display.texi mh-pick.el
and 82 other files
Billy Zheng: changed README.md eglot.el
Bjarte Johansen: wrote ob-sed.el
and changed use-package-bind-key.el
Björn Holby: changed vhdl-mode.el
Björn Lindström: changed rcirc.texi
Bjørn Mork: changed nnimap.el gnus-agent.el message.el mml2015.el
Bjorn Solberg: changed nnimap.el
Björn Torkelsson: changed gnus-art.el gnus-group.el gnus-srvr.el
gnus-sum.el gnus-mlspl.el gnus-msg.el message.el gnus-agent.el
gnus-cus.el gnus-gl.el gnus-nocem.el gnus-score.el gnus-topic.el
gnus.el mail-source.el nnmail.el
Bob Glickstein: changed isearch.el sendmail.el
Bob Halley: changed ccl.c esh-io.el
Bob Newell: changed latin-post.el latin-pre.el
Bob Nnamtrop: changed viper-cmd.el
Bob Olson: co-wrote cperl-mode.el
Bob Rogers: wrote ietf-drums-date-tests.el ietf-drums-date.el
ietf-drums-tests.el
and changed ietf-drums.el vc-dir.el time-date.el vc-svn.el cperl-mode.el
diff.el ewoc.el ffap.el files.el maintaining.texi os.texi shell.el
sql.el thingatpt.el vc-git.el vc.el vc1-xtra.texi
Bob Weiner: changed info.el quail.el dframe.el etags.c rmail.el
rmailsum.el speedbar.el
Bogdan Creanga: changed sequences.texi strings.texi symbols.texi
Bojan Petrovic: changed pop3.el
Boris Goldowsky: wrote avoid.el descr-text.el enriched.el facemenu.el
format.el shadowfile.el
and changed fill.el simple.el indent.el paragraphs.el cmds.c intervals.c
intervals.h add-log.el cc-mode.el enriched.txt fileio.c make-mode.el
text-mode.el textprop.c ada.el allout.el awk-mode.el bibtex.el buffer.c
buffer.h c-mode.el and 38 other files
Boris Samorodov: changed net/imap.el
Boruch Baum: co-wrote footnote.el
and changed bookmark.el apropos.el autorevert.el calc.el cua-rect.el
help.el ses.el simple.el textmodes/table.el
Boyd Lynn Gerber: changed configure.ac
Bozhidar Batsov: changed ruby-mode.el subr-x.el subr.el bytecomp.el
comint.el js.el lisp-mode.el package.el progmodes/python.el prolog.el
ruby-mode-tests.el scheme.el
Brad Howes: changed ansi-osc.el gnus-demon.el
Brad Knotwell: changed calc.texi
Brady Trainor: changed README.md eglot.el
Brahimi Saifullah: changed wid-edit.el
Brandon Craig Rhodes: changed flyspell.el
Braun Gábor: changed cua-base.el simple.el
Brendan Kehoe: changed hpux9.h
Brendan O'Dea: changed em-unix.el woman.el
Brent Goodrick: changed abbrev.el
Brent Westbrook: changed eudcb-mailabbrev.el
Brian Burns: changed INSTALL INSTALL.W64
Brian Cully: wrote tramp-container.el
and changed EGLOT-NEWS README.md eglot-tests.el eglot.el
em-tramp-tests.el em-tramp.el eshell.texi macos.texi tramp.texi
Brian D. Carlstrom: changed gud.el smtpmail.el
Brian Fox: changed Makefile.in Makefile configure.ac minibuf.c dired.el
files.el lib-src/Makefile.in oldXMenu/Makefile.in rmail.el search.c
simple.el sysdep.c compile.el forms.texi frame.c keyboard.c make-dist
subr.el systty.h texindex.c xterm.c and 47 other files
Brian Jenkins: changed frame.c frames.texi hooks.texi
Brian Leung: changed eglot.el README.md comint.el c-ts-mode.el gud.el
shell.el Makefile advice.el comp.c comp.el eglot-tests.el em-hist.el
em-prompt.el esh-mode.el files.el find-func.el flymake.el gdb-mi.el
help.el lisp-mode.el nadvice.el and 3 other files
Brian Marick: co-wrote hideif.el
Brian McKenna: changed eww.el
Brian Palmer: changed erc.el erc-list.el
Brian Preble: changed abbrev.el apropos.el asm-mode.el awk-mode.el
bytecomp.el c++-mode.el cal.el calc.el chistory.el cl-indent.el
compare-w.el compile.el dabbrev.el debug.el diary.el diff.el dired.el
doctex.el doctor.el ebuff-menu.el echistory.el and 129 other files
Brian P Templeton: changed erc.el erc-compat.el erc-fill.el
erc-nickserv.el erc-pcomplete.el erc-stamp.el erc-track.el lread.c
nsfont.m
Brian Sniffen: changed gnus-draft.el imap.el mm-decode.el
Brian van den Broek: changed org.texi
Bruce Stephens: changed calc-ext.el
Bruno Félix Rezende Ribeiro: changed os.texi finder.el functions.texi
gnus.texi info.el lisp-mnt.el package.el
Bruno Haible: co-wrote po.el
and changed INSTALL emacs.1 epaths.in info.el paths.el
Bryan C. Mills: changed lread.c
Bryan Henderson: changed Makefile term.el
Bryan O'Sullivan: changed ange-ftp.el
Caio Henrique: changed menu-bar.el
Caio Tiago Oliveira: changed ob-scala.el
Caleb Deupree: changed w32-fns.el
Callum Cameron: changed term.el
Cameron Desautels: changed cus-edit.el custom.texi help.el regexp-opt.el
ruby-mode.el titdic-cnv.el
Campbell Barton: changed bookmark.el subr.el
Cao Zhenxiang: changed fw.el project.el
Carl D. Roth: changed gnus-nocem.el
Carl Edman: co-wrote ns-win.el
Carl Henrik Lunde: changed format-spec.el
Carl Lei: changed cc-langs.el
Carlos Pita: changed progmodes/python.el Makefile.in comint.el
emacs.service emacsclient.desktop erc-pcomplete.el fringe.c gtkutil.c
image-mode.el keyboard.c sh-script.el
Carsten Bormann: changed ibmrs6000.h latin-post.el
Carsten Dominik: wrote idlw-complete-structtag.el idlw-toolbar.el
ol-info.el ol-man.el ol-rmail.el ol.el org-agenda.el org-archive.el
org-capture.el org-clock.el org-colview.el org-compat.el
org-datetree.el org-faces.el org-feed.el org-footnote.el org-goto.el
org-id.el org-indent.el org-inlinetask.el org-macs.el org-mobile.el
org-refile.el org-table.el org-timer.el org.el reftex-auc.el
reftex-cite.el reftex-dcr.el reftex-global.el reftex-index.el
reftex-parse.el reftex-ref.el reftex-sel.el reftex-toc.el
reftex-vars.el reftex.el
and co-wrote idlw-help.el idlw-shell.el idlwave.el ol-bbdb.el
ol-bibtex.el ol-gnus.el org-entities.el org-list.el org-pcomplete.el
org-src.el ox-beamer.el ox-html.el ox-icalendar.el
and changed ox.el ox-latex.el org.texi org-remember.el orgcard.tex
ox-publish.el org-docbook.el ox-ascii.el org-attach.el org-bbdb.el
org-gnus.el org-protocol.el org-mouse.el org-mac-message.el org-wl.el
ox-jsinfo.el org-crypt.el org-freemind.el idlw-rinfo.el
org-exp-blocks.el org-habit.el and 40 other files
Caveh Jalali: changed configure.ac intel386.h sol2-4.h
Cecilio Pardo: changed DEVEL.HUMOR
Cédric Chépied: changed newst-treeview.el tree-widget.el
Cesar Quiroz: changed maintaining.texi
Chad Brown: changed aix4-2.h bsd-common.h config.in configure.ac cygwin.h
dired.c gnu-linux.h mh-comp.el msdos.h sed2v2.inp sysdep.c usg5-4.h
Changwoo Ryu: changed files.el
Chao-Hong Liu: changed TUTORIAL.cn TUTORIAL.zh
Charalampos Mitrodimas: changed keymap.el locate.el srecode/find.el
Charles A. Roelli: changed vc.el nsterm.m simple.el nsfns.m isearch.el
nsmenu.m nsterm.h process.c register.el diff-mode.el display.texi
files.el files.texi fixit.texi macfont.m minibuf.c nsfont.m nsimage.m
nsselect.m org-clock.el progmodes/python.el and 47 other files
Charles Hannum: changed aix3-1.h aix3-2.h configure ibmrs6000.h
keyboard.c netbsd.h pop.c sysdep.c systime.h systty.h xrdb.c
Charles Millar: changed org.texi
Charles Rendleman: changed eww.el
Charles Sebold: changed org-plot.el
Charlie Martin: wrote autoinsert.el
Charl P. Botha: changed js.el
Chen Bin: changed fns.c subr-tests.el
Cheng Gao: changed Makefile.in flymake.el frame.c tips.texi url-dired.el
url-file.el url-handlers.el url-http.el url-nfs.el
Chetan Pandya: changed font.c
Chip Coldwell: changed font.c
Chong Yidong: wrote compile-tests.el dichromacy-theme.el font-tests.el
redisplay-testsuite.el tabulated-list.el xml-tests.el
and co-wrote longlines.el tango-dark-theme.el tango-theme.el
and changed simple.el display.texi xdisp.c files.el frames.texi
cus-edit.el files.texi custom.el subr.el text.texi faces.el keyboard.c
startup.el package.el misc.texi emacs.texi modes.texi mouse.el
custom.texi image.c window.el and 932 other files
Chris Chase: co-wrote idlw-shell.el idlwave.el
Chris Feng: changed dispnew.c keyboard-tests.el keyboard.c autoload.el
frame.c process.c
Chris Foote: changed progmodes/python.el
Chris Gray: changed mm-decode.el ox-html.el
Chris Gregory: changed eval.c xdisp.c
Chris Hall: changed callproc.c frame.c
Chris Hanson: changed xscheme.el scheme.el xterm.c hpux.h x11term.c
hp9000s300.h keyboard.c process.c texinfmt.el sort.el syntax.c
texnfo-upd.el x11fns.c xfns.c dired.el emacsclient.c fileio.c
hp9000s800.h indent.c info.el man.el and 17 other files
Chris Hecker: changed calc-aent.el
Chris Lindblad: co-wrote tcl.el
Chris Mcmahan: changed package.el
Chris Moore: changed dired.el hexl.el jka-cmpr-hook.el replace.el
wdired.el Makefile.in comint.el diff-mode.el gnus-sum.el isearch.el
mouse.el pgg-gpg.el pgg-pgp.el pgg-pgp5.el server.el shell.el
tutorial.el
Chris Newton: changed url-http.el
Chris Prince: changed w32term.c
Chris Smith: wrote icon.el
and changed icon-mode.el
Christer Enfors: changed erc.texi
Christian Egli: changed org-taskjuggler.el org.texi
Christian Faulhammer: changed configure configure.ac src/Makefile.in
vc-bzr.el
Christian Garbs: changed EGLOT-NEWS README.md eglot.el
Christian Limpach: co-wrote ns-win.el
and changed configure.ac
Christian Lynbech: changed appt.el emacsserver.c tramp.el
Christian Millour: changed shell.el
Christian Moe: changed org-bbdb.el org-special-blocks.el ox-html.el
ox-odt.el
Christian Neukirchen: changed mm-util.el
Christian Ohler: wrote ert-tests.el ert.el
and co-wrote ert-x.el
and changed Makefile.in automated/Makefile.in configure.ac ert-x-tests.el
ert.texi misc/Makefile.in
Christian Plate: changed nnmaildir.el sgml-mode.el
Christian Plaunt: wrote soundex.el