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