diff options
| author | Miles Bader | 2008-08-18 05:33:28 +0000 |
|---|---|---|
| committer | Miles Bader | 2008-08-18 05:33:28 +0000 |
| commit | a971635315e259c076de020b3676c04d1dcc415e (patch) | |
| tree | 75f3ba39a51f39b4a6a870def828118feb37368f | |
| parent | 0faeefbb782d3358dd92c5a5911f5007a9e3bf09 (diff) | |
| parent | 2db0e49ceef7ae03dac56d1ea90350322fee6a58 (diff) | |
| download | emacs-a971635315e259c076de020b3676c04d1dcc415e.tar.gz emacs-a971635315e259c076de020b3676c04d1dcc415e.zip | |
Merge from emacs--rel--22
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1382
| -rw-r--r-- | ChangeLog | 8 | ||||
| -rw-r--r-- | admin/ChangeLog | 4 | ||||
| -rw-r--r-- | admin/admin.el | 14 | ||||
| -rw-r--r-- | etc/AUTHORS | 405 | ||||
| -rw-r--r-- | etc/PROBLEMS | 9 | ||||
| -rwxr-xr-x | make-dist | 4 |
6 files changed, 239 insertions, 205 deletions
| @@ -1,3 +1,11 @@ | |||
| 1 | 2008-08-16 Chong Yidong <cyd@stupidchicken.com> | ||
| 2 | |||
| 3 | * make-dist: Omit info/.arch-inventory. | ||
| 4 | |||
| 5 | 2008-08-16 Jason Rumney <jasonr@gnu.org> | ||
| 6 | |||
| 7 | * make-dist (tempdir/nt): Link emacsclient.rc. | ||
| 8 | |||
| 1 | 2008-08-07 Dan Nicolaescu <dann@ics.uci.edu> | 9 | 2008-08-07 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 10 | ||
| 3 | * configure.in (LIB_SRC_EXTRA_INSTALLABLES): New variable. | 11 | * configure.in (LIB_SRC_EXTRA_INSTALLABLES): New variable. |
diff --git a/admin/ChangeLog b/admin/ChangeLog index 3998111475d..7e5edd426c3 100644 --- a/admin/ChangeLog +++ b/admin/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-08-16 Jason Rumney <jasonr@gnu.org> | ||
| 2 | |||
| 3 | * admin.el (set-version): Set version in nt/emacsclient.rc | ||
| 4 | |||
| 1 | 2008-08-06 Juanma Barranquero <lekktu@gmail.com> | 5 | 2008-08-06 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 6 | ||
| 3 | * nt/dump.bat: Fix mixed EOLs. | 7 | * nt/dump.bat: Fix mixed EOLs. |
diff --git a/admin/admin.el b/admin/admin.el index 26072ead86f..d30583cd07c 100644 --- a/admin/admin.el +++ b/admin/admin.el | |||
| @@ -123,6 +123,20 @@ Root must be the root of an Emacs source tree." | |||
| 123 | (set-version-in-file root "nt/emacs.rc" comma-space-version | 123 | (set-version-in-file root "nt/emacs.rc" comma-space-version |
| 124 | (rx (and "\"ProductVersion\"" (0+ space) ?, | 124 | (rx (and "\"ProductVersion\"" (0+ space) ?, |
| 125 | (0+ space) ?\" (submatch (1+ (in "0-9, "))) | 125 | (0+ space) ?\" (submatch (1+ (in "0-9, "))) |
| 126 | "\\0\""))) | ||
| 127 | ;; Likewise for emacsclient.rc | ||
| 128 | (set-version-in-file root "nt/emacsclient.rc" comma-version | ||
| 129 | (rx (and "FILEVERSION" (1+ space) | ||
| 130 | (submatch (1+ (in "0-9,")))))) | ||
| 131 | (set-version-in-file root "nt/emacsclient.rc" comma-version | ||
| 132 | (rx (and "PRODUCTVERSION" (1+ space) | ||
| 133 | (submatch (1+ (in "0-9,")))))) | ||
| 134 | (set-version-in-file root "nt/emacsclient.rc" comma-space-version | ||
| 135 | (rx (and "\"FileVersion\"" (0+ space) ?, (0+ space) | ||
| 136 | ?\" (submatch (1+ (in "0-9, "))) "\\0\""))) | ||
| 137 | (set-version-in-file root "nt/emacsclient.rc" comma-space-version | ||
| 138 | (rx (and "\"ProductVersion\"" (0+ space) ?, | ||
| 139 | (0+ space) ?\" (submatch (1+ (in "0-9, "))) | ||
| 126 | "\\0\"")))) | 140 | "\\0\"")))) |
| 127 | ;; nextstep. | 141 | ;; nextstep. |
| 128 | (set-version-in-file | 142 | (set-version-in-file |
diff --git a/etc/AUTHORS b/etc/AUTHORS index 33e68941aeb..42c4246e391 100644 --- a/etc/AUTHORS +++ b/etc/AUTHORS | |||
| @@ -10,15 +10,17 @@ Aaron Larson: changed bibtex.el | |||
| 10 | Aaron S. Hawley: changed files.texi building.texi custom.texi files.el | 10 | Aaron S. Hawley: changed files.texi building.texi custom.texi files.el |
| 11 | glossary.texi isearch.el misc.texi | 11 | glossary.texi isearch.el misc.texi |
| 12 | 12 | ||
| 13 | Abraham Nahum: changed configure.in dgux4.h sysdep.c | 13 | Abraham Nahum: changed dgux4.h sysdep.c |
| 14 | 14 | ||
| 15 | Abramo Bagnara: changed term.c | 15 | Abramo Bagnara: changed term.c |
| 16 | 16 | ||
| 17 | Adam Go,B3j(Bbiowski: changed Makefile.in | ||
| 18 | |||
| 17 | Adam Hupp: changed gdb-ui.el | 19 | Adam Hupp: changed gdb-ui.el |
| 18 | 20 | ||
| 19 | Adrian Aichner: changed erc-log.el erc.el erc-autojoin.el erc-backend.el | 21 | Adrian Aichner: changed erc-log.el erc.el erc-autojoin.el erc-backend.el |
| 20 | erc-dcc.el erc-members.el erc-nets.el erc-sound.el etags.c | 22 | erc-dcc.el erc-members.el erc-nets.el erc-sound.el etags.c |
| 21 | gnus-score.el | 23 | gnus-score.el gnus-sum.el gnus.texi |
| 22 | 24 | ||
| 23 | Adrian Colley: changed aix3-2.h | 25 | Adrian Colley: changed aix3-2.h |
| 24 | 26 | ||
| @@ -28,7 +30,8 @@ Adrian Lanz: changed mail-source.el spam.el | |||
| 28 | 30 | ||
| 29 | Agust,Am(Bn Mart,Am(Bn: changed flyspell.el ispell.el | 31 | Agust,Am(Bn Mart,Am(Bn: changed flyspell.el ispell.el |
| 30 | 32 | ||
| 31 | Aidan Kehoe: changed lread.c mm-util.el erc.el latin-ltx.el objects.texi | 33 | Aidan Kehoe: changed lread.c mm-util.el erc.el gnus-sum.el gnus-util.el |
| 34 | latin-ltx.el objects.texi | ||
| 32 | 35 | ||
| 33 | Ake Stenhoff: wrote imenu.el | 36 | Ake Stenhoff: wrote imenu.el |
| 34 | and changed cc-mode.el perl-mode.el | 37 | and changed cc-mode.el perl-mode.el |
| @@ -41,8 +44,8 @@ Alakazam Petrofsky: changed hanoi.el | |||
| 41 | Alan Mackenzie: wrote cc-awk.el | 44 | Alan Mackenzie: wrote cc-awk.el |
| 42 | and changed cc-cmds.el cc-mode.el cc-engine.el cc-defs.el cc-langs.el | 45 | and changed cc-cmds.el cc-mode.el cc-engine.el cc-defs.el cc-langs.el |
| 43 | cc-vars.el cc-mode.texi cc-styles.el cc-fonts.el cc-align.el lread.c | 46 | cc-vars.el cc-mode.texi cc-styles.el cc-fonts.el cc-align.el lread.c |
| 44 | programs.texi cc-subword.el isearch.el lisp.el search.texi startup.el | 47 | programs.texi cc-subword.el font-lock.el isearch.el lisp.el search.texi |
| 45 | subr.el text.texi buffers.texi bytecomp.el and 20 other files | 48 | startup.el subr.el text.texi add-log.el and 21 other files |
| 46 | 49 | ||
| 47 | Alan Shutko: changed diary-lib.el calendar.el bindings.el cal-hebrew.el | 50 | Alan Shutko: changed diary-lib.el calendar.el bindings.el cal-hebrew.el |
| 48 | easy-mmode.el gnus-sum.el ibuf-ext.el ibuffer.el lunar.el macros.el | 51 | easy-mmode.el gnus-sum.el ibuf-ext.el ibuffer.el lunar.el macros.el |
| @@ -82,7 +85,7 @@ Alexander Zhuckov: changed ebrowse.c | |||
| 82 | Alexandre Julliard: wrote vc-git.el | 85 | Alexandre Julliard: wrote vc-git.el |
| 83 | 86 | ||
| 84 | Alexandre Oliva: wrote gnus-mlspl.el | 87 | Alexandre Oliva: wrote gnus-mlspl.el |
| 85 | and changed unexelf.c format.el iris4d.h iris5d.h unexsgi.c | 88 | and changed unexelf.c format.el iris4d.h iris5d.h regex.c unexsgi.c |
| 86 | 89 | ||
| 87 | Alexandre Veyrenc: changed fr-refcard.tex | 90 | Alexandre Veyrenc: changed fr-refcard.tex |
| 88 | 91 | ||
| @@ -95,7 +98,7 @@ Alfredo Finelli: changed TUTORIAL.it | |||
| 95 | 98 | ||
| 96 | Alin C. Soare: changed lisp-mode.el hexl.el | 99 | Alin C. Soare: changed lisp-mode.el hexl.el |
| 97 | 100 | ||
| 98 | Ami Fischman: changed calendar.el diary-lib.el | 101 | Ami Fischman: changed calendar.el diary-lib.el print.c |
| 99 | 102 | ||
| 100 | Anders Holst: wrote hippie-exp.el | 103 | Anders Holst: wrote hippie-exp.el |
| 101 | 104 | ||
| @@ -130,9 +133,9 @@ Andreas Leue: changed artist.el | |||
| 130 | Andreas Luik: changed xfns.c xterm.c | 133 | Andreas Luik: changed xfns.c xterm.c |
| 131 | 134 | ||
| 132 | Andreas Schwab: changed Makefile.in files.el lisp.h alloc.c xdisp.c | 135 | Andreas Schwab: changed Makefile.in files.el lisp.h alloc.c xdisp.c |
| 133 | configure.in editfns.c fns.c print.c coding.c dired.el fileio.c info.el | 136 | editfns.c fns.c print.c coding.c dired.el fileio.c info.el eval.c |
| 134 | eval.c process.c simple.el buffer.c minibuf.c window.c xterm.c emacs.c | 137 | process.c simple.el buffer.c minibuf.c window.c xterm.c emacs.c |
| 135 | and 452 other files | 138 | keyboard.c and 452 other files |
| 136 | 139 | ||
| 137 | Andreas Seltenreich: changed nnweb.el gnus.texi nnslashdot.el | 140 | Andreas Seltenreich: changed nnweb.el gnus.texi nnslashdot.el |
| 138 | gnus-util.el mm-uu.el url-http.el battery.el comint.el easy-mmode.el | 141 | gnus-util.el mm-uu.el url-http.el battery.el comint.el easy-mmode.el |
| @@ -144,7 +147,7 @@ Andrew Choi: wrote mac-win.el | |||
| 144 | and changed macterm.c mac.c macfns.c INSTALL macmenu.c darwin.h macterm.h | 147 | and changed macterm.c mac.c macfns.c INSTALL macmenu.c darwin.h macterm.h |
| 145 | sysdep.c emacs.c fontset.c frame.c keyboard.c macgui.h xfaces.c Emacs.r | 148 | sysdep.c emacs.c fontset.c frame.c keyboard.c macgui.h xfaces.c Emacs.r |
| 146 | README cw5-mcp.xml cw6-mcp.xml dispextern.h make-package makefile.MPW | 149 | README cw5-mcp.xml cw6-mcp.xml dispextern.h make-package makefile.MPW |
| 147 | and 61 other files | 150 | and 60 other files |
| 148 | 151 | ||
| 149 | Andrew Cohen: changed dns.el | 152 | Andrew Cohen: changed dns.el |
| 150 | 153 | ||
| @@ -199,9 +202,9 @@ and changed cc-mode.el cc-cmds.el cc-engine.el cc-langs.el cc-styles.el | |||
| 199 | 202 | ||
| 200 | Barry Fishman: changed gnu-linux.h | 203 | Barry Fishman: changed gnu-linux.h |
| 201 | 204 | ||
| 202 | Ben A. Mesander: wrote erc-dcc.el | 205 | Bastien Guerry: wrote org-export-latex.el |
| 203 | 206 | ||
| 204 | Ben Harris: changed configure.in | 207 | Ben A. Mesander: wrote erc-dcc.el |
| 205 | 208 | ||
| 206 | Ben Key: changed w32.c w32fns.c w32menu.c makefile.w32-in w32.h w32term.c | 209 | Ben Key: changed w32.c w32fns.c w32menu.c makefile.w32-in w32.h w32term.c |
| 207 | emacs.c gmake.defs ms-w32.h nmake.defs sound.c | 210 | emacs.c gmake.defs ms-w32.h nmake.defs sound.c |
| @@ -223,7 +226,7 @@ Bill Burton: changed ptx.h sequent-ptx.h | |||
| 223 | 226 | ||
| 224 | Bill Carpenter: wrote feedmail.el (public domain) | 227 | Bill Carpenter: wrote feedmail.el (public domain) |
| 225 | 228 | ||
| 226 | Bill Mann: changed configure.in unexaix.c ibmrs6000.h usg5-4-3.h | 229 | Bill Mann: changed unexaix.c ibmrs6000.h usg5-4-3.h |
| 227 | 230 | ||
| 228 | Bill Meier: changed sh-script.el | 231 | Bill Meier: changed sh-script.el |
| 229 | 232 | ||
| @@ -280,8 +283,6 @@ and changed fill.el simple.el indent.el paragraphs.el cmds.c intervals.c | |||
| 280 | 283 | ||
| 281 | Boris Samorodov: changed imap.el | 284 | Boris Samorodov: changed imap.el |
| 282 | 285 | ||
| 283 | Boyd Lynn Gerber: changed configure.in | ||
| 284 | |||
| 285 | Brad Howes: changed gnus-demon.el | 286 | Brad Howes: changed gnus-demon.el |
| 286 | 287 | ||
| 287 | Brad Miller: wrote gnus-gl.el | 288 | Brad Miller: wrote gnus-gl.el |
| @@ -290,10 +291,10 @@ Brendan Kehoe: changed hpux9.h | |||
| 290 | 291 | ||
| 291 | Brian D. Carlstrom: changed gud.el smtpmail.el | 292 | Brian D. Carlstrom: changed gud.el smtpmail.el |
| 292 | 293 | ||
| 293 | Brian Fox: changed Makefile.in configure.in minibuf.c dired.el files.el | 294 | Brian Fox: changed Makefile.in minibuf.c dired.el files.el rmail.el |
| 294 | rmail.el search.c simple.el sysdep.c Makefile compile.el forms.texi | 295 | search.c simple.el sysdep.c Makefile compile.el forms.texi frame.c |
| 295 | frame.c info.texi keyboard.c make-dist subr.el systty.h xterm.c INSTALL | 296 | info.texi keyboard.c make-dist subr.el systty.h xterm.c INSTALL alloc.c |
| 296 | alloc.c and 44 other files | 297 | alloca.c and 43 other files |
| 297 | 298 | ||
| 298 | Brian Marick: wrote hideif.el | 299 | Brian Marick: wrote hideif.el |
| 299 | 300 | ||
| @@ -329,25 +330,26 @@ Carsten Dominik: wrote idlw-complete-structtag.el idlw-toolbar.el org.el | |||
| 329 | and changed org.texi orgcard.tex idlw-shell.el idlwave.el idlw-rinfo.el | 330 | and changed org.texi orgcard.tex idlw-shell.el idlwave.el idlw-rinfo.el |
| 330 | reftex.texi reftex-vcr.el diary-lib.el bibtex.el bookmark.el files.el | 331 | reftex.texi reftex-vcr.el diary-lib.el bibtex.el bookmark.el files.el |
| 331 | idlwave-rinfo.el idlwave-shell.el idlwave-toolbar.el | 332 | idlwave-rinfo.el idlwave-shell.el idlwave-toolbar.el |
| 333 | org-export-latex.el org-irc.el org-mac-message.el org-publish.el | ||
| 332 | 334 | ||
| 333 | Caveh Jalali: changed configure.in intel386.h sol2-4.h | 335 | Caveh Jalali: changed intel386.h sol2-4.h |
| 334 | 336 | ||
| 335 | Changwoo Ryu: changed files.el | 337 | Changwoo Ryu: changed files.el |
| 336 | 338 | ||
| 337 | Chao-Hong Liu: changed TUTORIAL.cn TUTORIAL.zh | 339 | Chao-Hong Liu: changed TUTORIAL.cn TUTORIAL.zh |
| 338 | 340 | ||
| 339 | Charles Hannum: changed aix3-1.h aix3-2.h configure ibmrs6000.h | 341 | Charles Hannum: changed aix3-1.h aix3-2.h ibmrs6000.h keyboard.c netbsd.h |
| 340 | keyboard.c netbsd.h pop.c sysdep.c systime.h systty.h xrdb.c | 342 | pop.c sysdep.c systime.h systty.h xrdb.c |
| 341 | 343 | ||
| 342 | Charlie Martin: wrote autoinsert.el | 344 | Charlie Martin: wrote autoinsert.el |
| 343 | 345 | ||
| 344 | Cheng Gao: changed MORE.STUFF flymake.el tips.texi url-dired.el | 346 | Cheng Gao: changed MORE.STUFF flymake.el tips.texi url-dired.el |
| 345 | url-file.el url-handlers.el url-http.el url-nfs.el | 347 | url-file.el url-handlers.el url-http.el url-nfs.el |
| 346 | 348 | ||
| 347 | Chong Yidong: changed files.el simple.el cus-edit.el xdisp.c longlines.el | 349 | Chong Yidong: changed xdisp.c files.el simple.el cus-edit.el longlines.el |
| 348 | display.texi custom.el files.texi image-mode.el keyboard.c info.el | 350 | display.texi custom.el files.texi image-mode.el keyboard.c info.el |
| 349 | compile.el custom.texi text.texi xterm.c frames.texi image.c mouse.el | 351 | compile.el custom.texi image.c text.texi xterm.c frames.texi mouse.el |
| 350 | misc.texi startup.el wid-edit.el and 322 other files | 352 | misc.texi startup.el wid-edit.el and 330 other files |
| 351 | 353 | ||
| 352 | Chris Hanson: changed xscheme.el scheme.el xterm.c hpux.h x11term.c | 354 | Chris Hanson: changed xscheme.el scheme.el xterm.c hpux.h x11term.c |
| 353 | hp9000s300.h keyboard.c process.c texinfmt.el emacsclient.c sort.el | 355 | hp9000s300.h keyboard.c process.c texinfmt.el emacsclient.c sort.el |
| @@ -363,8 +365,6 @@ Chris Prince: changed w32term.c | |||
| 363 | Chris Smith: wrote icon.el | 365 | Chris Smith: wrote icon.el |
| 364 | and changed icon-mode.el | 366 | and changed icon-mode.el |
| 365 | 367 | ||
| 366 | Christian Limpach: changed configure.in | ||
| 367 | |||
| 368 | Christian Lynbech: changed appt.el emacsserver.c | 368 | Christian Lynbech: changed appt.el emacsserver.c |
| 369 | 369 | ||
| 370 | Christian Neukirchen: changed mm-util.el | 370 | Christian Neukirchen: changed mm-util.el |
| @@ -373,8 +373,6 @@ Christian Plaunt: wrote soundex.el | |||
| 373 | 373 | ||
| 374 | Christian Von Roques: changed gnus-start.el | 374 | Christian Von Roques: changed gnus-start.el |
| 375 | 375 | ||
| 376 | Christoph Bauer: changed configure.in | ||
| 377 | |||
| 378 | Christoph Conrad: changed gnus-agent.el gnus-score.el makefile.w32-in | 376 | Christoph Conrad: changed gnus-agent.el gnus-score.el makefile.w32-in |
| 379 | qp.el | 377 | qp.el |
| 380 | 378 | ||
| @@ -400,7 +398,7 @@ and changed calc.el replace.el update-game-score.c calc-ext.el | |||
| 400 | calc-misc.el Makefile.in calc-macs.el calc-mode.el calc-graph.el | 398 | calc-misc.el Makefile.in calc-macs.el calc-mode.el calc-graph.el |
| 401 | gamegrid.el calc-aent.el calc-bin.el calc-embed.el calc-keypd.el | 399 | gamegrid.el calc-aent.el calc-bin.el calc-embed.el calc-keypd.el |
| 402 | calc-math.el calc-prog.el calc-units.el calcalg2.el font-core.el | 400 | calc-math.el calc-prog.el calc-units.el calcalg2.el font-core.el |
| 403 | info.el calc-alg.el and 78 other files | 401 | info.el calc-alg.el and 77 other files |
| 404 | 402 | ||
| 405 | Craig Mcdaniel: changed sheap.c | 403 | Craig Mcdaniel: changed sheap.c |
| 406 | 404 | ||
| @@ -431,7 +429,7 @@ Dan Nicolaescu: wrote iris-ansi.el romanian.el | |||
| 431 | and changed xterm.el term.el hideshow.el vc-hg.el verilog-mode.el | 429 | and changed xterm.el term.el hideshow.el vc-hg.el verilog-mode.el |
| 432 | files.el isearch.el sh-script.el font-lock.el icon.el lisp.h vc.el | 430 | files.el isearch.el sh-script.el font-lock.el icon.el lisp.h vc.el |
| 433 | cus-edit.el faces.el grep.el diff-mode.el eterm-color.ti ibuffer.el | 431 | cus-edit.el faces.el grep.el diff-mode.el eterm-color.ti ibuffer.el |
| 434 | replace.el rxvt.el term.c and 192 other files | 432 | replace.el rxvt.el term.c and 190 other files |
| 435 | 433 | ||
| 436 | Daniel Brockman: changed cus-start.el format-spec.el ibuffer.el rcirc.el | 434 | Daniel Brockman: changed cus-start.el format-spec.el ibuffer.el rcirc.el |
| 437 | 435 | ||
| @@ -473,10 +471,10 @@ Dave Love: wrote autoarg.el autoconf.el benchmark.el cfengine.el | |||
| 473 | smiley.el subst-big5.el subst-gb2312.el subst-jis.el subst-ksc.el | 471 | smiley.el subst-big5.el subst-gb2312.el subst-jis.el subst-ksc.el |
| 474 | tool-bar.el ucs-tables.el uni-input.el utf-16.el utf-7.el utf-8-lang.el | 472 | tool-bar.el ucs-tables.el uni-input.el utf-16.el utf-7.el utf-8-lang.el |
| 475 | vc-bzr.el welsh.el | 473 | vc-bzr.el welsh.el |
| 476 | and changed configure.in Makefile.in help.el fortran.el browse-url.el | 474 | and changed Makefile.in help.el fortran.el browse-url.el mule-cmds.el |
| 477 | mule-cmds.el simple.el xterm.c cus-edit.el files.el info.el mule.el | 475 | simple.el xterm.c cus-edit.el files.el info.el mule.el wid-edit.el |
| 478 | wid-edit.el fns.c vc.el rfc2047.el bindings.el cus-start.el buffer.c | 476 | fns.c vc.el rfc2047.el bindings.el cus-start.el buffer.c byte-opt.el |
| 479 | byte-opt.el bytecomp.el and 727 other files | 477 | bytecomp.el config.in and 726 other files |
| 480 | 478 | ||
| 481 | Dave Pearson: wrote 5x5.el quickurl.el | 479 | Dave Pearson: wrote 5x5.el quickurl.el |
| 482 | 480 | ||
| @@ -514,17 +512,19 @@ David Hedbor: changed gnus-art.el mm-decode.el mm-view.el gnus-agent.el | |||
| 514 | message.el mm-encode.el mm-util.el nndoc.el nnmail.el score-mode.el | 512 | message.el mm-encode.el mm-util.el nndoc.el nnmail.el score-mode.el |
| 515 | webmail.el | 513 | webmail.el |
| 516 | 514 | ||
| 515 | David Hull: changed vc-hg.el | ||
| 516 | |||
| 517 | David Hunter: changed config.nt flymake.el ms-w32.h process.c | 517 | David Hunter: changed config.nt flymake.el ms-w32.h process.c |
| 518 | 518 | ||
| 519 | David J. Mackenzie: changed configure.in etags.c fakemail.c movemail.c | 519 | David J. Mackenzie: changed etags.c fakemail.c movemail.c wakeup.c |
| 520 | wakeup.c Makefile cvtmail.c qsort.c termcap.c yow.c Makefile.in | 520 | Makefile cvtmail.c qsort.c termcap.c yow.c Makefile.in avoid.el b2m.c |
| 521 | avoid.el b2m.c digest-doc.c emacsclient.c emacsserver.c emacstool.c | 521 | digest-doc.c emacsclient.c emacsserver.c emacstool.c etags-vmslib.c |
| 522 | etags-vmslib.c fortran.el hexl.c isearch.el and 12 other files | 522 | fortran.el hexl.c isearch.el make-docfile.c and 11 other files |
| 523 | 523 | ||
| 524 | David Kastrup: changed greek.el replace.el faq.texi search.c ange-ftp.el | 524 | David Kastrup: changed greek.el replace.el faq.texi search.c ange-ftp.el |
| 525 | help.el mouse.el Makefile.in calc.el desktop.el keymaps.texi | 525 | help.el mouse.el Makefile.in calc.el desktop.el keymaps.texi |
| 526 | meta-mode.el process.c search.texi subr.el woman.el DEBUG DEVEL.HUMOR | 526 | meta-mode.el process.c search.texi subr.el woman.el DEBUG DEVEL.HUMOR |
| 527 | MAILINGLISTS advice.el autoload.el and 40 other files | 527 | MAILINGLISTS advice.el autoload.el and 39 other files |
| 528 | 528 | ||
| 529 | David K,Ae(Bgedal: wrote tempo.el | 529 | David K,Ae(Bgedal: wrote tempo.el |
| 530 | and changed sendmail.el xmenu.c | 530 | and changed sendmail.el xmenu.c |
| @@ -551,10 +551,12 @@ and changed mode-clone.el | |||
| 551 | David Moore: wrote nnvirtual.el | 551 | David Moore: wrote nnvirtual.el |
| 552 | and changed gnus-xmas.el | 552 | and changed gnus-xmas.el |
| 553 | 553 | ||
| 554 | David Mosberger-Tang: changed alpha.h unexelf.c cm.h config.in | 554 | David Mosberger-Tang: changed alpha.h unexelf.c cm.h config.in cvtmail.c |
| 555 | configure.in cvtmail.c data.c dispnew.c emacsserver.c etags.c | 555 | data.c dispnew.c emacsserver.c etags.c fakemail.c keyboard.c |
| 556 | fakemail.c keyboard.c mem-limits.h process.c profile.c sorted-doc.c | 556 | mem-limits.h process.c profile.c sorted-doc.c sysdep.c terminfo.c |
| 557 | sysdep.c terminfo.c unexelf1.c yow.c | 557 | unexelf1.c yow.c |
| 558 | |||
| 559 | David O'Toole: wrote org-publish.el | ||
| 558 | 560 | ||
| 559 | David Ponce: wrote recentf.el ruler-mode.el tree-widget.el | 561 | David Ponce: wrote recentf.el ruler-mode.el tree-widget.el |
| 560 | and changed w32menu.c w32term.c close.png close.xpm empty.png empty.xpm | 562 | and changed w32menu.c w32term.c close.png close.xpm empty.png empty.xpm |
| @@ -567,6 +569,8 @@ and changed commands.h cus-edit.el easy-mmode.el emacsbug.el | |||
| 567 | emacsclient.c keymap.c macterm.c menu-bar.el minibuf.c python.el | 569 | emacsclient.c keymap.c macterm.c menu-bar.el minibuf.c python.el |
| 568 | sendmail.el url-http.el | 570 | sendmail.el url-http.el |
| 569 | 571 | ||
| 572 | David Robinow: changed w32inevt.c | ||
| 573 | |||
| 570 | David Robinson: changed menu-bar.el x-win.el | 574 | David Robinson: changed menu-bar.el x-win.el |
| 571 | 575 | ||
| 572 | David S. Goldberg: changed gnus-art.el message.el | 576 | David S. Goldberg: changed gnus-art.el message.el |
| @@ -577,8 +581,6 @@ David Z. Maze: changed nnml.el nnrss.el | |||
| 577 | 581 | ||
| 578 | Davis Herring: changed desktop.el timeclock.el | 582 | Davis Herring: changed desktop.el timeclock.el |
| 579 | 583 | ||
| 580 | Deanna Phillips: changed configure.in | ||
| 581 | |||
| 582 | Decklin Foster: changed nngateway.el | 584 | Decklin Foster: changed nngateway.el |
| 583 | 585 | ||
| 584 | Deepak Goel: changed README ada-mode.el ada-xref.el appt.el apropos.el | 586 | Deepak Goel: changed README ada-mode.el ada-xref.el appt.el apropos.el |
| @@ -593,6 +595,8 @@ Denis Howe: wrote browse-url.el | |||
| 593 | 595 | ||
| 594 | Denis St,A|(Bnkel: changed ibuf-ext.el | 596 | Denis St,A|(Bnkel: changed ibuf-ext.el |
| 595 | 597 | ||
| 598 | Dennis Gilmore: changed sparc.h | ||
| 599 | |||
| 596 | Derek Atkins: changed imap.el pgg-pgp.el | 600 | Derek Atkins: changed imap.el pgg-pgp.el |
| 597 | 601 | ||
| 598 | Derek L. Davies: changed gud.el | 602 | Derek L. Davies: changed gud.el |
| @@ -661,7 +665,7 @@ Edward O'connor: changed erc.el erc-viper.el erc-log.el erc-track.el | |||
| 661 | Edwin Steiner: changed gnus-nocem.el | 665 | Edwin Steiner: changed gnus-nocem.el |
| 662 | 666 | ||
| 663 | Ehud Karni: changed rmail.el aviion-intel.h compile.el complete.el | 667 | Ehud Karni: changed rmail.el aviion-intel.h compile.el complete.el |
| 664 | configure.in frame.el rmailsum.el sort.el xdisp.c | 668 | frame.el rmailsum.el sort.el xdisp.c |
| 665 | 669 | ||
| 666 | Eirik Fuller: changed ralloc.c xterm.c | 670 | Eirik Fuller: changed ralloc.c xterm.c |
| 667 | 671 | ||
| @@ -673,10 +677,10 @@ Eli Zaretskii: wrote codepage.el rxvt.el tty-colors.el | |||
| 673 | and changed msdos.c Makefile.in makefile.w32-in files.el info.el fileio.c | 677 | and changed msdos.c Makefile.in makefile.w32-in files.el info.el fileio.c |
| 674 | startup.el mainmake.v2 rmail.el config.bat menu-bar.el simple.el | 678 | startup.el mainmake.v2 rmail.el config.bat menu-bar.el simple.el |
| 675 | pc-win.el msdos.h internal.el xfaces.c emacs.c frame.c INSTALL dosfns.c | 679 | pc-win.el msdos.h internal.el xfaces.c emacs.c frame.c INSTALL dosfns.c |
| 676 | mule-cmds.el and 537 other files | 680 | mule-cmds.el and 535 other files |
| 677 | 681 | ||
| 678 | Emanuele Giaquinta: changed rxvt.el configure.in etags.c frame.el | 682 | Emanuele Giaquinta: changed rxvt.el etags.c frame.el gnus-faq.texi |
| 679 | gnus-faq.texi sh-script.el text.texi | 683 | sh-script.el text.texi |
| 680 | 684 | ||
| 681 | Emilio C. Lopes: changed woman.el cmuscheme.el help.el vc.el advice.el | 685 | Emilio C. Lopes: changed woman.el cmuscheme.el help.el vc.el advice.el |
| 682 | animate.el apropos.el artist.el bookmark.el cal-menu.el calc-prog.el | 686 | animate.el apropos.el artist.el bookmark.el cal-menu.el calc-prog.el |
| @@ -688,9 +692,8 @@ Emmanuel Briot: wrote ada-prj.el xml.el | |||
| 688 | and changed ada-mode.el ada-stmt.el ada-xref.el | 692 | and changed ada-mode.el ada-stmt.el ada-xref.el |
| 689 | 693 | ||
| 690 | Enami Tsugutomo: changed frame.c keyboard.c dispnew.c fileio.c process.c | 694 | Enami Tsugutomo: changed frame.c keyboard.c dispnew.c fileio.c process.c |
| 691 | xdisp.c add-log.el bytecomp.el configure.in editfns.c emacs.c frame.h | 695 | xdisp.c add-log.el bytecomp.el editfns.c emacs.c frame.h gnus-group.el |
| 692 | gnus-group.el perl-mode.el rmailsum.el simple.el sysdep.c vc.el | 696 | perl-mode.el rmailsum.el simple.el sysdep.c vc.el window.c window.el |
| 693 | window.c window.el | ||
| 694 | 697 | ||
| 695 | Era Eriksson: changed dired.el shell.el | 698 | Era Eriksson: changed dired.el shell.el |
| 696 | 699 | ||
| @@ -730,9 +733,9 @@ Eric Youngdale: changed etags-vmslib.c | |||
| 730 | Erik Naggum: wrote disp-table.el latin-4.el latin-5.el mailheader.el | 733 | Erik Naggum: wrote disp-table.el latin-4.el latin-5.el mailheader.el |
| 731 | parse-time.el | 734 | parse-time.el |
| 732 | and changed simple.el emacs.c files.el lread.c rmail.el alloc.c editfns.c | 735 | and changed simple.el emacs.c files.el lread.c rmail.el alloc.c editfns.c |
| 733 | keyboard.c apropos.el configure.in dispnew.c filelock.c fns.c keymap.c | 736 | keyboard.c apropos.el dispnew.c filelock.c fns.c keymap.c lisp.h |
| 734 | lisp.h print.c process.c add-log.el buffer.c casetab.c cl-macs.el | 737 | print.c process.c add-log.el buffer.c casetab.c cl-macs.el comint.el |
| 735 | and 112 other files | 738 | and 111 other files |
| 736 | 739 | ||
| 737 | Erik Toubro Nielsen: changed gnus-sum.el gnus-topic.el | 740 | Erik Toubro Nielsen: changed gnus-sum.el gnus-topic.el |
| 738 | 741 | ||
| @@ -768,9 +771,9 @@ Francesc Rocher: changed cus-start.el macterm.c w32term.c xdisp.c xterm.c | |||
| 768 | 771 | ||
| 769 | Francesco Potort,Al(B: wrote cmacexp.el | 772 | Francesco Potort,Al(B: wrote cmacexp.el |
| 770 | and changed etags.c man.el delta.h etags.1 undigest.el comint.el | 773 | and changed etags.c man.el delta.h etags.1 undigest.el comint.el |
| 771 | configure.in maintaining.texi uniquify.el latin-post.el rmail.el | 774 | maintaining.texi uniquify.el latin-post.el rmail.el Makefile.in |
| 772 | Makefile.in etags.el latin-alt.el sgml-mode.el data.c european.el | 775 | etags.el latin-alt.el sgml-mode.el data.c european.el filelock.c |
| 773 | filelock.c files.el generic-x.el gud.el and 44 other files | 776 | files.el generic-x.el gud.el hanoi.el and 43 other files |
| 774 | 777 | ||
| 775 | Francis J. Wright: wrote woman.el | 778 | Francis J. Wright: wrote woman.el |
| 776 | and changed dired.el comint.el files.el | 779 | and changed dired.el comint.el files.el |
| @@ -787,7 +790,7 @@ Frank Bennett: changed nnmail.el | |||
| 787 | 790 | ||
| 788 | Frank Bresz: wrote diff.el | 791 | Frank Bresz: wrote diff.el |
| 789 | 792 | ||
| 790 | Frank Schmitt: changed gnus-sum.el gnus-util.el | 793 | Frank Schmitt: changed gnus-sum.el gnus-faq.texi gnus-util.el |
| 791 | 794 | ||
| 792 | Frank Weinberg: changed gnus-art.el | 795 | Frank Weinberg: changed gnus-art.el |
| 793 | 796 | ||
| @@ -807,9 +810,9 @@ and changed gnus.el | |||
| 807 | 810 | ||
| 808 | Frederic Pierresteguy: wrote widget.c | 811 | Frederic Pierresteguy: wrote widget.c |
| 809 | and changed xmenu.c xterm.c xfns.c dpx2.h lwlib.c rmailsum.el rmail.el | 812 | and changed xmenu.c xterm.c xfns.c dpx2.h lwlib.c rmailsum.el rmail.el |
| 810 | xlwmenu.c xterm.h lwlib-Xaw.c lwlib-Xlw.c Makefile.in configure.in | 813 | xlwmenu.c xterm.h lwlib-Xaw.c lwlib-Xlw.c Makefile.in lwlib-Xaw.h |
| 811 | lwlib-Xaw.h lwlib-int.h xdisp.c compile.el editfns.c fns.c frame.h | 814 | lwlib-int.h xdisp.c compile.el editfns.c fns.c frame.h hilit19.el |
| 812 | hilit19.el and 9 other files | 815 | keyboard.c and 8 other files |
| 813 | 816 | ||
| 814 | Frederik Fouvry: changed sendmail.el TUTORIAL.nl emacs.bash faces.el | 817 | Frederik Fouvry: changed sendmail.el TUTORIAL.nl emacs.bash faces.el |
| 815 | filecache.el mailalias.el rmail.el thumbs.el | 818 | filecache.el mailalias.el rmail.el thumbs.el |
| @@ -858,8 +861,8 @@ Georges Brun-Cottan: wrote easy-mmode.el | |||
| 858 | Gerd M,Av(Bllmann: wrote authors.el ebrowse.el jit-lock.el rx.el tooltip.el | 861 | Gerd M,Av(Bllmann: wrote authors.el ebrowse.el jit-lock.el rx.el tooltip.el |
| 859 | and changed xdisp.c xterm.c dispnew.c dispextern.h xfns.c xfaces.c | 862 | and changed xdisp.c xterm.c dispnew.c dispextern.h xfns.c xfaces.c |
| 860 | window.c keyboard.c lisp.h Makefile.in faces.el alloc.c buffer.c | 863 | window.c keyboard.c lisp.h Makefile.in faces.el alloc.c buffer.c |
| 861 | startup.el xterm.h fns.c simple.el term.c configure.in frame.c xmenu.c | 864 | startup.el xterm.h fns.c simple.el term.c frame.c xmenu.c emacs.c |
| 862 | and 620 other files | 865 | and 618 other files |
| 863 | 866 | ||
| 864 | Gergely Nagy: changed erc.el | 867 | Gergely Nagy: changed erc.el |
| 865 | 868 | ||
| @@ -867,16 +870,16 @@ Germano Caronni: changed ralloc.c | |||
| 867 | 870 | ||
| 868 | Gernot Heiser: changed refer.el | 871 | Gernot Heiser: changed refer.el |
| 869 | 872 | ||
| 870 | Giorgos Keramidas: changed configure.in MACHINES amdx86-64.h apropos.el | 873 | Giorgos Keramidas: changed MACHINES amdx86-64.h apropos.el display.texi |
| 871 | display.texi fringe.c fringe.el lisp.h windows.texi xmenu.c | 874 | fringe.c fringe.el lisp.h windows.texi xmenu.c |
| 872 | 875 | ||
| 873 | Giuseppe Scrivano: changed buffer.c configure.in sysdep.c xsmfns.c | 876 | Giuseppe Scrivano: changed buffer.c sysdep.c xsmfns.c |
| 874 | 877 | ||
| 875 | Glenn Morris: changed f90.el diary-lib.el calendar.el fortran.el | 878 | Glenn Morris: changed f90.el diary-lib.el calendar.el fortran.el |
| 876 | calendar.texi COPYING appt.el Makefile.in files.el sh-script.el | 879 | calendar.texi COPYING appt.el Makefile.in files.el sh-script.el |
| 877 | timeclock.el cal-menu.el configure.in simple.el tex-mode.el calc.texi | 880 | simple.el timeclock.el cal-menu.el tex-mode.el cal-islam.el cal-tex.el |
| 878 | complete.el fr-refcard.tex orgcard.tex programs.texi startup.el | 881 | calc.texi complete.el fr-refcard.tex holidays.el orgcard.tex |
| 879 | and 250 other files | 882 | and 256 other files |
| 880 | 883 | ||
| 881 | Glynn Clements: wrote gamegrid.el snake.el tetris.el | 884 | Glynn Clements: wrote gamegrid.el snake.el tetris.el |
| 882 | 885 | ||
| @@ -884,7 +887,7 @@ Gordon Matzigkeit: changed gnus-uu.el | |||
| 884 | 887 | ||
| 885 | Greg Hill: changed bytecomp.el | 888 | Greg Hill: changed bytecomp.el |
| 886 | 889 | ||
| 887 | Greg Hudson: changed configure.in indent.c | 890 | Greg Hudson: changed indent.c |
| 888 | 891 | ||
| 889 | Greg Klanderman: changed messagexmas.el | 892 | Greg Klanderman: changed messagexmas.el |
| 890 | 893 | ||
| @@ -1059,10 +1062,10 @@ Jamie Zawinski: wrote byte-opt.el byte-run.el bytecomp.el disass.el | |||
| 1059 | and changed bytecode.c mail-extr.el subr.el | 1062 | and changed bytecode.c mail-extr.el subr.el |
| 1060 | 1063 | ||
| 1061 | Jan Dj,Ad(Brv: wrote dnd.el x-dnd.el | 1064 | Jan Dj,Ad(Brv: wrote dnd.el x-dnd.el |
| 1062 | and changed gtkutil.c xterm.c xfns.c xmenu.c xterm.h configure.in | 1065 | and changed gtkutil.c xterm.c xfns.c xmenu.c xterm.h x-win.el gtkutil.h |
| 1063 | x-win.el gtkutil.h keyboard.c Makefile.in frames.texi config.in | 1066 | keyboard.c Makefile.in frames.texi config.in xselect.c emacs.c alloc.c |
| 1064 | xselect.c emacs.c alloc.c xlwmenu.c xresources.texi startup.el frame.c | 1067 | xlwmenu.c xresources.texi startup.el frame.c xdisp.c xfaces.c |
| 1065 | xdisp.c xfaces.c and 177 other files | 1068 | cus-start.el and 175 other files |
| 1066 | 1069 | ||
| 1067 | Jan Nieuwenhuizen: changed info.el TUTORIAL.nl emacs.c emacsclient.c | 1070 | Jan Nieuwenhuizen: changed info.el TUTORIAL.nl emacs.c emacsclient.c |
| 1068 | gnus-start.el gud.el nnmh.el server.el startup.el | 1071 | gnus-start.el gud.el nnmh.el server.el startup.el |
| @@ -1077,16 +1080,16 @@ Jan-Hein Buhrman: changed ange-ftp.el env.el | |||
| 1077 | 1080 | ||
| 1078 | Jari Aalto: changed add-log.el filecache.el gnus-art.el lisp-mnt.el | 1081 | Jari Aalto: changed add-log.el filecache.el gnus-art.el lisp-mnt.el |
| 1079 | man.el nnmail.el apropos.el autorevert.el comint.el compile.el | 1082 | man.el nnmail.el apropos.el autorevert.el comint.el compile.el |
| 1080 | cperl-mode.el debug.el executable.el files.el finder.el font-lock.el | 1083 | cperl-mode.el debug.el executable.el files.el find-dired.el finder.el |
| 1081 | gnus.el gnus.texi grep.el ls-lisp.el sendmail.el terminal.el | 1084 | font-lock.el gnus.el gnus.texi grep.el ls-lisp.el and 3 other files |
| 1082 | 1085 | ||
| 1083 | Jason Merrill: changed gnus-sum.el gnus-salt.el imap.el nnfolder.el | 1086 | Jason Merrill: changed gnus-sum.el gnus-salt.el imap.el nnfolder.el |
| 1084 | 1087 | ||
| 1085 | Jason Rumney: wrote w32-vars.el | 1088 | Jason Rumney: wrote w32-vars.el |
| 1086 | and changed w32fns.c w32term.c w32menu.c w32-win.el makefile.w32-in | 1089 | and changed w32fns.c w32term.c w32menu.c makefile.w32-in w32-win.el |
| 1087 | w32term.h w32.c w32bdf.c w32-fns.el w32proc.c w32select.c w32console.c | 1090 | w32term.h w32.c w32bdf.c w32-fns.el w32proc.c w32select.c w32console.c |
| 1088 | mule-cmds.el w32gui.h keyboard.c emacs.c fileio.c files.el nmake.defs | 1091 | mule-cmds.el w32gui.h keyboard.c emacs.c fileio.c files.el image.c |
| 1089 | w32bdf.h w32inevt.c and 94 other files | 1092 | nmake.defs w32bdf.h and 96 other files |
| 1090 | 1093 | ||
| 1091 | Jay Belanger: changed calc.texi calc.el calc-ext.el calc-embed.el | 1094 | Jay Belanger: changed calc.texi calc.el calc-ext.el calc-embed.el |
| 1092 | calc-aent.el calc-prog.el calc-arith.el calc-help.el calc-lang.el | 1095 | calc-aent.el calc-prog.el calc-arith.el calc-help.el calc-lang.el |
| @@ -1127,7 +1130,7 @@ Jens Toivo Berger Thielemann: changed word-help.el | |||
| 1127 | 1130 | ||
| 1128 | Jens-Ulrik Holger Petersen: changed cus-edit.el find-func.el gnus.el | 1131 | Jens-Ulrik Holger Petersen: changed cus-edit.el find-func.el gnus.el |
| 1129 | 1132 | ||
| 1130 | Jeramey Crawford: changed amdx86-64.h configure.in | 1133 | Jeramey Crawford: changed amdx86-64.h |
| 1131 | 1134 | ||
| 1132 | Jeremy Bertram Maitin-Shepard: changed erc.el erc-backend.el | 1135 | Jeremy Bertram Maitin-Shepard: changed erc.el erc-backend.el |
| 1133 | erc-button.el mml.el | 1136 | erc-button.el mml.el |
| @@ -1146,9 +1149,9 @@ Jhair Tocancipa Triana: changed gnus-audio.el | |||
| 1146 | 1149 | ||
| 1147 | Jim Blandy: wrote tvi970.el | 1150 | Jim Blandy: wrote tvi970.el |
| 1148 | and changed keyboard.c xterm.c xfns.c Makefile.in window.c process.c | 1151 | and changed keyboard.c xterm.c xfns.c Makefile.in window.c process.c |
| 1149 | dispnew.c xdisp.c sysdep.c configure.in lisp.h keymap.c configure | 1152 | dispnew.c xdisp.c sysdep.c lisp.h keymap.c make-dist buffer.c frame.c |
| 1150 | make-dist buffer.c frame.c screen.c x-win.el simple.el alloc.c emacs.c | 1153 | screen.c x-win.el simple.el alloc.c emacs.c fileio.c xfaces.c |
| 1151 | and 389 other files | 1154 | and 388 other files |
| 1152 | 1155 | ||
| 1153 | Jim Kingdon: changed MACHINES SERVICE emacsclient.c emacs.tex hp300bsd.h | 1156 | Jim Kingdon: changed MACHINES SERVICE emacsclient.c emacs.tex hp300bsd.h |
| 1154 | rmail.el | 1157 | rmail.el |
| @@ -1168,6 +1171,8 @@ Jindrich Makovicka: changed eval.c fns.c | |||
| 1168 | 1171 | ||
| 1169 | Jirka Kosek: changed mule.el | 1172 | Jirka Kosek: changed mule.el |
| 1170 | 1173 | ||
| 1174 | Joachim Nilsson: changed cc-styles.el | ||
| 1175 | |||
| 1171 | Joakim Hove: wrote html2text.el | 1176 | Joakim Hove: wrote html2text.el |
| 1172 | 1177 | ||
| 1173 | Joakim Verona: changed nnrss.el | 1178 | Joakim Verona: changed nnrss.el |
| @@ -1178,11 +1183,10 @@ Jochen Hein: changed gnus-art.el | |||
| 1178 | 1183 | ||
| 1179 | Jochen K,A|(Bpper: changed calc-units.el gnus.texi | 1184 | Jochen K,A|(Bpper: changed calc-units.el gnus.texi |
| 1180 | 1185 | ||
| 1181 | Joe Buehler: changed Makefile.in configure.in cygwin.h MACHINES | 1186 | Joe Buehler: changed Makefile.in cygwin.h MACHINES browse-url.el |
| 1182 | browse-url.el comint.el configure dired-aux.el dired.el dirtrack.el | 1187 | comint.el dired-aux.el dired.el dirtrack.el dos-w32.el fast-lock.el |
| 1183 | dos-w32.el fast-lock.el filecache.el fileio.c files.el gmalloc.c | 1188 | filecache.el fileio.c files.el gmalloc.c gnus-util.el hippie-exp.el |
| 1184 | gnus-util.el hippie-exp.el keyboard.c lastfile.c loadup.el | 1189 | keyboard.c lastfile.c loadup.el mem-limits.h mule.el and 10 other files |
| 1185 | and 12 other files | ||
| 1186 | 1190 | ||
| 1187 | Joe Casadonte: changed gnus-srvr.el | 1191 | Joe Casadonte: changed gnus-srvr.el |
| 1188 | 1192 | ||
| @@ -1205,13 +1209,11 @@ Joel Ray Holveck: changed gnus-sum.el info.el | |||
| 1205 | 1209 | ||
| 1206 | Joev Dubach: changed nntp.el | 1210 | Joev Dubach: changed nntp.el |
| 1207 | 1211 | ||
| 1208 | Johan Bockg$: changed info.el | ||
| 1209 | |||
| 1210 | Johan Bockg,Ae(Brd: changed erc.el erc-backend.el cl-macs.el erc-match.el | 1212 | Johan Bockg,Ae(Brd: changed erc.el erc-backend.el cl-macs.el erc-match.el |
| 1211 | custom.el erc-nickserv.el erc-ring.el erc-speak.el erc-track.el | 1213 | custom.el erc-nickserv.el erc-ring.el erc-speak.el erc-track.el |
| 1212 | simple.el subr.el xterm.el align.el browse-url.el bytecomp.el | 1214 | simple.el subr.el xterm.el align.el browse-url.el bytecomp.el |
| 1213 | calendar.el cl.texi dired-aux.el dired-x.el display.texi erc-bbdb.el | 1215 | calendar.el cl.texi dired-aux.el dired-x.el display.texi erc-bbdb.el |
| 1214 | and 23 other files | 1216 | and 24 other files |
| 1215 | 1217 | ||
| 1216 | Johan Vromans: wrote forms-d2.el forms.el iso-acc.el | 1218 | Johan Vromans: wrote forms-d2.el forms.el iso-acc.el |
| 1217 | and changed complete.el | 1219 | and changed complete.el |
| @@ -1270,10 +1272,9 @@ Jon Ericson: changed gnus.el spam-report.el | |||
| 1270 | 1272 | ||
| 1271 | Jon K Hellan: wrote utf7.el | 1273 | Jon K Hellan: wrote utf7.el |
| 1272 | 1274 | ||
| 1273 | Jonathan I. Kamens: changed pop.c movemail.c rmail.el configure.in | 1275 | Jonathan I. Kamens: changed pop.c movemail.c rmail.el Makefile.in b2m.pl |
| 1274 | Makefile.in b2m.pl config.in files.el pop.h terminal.el vc.el | 1276 | config.in files.el pop.h terminal.el vc.el gnus-sum.el jka-compr.el |
| 1275 | gnus-sum.el jka-compr.el rmailout.el rnewspost.el sendmail.el simple.el | 1277 | rmailout.el rnewspost.el sendmail.el simple.el timezone.el vc-hooks.el |
| 1276 | timezone.el vc-hooks.el | ||
| 1277 | 1278 | ||
| 1278 | Jonathan Stigelman: wrote hilit19.el | 1279 | Jonathan Stigelman: wrote hilit19.el |
| 1279 | 1280 | ||
| @@ -1315,9 +1316,9 @@ Juan Le,As(Bn Lahoz Garc,Am(Ba: wrote wdired.el | |||
| 1315 | and changed files.el perl-mode.el | 1316 | and changed files.el perl-mode.el |
| 1316 | 1317 | ||
| 1317 | Juanma Barranquero: changed makefile.w32-in subr.el faces.el files.el | 1318 | Juanma Barranquero: changed makefile.w32-in subr.el faces.el files.el |
| 1318 | help-fns.el bs.el w32fns.c buffer.c simple.el desktop.el emacsclient.c | 1319 | help-fns.el bs.el w32fns.c buffer.c desktop.el simple.el emacsclient.c |
| 1319 | replace.el eval.c org.el idlwave.el ido.el process.c vhdl-mode.el | 1320 | replace.el eval.c org.el idlwave.el ido.el process.c vhdl-mode.el |
| 1320 | window.c xdisp.c allout.el and 661 other files | 1321 | window.c xdisp.c allout.el and 662 other files |
| 1321 | 1322 | ||
| 1322 | Juergen Hoetzel: changed url-handlers.el | 1323 | Juergen Hoetzel: changed url-handlers.el |
| 1323 | 1324 | ||
| @@ -1338,8 +1339,8 @@ Juri Linkov: changed info.el simple.el isearch.el replace.el compile.el | |||
| 1338 | 1339 | ||
| 1339 | Justin Sheehy: changed gnus-sum.el nntp.el | 1340 | Justin Sheehy: changed gnus-sum.el nntp.el |
| 1340 | 1341 | ||
| 1341 | J,Ai(Br,At(Bme Marant: changed Makefile.in make-dist bindings.el configure.in | 1342 | J,Ai(Br,At(Bme Marant: changed Makefile.in make-dist bindings.el emacsclient.c |
| 1342 | emacsclient.c misc.texi | 1343 | misc.texi |
| 1343 | 1344 | ||
| 1344 | K. Shane Hartman: wrote chistory.el echistory.el electric.el emacsbug.el | 1345 | K. Shane Hartman: wrote chistory.el echistory.el electric.el emacsbug.el |
| 1345 | helper.el picture.el view.el | 1346 | helper.el picture.el view.el |
| @@ -1355,7 +1356,7 @@ Kai Gro,A_(Bjohann: wrote gnus-delay.el tramp-util.el tramp-uu.el tramp.el | |||
| 1355 | and changed gnus-agent.el message.el gnus-sum.el files.el nnmail.el | 1356 | and changed gnus-agent.el message.el gnus-sum.el files.el nnmail.el |
| 1356 | tramp.texi gnus.el simple.el ange-ftp.el Makefile.in dired.el | 1357 | tramp.texi gnus.el simple.el ange-ftp.el Makefile.in dired.el |
| 1357 | paragraphs.el bindings.el files.texi gnus-art.el gnus-group.el man.el | 1358 | paragraphs.el bindings.el files.texi gnus-art.el gnus-group.el man.el |
| 1358 | nntp.el INSTALL crisp.el fileio.c and 44 other files | 1359 | nntp.el INSTALL crisp.el fileio.c and 43 other files |
| 1359 | 1360 | ||
| 1360 | Kailash C. Chowksey: changed HELLO Makefile.in ind-util.el kannada.el | 1361 | Kailash C. Chowksey: changed HELLO Makefile.in ind-util.el kannada.el |
| 1361 | knd-util.el loadup.el makefile.w32-in | 1362 | knd-util.el loadup.el makefile.w32-in |
| @@ -1380,9 +1381,9 @@ and changed isearch.el menu-bar.el simple.el autogen.sh editfns.c | |||
| 1380 | nnmail.el vc-svn.el window.c | 1381 | nnmail.el vc-svn.el window.c |
| 1381 | 1382 | ||
| 1382 | Karl Heuer: changed keyboard.c lisp.h xdisp.c buffer.c xfns.c xterm.c | 1383 | Karl Heuer: changed keyboard.c lisp.h xdisp.c buffer.c xfns.c xterm.c |
| 1383 | alloc.c files.el frame.c configure.in window.c data.c minibuf.c | 1384 | alloc.c files.el frame.c window.c data.c minibuf.c editfns.c fns.c |
| 1384 | editfns.c fns.c process.c fileio.c simple.el keymap.c indent.c sysdep.c | 1385 | process.c fileio.c simple.el keymap.c indent.c sysdep.c lread.c |
| 1385 | and 444 other files | 1386 | and 443 other files |
| 1386 | 1387 | ||
| 1387 | Karl Kleinpaste: changed gnus-sum.el gnus-art.el gnus-picon.el | 1388 | Karl Kleinpaste: changed gnus-sum.el gnus-art.el gnus-picon.el |
| 1388 | gnus-score.el gnus-uu.el gnus-xmas.el gnus.el mm-uu.el mml.el nnmail.el | 1389 | gnus-score.el gnus-uu.el gnus-xmas.el gnus.el mm-uu.el mml.el nnmail.el |
| @@ -1398,7 +1399,7 @@ Katsumi Yamaoka: wrote canlock.el | |||
| 1398 | and changed gnus-art.el message.el gnus-sum.el gnus.texi mm-decode.el | 1399 | and changed gnus-art.el message.el gnus-sum.el gnus.texi mm-decode.el |
| 1399 | mm-view.el gnus-util.el gnus.el mm-util.el gnus-msg.el nntp.el | 1400 | mm-view.el gnus-util.el gnus.el mm-util.el gnus-msg.el nntp.el |
| 1400 | gnus-agent.el gnus-start.el lpath.el rfc2047.el gnus-group.el | 1401 | gnus-agent.el gnus-start.el lpath.el rfc2047.el gnus-group.el |
| 1401 | dgnushack.el mm-uu.el mml.el nnrss.el message.texi and 76 other files | 1402 | dgnushack.el mm-uu.el mml.el nnrss.el message.texi and 77 other files |
| 1402 | 1403 | ||
| 1403 | Kaveh R. Ghazi: changed delta88k.h xterm.c | 1404 | Kaveh R. Ghazi: changed delta88k.h xterm.c |
| 1404 | 1405 | ||
| @@ -1428,7 +1429,7 @@ and changed pgg-gpg.el pgg.el pgg-pgp.el pgg-pgp5.el edebug.el pgg.texi | |||
| 1428 | Ken Raeburn: changed lisp.h buffer.c alloc.c keyboard.c lread.c minibuf.c | 1429 | Ken Raeburn: changed lisp.h buffer.c alloc.c keyboard.c lread.c minibuf.c |
| 1429 | coding.c Makefile.in editfns.c fileio.c fns.c keymap.c undo.c xdisp.c | 1430 | coding.c Makefile.in editfns.c fileio.c fns.c keymap.c undo.c xdisp.c |
| 1430 | xfns.c xterm.c charset.h fontset.c search.c window.c charset.c | 1431 | xfns.c xterm.c charset.h fontset.c search.c window.c charset.c |
| 1431 | and 84 other files | 1432 | and 82 other files |
| 1432 | 1433 | ||
| 1433 | Ken Stevens: wrote ispell.el | 1434 | Ken Stevens: wrote ispell.el |
| 1434 | 1435 | ||
| @@ -1437,10 +1438,10 @@ Kenichi Handa: wrote cyrillic.el isearch-x.el py-punct.el pypunct-b5.el | |||
| 1437 | and changed coding.c mule-cmds.el mule.el charset.c fileio.c xterm.c | 1438 | and changed coding.c mule-cmds.el mule.el charset.c fileio.c xterm.c |
| 1438 | fns.c ccl.c Makefile.in mule-conf.el fontset.c charset.h coding.h | 1439 | fns.c ccl.c Makefile.in mule-conf.el fontset.c charset.h coding.h |
| 1439 | fontset.el mule-diag.el xdisp.c editfns.c process.c insdel.c | 1440 | fontset.el mule-diag.el xdisp.c editfns.c process.c insdel.c |
| 1440 | japanese.el characters.el and 286 other files | 1441 | japanese.el characters.el and 285 other files |
| 1441 | 1442 | ||
| 1442 | Kenneth Stailey: changed alpha.h configure.in ns32000.h openbsd.h pmax.h | 1443 | Kenneth Stailey: changed alpha.h ns32000.h openbsd.h pmax.h sparc.h |
| 1443 | sparc.h unexalpha.c unexelf.c | 1444 | unexalpha.c unexelf.c |
| 1444 | 1445 | ||
| 1445 | Kevin Blake: changed font-lock.el ring.el | 1446 | Kevin Blake: changed font-lock.el ring.el |
| 1446 | 1447 | ||
| @@ -1475,16 +1476,16 @@ Kevin Rodgers: changed compile.el mailabbrev.el dired-x.el files.el | |||
| 1475 | 1476 | ||
| 1476 | Kevin Ryde: wrote info-xref.el | 1477 | Kevin Ryde: wrote info-xref.el |
| 1477 | and changed info-look.el info.el mule.el arc-mode.el cl.texi gnus-art.el | 1478 | and changed info-look.el info.el mule.el arc-mode.el cl.texi gnus-art.el |
| 1478 | gnus-sum.el mailcap.el os.texi text.texi MORE.STUFF cal-dst.el | 1479 | gnus-sum.el mailcap.el os.texi text.texi MORE.STUFF autoload.el |
| 1479 | calendar.texi cc-align.el cmdargs.texi compilation.txt compile.el | 1480 | cal-dst.el calendar.texi cc-align.el cmdargs.texi compilation.txt |
| 1480 | compile.texi custom.texi display.texi em-alias.el and 22 other files | 1481 | compile.el compile.texi custom.texi display.texi and 24 other files |
| 1481 | 1482 | ||
| 1482 | Kim F. Storm: wrote bindat.el cua-base.el cua-gmrk.el cua-rect.el ido.el | 1483 | Kim F. Storm: wrote bindat.el cua-base.el cua-gmrk.el cua-rect.el ido.el |
| 1483 | keypad.el kmacro.el | 1484 | keypad.el kmacro.el |
| 1484 | and changed xdisp.c dispextern.h process.c simple.el window.c keyboard.c | 1485 | and changed xdisp.c dispextern.h process.c simple.el window.c keyboard.c |
| 1485 | xterm.c subr.el w32term.c dispnew.c lisp.h fringe.c macterm.c | 1486 | xterm.c subr.el w32term.c dispnew.c lisp.h fringe.c macterm.c |
| 1486 | display.texi fns.c alloc.c xfaces.c keymap.c xfns.c xterm.h .gdbinit | 1487 | display.texi fns.c alloc.c xfaces.c keymap.c xfns.c xterm.h .gdbinit |
| 1487 | and 255 other files | 1488 | and 254 other files |
| 1488 | 1489 | ||
| 1489 | Kim-Minh Kaplan: changed gnus-picon.el gnus-sum.el gnus-start.el | 1490 | Kim-Minh Kaplan: changed gnus-picon.el gnus-sum.el gnus-start.el |
| 1490 | gnus-win.el gnus-xmas.el gnus.texi message.el nndraft.el nnml.el | 1491 | gnus-win.el gnus-xmas.el gnus.texi message.el nndraft.el nnml.el |
| @@ -1496,7 +1497,7 @@ Kishore Kumar: changed terminal.el | |||
| 1496 | Klaus Straubinger: changed url-http.el url-history.el url-cookie.el | 1497 | Klaus Straubinger: changed url-http.el url-history.el url-cookie.el |
| 1497 | url.el | 1498 | url.el |
| 1498 | 1499 | ||
| 1499 | Klaus Zeitler: changed configure.in files.el sh-script.el vcursor.el | 1500 | Klaus Zeitler: changed files.el sh-script.el vcursor.el |
| 1500 | 1501 | ||
| 1501 | Koaunghi Un: wrote hanja3.el | 1502 | Koaunghi Un: wrote hanja3.el |
| 1502 | and changed hanja.el hangul.el hangul3.el hanja-jis.el symbol-ksc.el | 1503 | and changed hanja.el hangul.el hangul3.el hanja-jis.el symbol-ksc.el |
| @@ -1532,8 +1533,7 @@ Larry Kolodney: wrote cvtmail.c | |||
| 1532 | 1533 | ||
| 1533 | Lars Balker Rasmussen: changed gnus-art.el gnus-agent.el message.el | 1534 | Lars Balker Rasmussen: changed gnus-art.el gnus-agent.el message.el |
| 1534 | 1535 | ||
| 1535 | Lars Brinkhoff: changed building.texi config.in configure.in editfns.c | 1536 | Lars Brinkhoff: changed building.texi config.in editfns.c fns.c os.texi |
| 1536 | fns.c os.texi | ||
| 1537 | 1537 | ||
| 1538 | Lars Hansen: changed desktop.el tramp.el info.el mh-e.el dired-x.el | 1538 | Lars Hansen: changed desktop.el tramp.el info.el mh-e.el dired-x.el |
| 1539 | dired-x.texi dired.el ls-lisp.el rmail.el dired.c files.texi grp.h | 1539 | dired-x.texi dired.el ls-lisp.el rmail.el dired.c files.texi grp.h |
| @@ -1601,6 +1601,8 @@ and changed files.el autorevert.el cus-edit.el subr.el simple.el | |||
| 1601 | comint.el custom.texi emacs.texi fns.c frame.el ielm.el minibuf.texi | 1601 | comint.el custom.texi emacs.texi fns.c frame.el ielm.el minibuf.texi |
| 1602 | modes.texi variables.texi buffers.texi and 215 other files | 1602 | modes.texi variables.texi buffers.texi and 215 other files |
| 1603 | 1603 | ||
| 1604 | Luca Capello: changed mm-encode.el | ||
| 1605 | |||
| 1604 | Lucid, Inc.: changed byte-opt.el byte-run.el bytecode.c bytecomp.el | 1606 | Lucid, Inc.: changed byte-opt.el byte-run.el bytecode.c bytecomp.el |
| 1605 | delsel.el disass.el faces.el font-lock.el lmenu.el lselect.el | 1607 | delsel.el disass.el faces.el font-lock.el lmenu.el lselect.el |
| 1606 | mailabbrev.el select.el xfaces.c xselect.c | 1608 | mailabbrev.el select.el xfaces.c xselect.c |
| @@ -1611,7 +1613,7 @@ Lute Kamstra: changed modes.texi generic.el debug.el generic-x.el | |||
| 1611 | font-lock.el subr.el Makefile.in debugging.texi easy-mmode.el | 1613 | font-lock.el subr.el Makefile.in debugging.texi easy-mmode.el |
| 1612 | elisp.texi hl-line.el simple.el battery.el bindings.el calc.el | 1614 | elisp.texi hl-line.el simple.el battery.el bindings.el calc.el |
| 1613 | cmdargs.texi edebug.texi emacs.texi info.el make-tarball.txt | 1615 | cmdargs.texi edebug.texi emacs.texi info.el make-tarball.txt |
| 1614 | octave-inf.el and 216 other files | 1616 | octave-inf.el and 215 other files |
| 1615 | 1617 | ||
| 1616 | Lynn Slater: wrote help-macro.el | 1618 | Lynn Slater: wrote help-macro.el |
| 1617 | 1619 | ||
| @@ -1646,10 +1648,9 @@ Marco Melgazzi: changed term.el | |||
| 1646 | 1648 | ||
| 1647 | Marco Walther: changed mips-siemens.h unexelfsni.c unexsni.c | 1649 | Marco Walther: changed mips-siemens.h unexelfsni.c unexsni.c |
| 1648 | 1650 | ||
| 1649 | Marcus G. Daniels: changed xterm.c configure.in lwlib-Xm.c lwlib.c | 1651 | Marcus G. Daniels: changed xterm.c lwlib-Xm.c lwlib.c Makefile.in xdisp.c |
| 1650 | Makefile.in xdisp.c xfns.c xmenu.c alloc.c config.in dispnew.c | 1652 | xfns.c xmenu.c alloc.c config.in dispnew.c editfns.c emacs.c irix5-0.h |
| 1651 | editfns.c emacs.c irix5-0.h linux.h lwlib-Xm.h lwlib.h ptx4.h | 1653 | linux.h lwlib-Xm.h lwlib.h ptx4.h sequent-ptx.h unexelf.c |
| 1652 | sequent-ptx.h unexelf.c | ||
| 1653 | 1654 | ||
| 1654 | Marek Martin: changed nnfolder.el | 1655 | Marek Martin: changed nnfolder.el |
| 1655 | 1656 | ||
| @@ -1672,8 +1673,8 @@ Mark D. Baushke: changed mh-e.el mh-utils.el mh-mime.el mh-comp.el | |||
| 1672 | mh-seq.el mh-speed.el mh-funcs.el mh-alias.el MH-E-NEWS etags.c | 1673 | mh-seq.el mh-speed.el mh-funcs.el mh-alias.el MH-E-NEWS etags.c |
| 1673 | mh-junk.el mh-pick.el mh-tool-bar.el mh-xemacs-compat.el | 1674 | mh-junk.el mh-pick.el mh-tool-bar.el mh-xemacs-compat.el |
| 1674 | 1675 | ||
| 1675 | Mark Davies: changed Makefile.in amdx86-64.h configure configure.in | 1676 | Mark Davies: changed Makefile.in amdx86-64.h hp800.h netbsd.h ralloc.c |
| 1676 | hp800.h netbsd.h ralloc.c sh3el.h sort.el | 1677 | sh3el.h sort.el |
| 1677 | 1678 | ||
| 1678 | Mark Diekhans: changed compile.el | 1679 | Mark Diekhans: changed compile.el |
| 1679 | 1680 | ||
| @@ -1710,12 +1711,12 @@ Markus Holmberg: changed thingatpt.el | |||
| 1710 | Markus Rost: wrote cus-test.el | 1711 | Markus Rost: wrote cus-test.el |
| 1711 | and changed cus-edit.el Makefile.in files.el compile.el rmail.el | 1712 | and changed cus-edit.el Makefile.in files.el compile.el rmail.el |
| 1712 | tex-mode.el find-func.el rmailsum.el simple.el cus-dep.el dired.el | 1713 | tex-mode.el find-func.el rmailsum.el simple.el cus-dep.el dired.el |
| 1713 | mule-cmds.el rmailout.el checkdoc.el configure.in custom.el emacsbug.el | 1714 | mule-cmds.el rmailout.el checkdoc.el custom.el emacsbug.el gnus.el |
| 1714 | gnus.el help-fns.el ls-lisp.el mwheel.el and 122 other files | 1715 | help-fns.el ls-lisp.el mwheel.el sendmail.el and 121 other files |
| 1715 | 1716 | ||
| 1716 | Markus Triska: changed byte-opt.el bytecomp.el doctor.el expand.el | 1717 | Markus Triska: changed byte-opt.el bytecomp.el doctor.el expand.el |
| 1717 | flymake.el flymake.texi handwrite.el internals.texi speedbar.el subr.el | 1718 | flymake.el flymake.texi handwrite.el image-mode.el internals.texi |
| 1718 | tumme.el widget.texi | 1719 | speedbar.el subr.el tumme.el widget.texi |
| 1719 | 1720 | ||
| 1720 | Marshall T. Vandegrift: changed gnus-fun.el | 1721 | Marshall T. Vandegrift: changed gnus-fun.el |
| 1721 | 1722 | ||
| @@ -1735,9 +1736,9 @@ Martin Lorentzon: changed vc.el vc-cvs.el vc-hooks.el vc-rcs.el | |||
| 1735 | Martin Neitzel: changed sc.el | 1736 | Martin Neitzel: changed sc.el |
| 1736 | 1737 | ||
| 1737 | Martin Rudalics: changed cus-start.el cus-edit.el files.el wid-edit.el | 1738 | Martin Rudalics: changed cus-start.el cus-edit.el files.el wid-edit.el |
| 1738 | window.el flyspell.el font-lock.el mouse.el syntax.c xdisp.c compile.el | 1739 | window.el find-func.el flyspell.el font-lock.el mouse.el syntax.c |
| 1739 | complete.el dired.el frame.c frame.el insdel.c ispell.el keyboard.c | 1740 | xdisp.c compile.el complete.el dired.el frame.c frame.el insdel.c |
| 1740 | macmenu.c macterm.c msdos.c and 65 other files | 1741 | ispell.el keyboard.c macmenu.c macterm.c and 65 other files |
| 1741 | 1742 | ||
| 1742 | Martin Stjernholm: wrote cc-bytecomp.el | 1743 | Martin Stjernholm: wrote cc-bytecomp.el |
| 1743 | and changed cc-engine.el cc-cmds.el cc-langs.el cc-defs.el cc-mode.el | 1744 | and changed cc-engine.el cc-cmds.el cc-langs.el cc-defs.el cc-mode.el |
| @@ -1786,8 +1787,6 @@ Matt Simmons: changed message.el | |||
| 1786 | Matt Swift: changed compile.el dired.el editfns.c lisp-mode.el | 1787 | Matt Swift: changed compile.el dired.el editfns.c lisp-mode.el |
| 1787 | mm-decode.el outline.el rx.el simple.el startup.el | 1788 | mm-decode.el outline.el rx.el simple.el startup.el |
| 1788 | 1789 | ||
| 1789 | Matthew Luckie: changed configure.in | ||
| 1790 | |||
| 1791 | Matthew Mundell: changed calendar.texi diary-lib.el files.texi | 1790 | Matthew Mundell: changed calendar.texi diary-lib.el files.texi |
| 1792 | type-break.el debugging.texi display.texi edebug.texi editfns.c eval.c | 1791 | type-break.el debugging.texi display.texi edebug.texi editfns.c eval.c |
| 1793 | fileio.c frames.texi help.texi internals.texi modes.texi nonascii.texi | 1792 | fileio.c frames.texi help.texi internals.texi modes.texi nonascii.texi |
| @@ -1806,12 +1805,11 @@ Max Froumentin: changed gnus-art.el mml.el | |||
| 1806 | 1805 | ||
| 1807 | Michael Albinus: wrote tramp-ftp.el tramp-smb.el | 1806 | Michael Albinus: wrote tramp-ftp.el tramp-smb.el |
| 1808 | and changed tramp.el tramp.texi tramp-vc.el ange-ftp.el files.el | 1807 | and changed tramp.el tramp.texi tramp-vc.el ange-ftp.el files.el |
| 1809 | tramp-util.el trampver.el files.texi nnml.el tramp-uu.el trampver.texi | 1808 | tramp-util.el trampver.el trampver.texi files.texi nnml.el tramp-uu.el |
| 1810 | vc.el dired-x.el dired.el faq.texi ffap.el find-dired.el locate.el | 1809 | vc.el dired-x.el dired.el faq.texi ffap.el fileio.c find-dired.el |
| 1811 | mini.texi rcompile.el socks.el and 4 other files | 1810 | locate.el mini.texi rcompile.el and 6 other files |
| 1812 | 1811 | ||
| 1813 | Michael Ben-Gershon: changed acorn.h configure.in riscix1-1.h riscix1-2.h | 1812 | Michael Ben-Gershon: changed acorn.h riscix1-1.h riscix1-2.h unexec.c |
| 1814 | unexec.c | ||
| 1815 | 1813 | ||
| 1816 | Michael Cook: changed gnus-sum.el | 1814 | Michael Cook: changed gnus-sum.el |
| 1817 | 1815 | ||
| @@ -1920,7 +1918,9 @@ Miles Bader: wrote button.el image-file.el macroexp.el minibuf-eldef.el | |||
| 1920 | and changed comint.el faces.el simple.el editfns.c xfaces.c info.el | 1918 | and changed comint.el faces.el simple.el editfns.c xfaces.c info.el |
| 1921 | xdisp.c minibuf.c wid-edit.el xterm.c subr.el window.el cus-edit.el | 1919 | xdisp.c minibuf.c wid-edit.el xterm.c subr.el window.el cus-edit.el |
| 1922 | diff-mode.el dispextern.h quick-install-emacs xfns.c help.el lisp.h | 1920 | diff-mode.el dispextern.h quick-install-emacs xfns.c help.el lisp.h |
| 1923 | textprop.c bytecomp.el and 245 other files | 1921 | textprop.c bytecomp.el and 244 other files |
| 1922 | |||
| 1923 | Mirko Vukovic: changed emacs.texi maintaining.texi | ||
| 1924 | 1924 | ||
| 1925 | Miyashita Hisashi: changed ccl.c coding.c coding.h mule-cmds.el | 1925 | Miyashita Hisashi: changed ccl.c coding.c coding.h mule-cmds.el |
| 1926 | mule-conf.el mule.el pop3.el | 1926 | mule-conf.el mule.el pop3.el |
| @@ -1935,7 +1935,7 @@ Morten Welinder: wrote [many MSDOS files] arc-mode.el desktop.el dosfns.c | |||
| 1935 | and changed msdos.c config.bat keyboard.c sed1.inp sed2.inp fileio.c | 1935 | and changed msdos.c config.bat keyboard.c sed1.inp sed2.inp fileio.c |
| 1936 | sed3.inp dos-fns.el callproc.c add-log.el alpha.h data.c editfns.c | 1936 | sed3.inp dos-fns.el callproc.c add-log.el alpha.h data.c editfns.c |
| 1937 | emacs.c etags.c files.el info.el lread.c mainmake osf1.h tar-mode.el | 1937 | emacs.c etags.c files.el info.el lread.c mainmake osf1.h tar-mode.el |
| 1938 | and 73 other files | 1938 | and 72 other files |
| 1939 | 1939 | ||
| 1940 | Mosur Mohan: changed etags.c | 1940 | Mosur Mohan: changed etags.c |
| 1941 | 1941 | ||
| @@ -1952,7 +1952,9 @@ Nachum Dershowitz: wrote cal-hebrew.el | |||
| 1952 | Nagy Andras: wrote gnus-sieve.el | 1952 | Nagy Andras: wrote gnus-sieve.el |
| 1953 | and changed imap.el gnus.el | 1953 | and changed imap.el gnus.el |
| 1954 | 1954 | ||
| 1955 | Nakaji Hiroyuki: changed amdx86-64.h configure.in mm-util.el | 1955 | Nakagawa Makoto: changed ldap.el |
| 1956 | |||
| 1957 | Nakaji Hiroyuki: changed amdx86-64.h mm-util.el | ||
| 1956 | 1958 | ||
| 1957 | Nakamura Toshikazu: changed w32fns.c | 1959 | Nakamura Toshikazu: changed w32fns.c |
| 1958 | 1960 | ||
| @@ -1964,8 +1966,6 @@ Neil Mager: wrote appt.el | |||
| 1964 | 1966 | ||
| 1965 | Neil W. Van Dyke: wrote webjump.el | 1967 | Neil W. Van Dyke: wrote webjump.el |
| 1966 | 1968 | ||
| 1967 | Nelson H. F. Beebe: changed configure.in | ||
| 1968 | |||
| 1969 | Nelson Jose Dos Santos Ferreira: changed nnsoup.el | 1969 | Nelson Jose Dos Santos Ferreira: changed nnsoup.el |
| 1970 | 1970 | ||
| 1971 | Nevin Kapur: changed nnmail.el gnus-sum.el nnimap.el gnus-group.el | 1971 | Nevin Kapur: changed nnmail.el gnus-sum.el nnimap.el gnus-group.el |
| @@ -1986,15 +1986,15 @@ Niimi Satoshi: changed pp.el search.c | |||
| 1986 | 1986 | ||
| 1987 | Niklas Morberg: changed nnweb.el gnus-art.el nnimap.el spam.el | 1987 | Niklas Morberg: changed nnweb.el gnus-art.el nnimap.el spam.el |
| 1988 | 1988 | ||
| 1989 | Nikolaj Schumacher: changed compile.el rx.el | 1989 | Nikolaj Schumacher: changed compile.el flymake.el rx.el |
| 1990 | 1990 | ||
| 1991 | Nils Ackermann: changed message.el nnmh.el | 1991 | Nils Ackermann: changed message.el nnmh.el |
| 1992 | 1992 | ||
| 1993 | Noah Friedman: wrote eldoc.el rlogin.el rsz-mini.el type-break.el | 1993 | Noah Friedman: wrote eldoc.el rlogin.el rsz-mini.el type-break.el |
| 1994 | and changed comint.el emacs-buffer.gdb files.el mailabbrev.el sendmail.el | 1994 | and changed comint.el emacs-buffer.gdb files.el mailabbrev.el sendmail.el |
| 1995 | subr.el timer.el yow.el battery.el complete.el config.in configure.in | 1995 | subr.el timer.el yow.el battery.el complete.el config.in copyright.h |
| 1996 | copyright.h fns.c gnu-linux.h hpux7.h irix3-3.h lisp-mnt.el loaddefs.el | 1996 | fns.c gnu-linux.h hpux7.h irix3-3.h lisp-mnt.el loaddefs.el |
| 1997 | mailalias.el menu-bar.el and 14 other files | 1997 | mailalias.el menu-bar.el pp.el and 13 other files |
| 1998 | 1998 | ||
| 1999 | Nobuyuki Hikichi: changed news-risc.h | 1999 | Nobuyuki Hikichi: changed news-risc.h |
| 2000 | 2000 | ||
| @@ -2058,10 +2058,10 @@ Paul D. Smith: wrote snmp-mode.el | |||
| 2058 | and changed imenu.el make-mode.el | 2058 | and changed imenu.el make-mode.el |
| 2059 | 2059 | ||
| 2060 | Paul Eggert: wrote cal-dst.el rcs2log vcdiff | 2060 | Paul Eggert: wrote cal-dst.el rcs2log vcdiff |
| 2061 | and changed editfns.c vc.el Makefile.in configure.in vc-hooks.el data.c | 2061 | and changed editfns.c vc.el Makefile.in vc-hooks.el data.c emacs.c |
| 2062 | emacs.c gnus.el calendar.el config.in floatfns.c process.c sysdep.c | 2062 | gnus.el calendar.el config.in floatfns.c process.c sysdep.c dired.el |
| 2063 | dired.el xterm.c callproc.c fileio.c filelock.c lread.c print.c | 2063 | xterm.c callproc.c fileio.c filelock.c lread.c print.c rmail.el b2m.c |
| 2064 | rmail.el and 290 other files | 2064 | and 289 other files |
| 2065 | 2065 | ||
| 2066 | Paul Fisher: changed fns.c | 2066 | Paul Fisher: changed fns.c |
| 2067 | 2067 | ||
| @@ -2077,10 +2077,10 @@ Paul Pogonyshev: changed subr.el align.el dabbrev.el display.texi | |||
| 2077 | etags.el info.el ses.el tar-mode.el url-http.el which-func.el window.el | 2077 | etags.el info.el ses.el tar-mode.el url-http.el which-func.el window.el |
| 2078 | 2078 | ||
| 2079 | Paul Reilly: wrote dgux5-4r3.h gux5-4r2.h | 2079 | Paul Reilly: wrote dgux5-4r3.h gux5-4r2.h |
| 2080 | and changed dgux.h lwlib-Xm.c lwlib.c xlwmenu.c configure.in process.c | 2080 | and changed dgux.h lwlib-Xm.c lwlib.c xlwmenu.c process.c xfns.c |
| 2081 | xfns.c Makefile.in dgux5-4R2.h dgux5-4R3.h files.el keyboard.c | 2081 | Makefile.in dgux5-4R2.h dgux5-4R3.h files.el keyboard.c lwlib-Xaw.c |
| 2082 | lwlib-Xaw.c lwlib-Xm.h lwlib-int.h lwlib.h widget.c widget.h xlwmenu.h | 2082 | lwlib-Xm.h lwlib-int.h lwlib.h widget.c widget.h xlwmenu.h xmenu.c |
| 2083 | xmenu.c xterm.c | 2083 | xterm.c |
| 2084 | 2084 | ||
| 2085 | Paul Rubin: changed config.h sun2.h texinfmt.el window.c | 2085 | Paul Rubin: changed config.h sun2.h texinfmt.el window.c |
| 2086 | 2086 | ||
| @@ -2091,7 +2091,7 @@ Paul Stodghill: changed gnus-agent.el | |||
| 2091 | Pavel Jan,Bm(Bk: changed COPYING keyboard.c xterm.c xdisp.c Makefile.in | 2091 | Pavel Jan,Bm(Bk: changed COPYING keyboard.c xterm.c xdisp.c Makefile.in |
| 2092 | process.c emacs.c lisp.h menu-bar.el ldap.el make-dist xfns.c buffer.c | 2092 | process.c emacs.c lisp.h menu-bar.el ldap.el make-dist xfns.c buffer.c |
| 2093 | coding.c eval.c fileio.c flyspell.el fns.c indent.c callint.c | 2093 | coding.c eval.c fileio.c flyspell.el fns.c indent.c callint.c |
| 2094 | cus-start.el and 703 other files | 2094 | cus-start.el and 702 other files |
| 2095 | 2095 | ||
| 2096 | Pavel Kobiakov: changed flymake.el flymake.texi | 2096 | Pavel Kobiakov: changed flymake.el flymake.texi |
| 2097 | 2097 | ||
| @@ -2137,7 +2137,7 @@ Peter Kleiweg: wrote ps-mode.el | |||
| 2137 | 2137 | ||
| 2138 | Peter Liljenberg: wrote elint.el | 2138 | Peter Liljenberg: wrote elint.el |
| 2139 | 2139 | ||
| 2140 | Peter O'gorman: changed configure.in frame.h gtkutil.c termhooks.h | 2140 | Peter O'gorman: changed frame.h gtkutil.c termhooks.h |
| 2141 | 2141 | ||
| 2142 | Peter Povinec: changed term.el | 2142 | Peter Povinec: changed term.el |
| 2143 | 2143 | ||
| @@ -2161,13 +2161,14 @@ Peter Von Der Ahe: changed gnus-ems.el | |||
| 2161 | 2161 | ||
| 2162 | Peter Whaite: changed data.c | 2162 | Peter Whaite: changed data.c |
| 2163 | 2163 | ||
| 2164 | Petr Salinger: changed configure.in gnu-kfreebsd.h | 2164 | Petr Salinger: changed gnu-kfreebsd.h |
| 2165 | 2165 | ||
| 2166 | Petri Kaurinkoski: changed configure.in iris4d.h irix6-0.h irix6-5.h | 2166 | Petri Kaurinkoski: changed iris4d.h irix6-0.h irix6-5.h usg5-4.h |
| 2167 | usg5-4.h | ||
| 2168 | 2167 | ||
| 2169 | Phil Sung: changed wdired.el | 2168 | Phil Sung: changed wdired.el |
| 2170 | 2169 | ||
| 2170 | Philip Jackson: wrote org-irc.el | ||
| 2171 | |||
| 2171 | Philippe Schnoebelen: wrote gomoku.el mpuz.el | 2172 | Philippe Schnoebelen: wrote gomoku.el mpuz.el |
| 2172 | 2173 | ||
| 2173 | Philippe Waroquiers: changed etags.el term.c | 2174 | Philippe Waroquiers: changed etags.el term.c |
| @@ -2179,6 +2180,8 @@ Pieter E.J. Pareit: wrote mixal-mode.el | |||
| 2179 | 2180 | ||
| 2180 | Pinku Surana: changed sql.el | 2181 | Pinku Surana: changed sql.el |
| 2181 | 2182 | ||
| 2183 | Piotr Zielinski: wrote org-mouse.el | ||
| 2184 | |||
| 2182 | Pmr-Sav: changed mail-utils.el rmail.el | 2185 | Pmr-Sav: changed mail-utils.el rmail.el |
| 2183 | 2186 | ||
| 2184 | Primoz Peterlin: changed TUTORIAL.sl | 2187 | Primoz Peterlin: changed TUTORIAL.sl |
| @@ -2228,11 +2231,11 @@ and changed gnus-art.el gnus-msg.el gnus.texi message.el nnmail.el | |||
| 2228 | pgg-gpg.el | 2231 | pgg-gpg.el |
| 2229 | 2232 | ||
| 2230 | Reiner Steib: wrote gmm-utils.el | 2233 | Reiner Steib: wrote gmm-utils.el |
| 2231 | and changed gnus.texi gnus-art.el message.el gnus-sum.el gnus.el | 2234 | and changed gnus.texi gnus-art.el message.el gnus-sum.el gnus-faq.texi |
| 2232 | gnus-group.el gnus-faq.texi mm-util.el gnus-start.el gnus-util.el | 2235 | gnus.el gnus-group.el message.texi mm-util.el gnus-start.el |
| 2233 | message.texi mml.el gnus-score.el gnus-agent.el gnus-msg.el spam.el | 2236 | gnus-util.el mml.el gnus-score.el gnus-agent.el gnus-msg.el spam.el |
| 2234 | files.el nnmail.el spam-report.el mail-source.el mm-decode.el | 2237 | files.el nnmail.el spam-report.el mail-source.el mm-decode.el |
| 2235 | and 170 other files | 2238 | and 171 other files |
| 2236 | 2239 | ||
| 2237 | Remek Trzaska: changed gnus-ems.el | 2240 | Remek Trzaska: changed gnus-ems.el |
| 2238 | 2241 | ||
| @@ -2265,8 +2268,8 @@ Richard M. Stallman: wrote [The original GNU Emacs and numerous files] | |||
| 2265 | easymenu.el font-lock.el image-mode.el menu-bar.el paren.el | 2268 | easymenu.el font-lock.el image-mode.el menu-bar.el paren.el |
| 2266 | and changed keyboard.c files.el simple.el xterm.c xdisp.c fileio.c | 2269 | and changed keyboard.c files.el simple.el xterm.c xdisp.c fileio.c |
| 2267 | rmail.el process.c sysdep.c xfns.c buffer.c Makefile.in window.c | 2270 | rmail.el process.c sysdep.c xfns.c buffer.c Makefile.in window.c |
| 2268 | configure.in subr.el startup.el emacs.c editfns.c info.el sendmail.el | 2271 | subr.el startup.el emacs.c editfns.c info.el sendmail.el dispnew.c |
| 2269 | dispnew.c and 1337 other files | 2272 | dired.el and 1335 other files |
| 2270 | 2273 | ||
| 2271 | Richard Mlynarik: wrote cl-indent.el ebuff-menu.el ehelp.el env.c | 2274 | Richard Mlynarik: wrote cl-indent.el ebuff-menu.el ehelp.el env.c |
| 2272 | rfc822.el terminal.el yow.el | 2275 | rfc822.el terminal.el yow.el |
| @@ -2283,8 +2286,6 @@ Rick Farnbach: wrote morse.el | |||
| 2283 | Rick Sladkey: wrote backquote.el | 2286 | Rick Sladkey: wrote backquote.el |
| 2284 | and changed gud.el intervals.c intervals.h simple.el | 2287 | and changed gud.el intervals.c intervals.h simple.el |
| 2285 | 2288 | ||
| 2286 | Rob Browning: changed configure.in | ||
| 2287 | |||
| 2288 | Rob Kaut: changed vhdl-mode.el | 2289 | Rob Kaut: changed vhdl-mode.el |
| 2289 | 2290 | ||
| 2290 | Rob Riepel: wrote tpu-edt.el tpu-extras.el tpu-mapper.el vt-control.el | 2291 | Rob Riepel: wrote tpu-edt.el tpu-extras.el tpu-mapper.el vt-control.el |
| @@ -2317,10 +2318,10 @@ and changed buffer.h build.com callproc.c compile.com dired.c files.el | |||
| 2317 | 2318 | ||
| 2318 | Roland Mcgrath: wrote autoload.el etags.el find-dired.el grep.el | 2319 | Roland Mcgrath: wrote autoload.el etags.el find-dired.el grep.el |
| 2319 | map-ynp.el | 2320 | map-ynp.el |
| 2320 | and changed compile.el add-log.el configure.in files.el vc.el Makefile.in | 2321 | and changed compile.el add-log.el files.el vc.el Makefile.in simple.el |
| 2321 | simple.el mailabbrev.el buffer.c comint.el upd-copyr.el etags.c | 2322 | mailabbrev.el buffer.c comint.el upd-copyr.el etags.c menu-bar.el |
| 2322 | menu-bar.el loaddefs.el mem-limits.h ralloc.c fileio.c data.c process.c | 2323 | loaddefs.el mem-limits.h ralloc.c fileio.c data.c process.c rlogin.el |
| 2323 | rlogin.el rmail.el and 137 other files | 2324 | rmail.el shell.el and 136 other files |
| 2324 | 2325 | ||
| 2325 | Roland Winkler: changed bibtex.el appt.el artist.el conf-mode.el | 2326 | Roland Winkler: changed bibtex.el appt.el artist.el conf-mode.el |
| 2326 | flyspell.el ispell.el make-mode.el sgml-mode.el sh-script.el | 2327 | flyspell.el ispell.el make-mode.el sgml-mode.el sh-script.el |
| @@ -2333,7 +2334,7 @@ Romain Francoise: changed faq.texi dired-x.el ibuf-ext.el Makefile.in | |||
| 2333 | comint.el compile.el message.el puresize.h replace.el subr.el | 2334 | comint.el compile.el message.el puresize.h replace.el subr.el |
| 2334 | files.texi gnus-fun.el gnus.texi help-fns.el make-dist rcirc.el | 2335 | files.texi gnus-fun.el gnus.texi help-fns.el make-dist rcirc.el |
| 2335 | antlr-mode.el bookmark.el buffer.c diary-lib.el dired.el | 2336 | antlr-mode.el bookmark.el buffer.c diary-lib.el dired.el |
| 2336 | and 130 other files | 2337 | and 129 other files |
| 2337 | 2338 | ||
| 2338 | Roman Belenov: changed which-func.el | 2339 | Roman Belenov: changed which-func.el |
| 2339 | 2340 | ||
| @@ -2370,7 +2371,7 @@ Sam Steingold: wrote gulp.el midnight.el | |||
| 2370 | and changed cl-indent.el font-lock.el ange-ftp.el mouse.el tex-mode.el | 2371 | and changed cl-indent.el font-lock.el ange-ftp.el mouse.el tex-mode.el |
| 2371 | vc-cvs.el add-log.el bindings.el bookmark.el debug.el diary-lib.el | 2372 | vc-cvs.el add-log.el bindings.el bookmark.el debug.el diary-lib.el |
| 2372 | dired.el pcvs.el sgml-mode.el simple.el browse-url.el buff-menu.el | 2373 | dired.el pcvs.el sgml-mode.el simple.el browse-url.el buff-menu.el |
| 2373 | bytecomp.el cc-mode.el compile.el etags.el and 97 other files | 2374 | bytecomp.el cc-mode.el compile.el etags.el and 96 other files |
| 2374 | 2375 | ||
| 2375 | Samuel Tardieu: changed smime.el | 2376 | Samuel Tardieu: changed smime.el |
| 2376 | 2377 | ||
| @@ -2379,7 +2380,7 @@ Sanghyuk Suh: changed mac-win.el macterm.c | |||
| 2379 | Sascha L,A|(Bdecke: wrote mml1991.el | 2380 | Sascha L,A|(Bdecke: wrote mml1991.el |
| 2380 | and changed gnus-win.el | 2381 | and changed gnus-win.el |
| 2381 | 2382 | ||
| 2382 | Sascha Wilde: changed pgg-gpg.el pgg.el pgg.texi configure.in | 2383 | Sascha Wilde: changed pgg-gpg.el pgg.el pgg.texi |
| 2383 | 2384 | ||
| 2384 | Satyaki Das: wrote mh-acros.el mh-gnus.el mh-junk.el mh-search.el | 2385 | Satyaki Das: wrote mh-acros.el mh-gnus.el mh-junk.el mh-search.el |
| 2385 | mh-speed.el mh-thread.el mh-tool-bar.el | 2386 | mh-speed.el mh-thread.el mh-tool-bar.el |
| @@ -2448,7 +2449,7 @@ and changed message.el gnus-sum.el gnus-art.el smtpmail.el pgg.el | |||
| 2448 | pgg-gpg.el mml2015.el gnus-agent.el mml.el mm-decode.el mml1991.el | 2449 | pgg-gpg.el mml2015.el gnus-agent.el mml.el mm-decode.el mml1991.el |
| 2449 | gnus-group.el gnus-msg.el pgg-pgp5.el gnus-sieve.el browse-url.el | 2450 | gnus-group.el gnus-msg.el pgg-pgp5.el gnus-sieve.el browse-url.el |
| 2450 | gnus-int.el gnus.el pgg-parse.el gnus-cache.el mail-source.el | 2451 | gnus-int.el gnus.el pgg-parse.el gnus-cache.el mail-source.el |
| 2451 | and 88 other files | 2452 | and 87 other files |
| 2452 | 2453 | ||
| 2453 | Simon Leinen: changed smtpmail.el Makefile Makefile.in cm.c cm.h hpux9.h | 2454 | Simon Leinen: changed smtpmail.el Makefile Makefile.in cm.c cm.h hpux9.h |
| 2454 | indent.c process.c sc.texinfo sgml-mode.el term.c xfns.c xmenu.c | 2455 | indent.c process.c sc.texinfo sgml-mode.el term.c xfns.c xmenu.c |
| @@ -2478,7 +2479,7 @@ Stefan Monnier: wrote bibtex-style.el bibtex.el css-mode.el cvs-status.el | |||
| 2478 | and changed vc.el font-lock.el pcvs.el newcomment.el subr.el lisp.h | 2479 | and changed vc.el font-lock.el pcvs.el newcomment.el subr.el lisp.h |
| 2479 | keyboard.c fill.el tex-mode.el keymap.c vc-hooks.el compile.el | 2480 | keyboard.c fill.el tex-mode.el keymap.c vc-hooks.el compile.el |
| 2480 | simple.el files.el alloc.c easy-mmode.el regex.c syntax.c info.el | 2481 | simple.el files.el alloc.c easy-mmode.el regex.c syntax.c info.el |
| 2481 | xdisp.c sh-script.el and 529 other files | 2482 | xdisp.c sh-script.el and 528 other files |
| 2482 | 2483 | ||
| 2483 | Steinar Bang: changed imap.el | 2484 | Steinar Bang: changed imap.el |
| 2484 | 2485 | ||
| @@ -2487,9 +2488,7 @@ Stephan Stahl: changed which-func.el buff-menu.el buffer.c dired-x.texi | |||
| 2487 | 2488 | ||
| 2488 | Stephen A. Wood: changed fortran.el | 2489 | Stephen A. Wood: changed fortran.el |
| 2489 | 2490 | ||
| 2490 | Stephen Berman: changed allout.el find-dired.el recentf.el | 2491 | Stephen Berman: changed allout.el find-dired.el newcomment.el recentf.el |
| 2491 | |||
| 2492 | Stephen C. Gilardi: changed configure.in | ||
| 2493 | 2492 | ||
| 2494 | Stephen Compall: changed saveplace.el texinfo.el | 2493 | Stephen Compall: changed saveplace.el texinfo.el |
| 2495 | 2494 | ||
| @@ -2511,6 +2510,8 @@ Stephen Leake: changed ada-mode.el ada-xref.el ada-stmt.el ada-mode.texi | |||
| 2511 | 2510 | ||
| 2512 | Steve Fisk: wrote cal-tex.el | 2511 | Steve Fisk: wrote cal-tex.el |
| 2513 | 2512 | ||
| 2513 | Steve Grubb: changed vcdiff | ||
| 2514 | |||
| 2514 | Steve Nygard: changed unexnext.c | 2515 | Steve Nygard: changed unexnext.c |
| 2515 | 2516 | ||
| 2516 | Steve Strassman: wrote spook.el | 2517 | Steve Strassman: wrote spook.el |
| @@ -2532,10 +2533,10 @@ and changed gnus-xmas.el gnus-msg.el add-log.el dgnushack.el edebug.el | |||
| 2532 | 2533 | ||
| 2533 | Steven Suhr: changed dispnew.c scroll.c term.c termchar.h | 2534 | Steven Suhr: changed dispnew.c scroll.c term.c termchar.h |
| 2534 | 2535 | ||
| 2535 | Steven Tamm: changed macterm.c make-package mac.c macfns.c configure.in | 2536 | Steven Tamm: changed macterm.c make-package mac.c macfns.c unexmacosx.c |
| 2536 | unexmacosx.c INSTALL mac-win.el Makefile.in README darwin.h editfns.c | 2537 | INSTALL mac-win.el Makefile.in README darwin.h editfns.c lread.c |
| 2537 | lread.c macmenu.c scroll-bar.el MACHINES config.h config.in dispnew.c | 2538 | macmenu.c scroll-bar.el MACHINES config.h config.in dispnew.c eval.c |
| 2538 | eval.c fileio.c and 7 other files | 2539 | fileio.c fns.c and 6 other files |
| 2539 | 2540 | ||
| 2540 | Stewart M. Clamen: wrote cal-mayan.el | 2541 | Stewart M. Clamen: wrote cal-mayan.el |
| 2541 | 2542 | ||
| @@ -2554,9 +2555,9 @@ Sun Yijiang: changed TUTORIAL.cn | |||
| 2554 | 2555 | ||
| 2555 | Sundar Narasimhan: changed rnews.el rnewspost.el | 2556 | Sundar Narasimhan: changed rnews.el rnewspost.el |
| 2556 | 2557 | ||
| 2557 | Sven Joachim: changed arc-mode.el de-refcard.tex dired-aux.el files.el | 2558 | Sven Joachim: changed dired-aux.el files.el arc-mode.el de-refcard.tex |
| 2558 | files.texi gnus.texi help.el mule.texi sed3v2.inp sh-script.el | 2559 | files.texi gnus-sum.el gnus.texi help.el mule.texi sed3v2.inp |
| 2559 | simple.el vc-bzr.el view.el | 2560 | sh-script.el simple.el vc-bzr.el view.el |
| 2560 | 2561 | ||
| 2561 | Svend Tollak Munkejord: changed deuglify.el | 2562 | Svend Tollak Munkejord: changed deuglify.el |
| 2562 | 2563 | ||
| @@ -2602,7 +2603,7 @@ Thien-Thi Nguyen: wrote hideshow.el make-mms-derivative.el | |||
| 2602 | and changed ewoc.el info.el processes.texi vc.el zone.el Makefile.in | 2603 | and changed ewoc.el info.el processes.texi vc.el zone.el Makefile.in |
| 2603 | lisp-mode.el fileio.c scheme.el text.texi TUTORIAL.it bindat.el | 2604 | lisp-mode.el fileio.c scheme.el text.texi TUTORIAL.it bindat.el |
| 2604 | dcl-mode.el display.texi files.el gnus.texi pcvs.el startup.el sysdep.c | 2605 | dcl-mode.el display.texi files.el gnus.texi pcvs.el startup.el sysdep.c |
| 2605 | vc-rcs.el MORE.STUFF and 134 other files | 2606 | vc-rcs.el MORE.STUFF and 133 other files |
| 2606 | 2607 | ||
| 2607 | Thierry Emery: changed kinsoku.el timezone.el url-http.el wid-edit.el | 2608 | Thierry Emery: changed kinsoku.el timezone.el url-http.el wid-edit.el |
| 2608 | 2609 | ||
| @@ -2632,7 +2633,7 @@ Tijs Van Bakel: changed erc.el | |||
| 2632 | 2633 | ||
| 2633 | Tim Fleehart: wrote makefile.nt | 2634 | Tim Fleehart: wrote makefile.nt |
| 2634 | 2635 | ||
| 2635 | Tim Van Holder: changed emacsclient.c Makefile.in compile.el configure.in | 2636 | Tim Van Holder: changed emacsclient.c Makefile.in compile.el |
| 2636 | which-func.el | 2637 | which-func.el |
| 2637 | 2638 | ||
| 2638 | Tobias C. Rittweiler: changed font-lock.el | 2639 | Tobias C. Rittweiler: changed font-lock.el |
| @@ -2701,7 +2702,7 @@ Ulrich Leodolter: changed w32proc.c | |||
| 2701 | 2702 | ||
| 2702 | Ulrich Mueller: changed gud.el ChgPane.c ChgSel.c Makefile.in | 2703 | Ulrich Mueller: changed gud.el ChgPane.c ChgSel.c Makefile.in |
| 2703 | XMakeAssoc.c bibtex.el case-table.el files.el fortran.el iso-acc.el | 2704 | XMakeAssoc.c bibtex.el case-table.el files.el fortran.el iso-acc.el |
| 2704 | msdog-xtra.texi simple.el sysdep.c | 2705 | msdog-xtra.texi pop.c simple.el sysdep.c |
| 2705 | 2706 | ||
| 2706 | Ulrich Neumerkel: changed xterm.c | 2707 | Ulrich Neumerkel: changed xterm.c |
| 2707 | 2708 | ||
| @@ -2763,9 +2764,9 @@ William M. Perry: wrote mailcap.el socks.el url-dav.el url-gw.el | |||
| 2763 | url-http.el url-util.el url.el vc-dav.el | 2764 | url-http.el url-util.el url.el vc-dav.el |
| 2764 | and changed url-handlers.el url-file.el url-methods.el url-vars.el | 2765 | and changed url-handlers.el url-file.el url-methods.el url-vars.el |
| 2765 | url-https.el aclocal.m4 mule-sysdp.el url-imap.el url-news.el | 2766 | url-https.el aclocal.m4 mule-sysdp.el url-imap.el url-news.el |
| 2766 | url-nfs.el configure.in image.el mwheel.el url-about.el url-auth.el | 2767 | url-nfs.el image.el mwheel.el url-about.el url-auth.el url-cid.el |
| 2767 | url-cid.el url-dired.el url-expand.el url-ftp.el url-history.el | 2768 | url-dired.el url-expand.el url-ftp.el url-history.el url-irc.el |
| 2768 | url-irc.el and 6 other files | 2769 | url-misc.el and 5 other files |
| 2769 | 2770 | ||
| 2770 | William Smith: changed strftime.c | 2771 | William Smith: changed strftime.c |
| 2771 | 2772 | ||
| @@ -2786,9 +2787,9 @@ Wolfgang Glas: changed unexsgi.c | |||
| 2786 | Wolfgang Jenkner: changed conf-mode.el gnus-sum.el pcvs.el | 2787 | Wolfgang Jenkner: changed conf-mode.el gnus-sum.el pcvs.el |
| 2787 | 2788 | ||
| 2788 | Wolfgang Rupprecht: wrote float-sup.el floatfns.c sup-mouse.el | 2789 | Wolfgang Rupprecht: wrote float-sup.el floatfns.c sup-mouse.el |
| 2789 | and changed process.c alloc.c callint.c config.h.in config.in | 2790 | and changed process.c alloc.c callint.c config.h.in config.in crt0.c |
| 2790 | configure.in crt0.c data.c fns.c lisp-mode.el lisp.h loadup.el lread.c | 2791 | data.c fns.c lisp-mode.el lisp.h loadup.el lread.c net-utils.el nntp.el |
| 2791 | net-utils.el nntp.el print.c sort.el sun3.h ymakefile | 2792 | print.c sort.el sun3.h ymakefile |
| 2792 | 2793 | ||
| 2793 | Wolfgang Scherer: changed vc-cvs.el | 2794 | Wolfgang Scherer: changed vc-cvs.el |
| 2794 | 2795 | ||
| @@ -2802,8 +2803,8 @@ Yagi Tatsuya: changed gnus-art.el gnus-start.el | |||
| 2802 | 2803 | ||
| 2803 | Yamamoto Mitsuharu: changed macterm.c macfns.c mac-win.el mac.c macterm.h | 2804 | Yamamoto Mitsuharu: changed macterm.c macfns.c mac-win.el mac.c macterm.h |
| 2804 | macmenu.c macgui.h image.c macselect.c xdisp.c keyboard.c emacs.c | 2805 | macmenu.c macgui.h image.c macselect.c xdisp.c keyboard.c emacs.c |
| 2805 | makefile.MPW config.h INSTALL Makefile.in macos.texi darwin.h | 2806 | makefile.MPW Makefile.in config.h INSTALL darwin.h macos.texi process.c |
| 2806 | unexmacosx.c xfaces.c dispnew.c and 80 other files | 2807 | unexmacosx.c xfaces.c and 82 other files |
| 2807 | 2808 | ||
| 2808 | Yann Dirson: changed imenu.el | 2809 | Yann Dirson: changed imenu.el |
| 2809 | 2810 | ||
| @@ -2819,9 +2820,9 @@ Yoshinori Koseki: changed fontset.el | |||
| 2819 | 2820 | ||
| 2820 | Yuri Shtil: changed etags.c | 2821 | Yuri Shtil: changed etags.c |
| 2821 | 2822 | ||
| 2822 | Yutaka Niibe: changed indent.c xdisp.c configure.in Makefile.in dispnew.c | 2823 | Yutaka Niibe: changed indent.c xdisp.c Makefile.in dispnew.c sysdep.c |
| 2823 | sysdep.c config.in dired.el emacs.c fill.el fns.c gmalloc.c gnu-linux.h | 2824 | config.in dired.el emacs.c fill.el fns.c gmalloc.c gnu-linux.h indent.h |
| 2824 | indent.h process.c simple.el term.c window.c | 2825 | process.c simple.el term.c window.c |
| 2825 | 2826 | ||
| 2826 | Zhang Wei: changed xfns.c erc.el x-win.el | 2827 | Zhang Wei: changed xfns.c erc.el x-win.el |
| 2827 | 2828 | ||
diff --git a/etc/PROBLEMS b/etc/PROBLEMS index 1e2f4828386..e9421a2ed3b 100644 --- a/etc/PROBLEMS +++ b/etc/PROBLEMS | |||
| @@ -2107,7 +2107,14 @@ A certain X server for Windows had a bug which caused this. | |||
| 2107 | Supposedly the newer 32-bit version of this server doesn't have the | 2107 | Supposedly the newer 32-bit version of this server doesn't have the |
| 2108 | problem. | 2108 | problem. |
| 2109 | 2109 | ||
| 2110 | ** Known problems with the MS-Windows port of Emacs 22.1 | 2110 | ** Emacs crashes when opening a file with a UNC path and rails-mode is loaded. |
| 2111 | |||
| 2112 | Loading rails-mode seems to interfere with UNC path handling. This has been | ||
| 2113 | reported as a bug against both Emacs and rails-mode, so look for an updated | ||
| 2114 | rails-mode that avoids this crash, or avoid using UNC paths if using | ||
| 2115 | rails-mode. | ||
| 2116 | |||
| 2117 | ** Known problems with the MS-Windows port of Emacs 22.3 | ||
| 2111 | 2118 | ||
| 2112 | M-x term does not work on MS-Windows. TTY emulation on Windows is | 2119 | M-x term does not work on MS-Windows. TTY emulation on Windows is |
| 2113 | undocumented, and programs such as stty which are used on posix platforms | 2120 | undocumented, and programs such as stty which are used on posix platforms |
| @@ -510,7 +510,7 @@ echo "Making links to \`m4'" | |||
| 510 | 510 | ||
| 511 | echo "Making links to \`nt'" | 511 | echo "Making links to \`nt'" |
| 512 | (cd nt | 512 | (cd nt |
| 513 | ln emacs.manifest emacs.rc config.nt [a-z]*.c ../${tempdir}/nt | 513 | ln emacs.manifest emacs.rc emacsclient.rc config.nt [a-z]*.c ../${tempdir}/nt |
| 514 | ln nmake.defs gmake.defs subdirs.el ../${tempdir}/nt | 514 | ln nmake.defs gmake.defs subdirs.el ../${tempdir}/nt |
| 515 | ln [a-z]*.bat [a-z]*.h ../${tempdir}/nt | 515 | ln [a-z]*.bat [a-z]*.h ../${tempdir}/nt |
| 516 | ln ChangeLog INSTALL README makefile.w32-in ../${tempdir}/nt) | 516 | ln ChangeLog INSTALL README makefile.w32-in ../${tempdir}/nt) |
| @@ -672,7 +672,7 @@ echo "Making links to \`info'" | |||
| 672 | cd ../${tempdir}/info | 672 | cd ../${tempdir}/info |
| 673 | # Avoid an error when expanding the wildcards later. | 673 | # Avoid an error when expanding the wildcards later. |
| 674 | ln emacs dummy~ ; ln emacs \#dummy\# | 674 | ln emacs dummy~ ; ln emacs \#dummy\# |
| 675 | rm -f *~ \#*\# core) | 675 | rm -f *~ \#*\# core .arch-inventory) |
| 676 | 676 | ||
| 677 | echo "Making links to \`doc/emacs'" | 677 | echo "Making links to \`doc/emacs'" |
| 678 | (cd doc/emacs | 678 | (cd doc/emacs |