Mercurial > hg > xemacs-beta
annotate lib-src/ChangeLog @ 5853:1044acf60048
Revert part of Jerry's December 2014 that broke gnuclient on some OS X.
lib-src/ChangeLog addition:
2015-03-08 Aidan Kehoe <kehoea@parhasard.net>
* gnuserv.c (echo_request):
No longer close the file handle unconditionally, leave this to the
individual socket types.
* gnuserv.c (handle_internet_request):
Close the file handle here.
* gnuserv.c (handle_unix_request):
Don't close the file handle here, document why (it broke gnuclient
under OS X). It should actually be OK, but my suspicion is that
the issues is that the Unix (local) domain sockets are still
underdocumented compared to the internet sockets.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Sun, 08 Mar 2015 20:59:25 +0000 |
parents | c03dd89e0055 |
children |
rev | line source |
---|---|
5853
1044acf60048
Revert part of Jerry's December 2014 that broke gnuclient on some OS X.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5836
diff
changeset
|
1 2015-03-08 Aidan Kehoe <kehoea@parhasard.net> |
1044acf60048
Revert part of Jerry's December 2014 that broke gnuclient on some OS X.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5836
diff
changeset
|
2 |
1044acf60048
Revert part of Jerry's December 2014 that broke gnuclient on some OS X.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5836
diff
changeset
|
3 * gnuserv.c (echo_request): |
1044acf60048
Revert part of Jerry's December 2014 that broke gnuclient on some OS X.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5836
diff
changeset
|
4 No longer close the file handle unconditionally, leave this to the |
1044acf60048
Revert part of Jerry's December 2014 that broke gnuclient on some OS X.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5836
diff
changeset
|
5 individual socket types. |
1044acf60048
Revert part of Jerry's December 2014 that broke gnuclient on some OS X.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5836
diff
changeset
|
6 * gnuserv.c (handle_internet_request): |
1044acf60048
Revert part of Jerry's December 2014 that broke gnuclient on some OS X.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5836
diff
changeset
|
7 Close the file handle here. |
1044acf60048
Revert part of Jerry's December 2014 that broke gnuclient on some OS X.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5836
diff
changeset
|
8 * gnuserv.c (handle_unix_request): |
1044acf60048
Revert part of Jerry's December 2014 that broke gnuclient on some OS X.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5836
diff
changeset
|
9 Don't close the file handle here, document why (it broke gnuclient |
1044acf60048
Revert part of Jerry's December 2014 that broke gnuclient on some OS X.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5836
diff
changeset
|
10 under OS X). It should actually be OK, but my suspicion is that |
1044acf60048
Revert part of Jerry's December 2014 that broke gnuclient on some OS X.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5836
diff
changeset
|
11 the issues is that the Unix (local) domain sockets are still |
1044acf60048
Revert part of Jerry's December 2014 that broke gnuclient on some OS X.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5836
diff
changeset
|
12 underdocumented compared to the internet sockets. |
1044acf60048
Revert part of Jerry's December 2014 that broke gnuclient on some OS X.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5836
diff
changeset
|
13 |
5836
c03dd89e0055
Fix gnuserv file descriptor leak.
Jerry James <james@xemacs.org>
parents:
5834
diff
changeset
|
14 2014-12-05 Jerry James <james@xemacs.org> |
c03dd89e0055
Fix gnuserv file descriptor leak.
Jerry James <james@xemacs.org>
parents:
5834
diff
changeset
|
15 |
c03dd89e0055
Fix gnuserv file descriptor leak.
Jerry James <james@xemacs.org>
parents:
5834
diff
changeset
|
16 * gnuserv.c (echo_request): close the socket when done |
c03dd89e0055
Fix gnuserv file descriptor leak.
Jerry James <james@xemacs.org>
parents:
5834
diff
changeset
|
17 (handle_unix_request): do not call echo_request on accept failure |
c03dd89e0055
Fix gnuserv file descriptor leak.
Jerry James <james@xemacs.org>
parents:
5834
diff
changeset
|
18 |
5834
7984e732829e
Fix file descriptor leak in pop.c.
Jerry James <james@xemacs.org>
parents:
5820
diff
changeset
|
19 2014-12-05 Jerry James <james@xemacs.org> |
7984e732829e
Fix file descriptor leak in pop.c.
Jerry James <james@xemacs.org>
parents:
5820
diff
changeset
|
20 |
7984e732829e
Fix file descriptor leak in pop.c.
Jerry James <james@xemacs.org>
parents:
5820
diff
changeset
|
21 * pop.c (socket_connection): Do not leak a socket if the POP |
7984e732829e
Fix file descriptor leak in pop.c.
Jerry James <james@xemacs.org>
parents:
5820
diff
changeset
|
22 server's address cannot be determined. |
7984e732829e
Fix file descriptor leak in pop.c.
Jerry James <james@xemacs.org>
parents:
5820
diff
changeset
|
23 |
5820
b3824b7f5627
Some changes to eliminate warnings with Apple clang version 1.7.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5757
diff
changeset
|
24 2014-10-18 Aidan Kehoe <kehoea@parhasard.net> |
b3824b7f5627
Some changes to eliminate warnings with Apple clang version 1.7.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5757
diff
changeset
|
25 |
b3824b7f5627
Some changes to eliminate warnings with Apple clang version 1.7.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5757
diff
changeset
|
26 * ootags.c (substitute): |
b3824b7f5627
Some changes to eliminate warnings with Apple clang version 1.7.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5757
diff
changeset
|
27 Cast the result of strlen to int before comparing it with a signed |
b3824b7f5627
Some changes to eliminate warnings with Apple clang version 1.7.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5757
diff
changeset
|
28 value, for the sake of compiler warnings. |
b3824b7f5627
Some changes to eliminate warnings with Apple clang version 1.7.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5757
diff
changeset
|
29 |
5757
6c2aa9851f5e
XEmacs 21.5.34 "kale" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5728
diff
changeset
|
30 2013-06-23 Stephen J. Turnbull <stephen@xemacs.org> |
6c2aa9851f5e
XEmacs 21.5.34 "kale" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5728
diff
changeset
|
31 |
6c2aa9851f5e
XEmacs 21.5.34 "kale" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5728
diff
changeset
|
32 * XEmacs 21.5.34 "kale" is released. |
6c2aa9851f5e
XEmacs 21.5.34 "kale" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5728
diff
changeset
|
33 |
5728
0e2f2837c2bd
Fix reversed test for the insert-data-in-exec build rule in
Jerry James <james@xemacs.org>
parents:
5727
diff
changeset
|
34 2013-03-06 Jerry James <james@xemacs.org> |
0e2f2837c2bd
Fix reversed test for the insert-data-in-exec build rule in
Jerry James <james@xemacs.org>
parents:
5727
diff
changeset
|
35 |
0e2f2837c2bd
Fix reversed test for the insert-data-in-exec build rule in
Jerry James <james@xemacs.org>
parents:
5727
diff
changeset
|
36 * Makefile.in.in: Fix reversed test for insert-data-in-exec build. |
0e2f2837c2bd
Fix reversed test for the insert-data-in-exec build rule in
Jerry James <james@xemacs.org>
parents:
5727
diff
changeset
|
37 |
5727
86d33ddc7fd6
Avoid EOVERFLOW from stat() calls due to overflowing inode numbers.
Jerry James <james@xemacs.org>
parents:
5712
diff
changeset
|
38 2013-03-04 Jerry James <james@xemacs.org> |
86d33ddc7fd6
Avoid EOVERFLOW from stat() calls due to overflowing inode numbers.
Jerry James <james@xemacs.org>
parents:
5712
diff
changeset
|
39 |
86d33ddc7fd6
Avoid EOVERFLOW from stat() calls due to overflowing inode numbers.
Jerry James <james@xemacs.org>
parents:
5712
diff
changeset
|
40 * insert-data-in-exec.c (main): Use OFF_T, FSEEK, and FTELL macros, |
86d33ddc7fd6
Avoid EOVERFLOW from stat() calls due to overflowing inode numbers.
Jerry James <james@xemacs.org>
parents:
5712
diff
changeset
|
41 and adjust variable types and printf specifiers for large file |
86d33ddc7fd6
Avoid EOVERFLOW from stat() calls due to overflowing inode numbers.
Jerry James <james@xemacs.org>
parents:
5712
diff
changeset
|
42 support on supporting systems. |
86d33ddc7fd6
Avoid EOVERFLOW from stat() calls due to overflowing inode numbers.
Jerry James <james@xemacs.org>
parents:
5712
diff
changeset
|
43 |
5712
bee2e2568828
XEmacs 21.5.33 "horseradish" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5673
diff
changeset
|
44 2013-01-04 Stephen J. Turnbull <stephen@xemacs.org> |
bee2e2568828
XEmacs 21.5.33 "horseradish" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5673
diff
changeset
|
45 |
bee2e2568828
XEmacs 21.5.33 "horseradish" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5673
diff
changeset
|
46 * XEmacs 21.5.33 "horseradish" is released. |
bee2e2568828
XEmacs 21.5.33 "horseradish" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5673
diff
changeset
|
47 |
5673
900a0a8796c3
XEmacs 21.5.32 "habanero" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5518
diff
changeset
|
48 2012-08-02 Stephen J. Turnbull <stephen@xemacs.org> |
900a0a8796c3
XEmacs 21.5.32 "habanero" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5518
diff
changeset
|
49 |
900a0a8796c3
XEmacs 21.5.32 "habanero" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5518
diff
changeset
|
50 * XEmacs 21.5.32 "habanero" is released. |
900a0a8796c3
XEmacs 21.5.32 "habanero" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5518
diff
changeset
|
51 |
5518
3cc7470ea71c
gnuclient: if TMPDIR was set and connect failed, try again with /tmp
Aidan Kehoe <kehoea@parhasard.net>
parents:
5512
diff
changeset
|
52 2011-06-03 Aidan Kehoe <kehoea@parhasard.net> |
3cc7470ea71c
gnuclient: if TMPDIR was set and connect failed, try again with /tmp
Aidan Kehoe <kehoea@parhasard.net>
parents:
5512
diff
changeset
|
53 |
3cc7470ea71c
gnuclient: if TMPDIR was set and connect failed, try again with /tmp
Aidan Kehoe <kehoea@parhasard.net>
parents:
5512
diff
changeset
|
54 * gnuslib.c (connect_to_unix_server): |
3cc7470ea71c
gnuclient: if TMPDIR was set and connect failed, try again with /tmp
Aidan Kehoe <kehoea@parhasard.net>
parents:
5512
diff
changeset
|
55 Retry with /tmp as a directory in which to search for Unix sockets |
3cc7470ea71c
gnuclient: if TMPDIR was set and connect failed, try again with /tmp
Aidan Kehoe <kehoea@parhasard.net>
parents:
5512
diff
changeset
|
56 if an attempt to connect with some other directory failed (which |
3cc7470ea71c
gnuclient: if TMPDIR was set and connect failed, try again with /tmp
Aidan Kehoe <kehoea@parhasard.net>
parents:
5512
diff
changeset
|
57 may be because gnuclient and gnuserv don't share an environment |
3cc7470ea71c
gnuclient: if TMPDIR was set and connect failed, try again with /tmp
Aidan Kehoe <kehoea@parhasard.net>
parents:
5512
diff
changeset
|
58 value for TMPDIR, or because gnuserv was compiled with USE_TMPDIR |
3cc7470ea71c
gnuclient: if TMPDIR was set and connect failed, try again with /tmp
Aidan Kehoe <kehoea@parhasard.net>
parents:
5512
diff
changeset
|
59 turned off). |
3cc7470ea71c
gnuclient: if TMPDIR was set and connect failed, try again with /tmp
Aidan Kehoe <kehoea@parhasard.net>
parents:
5512
diff
changeset
|
60 |
5512
4aa8ee813265
Add a DESTDIR variable to all Makefiles, defaulting to the empty string, and
Jerry James <james@xemacs.org>
parents:
5495
diff
changeset
|
61 2011-05-20 Jerry James <james@xemacs.org> |
4aa8ee813265
Add a DESTDIR variable to all Makefiles, defaulting to the empty string, and
Jerry James <james@xemacs.org>
parents:
5495
diff
changeset
|
62 |
4aa8ee813265
Add a DESTDIR variable to all Makefiles, defaulting to the empty string, and
Jerry James <james@xemacs.org>
parents:
5495
diff
changeset
|
63 * Makefile.in.in: Default DESTDIR to the empty string, and use it in |
4aa8ee813265
Add a DESTDIR variable to all Makefiles, defaulting to the empty string, and
Jerry James <james@xemacs.org>
parents:
5495
diff
changeset
|
64 install targets. |
4aa8ee813265
Add a DESTDIR variable to all Makefiles, defaulting to the empty string, and
Jerry James <james@xemacs.org>
parents:
5495
diff
changeset
|
65 |
5480
f5a0b32f4687
XEmacs 21.5.31 "ginger" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5476
diff
changeset
|
66 2011-04-29 Stephen J. Turnbull <stephen@xemacs.org> |
f5a0b32f4687
XEmacs 21.5.31 "ginger" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5476
diff
changeset
|
67 |
f5a0b32f4687
XEmacs 21.5.31 "ginger" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5476
diff
changeset
|
68 * XEmacs 21.5.31 "ginger" is released. |
f5a0b32f4687
XEmacs 21.5.31 "ginger" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5476
diff
changeset
|
69 |
5464
e79916901603
XEmacs 21.5.30 "garlic" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5341
diff
changeset
|
70 2011-04-26 Stephen J. Turnbull <stephen@xemacs.org> |
e79916901603
XEmacs 21.5.30 "garlic" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5341
diff
changeset
|
71 |
e79916901603
XEmacs 21.5.30 "garlic" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5341
diff
changeset
|
72 * XEmacs 21.5.30 "garlic" is released. |
e79916901603
XEmacs 21.5.30 "garlic" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5341
diff
changeset
|
73 |
5341 | 74 2011-01-15 Mike Sperber <mike@xemacs.org> |
75 | |
76 * fakemail.c: #include <osreldate.h> on FreeBSD, since we no | |
77 longer have freebsd.h. | |
78 | |
5287
cd167465bf69
More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5236
diff
changeset
|
79 2010-06-14 Stephen J. Turnbull <stephen@xemacs.org> |
cd167465bf69
More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5236
diff
changeset
|
80 |
5290
e6508b64ee08
More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5287
diff
changeset
|
81 * gnuserv.c: |
e6508b64ee08
More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5287
diff
changeset
|
82 * gnuserv.h: |
e6508b64ee08
More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5287
diff
changeset
|
83 * gnuslib.c: |
e6508b64ee08
More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5287
diff
changeset
|
84 Add standard permission boilerplate. |
e6508b64ee08
More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5287
diff
changeset
|
85 |
5287
cd167465bf69
More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5236
diff
changeset
|
86 * ad2c: |
cd167465bf69
More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5236
diff
changeset
|
87 Add copyright notices based on internal evidence. |
cd167465bf69
More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5236
diff
changeset
|
88 |
cd167465bf69
More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5236
diff
changeset
|
89 2010-06-14 Stephen J. Turnbull <stephen@xemacs.org> |
cd167465bf69
More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5236
diff
changeset
|
90 |
cd167465bf69
More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5236
diff
changeset
|
91 * cvtmail.c: |
cd167465bf69
More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5236
diff
changeset
|
92 * fakemail.c: |
cd167465bf69
More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5236
diff
changeset
|
93 * make-path.c: |
cd167465bf69
More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5236
diff
changeset
|
94 * profile.c: |
cd167465bf69
More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5236
diff
changeset
|
95 * tcp.c: |
cd167465bf69
More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5236
diff
changeset
|
96 Fix typo (doubled phrase) in permission notice. |
cd167465bf69
More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5236
diff
changeset
|
97 |
5236
0f7d483cff5a
Add ChangeLogs for recent address updates in permission notices.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5225
diff
changeset
|
98 2010-06-13 Stephen J. Turnbull <stephen@xemacs.org> |
0f7d483cff5a
Add ChangeLogs for recent address updates in permission notices.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5225
diff
changeset
|
99 |
0f7d483cff5a
Add ChangeLogs for recent address updates in permission notices.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5225
diff
changeset
|
100 * ad2c: Correct FSF address in permission notice. |
0f7d483cff5a
Add ChangeLogs for recent address updates in permission notices.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5225
diff
changeset
|
101 |
5225
1086297242fe
Don't throw an error if gnuclient supports GTK and XEmacs doesn't.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5206
diff
changeset
|
102 2010-06-02 Aidan Kehoe <kehoea@parhasard.net> |
1086297242fe
Don't throw an error if gnuclient supports GTK and XEmacs doesn't.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5206
diff
changeset
|
103 |
1086297242fe
Don't throw an error if gnuclient supports GTK and XEmacs doesn't.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5206
diff
changeset
|
104 * gnuclient.c (main): |
1086297242fe
Don't throw an error if gnuclient supports GTK and XEmacs doesn't.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5206
diff
changeset
|
105 If gnuclient was built with GTK support, and is asking a gnuserv |
1086297242fe
Don't throw an error if gnuclient supports GTK and XEmacs doesn't.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5206
diff
changeset
|
106 without GTK support to open a frame, fall back to X11, don't |
1086297242fe
Don't throw an error if gnuclient supports GTK and XEmacs doesn't.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5206
diff
changeset
|
107 throw an error on the server side, invisible to the client. |
1086297242fe
Don't throw an error if gnuclient supports GTK and XEmacs doesn't.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5206
diff
changeset
|
108 |
5206
39d74978fd32
Keep around file info for dumped functions and variables without docstrings.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5091
diff
changeset
|
109 2010-04-17 Aidan Kehoe <kehoea@parhasard.net> |
39d74978fd32
Keep around file info for dumped functions and variables without docstrings.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5091
diff
changeset
|
110 |
39d74978fd32
Keep around file info for dumped functions and variables without docstrings.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5091
diff
changeset
|
111 * make-docfile.c (scan_lisp_file): |
39d74978fd32
Keep around file info for dumped functions and variables without docstrings.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5091
diff
changeset
|
112 Even if a function doesn't have a doc string, store its file name |
39d74978fd32
Keep around file info for dumped functions and variables without docstrings.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5091
diff
changeset
|
113 in DOC. |
39d74978fd32
Keep around file info for dumped functions and variables without docstrings.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5091
diff
changeset
|
114 |
5091 | 115 2010-03-02 Ben Wing <ben@xemacs.org> |
116 | |
117 * digest-doc.c: | |
118 * make-path.c: | |
119 `emacs' isn't defined, but HAVE_CONFIG_H is, so use it to get | |
120 config.h. | |
121 | |
122 * getopt.h: | |
123 Conditionalize on HAVE_CONFIG_H to get real prototypes. | |
124 | |
5076
d555581e3cba
fix issues with display of argument docstrings
Ben Wing <ben@xemacs.org>
parents:
5030
diff
changeset
|
125 2010-02-25 Ben Wing <ben@xemacs.org> |
d555581e3cba
fix issues with display of argument docstrings
Ben Wing <ben@xemacs.org>
parents:
5030
diff
changeset
|
126 |
d555581e3cba
fix issues with display of argument docstrings
Ben Wing <ben@xemacs.org>
parents:
5030
diff
changeset
|
127 * make-docfile.c: |
d555581e3cba
fix issues with display of argument docstrings
Ben Wing <ben@xemacs.org>
parents:
5030
diff
changeset
|
128 * make-docfile.c (write_c_args): |
d555581e3cba
fix issues with display of argument docstrings
Ben Wing <ben@xemacs.org>
parents:
5030
diff
changeset
|
129 Convert newlines to spaces so that argument lists are always on one |
d555581e3cba
fix issues with display of argument docstrings
Ben Wing <ben@xemacs.org>
parents:
5030
diff
changeset
|
130 line, because that's what function-documentation-1 expects. |
d555581e3cba
fix issues with display of argument docstrings
Ben Wing <ben@xemacs.org>
parents:
5030
diff
changeset
|
131 |
5491 | 132 2010-02-19 Ben Wing <ben@xemacs.org> |
133 | |
134 * digest-doc.c: | |
135 * digest-doc.c (main): | |
136 * emacs.csh: | |
137 * hexl.c: | |
138 * hexl.c (Gabryelski): | |
139 * hexl.c (main): | |
140 * hexl.c (usage): | |
141 * sorted-doc.c: | |
142 * sorted-doc.c (fatal): | |
143 * sorted-doc.c (xstrdup): | |
144 * sorted-doc.c (main): | |
145 * vcdiff: | |
146 Merge up to FSF 23.1.92. | |
147 | |
5030 | 148 2010-02-11 Vin Shelton <acs@xemacs.org> |
149 | |
150 * winclient.c: Bump connection retries to 20 because some people | |
151 have long startup files. | |
152 (openConversation): If CreateProcess cannot find | |
153 xemacs.exe, try again with the name of the version-specific | |
154 executable. This is useful because the cygwin version of XEmacs | |
155 doesn't install an xemacs.exe executable. | |
156 (parseCommandLine): Fix tracker issue 675 - add current directory | |
157 to filenames under cygwin. | |
158 | |
4950
c50b0b3c7b8d
Random changes to make-msgfile.lex
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
159 2010-01-26 Ben Wing <ben@xemacs.org> |
c50b0b3c7b8d
Random changes to make-msgfile.lex
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
160 |
c50b0b3c7b8d
Random changes to make-msgfile.lex
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
161 * make-msgfile.lex: Vague hacking on this file, insert a comment |
c50b0b3c7b8d
Random changes to make-msgfile.lex
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
162 about what should be done if we ever want this to work. |
c50b0b3c7b8d
Random changes to make-msgfile.lex
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
163 |
4932 | 164 2010-01-24 Ben Wing <ben@xemacs.org> |
165 | |
166 * fakemail.c (args_size): | |
167 * fakemail.c (parse_header): | |
168 * ootags.c (C_entries): | |
169 Fix warnings about possible use of uninitialized vars. | |
170 | |
4911 | 171 2010-02-01 Vin Shelton <acs@xemacs.org> |
172 | |
173 * make-mswin-unicode.pl: Add description of override. | |
174 | |
4903
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4894
diff
changeset
|
175 2010-01-30 Ben Wing <ben@xemacs.org> |
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4894
diff
changeset
|
176 |
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4894
diff
changeset
|
177 * make-mswin-unicode.pl: |
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4894
diff
changeset
|
178 Make it possible to specify an overridden prototype in cases where |
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4894
diff
changeset
|
179 either Cygwin or Visual Studio has errors in their headers that |
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4894
diff
changeset
|
180 can be corrected by falling back to a less qualified type (typically |
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4894
diff
changeset
|
181 without const). |
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4894
diff
changeset
|
182 |
4894
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
4875
diff
changeset
|
183 2010-01-28 Jerry James <james@xemacs.org> |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
4875
diff
changeset
|
184 |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
4875
diff
changeset
|
185 * Makefile.in.in: Remove make-msgfile and make-po rules. |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
4875
diff
changeset
|
186 * make-msgfile.c: Removed, obsolete code. |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
4875
diff
changeset
|
187 * make-po.c: Removed, obsolete code. |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
4875
diff
changeset
|
188 |
4875
49de55c09f18
add "review" lines in intl-encap-win32.c for all unseen functions in processed headers
Ben Wing <ben@xemacs.org>
parents:
4874
diff
changeset
|
189 2010-01-15 Ben Wing <ben@xemacs.org> |
49de55c09f18
add "review" lines in intl-encap-win32.c for all unseen functions in processed headers
Ben Wing <ben@xemacs.org>
parents:
4874
diff
changeset
|
190 |
49de55c09f18
add "review" lines in intl-encap-win32.c for all unseen functions in processed headers
Ben Wing <ben@xemacs.org>
parents:
4874
diff
changeset
|
191 * make-mswin-unicode.pl: |
49de55c09f18
add "review" lines in intl-encap-win32.c for all unseen functions in processed headers
Ben Wing <ben@xemacs.org>
parents:
4874
diff
changeset
|
192 Process the command `review'. Cause an error to happen if we try to |
49de55c09f18
add "review" lines in intl-encap-win32.c for all unseen functions in processed headers
Ben Wing <ben@xemacs.org>
parents:
4874
diff
changeset
|
193 use the command, indicating that the command needs review to determine |
49de55c09f18
add "review" lines in intl-encap-win32.c for all unseen functions in processed headers
Ben Wing <ben@xemacs.org>
parents:
4874
diff
changeset
|
194 how to handle it. |
49de55c09f18
add "review" lines in intl-encap-win32.c for all unseen functions in processed headers
Ben Wing <ben@xemacs.org>
parents:
4874
diff
changeset
|
195 |
4874
4c3f5e1ecbeb
ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents:
4850
diff
changeset
|
196 2010-01-15 Ben Wing <ben@xemacs.org> |
4c3f5e1ecbeb
ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents:
4850
diff
changeset
|
197 |
4c3f5e1ecbeb
ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents:
4850
diff
changeset
|
198 * make-mswin-unicode.pl: |
4c3f5e1ecbeb
ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents:
4850
diff
changeset
|
199 Various fixes to get this to work when using the Cygwin header files |
4c3f5e1ecbeb
ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents:
4850
diff
changeset
|
200 in /usr/include/w32api instead of the VC++ ones: |
4c3f5e1ecbeb
ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents:
4850
diff
changeset
|
201 -- Use /usr/include/w32api as default; don't assume that a passed-in |
4c3f5e1ecbeb
ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents:
4850
diff
changeset
|
202 directory always ends in .../include. |
4c3f5e1ecbeb
ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents:
4850
diff
changeset
|
203 -- Add `const' to list of known type modifiers. |
4c3f5e1ecbeb
ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents:
4850
diff
changeset
|
204 -- If function already seen, warn but don't generate twice. |
4c3f5e1ecbeb
ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents:
4850
diff
changeset
|
205 -- Eliminate `extern' from return type modifiers. |
4c3f5e1ecbeb
ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents:
4850
diff
changeset
|
206 -- Cosmetic: When eliminating APIENTRY, also eliminate following |
4c3f5e1ecbeb
ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents:
4850
diff
changeset
|
207 whitespace. |
4c3f5e1ecbeb
ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents:
4850
diff
changeset
|
208 |
4850
2727d0d8ef07
Fix executable permissions on source files
Ben Wing <ben@xemacs.org>
parents:
4785
diff
changeset
|
209 2010-01-13 Ben Wing <ben@xemacs.org> |
2727d0d8ef07
Fix executable permissions on source files
Ben Wing <ben@xemacs.org>
parents:
4785
diff
changeset
|
210 |
2727d0d8ef07
Fix executable permissions on source files
Ben Wing <ben@xemacs.org>
parents:
4785
diff
changeset
|
211 * fix-perms.sh: New file. |
2727d0d8ef07
Fix executable permissions on source files
Ben Wing <ben@xemacs.org>
parents:
4785
diff
changeset
|
212 |
4785
d6cfba1cc388
Remove the lib-src/yow binary, which is currently unused anyway. See message
Jerry James <james@xemacs.org>
parents:
4782
diff
changeset
|
213 2009-12-21 Jerry James <james@xemacs.org> |
d6cfba1cc388
Remove the lib-src/yow binary, which is currently unused anyway. See message
Jerry James <james@xemacs.org>
parents:
4782
diff
changeset
|
214 |
d6cfba1cc388
Remove the lib-src/yow binary, which is currently unused anyway. See message
Jerry James <james@xemacs.org>
parents:
4782
diff
changeset
|
215 * Makefile.in.in: Remove rules for building yow. |
d6cfba1cc388
Remove the lib-src/yow binary, which is currently unused anyway. See message
Jerry James <james@xemacs.org>
parents:
4782
diff
changeset
|
216 * yow.c: Removed. |
d6cfba1cc388
Remove the lib-src/yow binary, which is currently unused anyway. See message
Jerry James <james@xemacs.org>
parents:
4782
diff
changeset
|
217 |
4782
1523f1d28be1
Remove more obsolete files. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4781
diff
changeset
|
218 2009-12-18 Jerry James <james@xemacs.org> |
1523f1d28be1
Remove more obsolete files. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4781
diff
changeset
|
219 |
1523f1d28be1
Remove more obsolete files. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4781
diff
changeset
|
220 * Makefile.in.in: Don't install rcs-checkin. |
1523f1d28be1
Remove more obsolete files. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4781
diff
changeset
|
221 * rcs-checkin: Remove obsolete file. |
1523f1d28be1
Remove more obsolete files. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4781
diff
changeset
|
222 |
4781
8a653fbe5c27
Add copyright and GPL v2 or later notices to Andy Piper's contributions, with
Jerry James <james@xemacs.org>
parents:
4774
diff
changeset
|
223 2009-12-18 Jerry James <james@xemacs.org> |
8a653fbe5c27
Add copyright and GPL v2 or later notices to Andy Piper's contributions, with
Jerry James <james@xemacs.org>
parents:
4774
diff
changeset
|
224 |
8a653fbe5c27
Add copyright and GPL v2 or later notices to Andy Piper's contributions, with
Jerry James <james@xemacs.org>
parents:
4774
diff
changeset
|
225 * installexe.sh: Add copyright and GPL v2 or later header with |
8a653fbe5c27
Add copyright and GPL v2 or later notices to Andy Piper's contributions, with
Jerry James <james@xemacs.org>
parents:
4774
diff
changeset
|
226 permission of Andy Piper. |
8a653fbe5c27
Add copyright and GPL v2 or later notices to Andy Piper's contributions, with
Jerry James <james@xemacs.org>
parents:
4774
diff
changeset
|
227 |
4774
26a007fa2f4c
Add GPL v2 or later notice to lib-src/ad2c with George Ferguson's permission.
Jerry James <james@xemacs.org>
parents:
4773
diff
changeset
|
228 2009-12-15 Jerry James <james@xemacs.org> |
26a007fa2f4c
Add GPL v2 or later notice to lib-src/ad2c with George Ferguson's permission.
Jerry James <james@xemacs.org>
parents:
4773
diff
changeset
|
229 |
26a007fa2f4c
Add GPL v2 or later notice to lib-src/ad2c with George Ferguson's permission.
Jerry James <james@xemacs.org>
parents:
4773
diff
changeset
|
230 * ad2c: Add GPL v2 or later notice with permission of George Ferguson. |
26a007fa2f4c
Add GPL v2 or later notice to lib-src/ad2c with George Ferguson's permission.
Jerry James <james@xemacs.org>
parents:
4773
diff
changeset
|
231 See the xemacs-beta thread beginning with message |
26a007fa2f4c
Add GPL v2 or later notice to lib-src/ad2c with George Ferguson's permission.
Jerry James <james@xemacs.org>
parents:
4773
diff
changeset
|
232 <870180fe0912090940mac19378ydab5b5a04bf06cf8@mail.gmail.com>. |
26a007fa2f4c
Add GPL v2 or later notice to lib-src/ad2c with George Ferguson's permission.
Jerry James <james@xemacs.org>
parents:
4773
diff
changeset
|
233 |
4773
c858892e4f2b
Remove build rules that try to make wakeup out of the now nonexistent wakeup.c.
Jerry James <james@xemacs.org>
parents:
4771
diff
changeset
|
234 2009-12-15 Jerry James <james@xemacs.org> |
c858892e4f2b
Remove build rules that try to make wakeup out of the now nonexistent wakeup.c.
Jerry James <james@xemacs.org>
parents:
4771
diff
changeset
|
235 |
c858892e4f2b
Remove build rules that try to make wakeup out of the now nonexistent wakeup.c.
Jerry James <james@xemacs.org>
parents:
4771
diff
changeset
|
236 * Makefile.in.in: Remove build dependency and rule for wakeup. Thanks |
c858892e4f2b
Remove build rules that try to make wakeup out of the now nonexistent wakeup.c.
Jerry James <james@xemacs.org>
parents:
4771
diff
changeset
|
237 to Mats Lidell for the patch. |
c858892e4f2b
Remove build rules that try to make wakeup out of the now nonexistent wakeup.c.
Jerry James <james@xemacs.org>
parents:
4771
diff
changeset
|
238 |
4771
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4768
diff
changeset
|
239 2009-12-10 Jerry James <james@xemacs.org> |
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4768
diff
changeset
|
240 |
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4768
diff
changeset
|
241 * gnudepend.pl: Remove obsolete file. |
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4768
diff
changeset
|
242 * leditcfns.c: Ditto. |
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4768
diff
changeset
|
243 * wakeup.c: Ditto. |
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4768
diff
changeset
|
244 |
4768
0f5bee973a7b
Etags: use memmove instead of strcpy to move characters within a string. See
Jerry James <james@xemacs.org>
parents:
4759
diff
changeset
|
245 2009-12-08 Sjoerd Mullender <sjoerd@acm.org> |
0f5bee973a7b
Etags: use memmove instead of strcpy to move characters within a string. See
Jerry James <james@xemacs.org>
parents:
4759
diff
changeset
|
246 |
0f5bee973a7b
Etags: use memmove instead of strcpy to move characters within a string. See
Jerry James <james@xemacs.org>
parents:
4759
diff
changeset
|
247 * etags.c (absolute_filename): Use memmove instead of strcpy to move |
0f5bee973a7b
Etags: use memmove instead of strcpy to move characters within a string. See
Jerry James <james@xemacs.org>
parents:
4759
diff
changeset
|
248 characters within a string. |
0f5bee973a7b
Etags: use memmove instead of strcpy to move characters within a string. See
Jerry James <james@xemacs.org>
parents:
4759
diff
changeset
|
249 |
4759
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4722
diff
changeset
|
250 2009-11-10 Jerry James <james@xemacs.org> |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4722
diff
changeset
|
251 |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4722
diff
changeset
|
252 * fakemail.c (MAIL_PROGRAM_NAME): No s&m files define this now, so |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4722
diff
changeset
|
253 make it unconditional. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4722
diff
changeset
|
254 (main): Make mail_program_name const, since it is never read, and drop |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4722
diff
changeset
|
255 a bogus cast as a result. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4722
diff
changeset
|
256 * gnuclient.c (main): Remove reference to hp9000s300. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4722
diff
changeset
|
257 * gnuserv.h: BSD4_1 is not defined on any supported system. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4722
diff
changeset
|
258 |
4722
dfc9fe46c294
Add BSD header to lib-src/insert-data-in-exec.c, with permission of Olivier
Jerry James <james@xemacs.org>
parents:
4684
diff
changeset
|
259 2009-10-26 Jerry James <james@xemacs.org> |
dfc9fe46c294
Add BSD header to lib-src/insert-data-in-exec.c, with permission of Olivier
Jerry James <james@xemacs.org>
parents:
4684
diff
changeset
|
260 |
dfc9fe46c294
Add BSD header to lib-src/insert-data-in-exec.c, with permission of Olivier
Jerry James <james@xemacs.org>
parents:
4684
diff
changeset
|
261 * insert-data-in-exec.c: Add BSD header, with permission of |
dfc9fe46c294
Add BSD header to lib-src/insert-data-in-exec.c, with permission of Olivier
Jerry James <james@xemacs.org>
parents:
4684
diff
changeset
|
262 Olivier Galibert. See xemacs-beta message with ID |
dfc9fe46c294
Add BSD header to lib-src/insert-data-in-exec.c, with permission of Olivier
Jerry James <james@xemacs.org>
parents:
4684
diff
changeset
|
263 <20091013224104.GA2573@dspnet.fr.eu.org>. |
dfc9fe46c294
Add BSD header to lib-src/insert-data-in-exec.c, with permission of Olivier
Jerry James <james@xemacs.org>
parents:
4684
diff
changeset
|
264 |
4684
15c42a3f4065
Do not move cursor position in gnuclient started buffer if user did
It's me FKtPp \;) <m_pupil@yahoo.com.cn>
parents:
4665
diff
changeset
|
265 2009-08-15 It's me FKtPp ;) <m_pupil@yahoo.com.cn> |
15c42a3f4065
Do not move cursor position in gnuclient started buffer if user did
It's me FKtPp \;) <m_pupil@yahoo.com.cn>
parents:
4665
diff
changeset
|
266 |
15c42a3f4065
Do not move cursor position in gnuclient started buffer if user did
It's me FKtPp \;) <m_pupil@yahoo.com.cn>
parents:
4665
diff
changeset
|
267 * gnuclient.c (main): Do not set start point position if user |
15c42a3f4065
Do not move cursor position in gnuclient started buffer if user did
It's me FKtPp \;) <m_pupil@yahoo.com.cn>
parents:
4665
diff
changeset
|
268 didn't requested to do so |
15c42a3f4065
Do not move cursor position in gnuclient started buffer if user did
It's me FKtPp \;) <m_pupil@yahoo.com.cn>
parents:
4665
diff
changeset
|
269 |
4665
f3a65dff1912
Fix UNUSED and USED_IF parsing in make-docfile.c.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
270 2009-07-28 Stephen Turnbull <stephen@xemacs.org> |
f3a65dff1912
Fix UNUSED and USED_IF parsing in make-docfile.c.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
271 |
f3a65dff1912
Fix UNUSED and USED_IF parsing in make-docfile.c.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
272 * make-docfile.c (write_c_args): Parse UNUSED and USED_IF right. |
f3a65dff1912
Fix UNUSED and USED_IF parsing in make-docfile.c.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
273 |
4636
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4539
diff
changeset
|
274 2009-05-18 Stephen J. Turnbull <stephen@xemacs.org> |
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4539
diff
changeset
|
275 |
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4539
diff
changeset
|
276 * XEmacs 21.5.29 "garbanzo" is released. |
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4539
diff
changeset
|
277 |
4539
061e030e3270
Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4467
diff
changeset
|
278 2008-12-27 Aidan Kehoe <kehoea@parhasard.net> |
061e030e3270
Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4467
diff
changeset
|
279 |
061e030e3270
Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4467
diff
changeset
|
280 * make-docfile.c (main): Allow more than one -d argument, followed |
061e030e3270
Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4467
diff
changeset
|
281 by a directory to change to. |
061e030e3270
Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4467
diff
changeset
|
282 (put_filename): Don't strip directory information; with previous |
061e030e3270
Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4467
diff
changeset
|
283 change, allows retrieval of Lisp function and variable origin |
061e030e3270
Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4467
diff
changeset
|
284 files from #'built-in-symbol-file relative to lisp-directory. |
061e030e3270
Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4467
diff
changeset
|
285 (scan_lisp_file): Don't add an extraneous newline after the file |
061e030e3270
Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4467
diff
changeset
|
286 name, put_filename has added the newline already. |
061e030e3270
Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4467
diff
changeset
|
287 |
4467
23ef20edf6ba
Check %WindowsSdkDir%, %MSSddk% for the Windows header files too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4464
diff
changeset
|
288 2008-05-21 Aidan Kehoe <kehoea@parhasard.net> |
23ef20edf6ba
Check %WindowsSdkDir%, %MSSddk% for the Windows header files too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4464
diff
changeset
|
289 |
23ef20edf6ba
Check %WindowsSdkDir%, %MSSddk% for the Windows header files too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4464
diff
changeset
|
290 * make-mswin-unicode.pl: |
23ef20edf6ba
Check %WindowsSdkDir%, %MSSddk% for the Windows header files too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4464
diff
changeset
|
291 Check %WindowsSdkDir%, %MSSddk% for the Windows header files too. |
23ef20edf6ba
Check %WindowsSdkDir%, %MSSddk% for the Windows header files too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4464
diff
changeset
|
292 |
4464
61aff09a7589
Increase DDE connection retries because waiting for XEmacs to start
Vin Shelton <acs@xemacs.org>
parents:
4456
diff
changeset
|
293 2008-05-14 Vin Shelton <acs@xemacs.org> |
61aff09a7589
Increase DDE connection retries because waiting for XEmacs to start
Vin Shelton <acs@xemacs.org>
parents:
4456
diff
changeset
|
294 |
61aff09a7589
Increase DDE connection retries because waiting for XEmacs to start
Vin Shelton <acs@xemacs.org>
parents:
4456
diff
changeset
|
295 * winclient.c: Create CONNECT_RETRIES and increase retry count |
61aff09a7589
Increase DDE connection retries because waiting for XEmacs to start
Vin Shelton <acs@xemacs.org>
parents:
4456
diff
changeset
|
296 from 5 to 10. |
61aff09a7589
Increase DDE connection retries because waiting for XEmacs to start
Vin Shelton <acs@xemacs.org>
parents:
4456
diff
changeset
|
297 |
4456
c785f98c6737
Pass READ_BINARY to scan_lisp_file, scan_c_file in make-docfile.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
4147
diff
changeset
|
298 2008-05-13 Aidan Kehoe <kehoea@parhasard.net> |
c785f98c6737
Pass READ_BINARY to scan_lisp_file, scan_c_file in make-docfile.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
4147
diff
changeset
|
299 |
c785f98c6737
Pass READ_BINARY to scan_lisp_file, scan_c_file in make-docfile.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
4147
diff
changeset
|
300 * make-docfile.c (scan_file): |
c785f98c6737
Pass READ_BINARY to scan_lisp_file, scan_c_file in make-docfile.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
4147
diff
changeset
|
301 Pass READ_BINARY to scan_lisp_file, scan_c_file; avoids an |
c785f98c6737
Pass READ_BINARY to scan_lisp_file, scan_c_file in make-docfile.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
4147
diff
changeset
|
302 assertion failure with Visual C++ 2005 Express Edition, and is |
c785f98c6737
Pass READ_BINARY to scan_lisp_file, scan_c_file in make-docfile.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
4147
diff
changeset
|
303 logically more coherent, given that our Lisp and C files are saved |
c785f98c6737
Pass READ_BINARY to scan_lisp_file, scan_c_file in make-docfile.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
4147
diff
changeset
|
304 with Unix line endings. |
c785f98c6737
Pass READ_BINARY to scan_lisp_file, scan_c_file in make-docfile.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
4147
diff
changeset
|
305 |
4147 | 306 2007-08-27 Mike Sperber <mike@xemacs.org> |
307 | |
308 * config.values.in (datarootdir): Add. | |
309 | |
4118 | 310 2007-08-12 Mike Sperber <mike@xemacs.org> |
311 | |
312 * Makefile.in.in (datarootdir): Add. | |
313 | |
3993 | 314 2007-05-29 Stephen J. Turnbull <stephen@xemacs.org> |
315 | |
4032 | 316 * etags.c: Sync to pot_etags_version 17.33. |
3993 | 317 Reverts part of 2007-03-24 patch: no longer displays |
318 pot_etags_version in usage message. | |
319 | |
3983 | 320 2007-05-22 Jerry James <james@xemacs.org> |
321 | |
322 * ellcc.c (do_init_mode): Plug memory leak. | |
323 | |
3975 | 324 2007-05-21 Stephen J. Turnbull <stephen@xemacs.org> |
325 | |
326 * XEmacs 21.5.28 "fuki" is released. | |
327 | |
3877 | 328 2007-03-24 Stephen J. Turnbull <stephen@xemacs.org> |
329 | |
330 * etags.c (print_version): More precise version info. Suggested | |
331 by Steve Youngs. | |
332 (print_help): Use #ifdef; PRINT_UNDOCUMENTED_OPTIONS_HELP may be | |
333 undefined. | |
334 | |
3876 | 335 2007-03-24 Stephen J. Turnbull <stephen@xemacs.org> |
336 | |
337 * etags.c: Sync to pot_etags_version 17.26. | |
338 | |
3728 | 339 2006-11-24 Benson Margulies <benson@dchbk.us> |
340 | |
341 * make-mswin-unicode.pl: allow for lower case header file names in | |
342 the current platform SDK. | |
343 | |
3651 | 344 2006-08-11 Jerry James <james@xemacs.org> |
345 | |
346 * pop.h: Sync with Emacs. | |
347 * pop.c: Ditto. | |
348 | |
3556 | 349 2006-08-08 Jerry James <james@xemacs.org> |
350 | |
351 * gnuslib.c (disconnect_from_server): shutdown() has been fine on | |
352 Linux for a long time now; use it. Also, don't use length to | |
353 access the buffer unless it is positive, not just nonzero. | |
354 * gnuclient.c (filename_expand): Initialize the last array element | |
355 to get a valid C string in case of overflow. Use strncat to avoid | |
356 buffer overruns. | |
357 * gnuclient.c (main): Use strncpy to avoid buffer overruns. | |
358 | |
3524 | 359 2006-07-21 Stephen J. Turnbull <stephen@xemacs.org> |
360 | |
3529 | 361 * etags.c: Xemacs -> XEmacs. |
3524 | 362 |
3517 | 363 2006-07-19 Stephen J. Turnbull <stephen@xemacs.org> |
364 | |
365 * etags.c: Sync to pot_etags_version 17.19. | |
366 | |
3503 | 367 2006-07-07 Jerry James <james@xemacs.org> |
368 | |
369 * config.values.in: Regenerate. | |
370 | |
3402 | 371 2006-05-16 Stephen J. Turnbull <stephen@xemacs.org> |
372 | |
373 * XEmacs 21.5.27 "fiddleheads" is released. | |
374 | |
3368 | 375 2006-04-29 Aidan Kehoe <kehoea@parhasard.net> |
376 | |
377 * make-docfile.c: | |
378 * make-docfile.c (put_filename): | |
379 * make-docfile.c (scan_c_file): | |
380 * make-docfile.c (scan_lisp_file): | |
381 Record file name information for built-in symbols. Based on the | |
382 FSF's implementation of same. | |
383 | |
3323 | 384 2006-03-31 Stephen J. Turnbull <stephen@xemacs.org> |
385 | |
386 * XEmacs 21.5.26 "endive" is released. | |
387 | |
3259 | 388 2006-02-26 Stephen J. Turnbull <stephen@xemacs.org> |
389 | |
390 * XEmacs 21.5.25 "eggplant" is released. | |
391 | |
3150 | 392 2005-12-18 Stephen J. Turnbull <stephen@xemacs.org> |
393 | |
394 * XEmacs 21.5.24 "dandelion" is released. | |
395 | |
3090 | 396 2005-11-22 Malcolm Purvis <malcolmp@xemacs.org> |
397 | |
398 * etags.c: Update to author version 17.15. | |
399 | |
3083 | 400 2005-11-22 Ben Wing <ben@xemacs.org> |
401 | |
402 * Makefile.in.in: | |
403 Ignore errors from rm during clean. | |
404 | |
3062 | 405 2005-11-13 Ben Wing <ben@xemacs.org> |
406 | |
407 * Makefile.in.in: | |
408 Add targets distclean-noconfig, realclean-noconfig, extraclean-noconfig. | |
409 Do some refactoring for cleanliness. | |
410 | |
3031 | 411 2005-10-26 Stephen J. Turnbull <stephen@xemacs.org> |
412 | |
413 * XEmacs 21.5.23 "daikon" is released. | |
414 | |
2993 | 415 2005-10-13 Ben Wing <ben@xemacs.org> |
416 | |
417 * i.c: | |
418 * mmencode.c: | |
419 Always include config.h first. | |
420 * winclient.c: | |
421 Move include of windows.h after config.h. | |
422 | |
2940 | 423 2005-09-18 Mike Alexander <mta@arbortext.com> |
424 | |
425 * installexe.sh: Don't add an exe extention to a file that already | |
426 has one. Patch from Rick Rankin. | |
427 | |
2931 | 428 2005-09-14 Stephen J. Turnbull <stephen@xemacs.org> |
429 | |
430 * XEmacs 21.5.22 "cucumber" is released. | |
431 | |
2835 | 432 2005-06-28 Marcus Crestani <crestani@xemacs.org> |
433 | |
434 * .cvsignore: Add insert-data-in-exec. | |
435 | |
2791 | 436 2005-05-28 Stephen J. Turnbull <stephen@xemacs.org> |
437 | |
438 * XEmacs 21.5.21 "corn" is released. | |
439 | |
2720 | 440 2005-04-01 Marcus Crestani <crestani@xemacs.org> |
441 | |
442 The new allocator. | |
443 | |
444 DUMP_IN_EXEC: | |
445 | |
446 * Makefile.in.in: Only compile insert-data-in-exec if | |
447 DUMP_IN_EXEC is defined. | |
448 | |
2687 | 449 2005-03-25 Andrey Slusar <anrays@gmail.com> |
450 | |
451 * fakemail.c (CURRENT_USER): Define it if FreeBSD version is >= | |
452 400000. Also, when FreeBSD version is >= 400000 geteuid returns | |
453 uid_t instead of unsigned short. | |
454 | |
2653 | 455 2005-03-11 Stephen J. Turnbull <stephen@xemacs.org> |
456 | |
457 * XEmacs 21.5.20 "cilantro" is released. | |
458 | |
2651 | 459 2005-03-07 Malcolm Purvis <malcolmp@xemacs.org> |
460 | |
461 * config.values.in: | |
462 * config.values.sh (FileContents): Different regex for autoconf | |
463 2.59. | |
464 | |
2603 | 465 2004-12-19 Stephen J. Turnbull <stephen@xemacs.org> |
466 | |
467 * make-docfile.c (write_c_args): Handle UNUSED, USED_IF macros. | |
468 (scan_c_file): Handle nested parens in DEFUN argument lists. | |
469 | |
2594 | 470 2005-02-18 Stephen J. Turnbull <stephen@xemacs.org> |
471 | |
472 * XEmacs 21.5.19 "chives" is released. | |
473 | |
2584 | 474 2005-01-29 Vin Shelton <acs@xemacs.org> |
475 | |
476 * movemail.c (popmail): Pass error string as format parameter | |
477 instead of as part of format string. Security fixes for | |
478 CAN-2005-0100. | |
479 | |
2554 | 480 2005-02-03 Jerry James <james@xemacs.org> |
481 | |
482 * etags.c: Update to author version 17.11. | |
483 | |
2509 | 484 2005-01-26 Ben Wing <ben@xemacs.org> |
485 | |
486 * fakemail.c (main): Add args to fix warning. | |
487 | |
2502 | 488 2005-01-25 Ben Wing <ben@xemacs.org> |
489 | |
490 * insert-data-in-exec.c (main): | |
491 Need to open everything as binary. | |
492 | |
2426 | 493 2004-12-06 Ben Wing <ben@xemacs.org> |
494 | |
495 * i.c (pump): | |
496 Undo change of 2003-03-06. It causes truncation of output at the end. | |
497 | |
2424 | 498 2004-12-06 Ben Wing <ben@xemacs.org> |
499 | |
500 * gnuclient.c: | |
501 * gnuclient.c (get_current_working_directory): | |
502 * gnuclient.c (filename_expand): | |
503 * gnuclient.c (main): | |
504 Use QXE_PATH_MAX. | |
505 | |
2421 | 506 2004-12-05 Ben Wing <ben@xemacs.org> |
507 | |
508 * make-docfile.c (main): | |
509 * make-docfile.c (scan_c_file): | |
510 Use QXE_PATH_MAX. | |
511 | |
2377 | 512 2004-11-08 Stephen J. Turnbull <stephen@xemacs.org> |
513 | |
514 * ellcc.h.in: Use XE_CFLAGS, not CFLAGS. | |
515 | |
2367 | 516 2004-10-14 Ben Wing <ben@xemacs.org> |
517 | |
518 * digest-doc.c (main): | |
519 * make-dump-id.c (main): | |
520 * profile.c: | |
521 * profile.c (main): | |
522 * sorted-doc.c (main): | |
523 Add proper decls for main(). | |
524 | |
525 * make-msgfile.c: | |
526 Document that this is old junk. | |
527 Move proposal to text.c. | |
528 | |
529 * make-msgfile.lex: | |
530 Move proposal to text.c. | |
531 | |
532 * make-mswin-unicode.pl: | |
533 Convert error-generating code so that the entire message will | |
534 be seen as a single unrecognized token. | |
535 | |
536 | |
2346 | 537 2004-10-22 Stephen J. Turnbull <stephen@xemacs.org> |
538 | |
539 * XEmacs 21.5.18 "chestnut" is released. | |
540 | |
2325 | 541 2004-10-07 Jerry James <james@xemacs.org> |
542 | |
543 * etags.c: Update to author version 17.6. | |
544 | |
2286 | 545 2004-09-14 Jerry James <james@xemacs.org> |
546 | |
547 * digest-doc.c (main): Remove unused argc and argv. | |
548 * fakemail.c (main): Ditto. | |
549 * make-dump-id.c (main): Ditto. | |
550 * profile.c (main): Ditto. | |
551 * sorted-doc.c (main): Ditto. | |
552 * gnuclient.c (tell_emacs_to_resume): Mark unused parameters. | |
553 * gnuserv.c (main): Ditto. | |
554 * make-docfile.c (write_c_args): Ditto. | |
555 * pop.c (socket_connection): Ditto. | |
556 | |
2225 | 557 2004-08-10 Jerry James <james@xemacs.org> |
558 | |
559 * etags.c: Update to author version 16.56. | |
560 | |
2022 | 561 2004-04-17 Olivier Galibert <galibert@pobox.com> |
562 | |
563 * insert-data-in-exec.c (main): Fix error message. | |
564 | |
2015 | 565 2003-12-07 Olivier Galibert <galibert@pobox.com> |
566 | |
567 * Makefile.in.in (insert-data-in-exec): Added target. | |
568 | |
569 * insert-data-in-exec.c: Added. | |
570 | |
1964 | 571 2004-03-22 Stephen J. Turnbull <stephen@xemacs.org> |
572 | |
573 * XEmacs 21.5.17 "chayote" is released. | |
574 | |
1886 | 575 2004-01-21 Jerry James <james@xemacs.org> |
576 | |
577 * Makefile.in.in (mmencode): Pass $(ldflags) to the compiler. | |
578 * Makefile.in.in (make-path): Ditto. | |
579 | |
1743 | 580 2003-10-13 Jerry James <james@xemacs.org> |
581 | |
582 * ellcc.c: Remove attribute definitions, include new compiler.h | |
583 instead, and change existing uses to match new definitions. | |
584 | |
1716 | 585 2003-09-26 Steve Youngs <youngs@xemacs.org> |
586 | |
587 * XEmacs 21.5.16 "celeriac" is released. | |
588 | |
1706 | 589 2003-09-21 Jerry James <james@xemacs.org> |
590 | |
591 * ellcc.c (do_init_mode): Do not mangle external symbols in the | |
592 generated doc file with C++ so that emodules.c can find them. | |
593 | |
1688 | 594 2003-09-15 Jerry James <james@xemacs.org> |
595 | |
596 * make-dump-id.c (main): Output separate declaration and | |
597 definition for dump_id. | |
598 | |
1665 | 599 2003-09-03 Steve Youngs <youngs@xemacs.org> |
600 | |
601 * XEmacs 21.5.15 "celery" is released. | |
602 | |
1663 | 603 2003-08-29 Nickolay Pakoulin <npak@ispras.ru> |
604 | |
605 * make-dump-id.c (main): Set "C" linking rule for dump_id | |
606 | |
1618 | 607 2003-06-30 Andrew Begel <abegel@CS.Berkeley.EDU> |
608 | |
609 * make-docfile.c (write_c_args): Escape newlines that arise in the | |
610 C argument list, and comment on synch with Emacs. | |
611 | |
1510 | 612 2003-06-01 Steve Youngs <youngs@xemacs.org> |
613 | |
614 * XEmacs 21.5.14 "cassava" is released. | |
615 | |
1506 | 616 2003-05-29 Jerry James <james@xemacs.org> |
617 | |
618 * ellcc.c: Rationalize and repair use of GCC function attributes. | |
619 | |
1473 | 620 2003-05-10 Steve Youngs <youngs@xemacs.org> |
621 | |
622 * XEmacs 21.5.13 "cauliflower" is released. | |
623 | |
1431 | 624 2003-04-24 Steve Youngs <youngs@xemacs.org> |
625 | |
626 * XEmacs 21.5.12 "carrot" is released. | |
627 | |
1349 | 628 2003-02-09 Ville Skyttä <scop@xemacs.org> |
629 | |
630 * config.values.in (pkgdir): Remove (unused). | |
631 | |
1346 | 632 2003-03-06 Ben Wing <ben@xemacs.org> |
633 | |
634 * i.c: | |
635 * i.c (pump): | |
636 Sleep between calls to check for I/O, since these calls are non-blocking. | |
637 | |
1307 | 638 2003-02-16 Steve Youngs <youngs@xemacs.org> |
639 | |
640 * XEmacs 21.5.11 "cabbage" is released. | |
641 | |
1269 | 642 2003-01-14 Jerry James <james@xemacs.org> |
643 | |
644 * ellcc.c (do_compile_mode): Search XEmacs directories first for | |
645 include files. Thanks to Raymond Toy. | |
646 | |
1238 | 647 2003-01-28 Steve Youngs <youngs@xemacs.org> |
648 | |
649 * rcs2log: Synch to GNU version. | |
650 | |
1187 | 651 2003-01-04 Steve Youngs <youngs@xemacs.org> |
652 | |
653 * XEmacs 21.5.10 "burdock" is released. | |
654 | |
1123 | 655 2002-11-27 Ben Wing <ben@xemacs.org> |
656 | |
657 * .cvsignore: | |
658 Add .idb, .ilk for MS Windows VC++. | |
659 | |
1111 | 660 2002-11-17 Ben Wing <ben@xemacs.org> |
661 | |
662 * ellcc.c (do_init_mode): | |
663 Use full prototypes. | |
664 | |
665 * ellcc.h.in: | |
666 Use the correct user-specified compiler. | |
667 | |
668 * make-docfile.c: | |
669 * make-docfile.c (read_c_string): | |
670 * make-docfile.c (scan_c_file): | |
671 Fix shadowing warnings. NOTE: This was already fixed | |
672 awhile ago, but reverted by Jerry. Please be careful. | |
673 | |
996 | 674 2002-08-08 Jerry James <james@xemacs.org> |
675 | |
676 * config.values.in: Regenerate. | |
677 * ellcc.c: A thorough cleanup to eliminate potential buffer | |
678 overruns and null pointer dereferences, make some global variables | |
679 local, add braces for clarity, etc., using hints supplied by | |
680 splint. | |
681 * ellcc.c (EXEC_GROW_SIZE): New constant for dynamic allocation. | |
682 * ellcc.c (xrealloc): New function. | |
683 * ellcc.c (xstrdup): New function. | |
684 * ellcc.c (fatal): Use varargs for flexibility. | |
685 * ellcc.c (add_string): New function for abstracting the addition | |
686 of a string to the exec_argv array. | |
687 * ellcc.c (add_to_argv): Use add_string. Improve whitespace | |
688 handling. Recode finite state machine as a clearer while loop. | |
689 * ellcc.c (do_compile_mode): Use new functions. | |
690 * ellcc.c (do_link_mode): Ditto. | |
691 * ellcc.c (do_init_mode): Ditto. Default to in-source | |
692 make-docfile. | |
693 | |
981 | 694 2002-08-30 Steve Youngs <youngs@xemacs.org> |
695 | |
696 * XEmacs 21.5.9 "brussels sprouts" is released. | |
697 | |
978 | 698 2002-08-21 Jerry James <james@xemacs.org> |
699 | |
700 * gnuserv.h: Revert previous patch. Include syssignal.h instead | |
701 of signal.h. | |
702 * tcp.c: Include config.h, and substitute syssignal.h for | |
703 signal.h. | |
704 | |
954 | 705 2002-08-02 Jerry James <james@xemacs.org> |
706 | |
707 * gnuserv.h: Include signal.h early to define NSIG before config.h | |
708 is included. | |
709 | |
933 | 710 2002-07-27 Steve Youngs <youngs@xemacs.org> |
711 | |
712 * XEmacs 21.5.8 "broccoli" is released. | |
713 | |
930 | 714 2002-07-15 Jerry James <james@xemacs.org> |
715 | |
716 * make-docfile.c: Change whitespace and organization to reduce the | |
717 size of the diff against FSF Emacs sources and synch to Emacs 21.2. | |
718 Remove unused DO_REALLOC. | |
719 Mark XEmacs changes and additions more clearly. | |
720 Reintroduce previously deleted Emacs code inside #if 0 ... #endif. | |
721 * make-docfile.c (next_extra_elc): Replace goto with do-while. | |
722 * make-docfile.c (main): Put XEmacs-only args in one place. | |
723 * make-docfile.c (write_c_args): Change buff to buf to match | |
724 Emacs. Replace pointer arithmetic with simpler array syntax. | |
725 * make-docfile.c (scan_c_file): Note that DEFSIMPLE and DEFPRED no | |
726 longer exist. Correct the "name too long" test (off by one). | |
727 Die with message if a DEFUN has no docstring instead of hanging. | |
728 * make-docfile.c (scan_lisp_file): Introduce while loops used in | |
729 Emacs sources to skip consecutive blank lines. | |
730 | |
920 | 731 2002-07-14 Adrian Aichner <adrian@xemacs.org> |
732 | |
733 * etags.c: It's XEmacs, not Xemacs. | |
734 | |
894 | 735 2002-07-02 Stephen J. Turnbull <stephen@xemacs.org> |
736 | |
737 * XEmacs 21.5.7 "broccoflower" is released. | |
738 | |
881 | 739 2002-05-29 Greg Steuck <greg-xemacs-patches@nest.cx> |
740 | |
741 * gnuclient.c: Makes it possible again to #undef | |
742 INTERNET_DOMAIN_SOCKETS in lib-src/gnuserv.h and get a functional | |
743 gnuserv which is only accessible through UNIX_DOMAIN_SOCKETS. | |
744 | |
853 | 745 2002-05-28 Ben Wing <ben@xemacs.org> |
746 | |
747 * make-docfile.c (scan_c_file): | |
748 * make-docfile.c (scan_lisp_file): | |
749 Fix places where we forget to check for EOF. | |
750 | |
826 | 751 2002-05-05 Ben Wing <ben@xemacs.org> |
752 | |
753 * i.c: | |
754 * i.c (skip_executable_name): | |
755 * i.c (main): | |
756 Create an inheritable event and pass it on to XEmacs, so that ^C | |
757 can be handled properly. Intercept ^C and signal the event. | |
758 "Stop Build" in VC++ now works. | |
759 | |
814 | 760 2002-04-14 Ben Wing <ben@xemacs.org> |
761 | |
762 * make-docfile.c: | |
763 * make-docfile.c (next_extra_elc): | |
764 * make-docfile.c (again): Removed. | |
765 * make-docfile.c (main): | |
766 * make-docfile.c (getc_iso2022): | |
767 * make-docfile.c (MDGET): | |
768 * make-docfile.c (read_c_string): | |
769 * make-docfile.c (write_c_args): | |
770 * make-docfile.c (scan_c_file): | |
771 * make-docfile.c (read_lisp_symbol): | |
772 * make-docfile.c (scan_lisp_file): | |
773 Add basic support for handling ISO 2022 doc strings -- we parse | |
774 the basic charset designation sequences so we know whether we're | |
775 in ASCII and have to pay attention to end quotes and such. | |
776 | |
777 Reformat code according to coding standards. | |
778 | |
804 | 779 2002-04-05 Stephen J. Turnbull <stephen@xemacs.org> |
780 | |
781 * XEmacs 21.5.6 "bok choi" is released. | |
782 | |
800 | 783 2002-03-31 Ben Wing <ben@xemacs.org> |
784 | |
785 * make-mswin-unicode.pl: Don't be fucked up by CRLF. Output code | |
786 to force errors when nonintercepted Windows calls issued. | |
787 | |
778 | 788 2002-03-14 Jonathan Harris <jhar@tardis.ed.ac.uk> |
789 | |
790 * make-mswin-unicode.pl: Pick up location of include files from | |
791 MSVCDIR environment variable. | |
792 Add --includedir command-line option. | |
793 Remove 'dir' command. | |
794 | |
776 | 795 2002-03-15 Ben Wing <ben@xemacs.org> |
796 | |
797 * Makefile.in.in (blessmail): | |
798 * Makefile.in.in (maybe-blessmail): | |
799 Use -no-packages to avoid problems with package files shadowing | |
800 core files (e.g. unicode.el in mule-ucs). | |
801 | |
774 | 802 2002-03-12 Ben Wing <ben@xemacs.org> |
803 | |
3322 | 804 * The Great Mule Merge of March 2002: |
805 see node by that name in the Internals Manual. | |
774 | 806 |
768 | 807 2002-03-05 Stephen J. Turnbull <stephen@xemacs.org> |
808 | |
809 * XEmacs 21.5.5 "beets" is released. | |
810 | |
725 | 811 2002-01-08 Stephen J. Turnbull <stephen@xemacs.org> |
812 | |
813 * XEmacs 21.5.4 "bamboo" is released. | |
814 | |
715 | 815 2001-12-24 Yoshiki Hayashi <yoshiki@xemacs.org> |
816 | |
817 * etags.c: Define __P if not already defined. | |
818 | |
709 | 819 2001-12-19 Yoshiki Hayashi <yoshiki@xemacs.org> |
820 | |
821 * Makefile.in.in (etags_args): Define EMACS_NAME to XEmacs. | |
822 | |
823 * etags.c: Sync with pot version 14.28. | |
824 Additional change for XEmacs to define PTR macro. | |
825 | |
826 2001-12-12 Francesco Potorti` <pot@gnu.org> | |
827 | |
828 * etags.c (PHP_functions): New function by Diez B. Roggisch, | |
829 heavily adapted by me, for parsing PHP. | |
830 (LOOKING_AT): New macro. | |
831 (Perl_functions, Python_functions, PHP_functions) | |
832 (Scheme_functions, Texinfo_nodes): Use it. | |
833 (Perl_functions): Use strneq. | |
834 (prolog_pred): Renamed to prolog_pr. | |
835 (prolog_pr): Recognise Prolog rules (thanks to Geert Kloosterman) | |
836 in addition to predicates. | |
837 [ETAGS_REGEXPS] [!HAVE_CONFIG_H] [__CYGWIN__]: Prevent | |
838 unmodified compile, as Cygwin's regex.h is incompatible with us | |
839 (thanks to Markus Hoenicka). | |
840 [!HAVE_CONFIG_H] [!__STDC__]: #define const as the empty string. | |
841 | |
654 | 842 2001-09-07 Stephen J. Turnbull <stephen@xemacs.org> |
843 | |
844 * XEmacs 21.5.3 "asparagus" is released. | |
845 | |
647 | 846 2001-06-24 Ben Wing <ben@xemacs.org> |
847 | |
848 * gnuserv.c (permitted): | |
849 * gnuserv.c (setup_table): | |
850 * gnuslib.c (connect_to_internet_server): | |
851 * make-docfile.c (scan_c_file): | |
852 * mmencode.c (fromqp): | |
853 * movemail.c: | |
854 * movemail.c (main): | |
855 * movemail.c (xmalloc): | |
856 * ootags.c (prolog_pred): | |
857 * ootags.c (erlang_func): | |
858 * yow.c (yow): | |
859 Fix unsigned warnings. See src/ChangeLog for details. | |
860 | |
641 | 861 2001-07-28 Stephen J. Turnbull <stephen@xemacs.org> |
862 | |
863 * XEmacs 21.5.2 "artichoke" is released. | |
864 | |
613 | 865 2001-06-10 Ben Wing <ben@xemacs.org> |
866 | |
867 * cvtmail.c: | |
868 * fakemail.c: | |
869 * gnuserv.c: | |
870 * gnuserv.c (handle_ipc_request): | |
871 * gnuserv.h: | |
872 * gnuslib.c: | |
873 * make-msgfile.c: | |
874 * make-path.c: | |
875 * pop.c: | |
876 * pop.h: | |
877 * profile.c: | |
878 * tcp.c: | |
879 Rename 'GNU Emacs' to XEmacs in the copyright. | |
880 Fix comments in similar ways. | |
881 | |
882 * digest-doc.c (main): | |
883 * sorted-doc.c (main): | |
884 Fix program and author name to reflect XEmacs. | |
885 | |
567 | 886 2001-05-06 Karl M. Hegbloom <karlheg@hegbloom.net> |
887 | |
888 * movemail.c (lock_dot): Use mkstemp if available | |
889 | |
558 | 890 2001-05-23 Ben Wing <ben@xemacs.org> |
891 | |
892 * pop.c (socket_connection): | |
893 Remove BROKEN_CYGWIN. | |
894 | |
543 | 895 2001-05-17 Stephen J. Turnbull <stephen@xemacs.org> |
896 | |
897 * config.values.sh: lisp/utils?/config.el -> lisp/config.el. | |
898 | |
531 | 899 2001-05-12 Ben Wing <ben@xemacs.org> |
900 | |
901 * etags.c: | |
902 * etags.c (print_help): | |
903 * etags.c (sym_type): | |
904 * etags.c (TOTAL_KEYWORDS): | |
905 * etags.c (hash): | |
906 * etags.c (in_word_set): | |
907 * etags.c (consider_token): | |
908 * etags.c (C_entries): | |
909 * etags.c (add_regex): | |
910 new version from Francesco. | |
911 | |
523 | 912 2001-05-09 Ben Wing <ben@xemacs.org> |
913 | |
914 * etags.c (add_regex): | |
915 temporary fix to avoid crashes with new regex code. | |
916 | |
522 | 917 2001-05-09 Martin Buchholz <martin@xemacs.org> |
918 | |
919 * XEmacs 21.5.1 "anise" is released. | |
920 | |
502 | 921 2001-04-29 Ben Wing <ben@xemacs.org> |
922 | |
923 * gnuclient.c (filename_expand): Warning fix. | |
924 | |
479 | 925 2001-04-20 Ben Wing <ben@xemacs.org> |
926 | |
927 * .cvsignore: Added stuff for Windows. | |
928 | |
472 | 929 2001-04-18 Martin Buchholz <martin@xemacs.org> |
930 | |
931 * XEmacs 21.5.0 "alfalfa" is released. | |
932 | |
464 | 933 2000-08-01 Jon Schewe <jpschewe@eggplant.mtu.net> |
934 | |
935 * gnuclient.c (filename_expand): Let Cygwin convert Windows path | |
936 to Unix. | |
937 | |
938 2001-03-23 Stephen J. Turnbull <stephen@xemacs.org> | |
939 | |
940 * gnuserv.h: Document TMPDIR lossage if client/server values differ. | |
941 | |
462 | 942 2001-03-21 Martin Buchholz <martin@xemacs.org> |
943 | |
944 * XEmacs 21.2.46 "Urania" is released. | |
945 | |
946 2001-03-19 Andy Piper <andy@xemacs.org> | |
947 | |
948 * installexe.sh: use bash by default. | |
949 | |
950 2001-03-09 William M. Perry <wmperry@aventail.com> | |
951 | |
952 * gnuclient.c: The Great GTK Merge. | |
953 | |
954 2000-08-10 Ben Wing <ben@xemacs.org> | |
955 | |
956 * update-elc.sh: deleted (retroactively). replaced by update-elc-2.el, | |
957 which does the same thing but in a platform-independent way. | |
958 | |
460 | 959 2001-02-23 Martin Buchholz <martin@xemacs.org> |
960 | |
961 * XEmacs 21.2.45 "Thelxepeia" is released. | |
962 | |
963 2001-02-11 Martin Buchholz <martin@xemacs.org> | |
964 | |
965 * Makefile.in.in: Cleanup. | |
966 Fixes bug: all must depend on make-dump-id. | |
967 Don't install make-path; only used at build time. | |
968 Avoid duplicating file lists for maintainability. | |
969 (PUBLIC_INSTALLABLE_SCRIPTS): More logical naming. | |
970 (PUBLIC_INSTALLABLE_EXES): Likewise. | |
971 (PUBLIC_INSTALLABLES): Likewise. | |
972 (PRIVATE_INSTALLABLE_SCRIPTS): More logical naming. | |
973 (PRIVATE_INSTALLABLE_EXES): Likewise. | |
974 (PRIVATE_INSTALLABLES): Likewise. | |
975 (SCRIPTS): Likewise. | |
976 (EXES): New. | |
977 (PROGS): New. | |
978 (SOURCES): Remove. | |
979 (BUILD_UTILITIES): New. Non-installed utilities. | |
980 (INSTALL_GNUSERV): New. | |
981 (unlock): Remove obsolete target. | |
982 (relock): Remove obsolete target. | |
983 (aixcc.c): Remove. Obsolete. | |
984 * aixcc.lex: Remove. Obsolete. | |
985 | |
986 2001-02-12 Martin Buchholz <martin@xemacs.org> | |
987 | |
988 * make-dump-id.c (main): No longer #include dump-id.h. | |
989 | |
458 | 990 2001-02-08 Martin Buchholz <martin@xemacs.org> |
991 | |
992 * gnuserv.c (permitted): Compiler warning fixes. | |
993 | |
994 2001-02-08 Martin Buchholz <martin@xemacs.org> | |
995 | |
996 * XEmacs 21.2.44 "Thalia" is released. | |
997 | |
998 2001-01-31 Francesco Potorti` <pot@gnu.org> | |
999 | |
1000 * etags.c: [NDEBUG] #undef assert and #define it as ((void)0), for | |
1001 the sake of some buggy assert.h (e.g. in MinGW and sunos4 pcc). | |
1002 (C_entries): Tag token renamed to still_in_token because sunos4 | |
1003 pcc wants to expand it as the token() macro even though it has no | |
1004 arguments. | |
1005 | |
1006 2001-01-30 Francesco Potorti` <pot@gnu.org> | |
1007 | |
1008 * etags.c: [WIN32-NATIVE]: #undef MSDOS, #undef WINDOWSNT and | |
920 | 1009 #define it for the sake of XEmacs. |
458 | 1010 [WINDOWSNT]: #undef HAVE_NTGUI even if built without |
1011 HAVE_CONFIG_H. This change only affects a standalone etags. | |
1012 [WINDOWSNT]: #undef DOS_NT and #define it even if built with | |
1013 HAVE_CONFIG_H. This change does nothing in Emacs, as DOS_NT is | |
1014 always defined when HAVE_CONFIG_H and WINDOWS are both defined. | |
1015 [!HAVE_UNISTD_H]: use defined(WINDOWSNT) instead of the bare | |
1016 WINDOWSNT, as this is the correct way to use it. | |
1017 | |
1018 2001-01-28 Francesco Potorti` <pot@gnu.org> | |
1019 | |
1020 * etags.c: Be capable to parse nested struct-like structures. | |
1021 (structdef, structtag): Struct state machine revisited. | |
1022 (struct tok): Revisited. | |
1023 (cstack, nestlev, instruct): New struct and macros. | |
1024 (pushclass_above, popclass_above, write_classname): New functions | |
1025 for dealing with nested class names, inspired by Mykola Dzyuba. | |
1026 (consider_token, make_C_tag, C_entries): Many changes for dealing | |
1027 with arbitrarily nested structures. | |
1028 (etags_getcwd): #if MSDOS, not #ifdef MSDOS! | |
1029 (C_entries): Consider templates in C++. | |
1030 (sym_type): New constant st_C_class for detecting "class" also in | |
1031 C mode. | |
1032 (C_AUTO): New macro for automatic detection of C++. | |
1033 (consider_token): Automatic set C++ mode. | |
1034 (C_entries): New security check for yacc. | |
1035 (print_language_names, print_help): Mention the autodetect | |
1036 feature, do not show help for the -C option, now mostly useless. | |
1037 (C_entries): Tag C++ forward declarations if --declarations. | |
1038 (C_entries): Don't be fooled by things like XDEFUN. | |
1039 (consider_token): Discard asm pseudo function. | |
1040 | |
460 | 1041 2001-01-25 Francesco Potorti` <pot@gnu.org> |
458 | 1042 |
1043 * etags.c (struct tok): Renamed from struct token. | |
1044 (token): Renamed from tok. | |
1045 (structtype): Make it a local variable. | |
1046 [DEBUG]: Use assert. | |
1047 (xrnew): Change the synopsis. | |
1048 (typedefs_or_cplusplus): Renamed from typedefs_and_cplusplus. | |
1049 (grow_linebuffer): Don't call xrnew when not needed. | |
1050 (token): buffer renamed to line. | |
1051 (C_entries): Three calls to inibuffer moved here from main. | |
1052 (C_entries): Removed all references to var methodlen, delete it. | |
1053 (linebuffer_setlen): Was grow_buffer, now also sets len. | |
1054 (consider_token, C_entries, Pascal_functions): Use it. | |
1055 (C_entries): Preventing problems relative to extern "C". | |
1056 (C_entries): Can tag more than one variable or func separated by | |
1057 comma when --declarations is used. | |
1058 (C_entries): More accurate tagging of members and declarations. | |
1059 (yacc_rules): Was global, made local to C_entries. | |
1060 (next_token_is_func): Removed. | |
1061 (fvdef): New constants fdefunkey, fdefunname. | |
1062 (consider_token, C_entries): Use them. | |
1063 (C_entries): Build proper lisp names for Emacs DEFUNs. | |
1064 | |
460 | 1065 2001-01-15 Francesco Potorti` <pot@gnu.org> |
458 | 1066 |
1067 * etags.c (print_language_names): Print filenames in addition to | |
1068 suffixes. | |
1069 | |
1070 2001-01-12 Francesco Potorti` <pot@gnu.org> | |
1071 | |
1072 * etags.c (get_language_from_langname): Renamed from | |
1073 get_language_from_name. | |
1074 (get_language_from_filename): Renamed from | |
1075 get_language_from_suffix. Now first looks for the complete file | |
1076 name. | |
1077 (language): New member char **filenames. | |
1078 (Makefile_filenames): List of possible filenames for makefiles. | |
1079 (lang_names): Added a NULL member for every entry, added an entry | |
1080 for makefiles. | |
1081 (Makefile_targets): New function, inspired by Assar Westerlund | |
1082 <assar@sics.se>. | |
1083 | |
460 | 1084 2000-11-07 Francesco Potorti` <pot@gnu.org> |
458 | 1085 |
1086 * etags.c (Texinfo_nodes): Renamed from Texinfo_fuctions and made | |
1087 it conformant to the style of the rest of the code. | |
1088 | |
1089 2000-02-10 Francesco Potorti` <pot@gnu.org> | |
1090 | |
1091 * etags.c (iswhite): Redefined not to consider '\0' as white | |
1092 space, and use it throughout in place of isspace, thus preventing a | |
1093 potential signed char to int conversion problem. | |
1094 (MSDOS): #undefine befere redefining | |
1095 | |
460 | 1096 2000-02-04 Francesco Potorti` <pot@gnu.org> |
458 | 1097 |
1098 * etags.c (many functions): Add prototypes. | |
1099 | |
460 | 1100 2000-01-31 Francesco Potorti` <pot@gnu.org> |
458 | 1101 |
1102 * etags.c [MSDOS]: Set MSDOS to 1 if #defined, 0 otherwise. | |
1103 (get_compressor_from_suffix, process_file): Use MSDOS in if clause. | |
1104 (etags_strchr, etags_strrchr): Use const char * and int as arguments. | |
1105 (getenv, getcwd): Only declare them if necessary. | |
1106 (EMACS_NAME): New constant macro. | |
1107 (print_version): Use it. | |
1108 (P_) [__STDC__]: Macro for defining function prototypes. | |
1109 | |
1110 2001-02-06 Martin Buchholz <martin@xemacs.org> | |
1111 | |
1112 * gnuclient.c: | |
1113 * gnuserv.c: | |
1114 * gnuslib.c: | |
1115 * pop.c: | |
1116 Remove use of BSD-specific types. | |
1117 s/u_(char|short|int_long)/unsigned $1/g | |
1118 Remove pointless casts. | |
1119 | |
1120 2001-01-28 Martin Buchholz <martin@xemacs.org> | |
1121 | |
1122 * gnuclient.c (get_current_working_directory): Use HAVE_GETCWD. | |
1123 warning: getwd() possibly used unsafely, consider using getcwd(). | |
1124 | |
456 | 1125 2001-01-26 Martin Buchholz <martin@xemacs.org> |
1126 | |
1127 * XEmacs 21.2.43 "Terspichore" is released. | |
1128 | |
1129 2001-01-23 Jan Vroonhof <jan@xemacs.org> | |
1130 | |
1131 * gnuserv.c: Add version number to object file. | |
1132 | |
1133 2001-01-20 Klaus Frank <klausf@i3.informatik.rwth-aachen.de> | |
1134 | |
1135 * gnuserv.c (permitted): Completed the checks of the authentication | |
1136 data length, replaced memcmp() by constant-time comparision. | |
1137 | |
454 | 1138 2001-01-20 Martin Buchholz <martin@xemacs.org> |
1139 | |
1140 * XEmacs 21.2.42 "Poseidon" is released. | |
1141 | |
452 | 1142 2001-01-17 Martin Buchholz <martin@xemacs.org> |
1143 | |
1144 * XEmacs 21.2.41 "Polyhymnia" is released. | |
1145 | |
450 | 1146 2001-01-08 Martin Buchholz <martin@xemacs.org> |
1147 | |
1148 * XEmacs 21.2.40 is released. | |
1149 | |
448 | 1150 2000-12-31 Martin Buchholz <martin@xemacs.org> |
1151 | |
1152 * XEmacs 21.2.39 is released. | |
1153 | |
446 | 1154 2000-12-05 Martin Buchholz <martin@xemacs.org> |
1155 | |
1156 * XEmacs 21.2.38 is released. | |
1157 | |
1158 2000-11-13 Yoshiki Hayashi <yoshiki@xemacs.org> | |
1159 | |
1160 * Makefile.in.in: Define emacs iff it's necessary. | |
1161 | |
444 | 1162 2000-11-14 Martin Buchholz <martin@xemacs.org> |
1163 | |
1164 * XEmacs 21.2.37 is released. | |
1165 | |
442 | 1166 2000-09-01 Katsumi Yamaoka <yamaoka@jpl.org> |
1167 | |
1168 * make-po.c (BUFSIZE): Increase value to 32768. | |
1169 | |
1170 2000-10-04 Martin Buchholz <martin@xemacs.org> | |
1171 | |
1172 * XEmacs 21.2.36 is released. | |
1173 | |
1174 2000-09-30 Martin Buchholz <martin@xemacs.org> | |
1175 | |
1176 * gnuserv.c (main): Warning removal. | |
1177 | |
1178 2000-09-27 Martin Buchholz <martin@xemacs.org> | |
1179 | |
1180 * ellcc.c: Make global variables static. Avoids warnings on AIX. | |
1181 | |
1182 * fakemail.c (make_file_preface): Use standard type time_t. | |
1183 Actually check that the 25th char returned from ctime is '\n'. | |
1184 | |
1185 2000-09-19 Martin Buchholz <martin@xemacs.org> | |
1186 | |
1187 * *: Spelling mega-patch | |
1188 | |
1189 2000-09-12 Martin Buchholz <martin@xemacs.org> | |
1190 | |
1191 * gnuclient.c (main): | |
1192 * hexl.c (usage): | |
1193 Use `Usage', not `usage', in Usage messages. | |
1194 | |
1195 2000-07-15 Ben Wing <ben@xemacs.org> | |
1196 | |
1197 * etags.c (add_regex): added commented out code for use figuring | |
1198 out Windows quoting problems. | |
1199 * hexl.c (main): fixed warnings about possible used uninitialized. | |
1200 | |
1201 2000-07-19 Martin Buchholz <martin@xemacs.org> | |
1202 | |
1203 * XEmacs 21.2.35 is released. | |
1204 | |
1205 2000-07-12 Martin Buchholz <martin@xemacs.org> | |
1206 | |
1207 * gnuserv.c: | |
1208 (handle_internet_request): | |
1209 (handle_unix_request): | |
1210 (internet_init): | |
1211 Use socklen_t instead of int or size_t. | |
1212 | |
1213 2000-07-11 Martin Buchholz <martin@xemacs.org> | |
1214 | |
1215 * hexl.c (usage): Use full ANSI C prototypes. | |
1216 | |
1217 2000-07-05 Craig Lanning <lanning@scra.org> | |
1218 | |
1219 * Makefile.in.in (INSTALL_DATA): | |
1220 * Makefile.in.in (UTILITIES): | |
1221 * Makefile.in.in (GETOPTDEPS): | |
1222 * Makefile.in.in (i): | |
1223 mingw support: don't try to build gnuclient, add | |
1224 support for building and installing minitar | |
1225 | |
1226 2000-06-10 Ben Wing <ben@xemacs.org> | |
1227 | |
1228 * Makefile.in.in (INSTALLABLES_BASE): | |
1229 * Makefile.in.in (ootags_args): | |
1230 * Makefile.in.in (yow): | |
1231 Build i.exe. | |
1232 Don't build run*.exe. | |
1233 | |
1234 * b2m.c: | |
1235 * b2m.c (main): | |
1236 * ellcc.c (main): | |
1237 * etags.c: | |
1238 * etags.c (main): | |
1239 * etags.c (get_compressor_from_suffix): | |
1240 * etags.c (process_file): | |
1241 * etags.c (readline_internal): | |
1242 * etags.c (etags_getcwd): | |
1243 * etags.c (relative_filename): | |
1244 * etags.c (absolute_filename): | |
1245 * etags.c (filename_is_absolute): | |
1246 * etags.c (canonicalize_filename): | |
1247 * fakemail.c: | |
1248 * fakemail.c (make_file_preface): | |
1249 * getopt.c: | |
1250 * getopt.h: | |
1251 * gnuclient.c: | |
1252 * gnuclient.c (filename_expand): | |
1253 * gnuserv.h: | |
1254 * gnuserv.h (PATCHLEVEL): | |
1255 * hexl.c: | |
1256 * hexl.c (main): | |
1257 * make-docfile.c: | |
1258 * make-docfile.c (APPEND_BINARY): | |
1259 * make-docfile.c (main): | |
1260 * make-dump-id.c: | |
1261 * mmencode.c: | |
1262 * mmencode.c (fromqp): | |
1263 * mmencode.c (main): | |
1264 * movemail.c: | |
1265 * movemail.c (main): | |
1266 * movemail.c (popmail): | |
1267 * ootags.c: | |
1268 * ootags.c (main): | |
1269 * ootags.c (readline_internal): | |
1270 * ootags.c (etags_getcwd): | |
1271 * ootags.c (absolute_filename): | |
1272 * ootags.c (filename_is_absolute): | |
1273 * ootags.c (canonicalize_filename): | |
1274 * pop.c: | |
1275 * pop.c (DONT_ENCAPSULATE): | |
1276 * pop.c (pop_open): | |
1277 * pop.c (socket_connection): | |
1278 * pop.c (pop_trash): | |
1279 * profile.c (gettimeofday): | |
1280 * wakeup.c: | |
1281 * yow.c (rootrelativepath): | |
1282 Remove MSDOS support, converting to WIN32_NATIVE where necessary. | |
1283 WINDOWSNT -> WIN32_NATIVE. | |
1284 __CYGWIN32__ -> CYGWIN. | |
1285 DOS_NT -> WIN32_NATIVE. | |
1286 Remove unused NO_SHORTNAMES. | |
1287 Changes for removed nt\inc. | |
1288 | |
1289 2000-06-07 Ben Wing <ben@xemacs.org> | |
1290 | |
1291 * run.c, run.h, run.rc: Removed. We no longer need these for | |
1292 building runxemacs.exe, and it's questionable at best whether | |
1293 rungnuclient.exe was ever used or is even needed. The correct | |
1294 solution is just to make gnuclient.exe a windows program and | |
1295 use the gnuattach script to run 'i gnuclient.exe'. Not that | |
1296 gnuclient currently works under Windows native in any case. | |
1297 | |
1298 2000-05-28 Martin Buchholz <martin@xemacs.org> | |
1299 | |
1300 * XEmacs 21.2.34 is released. | |
1301 | |
1302 2000-05-11 Ben Wing <ben@xemacs.org> | |
1303 | |
1304 * i.c (get_command): fix unused var warning. | |
1305 | |
1306 * make-docfile.c (MDGET): | |
1307 * make-docfile.c (read_c_string): | |
1308 rewrite and reindent -- handle closing doc string comment that's | |
1309 not at beg of line. | |
1310 | |
1311 2000-05-01 Martin Buchholz <martin@xemacs.org> | |
1312 | |
1313 * XEmacs 21.2.33 is released. | |
1314 | |
1315 2000-04-19 Martin Buchholz <martin@xemacs.org> | |
1316 | |
1317 * gnuclient.c (initialize_signals): Always use full ANSI prototypes. | |
1318 | |
1319 2000-04-06 Kirill 'Big K' Katsnelson <kkm@dtmx.com> | |
1320 | |
1321 * i.c: New file, source for the i utility. | |
1322 | |
1323 2000-03-22 Mike Alexander <mta@arbortext.com> | |
1324 | |
1325 * make-dump-id.c (gettimeofday): new (Windows only) | |
1326 | |
1327 2000-03-20 Martin Buchholz <martin@xemacs.org> | |
1328 | |
1329 * XEmacs 21.2.32 is released. | |
1330 | |
1331 2000-03-20 Martin Buchholz <martin@xemacs.org> | |
1332 | |
1333 * make-dump-id.c: Use config.h and systime.h for portability. | |
1334 | |
1335 2000-02-20 Olivier Galibert <galibert@pobox.com> | |
1336 | |
1337 * make-dump-id.c: Added. | |
1338 | |
1339 * Makefile.in.in: Add support for make-dump-id. | |
1340 | |
1341 2000-03-12 Ben Wing <ben@xemacs.org> | |
1342 | |
1343 * etags.c (canonicalize_filename): fixed a problem with gratuitous | |
1344 capitalization of file names under MS Windows. | |
1345 | |
1346 2000-02-23 Martin Buchholz <martin@xemacs.org> | |
1347 | |
1348 * XEmacs 21.2.31 is released. | |
1349 | |
1350 2000-02-21 Martin Buchholz <martin@xemacs.org> | |
1351 | |
1352 * XEmacs 21.2.30 is released. | |
1353 | |
1354 2000-02-16 Martin Buchholz <martin@xemacs.org> | |
1355 | |
1356 * XEmacs 21.2.29 is released. | |
1357 | |
1358 2000-02-13 Martin Buchholz <martin@xemacs.org> | |
1359 | |
1360 * etags.c: Upgrade to version 13.44. | |
1361 Only added (unsigned char) casts to calls like isspace (*cp). | |
1362 | |
440 | 1363 2000-02-07 Martin Buchholz <martin@xemacs.org> |
1364 | |
1365 * XEmacs 21.2.28 is released. | |
1366 | |
1367 2000-02-06 Martin Buchholz <martin@xemacs.org> | |
1368 | |
1369 * getopt.h: | |
1370 * fakemail.c: | |
1371 * gnuslib.c: | |
1372 * sorted-doc.c: | |
1373 * yow.c: | |
1374 * cvtmail.c: | |
1375 * movemail.c: | |
1376 * gnuclient.c: | |
1377 ANSIfy. Use coding standards for function definitions. | |
1378 Make C++-compilable. Modified from patch by Zack Weinberg. | |
1379 | |
1380 2000-01-26 Kirill 'Big K' Katsnelson <kkm@dtmx.com> | |
1381 | |
1382 * hexl.c: Removed MSDOS code; set binary I/O flags for NT. | |
1383 | |
438 | 1384 2000-01-18 Martin Buchholz <martin@xemacs.org> |
1385 | |
1386 * XEmacs 21.2.27 is released. | |
1387 | |
1388 2000-01-18 Martin Buchholz <martin@xemacs.org> | |
1389 | |
1390 * ootags.c: Ansify. | |
1391 * etags.c: | |
1392 * getopt.c: | |
1393 * cvtmail.c: | |
1394 Remove declarations of ANSI errno, getenv(), malloc(). | |
1395 | |
1396 2000-01-13 Martin Buchholz <martin@xemacs.org> | |
1397 | |
1398 * movemail.c (main): | |
1399 * make-docfile.c (write_c_args): | |
1400 Simple compiler warning fixes. | |
1401 | |
1402 2000-01-09 Martin Buchholz <martin@xemacs.org> | |
1403 | |
1404 * *.[ch]: Change <../src/config.h> to <config.h> | |
1405 * ellcc.c: Always use <...> to #include files not in `.' | |
1406 * Makefile.in.in: Use safer -I paths. | |
1407 Use $(top_srcdir) instead of $(srcdir)/../src | |
1408 Add warning comment. | |
1409 | |
1410 2000-01-08 Martin Buchholz <martin@xemacs.org> | |
1411 | |
1412 * movemail.c: Warning removal. | |
1413 | |
1414 2000-01-06 Norbert Koch <norbert@s.netic.de> | |
1415 | |
1416 * movemail.c: Typo fix. | |
1417 | |
1418 2000-01-03 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
1419 | |
1420 * movemail.c: Overhaul of the locking code. | |
1421 | |
1422 2000-01-03 Martin Buchholz <martin@xemacs.org> | |
1423 | |
1424 * etags.c (etags_strrchr): Ansify. | |
1425 (etags_strchr): Ansify. | |
1426 (get_compressor_from_suffix): Remove warning, make code cleaner. | |
1427 | |
436 | 1428 1999-12-31 Martin Buchholz <martin@xemacs.org> |
1429 | |
1430 * XEmacs 21.2.26 is released. | |
1431 | |
434 | 1432 1999-12-24 Martin Buchholz <martin@xemacs.org> |
1433 | |
1434 * XEmacs 21.2.25 is released. | |
1435 | |
1436 1999-12-21 Martin Buchholz <martin@xemacs.org> | |
1437 | |
1438 * fakemail.c (cuserid): ((expr)) ==> (expr) | |
1439 | |
1440 * fakemail.c (xmalloc): ANSIfy. | |
1441 | |
432 | 1442 1999-12-14 Martin Buchholz <martin@xemacs.org> |
1443 | |
1444 * config.values.sh: Only update config.values.in if changed. | |
1445 No external dependencies except perl. | |
1446 No temporary files. | |
1447 | |
1448 1999-12-14 Martin Buchholz <martin@xemacs.org> | |
1449 | |
1450 * XEmacs 21.2.24 is released. | |
1451 | |
1452 1999-12-13 Martin Buchholz <martin@xemacs.org> | |
1453 | |
1454 * etags.c: Fix warning: `_GNU_SOURCE' redefined. | |
1455 | |
430 | 1456 1999-12-07 Martin Buchholz <martin@xemacs.org> |
1457 | |
1458 * XEmacs 21.2.23 is released. | |
1459 | |
1460 1999-11-29 Andreas Jaeger <aj@suse.de> | |
1461 | |
1462 * Makefile.in.in (INSTALLABLE_SCRIPTS): Removed pstogif. | |
1463 pstogif: Moved to package tm. | |
1464 | |
428 | 1465 1999-11-29 XEmacs Build Bot <builds@cvs.xemacs.org> |
1466 | |
1467 * XEmacs 21.2.22 is released | |
1468 | |
1469 1999-11-28 Martin Buchholz <martin@xemacs.org> | |
1470 | |
1471 * XEmacs 21.2.21 is released. | |
1472 | |
1473 1999-11-20 Martin Buchholz <martin@xemacs.org> | |
1474 | |
1475 * process-gnu-depends.sh: Deleted. Obsolete. | |
1476 * process-depends.sh: Deleted. Obsolete. | |
1477 | |
1478 1999-11-20 Jan Vroonhof <jan@xemacs.org> | |
1479 | |
1480 * Makefile.in.in (instvardir): Added. From | |
1481 Jeff Miller <jmiller@smart.net> | |
1482 | |
1483 1999-11-19 Martin Buchholz <martin@xemacs.org> | |
1484 | |
1485 * etags.c: Upgrade to pot etags version 13.33. | |
1486 Make `etags --version' print out `XEmacs', not `GNU Emacs' | |
1487 | |
1488 1999-11-17 Martin Buchholz <martin@xemacs.org> | |
1489 | |
1490 * etags.c (canonicalize_filename): Typo fix | |
1491 | |
1492 1999-11-05 Martin Buchholz <martin@xemacs.org> | |
1493 | |
1494 * etags.c: | |
1495 * ../etc/etags.1: | |
1496 * ../etc/NEWS: | |
1497 Upgrade to etags version 13.32. | |
1498 etags.c has warnings removed, in addition. | |
1499 | |
1500 1999-11-15 Martin Buchholz <martin@xemacs.org> | |
1501 | |
1502 * gnuserv.c (ipc_spawn_watchdog): Use pid_t instead of int. | |
1503 | |
1504 1999-11-10 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1505 | |
1506 * XEmacs 21.2.20 is released | |
1507 | |
1508 1999-11-04 Martin Buchholz <martin@xemacs.org> | |
1509 | |
1510 * gnuserv.c (handle_response): Warning suppression | |
1511 | |
1512 1999-09-27 Martin Buchholz <martin@xemacs.org> | |
1513 | |
1514 * ellcc.c: | |
1515 ANSIfy. | |
1516 Remove MSDOS cruft. | |
1517 Remove WINDOWS cruft. | |
1518 Remove VMS cruft. | |
1519 (main): The wrong number of bytes were being read during argument | |
1520 processing. | |
1521 Delete ANSI imitations like ellcc_strchr(). | |
1522 Call functions with the right number of arguments. | |
1523 Fix a typo. | |
1524 Make functions static. | |
1525 Remove compiler warnings. | |
1526 | |
1527 1999-09-22 Martin Buchholz <martin@xemacs.org> | |
1528 | |
1529 * cvtmail.c (main): ANSIfy | |
1530 * digest-doc.c (main): ANSIfy | |
1531 * hexl.c (main): ANSIfy | |
1532 | |
1533 * make-path.c: Remove declaration for errno. | |
1534 * mmencode.c (nextcharin): ANSIfy | |
1535 * movemail.c (pop_retr): ANSIfy | |
1536 | |
1537 1999-07-30 Gleb Arshinov <gleb@cs.stanford.edu> | |
1538 | |
1539 * pop.c (pop_quit): use CLOSESOCKET() instead of close() | |
1540 | |
1541 * run.c (build_cmdline): Fix NT native build unreferenced variable | |
1542 warning | |
1543 (WinMain): Fix release mode build unreferenced variable warning | |
1544 | |
1545 1999-07-30 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1546 | |
1547 * XEmacs 21.2.19 is released | |
1548 | |
1549 1999-07-22 SL Baur <steve@miho> | |
1550 | |
1551 * Makefile.in.in (datadir): Add. | |
1552 From Jeff Miller <jmiller@smart.net> | |
1553 | |
1554 1999-07-13 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1555 | |
1556 * XEmacs 21.2.18 is released | |
1557 | |
1558 1999-06-22 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1559 | |
1560 * XEmacs 21.2.17 is released | |
1561 | |
1562 1999-06-11 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1563 | |
1564 * XEmacs 21.2.16 is released | |
1565 | |
1566 1999-06-04 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1567 | |
1568 * XEmacs 21.2.15 is released | |
1569 | |
1570 1999-06-03 SL Baur <steve@steve1.m17n.org> | |
1571 | |
1572 * Makefile.in.in: Move .PHONY up to force execution of `all'. | |
1573 | |
1574 1999-05-14 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1575 | |
1576 * XEmacs 21.2.14 is released | |
1577 | |
1578 1999-05-14 SL Baur <steve@gneiss.etl.go.jp> | |
1579 | |
1580 * update-elc.sh (ignore_pattern): Correct ignore_dirs/ignore=dirs | |
1581 european keyboard fuckage. | |
1582 | |
1583 1999-05-03 Hrvoje Niksic <hniksic@srce.hr> | |
1584 | |
1585 * update-elc.sh (ignore_pattern): Installation.el is dead. | |
1586 | |
1587 1999-05-03 Hrvoje Niksic <hniksic@srce.hr> | |
1588 | |
1589 * gnuclient.c: Include <sysfile.h> instead of <../src/sysfile.h>. | |
1590 | |
1591 * Makefile.in.in (cppflags): Add -I$(top_srcdir)/src. | |
1592 | |
1593 1999-04-29 Andy Piper <andy@xemacs.org> | |
1594 | |
1595 * make-docfile.c: build fixes for mingw32. | |
1596 * movemail.c: ditto. | |
1597 * run.c: ditto. | |
1598 * yow.c: ditto. | |
1599 * profile.c: ditto. | |
1600 (gettimeofday): new function copied from nt.c. | |
1601 | |
1602 * fakemail.c (make_file_preface): make buildable under windows. | |
1603 | |
1604 * Makefile.in.in: fix some build targets for when we are building | |
1605 on a windows platform. | |
1606 | |
1607 1999-03-12 giacomo boffi <giacomo.boffi@polimi.it> | |
1608 | |
1609 * sorted-doc.c: corrected the outdated or plainly wrong | |
1610 texinfo headers. Broken up the mega-@table that crashes (at | |
1611 least RedHat's) TeX with: | |
1612 "! TeX capacity exceeded, sorry [save size=4000]." | |
1613 | |
1614 1999-03-12 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1615 | |
1616 * XEmacs 21.2.13 is released | |
1617 | |
1618 1999-03-10 Martin Buchholz <martin@xemacs.org> | |
1619 | |
1620 * fakemail.c (add_a_stream): Always use full ANSI prototypes. | |
1621 | |
1622 1999-03-06 Martin Buchholz <martin@xemacs.org> | |
1623 | |
1624 * fakemail.c (main): Ansify. | |
1625 (xmalloc): Ansify. | |
1626 (xrealloc): Ansify. | |
1627 (get_keyword): use paranoid casts ((int) (unsigned char) c) for | |
1628 islower, toupper, isspace. | |
1629 | |
1630 1999-03-05 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1631 | |
1632 * XEmacs 21.2.12 is released | |
1633 | |
1634 1999-03-01 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1635 | |
1636 * XEmacs 21.2.11 is released | |
1637 | |
1638 1999-02-17 SL Baur <steve@xemacs.org> | |
1639 | |
1640 * update-elc.sh (ignore_dirs): Ignore lisp/mule subdirectory when | |
1641 running latin-1 XEmacs. Eliminate 20.4 bundled kludges. | |
1642 * update-custom.sh (ignore_dirs): Ditto. | |
1643 | |
1644 1999-02-15 Martin Buchholz <martin@xemacs.org> | |
1645 | |
1646 * update-elc.sh: | |
1647 * update-autoloads.sh: | |
1648 * update-custom.sh: | |
1649 - improved automounter tmp directory support. | |
1650 - support 4 (!) empirically discovered automounter conventions | |
1651 | |
1652 1999-02-05 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1653 | |
1654 * XEmacs 21.2.10 is released | |
1655 | |
1656 1999-02-02 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1657 | |
1658 * XEmacs 21.2.9 is released | |
1659 | |
1660 1999-01-27 Martin Buchholz <martin@xemacs.org> | |
1661 | |
1662 * movemail.c (strerror): Must be NON-static, since it is used by | |
1663 the POP code, which got moved to a separate file. | |
1664 | |
1665 1999-01-11 Damon Lipparelli <lipp@primus.com> | |
1666 | |
1667 * Makefile.in.in: use ellcc (not ellc) everywhere | |
1668 | |
1669 1999-01-10 J. Kean Johnston <jkj@sco.com> | |
1670 | |
1671 * Makefile.in.in: Include moduledir and sitemoduledir as defined | |
1672 by configure. | |
1673 - Install ellcc if we're supporting shared objects | |
1674 - Rules and dependancies for ellcc | |
1675 | |
1676 * ellcc.c: New file. Front end to the compiler for making modules. | |
1677 | |
1678 * ellcc.h.in: New file. Contains path definitions used by ellcc. | |
1679 | |
1680 * make-docfile.c (main): Add check for -E argument used by ellcc. | |
1681 | |
1682 * make-docfile.c: Changed output format when in -E mode. | |
1683 | |
1684 1998-12-28 Martin Buchholz <martin@xemacs.org> | |
1685 | |
1686 * XEmacs 21.2.8 is released. | |
1687 | |
1688 1998-12-24 Martin Buchholz <martin@xemacs.org> | |
1689 | |
1690 * XEmacs 21.2.7 is released. | |
1691 | |
1692 1998-12-17 Andy Piper <andy@xemacs.org> | |
1693 | |
1694 * pop.c (pop_open): disable use of getpass() which doesn't exist under NT. | |
1695 | |
1696 * movemail.c: mess with includes so that it builds under native NT. | |
1697 | |
1698 * pop.c: mess with includes so that it builds under native NT. | |
1699 From Fabrice Popineau <popineau@ese-metz.fr> | |
1700 | |
1701 1998-12-16 Andy Piper <andy@xemacs.org> | |
1702 | |
1703 * XEmacs 21.2.6 is released | |
1704 | |
1705 1998-12-05 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1706 | |
1707 * XEmacs 21.2.5 is released | |
1708 | |
1709 1998-11-28 SL Baur <steve@altair.xemacs.org> | |
1710 | |
1711 * XEmacs 21.2-beta4 is released. | |
1712 | |
1713 1998-10-14 Andy Piper <andyp@parallax.co.uk> | |
1714 | |
1715 * Makefile.in.in (movemail): add getopt.o to objects to link with. | |
1716 | |
1717 * movemail.c (main): rewrite to use getopt(). Add options for | |
1718 order reversal, progress output, regexp matching and message | |
1719 deletion. | |
1720 (popmail): add some optional verbose messages. Use pop_search_top | |
1721 for getting messages. Make message deletion optional. Delete all | |
1722 messages at the end rather than on a message my message basis. | |
1723 (pop_search_top): new function. Looks for messages matching regexp. | |
1724 (compile_regex): new function stolen from etags. | |
1725 | |
1726 1998-10-15 SL Baur <steve@altair.xemacs.org> | |
1727 | |
1728 * XEmacs 21.2-beta3 is released. | |
1729 | |
1730 1998-10-12 SL Baur <steve@altair.xemacs.org> | |
1731 | |
1732 * lib-src/gnudepend.pl: Use /usr/bin/perl. | |
1733 * Makefile.in.in (INSTALLABLE_SCRIPTS): Remove send-pr, install-sid. | |
1734 (GEN_SCRIPTS): Ditto. | |
1735 Delete TM_SCRIPTS. | |
1736 | |
1737 1998-10-11 SL Baur <steve@altair.xemacs.org> | |
1738 | |
1739 * tm-au: | |
1740 * tm-file: | |
1741 * tm-html: | |
1742 * tm-image: | |
1743 * tm-mpeg: | |
1744 * tm-plain: | |
1745 * tm-ps: | |
1746 * tmdecode: packaged. | |
1747 | |
1748 1998-10-10 SL Baur <steve@altair.xemacs.org> | |
1749 | |
1750 * install-sid: | |
1751 * send-pr: Packaged | |
1752 | |
1753 1998-10-01 Jan Vroonhof <vroonhof@math.ethz.ch> | |
1754 | |
1755 * gnuclient.c (filename_expand): Don't forget to copy the | |
1756 filename under UNIX. | |
1757 | |
1758 1998-09-29 SL Baur <steve@altair.xemacs.org> | |
1759 | |
1760 * XEmacs 21.2-beta2 is released. | |
1761 | |
1762 1998-09-08 Raymond Toy <toy@rtp.ericsson.se> | |
1763 | |
1764 * gnuclient.c (filename_expand): Added better recognition of | |
1765 absolute pathnames for CYGWIN. Convert absolute pathnames with | |
1766 drive letters to something xemacs can handle. | |
1767 | |
1768 1998-07-19 SL Baur <steve@altair.xemacs.org> | |
1769 | |
1770 * XEmacs 21.2-beta1 is released. | |
1771 | |
1772 1998-07-15 SL Baur <steve@altair.xemacs.org> | |
1773 | |
1774 * update-elc.sh (ignore_pattern): Add very-early-lisp.el as | |
1775 something to never bytecompile. | |
1776 | |
1777 1998-07-12 SL Baur <steve@altair.xemacs.org> | |
1778 | |
1779 * XEmacs 21.0-pre5 is released. | |
1780 | |
1781 1998-07-09 SL Baur <steve@altair.xemacs.org> | |
1782 | |
1783 * XEmacs 21.0-pre4 is released. | |
1784 | |
1785 1998-06-16 Jan Vroonhof <vroonhof@math.ethz.ch> | |
1786 | |
1787 * gnuclient.c (main): Use disconnect_from_server to read & echo | |
1788 result. | |
1789 | |
1790 1998-06-15 Andy Piper <andyp@parallax.co.uk> | |
1791 | |
1792 * Makefile.in.in: add xemacs icon to the runemacs executable. | |
1793 | |
1794 1998-06-12 Jim Radford <radford@robby.caltech.edu> | |
1795 | |
1796 * gnuclient.c (initialize_signals): Don't pass SIGHUP to XEmacs. | |
1797 | |
1798 1998-06-04 Andy Piper <andyp@parallax.co.uk> | |
1799 | |
1800 * Makefile.in.in (runemacs): add runemacs as a build target if | |
1801 HAVE_MS_WINDOWS is defined. move cpp stuff up slightly so that | |
1802 build targets can benefit from it. | |
1803 | |
1804 1998-05-31 Kirill M. Katsnelson <kkm@kis.ru> | |
1805 | |
1806 * wakeup.c (sleep): Added NT preprocessor quirkfest. | |
1807 (main): Exit when fflush() fails on stdout. | |
1808 | |
1809 1998-05-30 Kirill M. Katsnelson <kkm@kis.ru> | |
1810 | |
1811 * getopt.c: Undefine getpid before redefinition. | |
1812 | |
1813 * make-docfile.c: Added <io.h> when compiling on NT | |
1814 | |
1815 * movemail.c: Ditto. | |
1816 (main): Declare some auto variables only when DISABLE_DIRECT_ACCESS | |
1817 is undefined, so they are actually used, to supress compilation | |
1818 warnings. | |
1819 | |
1820 1998-05-16 SL Baur <steve@altair.xemacs.org> | |
1821 | |
1822 * etags.c (C_entries): Avoid short circuiting comparisons on | |
1823 characters that may appear in C++ operator constructs. | |
1824 | |
1825 * ootags.c (C_entries): Commentary change. | |
1826 | |
1827 * Makefile.in.in (PKG_SCRIPTS): Remove add-little-package.sh. | |
1828 | |
1829 1998-05-11 Martin Buchholz <martin@xemacs.org> | |
1830 | |
1831 * Makefile.in.in: | |
1832 - Adjust for luser's CDPATH being set to something weird. | |
1833 - Take into account bash 2.02's tendency to print the cwd when | |
1834 using CDPATH. Always use `cd ./foo' instead of `cd foo'. | |
1835 - fix the run-temacs target to use $(DUMPENV) | |
1836 - fix the run-puremacs target to use $(DUMPENV) | |
1837 - fix the `depend' target to properly $(RM) the right files | |
1838 - Generate a better TAGS file for XEmacs' lisp code using | |
1839 hand-crafted regexps. | |
1840 - Use standard coding conventions for modules/Makefile.in | |
1841 | |
1842 1998-05-07 Andy Piper <andyp@parallax.co.uk> | |
1843 | |
1844 * update-elc.sh: test x && y loses in the presence of set -e, use | |
1845 if instead. | |
1846 | |
1847 1998-05-06 SL Baur <steve@altair.xemacs.org> | |
1848 | |
1849 * Makefile.in.in (INSTALLABLES): Add ootags. | |
1850 (ootags): New rule. | |
1851 | |
1852 * ootags.c: New file. | |
1853 (C_entries): Annotate changes neeeded for increased OO-Browser | |
1854 context. | |
1855 | |
1856 1998-05-05 Jeff Miller <jmiller@smart.net> | |
1857 | |
1858 * Makefile.in.in: Fix blessmail target. | |
1859 | |
1860 1998-05-05 SL Baur <steve@altair.xemacs.org> | |
1861 | |
1862 * Makefile.in.in (etags_args): Back out -DOO_BROWSER | |
1863 | |
1864 * etags.c: Revert to CVS version 1.11 (pre OO-browser additions). | |
1865 | |
1866 1998-05-04 SL Baur <steve@altair.xemacs.org> | |
1867 | |
1868 * etags.c (C_entries): Fix order typo. | |
1869 (C_entries): Restore previous test. | |
1870 | |
1871 Wed Apr 22 12:59:35 1998 Andy Piper <andyp@parallax.co.uk> | |
1872 | |
1873 * installexe.sh: fix to use -f instead of -e file and fix shift | |
1874 typo. | |
1875 | |
1876 1998-04-22 SL Baur <steve@altair.xemacs.org> | |
1877 | |
1878 * etags.c: Unconditionally define OO_BROWSER. | |
1879 | |
1880 * update-elc.sh: Tighten up regexp on uname -r output. | |
1881 From Marcus Thiessel <thiessel@tmbbwtx.bbn.hp.com> | |
1882 | |
1883 1998-04-19 Jan Vroonhof <vroonhof@math.ethz.ch> | |
1884 | |
1885 * gnuclient.c (main): Read eval from from stdin if just "-batch" | |
1886 is given. | |
1887 * gnudoit: Support this. | |
1888 * gnuserv.1: Document this behavior. | |
1889 | |
1890 1998-04-18 Andreas Jaeger <aj@arthur.rhein-neckar.de> | |
1891 | |
1892 * etags.c (C_entries): Add parentheses. | |
1893 | |
1894 * etags-vmslib.c: Remove. It's not needed anymore. | |
1895 | |
1896 Fri Apr 17 12:59:35 1998 Andy Piper <andyp@parallax.co.uk> | |
1897 | |
1898 * installexe.sh: New file. | |
1899 | |
1900 1998-04-17 Olivier Galibert <galibert@pobox.com> | |
1901 | |
1902 * etags.c (print_help): Correct typo. | |
1903 | |
1904 1998-04-16 SL Baur <steve@altair.xemacs.org> | |
1905 | |
1906 * Makefile.in.in: Add -DOO_BROWSER to etags arguments. | |
1907 | |
1908 * etags.c: Synch with InfoDock. | |
1909 | |
1910 * update-autoloads.sh: Don't attempt to eval `make-special' stuffs | |
1911 anymore. They are no longer used. | |
1912 * update-custom.sh: Always check in lisp/. | |
1913 | |
1914 1998-03-18 Jan Vroonhof <vroonhof@math.ethz.ch> | |
1915 | |
1916 * gnuclient.c (main): Do not copy string unnecessary in (too) | |
1917 small buffers. | |
1918 | |
1919 1998-03-02 SL Baur <steve@altair.xemacs.org> | |
1920 | |
1921 * update-elc.sh: Change all -q -no-site-file to -vanilla | |
1922 | |
1923 1998-02-27 SL Baur <steve@altair.xemacs.org> | |
1924 | |
1925 * update-elc.sh (ignore_pattern): Add Installation.el, remove old | |
1926 stuff from 20.4. | |
1927 | |
1928 Tue Feb 17 12:50:37 1998 Andy Piper <andyp@parallax.co.uk> | |
1929 | |
1930 * lib-src/Makefile.in.in: make sure clean removes msw executables | |
1931 | |
1932 1998-02-24 SL Baur <steve@altair.xemacs.org> | |
1933 | |
1934 * gnuserv.h: Enable USE_TMPDIR. | |
1935 | |
1936 1998-02-23 Glynn Clements <glynn@sensei.co.uk> | |
1937 | |
1938 * gnuclient.c (main): initialise variable `tmpdir' from the TMPDIR | |
1939 environment variable. | |
1940 | |
1941 * gnuserv.c (various): replace hardcoded references to /tmp with | |
1942 the value of `tmpdir'. | |
1943 (main): initialise variable `tmpdir' from the TMPDIR | |
1944 environment variable. | |
1945 | |
1946 * gnuserv.h: include (commented-out) definition of USE_TMPDIR. | |
1947 Add `extern char *tmpdir'. | |
1948 | |
1949 * gnuslib.c (various): replace hardcoded references to /tmp with | |
1950 the value of `tmpdir'. | |
1951 | |
1952 1998-02-15 SL Baur <steve@altair.xemacs.org> | |
1953 | |
1954 * getopt.c (_getopt_internal): Add braces for clarity. | |
1955 | |
1956 1998-01-13 Martin Buchholz <martin@xemacs.org> | |
1957 | |
1958 * lib-src/add-little-package.sh: | |
1959 * lib-src/add-big-package.sh: | |
1960 Use proper paranoid quoting for sh variables. | |
1961 -batch implies -q. | |
1962 | |
1963 Thu Jan 08 09:42:36 1998 <andyp@parallax.co.uk> | |
1964 | |
1965 * gnuserv.h: only set UNIX_DOMAIN_SOCKETS if HAVE_SYS_UN_H is | |
1966 set. | |
1967 | |
1968 * gnuserv.c: tidy up so that it builds when we don't have | |
1969 UNIX_DOMAIN_SOCKETS. | |
1970 | |
1971 1998-01-07 SL Baur <steve@altair.xemacs.org> | |
1972 | |
1973 * update-elc.sh (ignore_pattern): Replace -vanilla with `-q | |
1974 -no-site-file'. | |
1975 * update-autoloads.sh (dirs): Ditto. | |
1976 * update-custom.sh (dirs): Ditto. | |
1977 | |
1978 1997-12-18 SL Baur <steve@altair.xemacs.org> | |
1979 | |
1980 * update-elc.sh (mule_p): Remove skk's special treatment. | |
1981 | |
1982 1997-12-09 SL Baur <steve@altair.xemacs.org> | |
1983 | |
1984 * update-elc.sh (ignore_pattern): Correct paths of files that | |
1985 should not be bytecompiled, and remove dead files. | |
1986 | |
1987 1997-12-02 SL Baur <steve@altair.xemacs.org> | |
1988 | |
1989 * update-elc.sh (mule_p): Update for addition of SKK. | |
1990 | |
1991 * update-autoloads.sh (mule_p): Update ignore_dirs for | |
1992 lisp/language and lisp/skk. | |
1993 * update-custom.sh (mule_p): Ditto. | |
1994 | |
1995 1997-11-29 Jeff Miller <jmiller@smart.net> | |
1996 | |
1997 * Makefile.in.in: Changed path to blessmail.el for blessmail target | |
1998 to match new lisp directory layout. | |
1999 | |
2000 1997-11-27 SL Baur <steve@altair.xemacs.org> | |
2001 | |
2002 * update-elc.sh: Obliterate usage of make_special, since nothing | |
2003 requires it any more. | |
2004 | |
2005 1997-11-23 SL Baur <steve@altair.xemacs.org> | |
2006 | |
2007 * update-elc.sh (BYTECOMP): cleantree.el has been moved. | |
2008 | |
2009 1997-11-18 Colin Rafferty <craffert@ml.com> | |
2010 | |
2011 * update-elc.sh (prune_vc): Made it ignore any directory that | |
2012 starts with a period. | |
2013 | |
2014 1997-11-16 SL Baur <steve@altair.xemacs.org> | |
2015 | |
2016 * gnuserv.c (main): make return type int. | |
2017 Suggested by Andreas Jaeger <aj@arthur.rhein-neckar.de> | |
2018 | |
2019 * fakemail.c (main): Ditto. | |
2020 | |
2021 1997-11-13 SL Baur <steve@altair.xemacs.org> | |
2022 | |
2023 * pop.c: Add includes from movemail.c so standard functions get | |
2024 declared. | |
2025 (pop_retrieve): Return NULL if falling off the end of the | |
2026 function. | |
2027 | |
2028 * movemail.c: Hide declarations of popmail(), mbx_write(), | |
2029 mbc_delimit_begin(), and mbx_delimit_end() behind MAIL_USE_POP | |
2030 guard. | |
2031 (pop_retr): Change 4th parameter to void *. | |
2032 | |
2033 1997-11-02 SL Baur <steve@altair.xemacs.org> | |
2034 | |
2035 * update-custom.sh (dirs): Remove packaged directories. | |
2036 | |
2037 * update-elc.sh (ignore_pattern): Hyperbole, oobr and ilisp are | |
2038 now packaged. | |
2039 | |
2040 * update-autoloads.sh (mule_p): Hyperbole and oobr are now | |
2041 packaged. | |
2042 | |
2043 1997-10-30 SL Baur <steve@altair.xemacs.org> | |
2044 | |
2045 * update-autoloads.sh (mule_p): EFS has been packaged. | |
2046 * update-elc.sh (make_special_commands): Ditto. | |
2047 | |
2048 * update-elc.sh: VM has been packaged. | |
2049 | |
2050 * update-autoloads.sh: Add directory language | |
2051 | |
2052 1997-10-23 SL Baur <steve@altair.xemacs.org> | |
2053 | |
2054 * update-elc.sh (BYTECOMP): Specify -vanilla | |
2055 * update-autoloads.sh (dirs): Ditto. | |
2056 * update-custom.sh (dirs): Ditto. | |
2057 | |
2058 1997-10-10 Martin Buchholz <mrb@eng.sun.com> | |
2059 | |
2060 * config.values.in: Run config.values.sh | |
2061 | |
2062 1997-10-09 SL Baur <steve@altair.xemacs.org> | |
2063 | |
2064 * Makefile.in.in (PKG_SCRIPTS): Add new package manipulation | |
2065 scripts. | |
2066 | |
2067 * add-little-package.sh: New file. Support script to install | |
2068 single file packages. | |
2069 | |
2070 * Makefile.in.in (distclean): Reverse change -- do not remove | |
2071 config.values.in. | |
2072 Suggested by: Martin Buchholz <mrb@Eng.Sun.COM> | |
2073 | |
2074 1997-10-06 SL Baur <steve@altair.xemacs.org> | |
2075 | |
2076 * Makefile.in.in (distclean): Remove config.values.in. | |
2077 From Martin Buchholz <mrb@Eng.Sun.COM> | |
2078 | |
2079 1997-10-04 SL Baur <steve@altair.xemacs.org> | |
2080 | |
2081 * update-autoloads.sh (mule_p): W3 is a package now. | |
2082 | |
2083 1997-09-30 SL Baur <steve@altair.xemacs.org> | |
2084 | |
2085 * update-elc.sh (ignore_pattern): Don't attempt bytecompiling | |
2086 lisp/leim/quail/tibetan.el and lisp/language/tibet-util.el. | |
2087 | |
2088 1997-09-29 SL Baur <steve@altair.xemacs.org> | |
2089 | |
2090 * update-elc.sh (mule_p): Ignore mu/latex-math-symbol.el if we're | |
2091 not building with Mule. | |
2092 | |
2093 1997-09-27 Hrvoje Niksic <hniksic@srce.hr> | |
2094 | |
2095 * update-custom.sh: New file. | |
2096 | |
2097 * update-autoloads.sh: Minor fixes. | |
2098 | |
2099 1997-08-11 Jeff Miller <jmiller@smart.net> | |
2100 * Makefile.in.in: Added a test for system-type equal to linux to | |
2101 lisp/paths.el. Mail spool dir should be /var/spool/mail. | |
2102 | |
2103 * cleaned up lib-src/Makefile.in.in regarding targets blessmail and | |
2104 maybe-blessmail. Added target do-blessmail. Makefile.in.in was also | |
2105 missing a variable called "configuration. This messed up archilibdir. | |
2106 | |
2107 * Added highlighting to text suggesting to do "make gzip-el" in top | |
2108 level Makefile.in. Added code to do make maybe-blessmail after a | |
2109 make install is done. | |
2110 | |
2111 1997-08-07 Jan Vroonhof <vroonhof@math.ethz.ch> | |
2112 | |
2113 * gnuclient.c (main): Made help string correspond to options. | |
2114 | |
2115 1997-08-01 SL Baur <steve@altair.xemacs.org> | |
2116 | |
2117 * Makefile.in.in (distclean): Remove config.values here only. | |
2118 | |
2119 1997-07-27 SL Baur <steve@altair.xemacs.org> | |
2120 | |
2121 * Makefile.in.in (UTILITIES): Add config.values so it can be | |
2122 cleared away by `make distclean'. | |
2123 | |
2124 1997-07-21 SL Baur <steve@altair.xemacs.org> | |
2125 | |
2126 * update-elc.sh (make_special_commands): Remove processing for | |
2127 Gnus and AUCTeX. | |
2128 | |
2129 1997-07-19 SL Baur <steve@altair.xemacs.org> | |
2130 | |
2131 * update-elc.sh (mule_p): Do not attempt to bytecompile | |
2132 char-table.el and chartblxmas.el. | |
2133 | |
2134 1997-07-08 Steven L Baur <steve@altair.xemacs.org> | |
2135 | |
2136 * update-elc.sh (cc-mode): Don't give cc-mode special treatment. | |
2137 | |
2138 * update-autoloads.sh (cc-mode): Don't give cc-mode special | |
2139 treatment. | |
2140 | |
2141 * rcs2log: Synch with Emacs/Mule zeta. | |
2142 | |
2143 1997-07-03 Steven L Baur <steve@altair.xemacs.org> | |
2144 | |
2145 * update-elc.sh (make_special_commands): Fix building of ilisp so | |
2146 custom-load.elc gets built. | |
2147 | |
2148 1997-06-27 Steven L Baur <steve@altair.xemacs.org> | |
2149 | |
2150 * update-autoloads.sh: Major rework. Avoid looking at MULE | |
2151 directories if not running XEmacs/Mule. | |
2152 - Look into all Mule directories for building autoloads. | |
2153 | |
2154 * update-elc.sh (make_special_commands): Fix handling of | |
2155 bytecompilation of AUCTeX to avoid looking at tex-jp.el if not | |
2156 running MULE. | |
2157 | |
2158 1997-06-24 Steven L Baur <steve@altair.xemacs.org> | |
2159 | |
2160 * gnuattach: Needed executable bit set. | |
2161 Suggested by Kyle Jones <kyle_jones@wonderworks.com> | |
2162 | |
2163 * update-elc.sh (ignore_pattern): lisp/language/ethiopic byte | |
2164 compiles now. | |
2165 | |
2166 1997-06-24 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
2167 | |
2168 * update-autoloads.sh: Search lisp/mule/. | |
2169 | |
2170 1997-06-20 Steven L Baur <steve@altair.xemacs.org> | |
2171 | |
2172 * gnuattach: Readd as warning script. | |
2173 | |
2174 * Makefile.in.in (INSTALLABLE_SCRIPTS): Readd Gnuattach. | |
2175 From Hrvoje Niksic <hniksic@srce.hr> | |
2176 | |
2177 1997-06-13 Steven L Baur <steve@altair.xemacs.org> | |
2178 | |
2179 * update-elc.sh (mule_p): Ignore lisp/language when building | |
2180 non-Mule. | |
2181 (ignore_pattern): Ignore Languages we don't support yet. | |
2182 | |
2183 1997-06-02 Steven L Baur <steve@altair.xemacs.org> | |
2184 | |
2185 * update-elc.sh (ignore_dirs): Handle ported Quail (LEIM). | |
2186 | |
2187 Tue May 20 23:22:00 1997 Steven L Baur <steve@altair.xemacs.org> | |
2188 | |
2189 * update-autoloads.sh (dirs): Remove obsolete directory lisp/vms | |
2190 from exclusion list (it doesn't exist any more). Remove | |
2191 lisp/eterm from exclusion list of directories searched for | |
2192 autoloads. | |
2193 | |
2194 Thu May 1 15:26:20 1997 Steven L Baur <steve@altair.xemacs.org> | |
2195 | |
2196 * update-elc.sh (mule_p): Test for mule bombs with change in format | |
2197 of new output of featurep. | |
2198 | |
2199 Fri Apr 25 09:12:04 1997 Steven L Baur <steve@altair.xemacs.org> | |
2200 | |
2201 * pstogif: Use Martin Buchholz magic to automagically find perl | |
2202 interpreter. | |
2203 | |
2204 Tue Apr 8 03:08:22 1997 Steven L Baur <steve@altair.xemacs.org> | |
2205 | |
2206 * Makefile.in.in: C Comment out Make comments. No snide comments | |
2207 from me, no sir. | |
2208 | |
2209 Tue Apr 1 12:26:53 1997 Steven L Baur <steve@altair.xemacs.org> | |
2210 | |
2211 * Makefile.in.in: Added stuff for updated movemail.c. | |
2212 | |
2213 Sat Mar 29 16:57:01 1997 Steven L Baur <steve@altair.xemacs.org> | |
2214 | |
2215 * send-pr (GNATS_ADDR): Use xemacs.org as submission address. | |
2216 (DATADIR): Allow for DATADIR to be passed in as an environment | |
2217 variable. | |
2218 | |
2219 Sun Mar 23 15:57:19 1997 Steven L Baur <steve@altair.xemacs.org> | |
2220 | |
2221 * update-elc.sh (make_special_commands): Use target of x20 for efs. | |
2222 | |
2223 Wed Mar 19 10:38:04 1997 Steven L Baur <steve@altair.xemacs.org> | |
2224 | |
2225 * Makefile.in.in (SCRIPTS): Link gzip-el.sh in --srcdir | |
2226 configuration. | |
2227 | |
2228 Tue Mar 18 17:49:14 1997 Steven L Baur <steve@altair.xemacs.org> | |
2229 | |
2230 * update-elc.sh (EMACS): Removed $XEMACS backdoor. We will make | |
2231 the .elcs *only* with the freshly built XEmacs. | |
2232 | |
2233 Mon Mar 17 10:12:03 1997 Steven L Baur <steve@altair.xemacs.org> | |
2234 | |
2235 * Makefile.in.in (INSTALLABLE_SCRIPTS): Add install-sid and | |
2236 send-pr (from GNATS). | |
2237 | |
2238 * update-elc.sh (prune_vc): Use full path to cleantree.el. | |
2239 (NUMTOCOMPILE): Remove useless rule to recompile out-of-date .elcs. | |
2240 | |
2241 Sun Mar 16 21:13:29 1997 Steven L Baur <steve@altair.xemacs.org> | |
2242 | |
2243 * install-sid: New file (GNATS integration). | |
2244 | |
2245 * send-pr: New file (GNATS integration). | |
2246 | |
2247 Fri Mar 14 17:59:57 1997 Steven L Baur <steve@altair.xemacs.org> | |
2248 | |
2249 * update-elc.sh (ignore_dirs): Build VM with `make autoload'. | |
2250 | |
2251 Wed Mar 5 18:07:57 1997 Steven L Baur <steve@altair.xemacs.org> | |
2252 | |
2253 * gzip-el.sh: New file. Courtesy of Jeff Miller and Hrvoje Niksic. | |
2254 | |
2255 * update-elc.sh (els): Remove out of date .elcs before building. | |
2256 | |
2257 Tue Mar 4 18:45:10 1997 Martin Buchholz <mrb@eng.sun.com> | |
2258 | |
2259 * update-elc.sh (els): No more special treatment for vm.elc. | |
2260 | |
2261 Wed Feb 26 18:17:59 1997 Steven L Baur <steve@altair.xemacs.org> | |
2262 | |
2263 * make-docfile.c (next_extra_elc): New function. | |
2264 (main): Use it. Implementation of `-i' parameter to pass a list | |
2265 of site-loaded lisp files. | |
2266 | |
2267 Wed Feb 19 18:24:49 1997 Steven L Baur <steve@altair.xemacs.org> | |
2268 | |
2269 * update-elc.sh: Added lisp/auctex. | |
2270 | |
2271 Thu Feb 13 11:32:47 1997 Steven L Baur <steve@altair.xemacs.org> | |
2272 | |
2273 * Makefile.in.in: Install pstogif script. | |
2274 | |
2275 Sun Dec 29 17:16:45 1996 Martin Buchholz <mrb@eng.sun.com> | |
2276 | |
2277 * update-elc.sh (make_special_commands): Make ilisp be a little | |
2278 smarter about recompilation. | |
2279 | |
2280 Wed Dec 18 20:22:55 1996 Martin Buchholz <mrb@eng.sun.com> | |
2281 | |
2282 * mmencode.c: Don't declare index(). | |
2283 | |
2284 * Makefile.in.in: Documentation changes. | |
2285 | |
2286 * update-elc.sh: Portability Fix. | |
2287 | |
2288 Thu Dec 5 15:41:53 1996 Martin Buchholz <mrb@Eng.Sun.COM> | |
2289 | |
2290 * update-elc.sh: Corrections to protect against too smart /bin/sh'es. | |
2291 | |
5440
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5290
diff
changeset
|
2292 |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5290
diff
changeset
|
2293 ChangeLog entries synched from GNU Emacs are the property of the FSF. |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5290
diff
changeset
|
2294 Other ChangeLog entries are usually the property of the author of the |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5290
diff
changeset
|
2295 change. |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5290
diff
changeset
|
2296 |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5290
diff
changeset
|
2297 This file is part of XEmacs. |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5290
diff
changeset
|
2298 |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5290
diff
changeset
|
2299 XEmacs is free software: you can redistribute it and/or modify it |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5290
diff
changeset
|
2300 under the terms of the GNU General Public License as published by the |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5290
diff
changeset
|
2301 Free Software Foundation, either version 3 of the License, or (at your |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5290
diff
changeset
|
2302 option) any later version. |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5290
diff
changeset
|
2303 |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5290
diff
changeset
|
2304 XEmacs is distributed in the hope that it will be useful, but WITHOUT |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5290
diff
changeset
|
2305 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5290
diff
changeset
|
2306 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5290
diff
changeset
|
2307 for more details. |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5290
diff
changeset
|
2308 |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5290
diff
changeset
|
2309 You should have received a copy of the GNU General Public License |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5290
diff
changeset
|
2310 along with XEmacs. If not, see <http://www.gnu.org/licenses/>. |