Mercurial > hg > xemacs-beta
annotate CHANGES-beta @ 5155:c97dc3b6de63
partially update CHANGES-beta
-------------------- ChangeLog entries follow: --------------------
ChangeLog addition:
2010-03-18 Ben Wing <ben@xemacs.org>
* CHANGES-beta:
Partially updated with last couple of months worth of changes.
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Thu, 18 Mar 2010 10:17:13 -0500 |
parents | 432f7d701731 |
children | e785e579b084 |
rev | line source |
---|---|
5155 | 1 to XEmacs 21.5.30 "harblegarble" |
2 | |
3 by Ben Wing: | |
4 | |
5 debugging: | |
6 | |
7 -- make objects consistently print a UID, with a separate number space per | |
8 object type | |
9 -- add variable `debug-soe' for debugging stack-of-extents code in extents.c | |
10 -- correctly note pdumped objects in memory-usage stats returned by | |
11 `garbage-collect' and `object-memory-usage-stats'. | |
12 -- make VDB debugging functions (e.g. `test-segfault', which causes an | |
13 immediate crash!) conditional on `--with-debug' | |
14 -- rename `debug-xemacs-searches' -> `debug-searches' | |
15 -- Turn on "compiled-function annotation hack" so that compiled-function | |
16 objects print the function they are assigned to | |
17 -- Resurrect byte-metering code when --with-debug; enable with variables | |
18 `byte-code-meter', `byte-metering-on' | |
19 -- Add more checks for invalid byte code; when a byte-code-related crash | |
20 occurs, output the last 100 instructions processed | |
21 | |
22 documentation: | |
23 | |
24 -- fix to `previous/next-single[-char]-property-change' | |
25 | |
26 Lisp API: | |
27 | |
28 -- `set-frame-displayable-pixel-height' and friends had bugs in them, esp. | |
29 on MS Windows, where they didn't work; fixed | |
30 -- `frame-pixel-height', `set-frame-pixel-height' and friends will now | |
31 use updated values for frame size (as of next redisplay) when the frame | |
32 was previously resized but a redisplay has not yet happened | |
33 -- When `set-case-table' called with a length-256 vector, don't overwrite | |
34 existing case table; instead, populate a new table | |
35 -- Fix internal case comparisons to use the "canonical case mapping" so that | |
36 they always work even in the presence of complex case mappings (other | |
37 than just upper -> lower and lower -> upper) | |
38 -- In `scan-lists' and friends, when an error occurs, return a `scan-error' | |
39 along with two arguments specifying the range in which the error occurred, | |
40 for GNU compatibility | |
41 | |
42 Internals: | |
43 | |
44 -- reduce lcrecord header size from 3 words to 2 | |
45 -- major change to the way Lisp objects are defined and declared; introduce | |
46 a cleaner surface-layer API that eliminates references to "lrecords" and | |
47 "lcrecords", and uses "frob-block object" in place of "basic object"/ | |
48 "simple object"/etc. | |
49 -- new disksave method for Lisp objects, separated out from the finalize method | |
50 -- Lisp objects now must specify a print method; use either | |
51 internal_object_printer() or external_object_printer() as a default | |
52 -- equal method for Lisp objects has new `foldcase' param, to implement | |
53 case-folding comparison ala `equalp' | |
54 -- various changes to frame-geometry macros in frame-impl.h, gutter.h, etc., | |
55 and frame-sizing code in frame.c | |
56 -- Major rewrite, updated documentation to dynarr functions and macros | |
57 -- Major updates to internals manual and long comments in C files: | |
58 frame geometry, specifier authors, MS-Windows compilation flags, xlike | |
59 mechanism, ... | |
60 -- Rename LISP_TO_VOID -> STORE_LISP_IN_VOID, | |
61 VOID_TO_LISP -> GET_LISP_FROM_VOID; add STORE_VOID_IN_LISP, | |
62 GET_VOID_FROM_LISP | |
63 -- Convert various source files to UTF-8 | |
64 -- File renames: | |
65 select-common.h -> select-xlike-inc.c | |
66 xgccache.{ch} -> gccache-x.{ch} | |
67 toolbar-common.{ch} -> toolbar-xlike.{ch} | |
68 -- New files: | |
69 bytecode-ops.h | |
70 sysgtk.h, sysgdkx.h | |
71 keymap-buttons.h, keymap-slots.h | |
72 -- Deleted files: | |
73 event-gtk.h | |
74 -- Major reworking of DFC macros e.g. EXTERNAL_TO_C_STRING renamed to | |
75 EXTERNAL_TO_ITEXT; make them return their values when possible rather | |
76 than storing into a named variable | |
77 -- Eliminate unused second argument to xfree() | |
78 -- separate HAVE_XFT into HAVE_XFT and USE_XFT, to facilitate compiling | |
79 simultaneously with X and GTK | |
80 -- Move `equalp' to C | |
81 | |
82 Testing: | |
83 | |
84 -- Move test-harness.el to Lisp directory | |
85 | |
86 Building: | |
87 | |
88 -- Fix `--quick-build' so full rebuilds don't happen when changes are made | |
89 to files like lisp.h, config.h that are included by all C files | |
90 -- Fix C++ build on Cygwin when configured with --have-database | |
91 | |
92 User-Visible Bug Fixes: | |
93 | |
94 -- `escape-quoted' was failing to add escape quoting to Control-1 characters; | |
95 many potential byte-code-related crashes may have resulted from the old | |
96 behavior | |
97 -- Fix a redisplay bug where args to default_face_height_and_width() were | |
98 in wrong order | |
99 -- "speedy insert" code (to make `revert-buffer' preserve extents, markers, | |
100 etc. in unmodified sections of a reverted file) was broken with binary | |
101 files | |
102 -- File-locking code now names lock files .#FN# instead of .#FN, to avoid | |
103 problems with programs that e.g. try to process all .c or .h files | |
104 -- Fix a crash in frame creation due to lack of call to reset_glyph_cachels() | |
105 -- Fix long-standing bug: searching for Control-1 chars didn't work | |
106 -- Turn on `load-ignore-out-of-date-elc-files' by default | |
107 | |
108 | |
109 | |
110 by Didier Verna: | |
111 | |
112 Lisp API: | |
113 | |
114 -- new `background-placement' property of faces; with a value of `absolute', | |
115 the background pixmap is drawn relative to the root window, allowing | |
116 seamless integration with the desktop background | |
117 | |
118 by Jerry James: | |
119 | |
120 Lisp API: | |
121 | |
122 -- signal an error instead of crashing when encountering a ratio like 1/0 | |
123 | |
124 Internals: | |
125 | |
126 -- locate and add copyright notices to various files in preparation for | |
127 move to GPL v3 | |
128 | |
129 | |
130 | |
4635
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
131 to XEmacs 21.5.29 "garbanzo" |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
132 |
4633
199ecf2503c8
Add standard section headers in preparation for 21.5.29.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
3973
diff
changeset
|
133 Major Features and Backward Incompatible Changes |
4635
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
134 |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
135 -- new: (incompatible) with-esc coding systems for 8-bit coding systems -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
136 -- improve: (incompatible) Avoid errors in substitute-in-file-name -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
137 |
4633
199ecf2503c8
Add standard section headers in preparation for 21.5.29.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
3973
diff
changeset
|
138 User-Visible Bug Fixes and Minor Improvements |
4635
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
139 |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
140 -- new: Command-line argument --script (GNU compatible) -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
141 -- new: Just-in-time Unicode charsets -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
142 -- new: Support extended mouse buttons -- Mats Lidell |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
143 -- new: Support printing big numbers as base 2 -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
144 -- new: Windows icons -- Dan Polansky, Stephen Turnbull |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
145 -- new: write_region_inhibit_fsync -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
146 -- fix: ?\<newline> caused assert -- Mike Sperber |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
147 -- fix: Crash on null font instance -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
148 -- fix: Cygwin run command needs an extra ShowWindow -- Vin Shelton |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
149 -- fix: Frame change pending flag doesn't get reset -- Ron Isaacson |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
150 -- fix: GTK key defaults initialized incorrectly -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
151 -- fix: Little-endian UTF-16 surrogate handling is incorrect -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
152 -- fix: Off-by-one error in ccl_driver -- Julian Bradfield |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
153 -- fix: Printed char table values confuse strings and symbols -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
154 -- fix: Setting noninteractive window-system to 'stream contradicts docs -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
155 -- fix: Stage 2 font matching doesn't work for msprinter -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
156 -- fix: Window grow and shrink weren't quite inverses -- Mike Sperber |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
157 -- fix: at_dot in regexps fails on non-ASCII -- Julian Bradfield |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
158 -- fix: bigfloat_to_string is very broken -- Jerry James |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
159 -- fix: open-database ignores CODESYS -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
160 -- fix: openbox can't find frame icons -- Henry S. Thompson, Stephen Turnbull |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
161 -- fix: set_window_pixsize ignores modeline -- Mike Sperber |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
162 -- fix: simple_search would underrun in reverse search -- Stephen Turnbull |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
163 -- improve: User variable (including customize) handling -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
164 -- improve: bind mousewheel by default -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
165 -- improve: custom-face-prompt suggests faces at point -- Didier Verna, Andreas Rohler |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
166 |
4633
199ecf2503c8
Add standard section headers in preparation for 21.5.29.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
3973
diff
changeset
|
167 Build Infrastructure |
4635
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
168 |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
169 -- new: Check for FcConfig{Get,Set}RescanInterval -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
170 -- new: Preliminary work to support bundled packages -- Stephen Turnbull |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
171 -- new: Support Intel's compiler -- Vin Shelton |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
172 -- fix: %WindowsSdkDir%, %MSSddk% weren't checked for headers -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
173 -- fix: AC_CHECK_LIB was applied to variable -- Andreas Schwab, Mike Fabian, Martin Buchholz |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
174 -- fix: Autoload processing might miss some -- Mike Sperber |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
175 -- fix: Bad M4 syntax leading to bogus compile failures in configure -- Vladimir Ivanovic, Aidan Kehoe, Martin Buchholz, Stephen Turnbull |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
176 -- fix: Check for explicit installation path were bogus -- Mike Sperber |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
177 -- fix: Configuration of write barrier failed on Mac OS X/Intel -- Marcus Crestani |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
178 -- fix: INFOPATH was not set by configure -- Mike Sperber |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
179 -- fix: Inadvertant diversion of 'share' to 'lib' for datadir -- Mike Sperber |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
180 -- fix: Make used the wrong finder*.el -- Ville Skyttä |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
181 -- fix: Move autoload operator definitions to xemacs-base to handle new operators more easily -- Mike Sperber, Stephen Turnbull |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
182 -- fix: Multiple late package directories were allowed -- Stephen Turnbull |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
183 -- fix: Typos (bugs) -- Mats Lidell |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
184 -- fix: Typos (ugly) -- Stephen Turnbull, Ville Skyttä |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
185 -- fix: URL for optional libraries in config.inc.samp -- Mike Sperber |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
186 -- fix: dbm and Berkeley db checks -- Hans de Graaf, Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
187 -- fix: make-docfile.el sometimes checks wrong dependency -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
188 -- improve: G++ detection with --xemacs-compiler -- Stephen Turnbull |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
189 -- improve: Pointers to package docs in INSTALL -- Stephen Turnbull |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
190 -- improve: Use Mercurial tip hash to identify beta builds -- Mike Sperber |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
191 -- improve: Use different defaults for --with-xft=yes/no -- Mats Lidell |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
192 -- improve: Use pkg-config to find Xft -- Mike Sperber |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
193 -- improve: gnudbm is universally called "gdbm" now -- Stephen Turnbull |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
194 -- update: Create xe_fst to replace m4_fst (gone in autoconf 2.62) -- Ville Slyttä |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
195 -- update: Makefiles for Windows -- Adrian aichner |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
196 -- update: PATH defines -- Mike Sperber |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
197 -- update: config.guess, config.sub to 2009-02-02 -- Jerry James |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
198 -- update: datarootdir conformance -- Mike Sperber |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
199 -- update: install.sh is now install-sh, and sync to current FSF -- Jerry James |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
200 -- update: nt/xemacs.mak (sync to Unix) -- Adrian Aichner |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
201 -- update: support for Visual Studio 2005 manifests in nt -- Vin Shelton |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
202 |
4633
199ecf2503c8
Add standard section headers in preparation for 21.5.29.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
3973
diff
changeset
|
203 Documentation |
4635
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
204 |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
205 -- improve: Description of image files in README -- Stephen Turnbull |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
206 -- improve: FAQ -- Stephen Turnbull |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
207 -- improve: HELLO uses UTF-8 for Arabic -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
208 -- improve: Internals manual -- Stephen Turnbull, Ville Skyttä, Aidan Kehoe, Adrian Aichner |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
209 -- improve: Lisp Reference -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
210 -- improve: Misc. Texinfo manuals -- Ville Skyttä |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
211 -- improve: User Guide -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
212 -- improve: xemacs.1 -- Shyamal Prasad |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
213 -- update: Personal info -- Vin Shelton, Didier Verna |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
214 |
4633
199ecf2503c8
Add standard section headers in preparation for 21.5.29.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
3973
diff
changeset
|
215 Lisp API |
4635
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
216 |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
217 -- new: Support hash table lookup in CCL -- Dave Love, Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
218 -- new: ascii-case-table (GNU API) -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
219 -- new: bit-vector-to-integer -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
220 -- new: check-coding-systems-region (API from GNU) -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
221 -- new: debug-xemacs-searches -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
222 -- new: encode-coding-char (GNU API) -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
223 -- new: error-sequence-coding-system -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
224 -- new: fc-pattern-get-or-compute-size -- Mike Sperber |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
225 -- new: format-time-string specs %z, %g, %G and %V (GNU sync) -- Shyamal Prasad |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
226 -- new: frob-unicode-errors-region -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
227 -- new: improve ability to describe text (GNU sync) -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
228 -- new: integer-to-bit-vector -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
229 -- new: intern-soft DEFAULT argument -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
230 -- new: make-temp-file (GNU sync) -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
231 -- new: map-charset-chars (GNU API) -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
232 -- new: no-fallback flag for specifier instantiation -- Didier Verna |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
233 -- new: query-coding-clear-highlights (internal) -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
234 -- new: query-coding-region -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
235 -- new: query-coding-string -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
236 -- new: replace-regexp-in-string handles SUBEXP incorrectly -- Stephen Turnbull |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
237 -- new: resize-temp-buffer-window (GNU-compatible alias) -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
238 -- new: skip-chars-quote -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
239 -- new: subr-arity (API from GNU) -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
240 -- new: support auto-autoload of coding systems -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
241 -- new: system-type-file-name-coding -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
242 -- new: temp-buffer-resize-mode (GNU API) -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
243 -- new: unencodable-char-position (GNU API) -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
244 -- new: unicode-error-default-translation-table -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
245 -- new: unicode-error-sequence-regexp-range -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
246 -- new: unicode-error-translate-region -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
247 -- new: with-case-table (GNU sync) -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
248 -- fix: Map all Big5 characters -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
249 -- fix: ascii-case-table called put-case-table-pair incorrectly -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
250 -- fix: check-coding-systems-region returned wrong value -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
251 -- fix: coding-system-for-read defaults to undecided -- Mike Sperber |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
252 -- fix: custom-save-all can corrupt GNU code in .emacs -- Jason Spiro, Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
253 -- fix: custom-theme-reset-internal called get incorrectly -- Stephen Turnbull |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
254 -- fix: display-graphic-p could pass an invalid device -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
255 -- fix: expand-region-abbrevs is case-sensitive -- Adrian Aichner |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
256 -- fix: insert-file-contents and load called substitute-in-file-name -- Mike Sperber |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
257 -- fix: leim-list-file-name wasn't used -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
258 -- fix: revert-buffer, recover-file set modiff in Mule -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
259 -- fix: setenv gets confused by implicit abbrev table -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
260 -- fix: special-form-p errors on subrs -- Jerry James, Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
261 -- fix: split-window and delete-window can be broken by advice -- Henry S. Thompson |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
262 -- fix: write-region can give bogus results with coding system symbols -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
263 -- fix: x-color-list-internal didn't return a list of strings -- Stephen Turnbull |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
264 -- fix: x_init_device maybe used uninitialized variables -- Jerry James |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
265 -- improve: CODING-SYSTEM-OR-MUSTBENEW argument to write-region (GNU compatibility) -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
266 -- improve: Distinguish can't find pixmap from don't have method -- Didier Verna |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
267 -- improve: Maybe use bignums in file-attributes -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
268 |
4633
199ecf2503c8
Add standard section headers in preparation for 21.5.29.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
3973
diff
changeset
|
269 Internal API and Implementation |
4635
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
270 |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
271 -- new: 8-bit coding systems in CCL -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
272 -- new: Bind shift-delete to kill-primary-selection -- Aidan Kehoe, Glynn Clements |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
273 -- new: English environments with Windows-1252 and UTF-8 -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
274 -- new: Implement invalid octet sequence handling in codecs -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
275 -- new: Implement safe-charsets and safe-chars -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
276 -- new: Installation-file-coding-system -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
277 -- new: TYPE argument for symbol-file (GNU API) -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
278 -- new: UTF-32 coding systems -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
279 -- new: vars_of_console_gtk -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
280 -- new: version.el, refactored from loadup.el -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
281 -- fix: 64-bit cleanliness -- Stephen Turnbull, Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
282 -- fix: Argument order in query-coding-string was wrong -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
283 -- fix: Assertion in make-docfile: Visual C++ doesn't think Unix line endings are text -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
284 -- fix: Buffer overflow in doprnt -- Sebastian Freundt, Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
285 -- fix: Buffer overrun in pdump_load -- Nix |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
286 -- fix: Build chokes on deprecated LDAP API -- Mats Lidell |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
287 -- fix: Changing load-file-name-internal is bad news -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
288 -- fix: Checking Qunbound fails to catch unspecified charset -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
289 -- fix: Comments reference long-defunct mocklisp -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
290 -- fix: Config-dependent defuns wrapped in eval-when-compile -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
291 -- fix: Cygwin >=1.7 doesn't like widechar interfaces -- Vin Shelton |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
292 -- fix: Cygwin warning on undefined __STDC_VERSION__ -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
293 -- fix: Decode Installation-string -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
294 -- fix: Document that query-coding-clear-highlights can take a string -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
295 -- fix: Dynarr_add used where Dynarr_increment is needed -- Jerry James |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
296 -- fix: EOF handled incorrectly in ccl_driver -- Ken'ichi Handa, Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
297 -- fix: Fmswindows_short_file_name, Fmswindows_long_file_name should not have interactive specs -- John Paul Wallington |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
298 -- fix: Functions can be called if not fboundp -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
299 -- fix: GCC 4.3 warning elimination -- Stephen Turnbull |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
300 -- fix: Handle missing directory for init files -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
301 -- fix: Image init assigns to rvalues in GTK -- Ville Skyttä, Dominique Quatravax |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
302 -- fix: Incompatibilities in image libraries on Win32 -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
303 -- fix: Initialize Cygwin X and X.org (as XFree86) -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
304 -- fix: Language environment set up -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
305 -- fix: Local hooks sometimes aren't -- Didier Verna |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
306 -- fix: Many faces need defvars; add some -- Hans de Graaf, Vin Shelton |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
307 -- fix: Memory leaks -- Jerry James, Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
308 -- fix: Migration can corrupt init files -- Mike Sperber |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
309 -- fix: Mismatched parens in ut-log-text -- Paul Keusemann |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
310 -- fix: Modifying build-in-face-specifiers is bad news -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
311 -- fix: Nonrepresentable character caused assert in Boyer-Moore -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
312 -- fix: Numeric overflow in recompute_need_to_garbage_collect -- Nix |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
313 -- fix: Saved windows save buffer point, but shouldn't -- Mike Sperber |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
314 -- fix: Stream and TTY image conversion rules don't make sense -- Didier Verna |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
315 -- fix: Turkish is ISO-8859-9, not -5 -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
316 -- fix: Undocumented internal Xt functions were used -- Kenny Chien |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
317 -- fix: Unused parameter warnings -- Jerry James |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
318 -- fix: Use escape-quoted when needed, add cookie to .elcs -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
319 -- fix: Warning elimination in Canna module -- Stephen Turnbull |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
320 -- fix: Warnings and breakage vs. POSIX/C9X functions on Windows -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
321 -- fix: We don't have jit-lock-mode, needs if-fboundp -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
322 -- fix: Window configuration handling -- Henry S. Thompson, Mike Sperber |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
323 -- fix: XCHAR_OR_INT invoked with side effects in ccl_driver -- Mike Fabian, Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
324 -- fix: XftFont memory leak -- Jerry James |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
325 -- fix: abbrev file coding is wrong -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
326 -- fix: autofilling of comments -- Didier Verna |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
327 -- fix: build-report.el doesn't understand Mercurial id -- Mike Sperber |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
328 -- fix: byte-compile-file encoding was vulnerable to latin-unity -- Stephen Turnbull |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
329 -- fix: face DEFAULT_INDEX is not necessarily 0 -- Didier Verna |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
330 -- fix: file-name-coding-system and its alias -- Aidan Kehoe, Katsumi Yamaoka |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
331 -- fix: function-key-map was incorrect for xfree86 and sun -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
332 -- fix: gnuserv needs to quote temp-directory -- Mike Sperber |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
333 -- fix: isearch highlights matches during keyboard macro -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
334 -- fix: iso-8859-1 on non-Mule breaks EOLs -- Aidan Kehoe, Stephen Turnbull |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
335 -- fix: lost docs due to functions not at toplevel -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
336 -- fix: make-src-depend fails with Perl 5.10 -- Mike Sperber |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
337 -- fix: modeline-update-tty-frame-specifier calls non-existent frame-tty-p -- Ron Isaacson |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
338 -- fix: mouse-read-file-name-1 inconsistent with resize-minibuffer-mode -- Mike Sperber |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
339 -- fix: msprinter specifier tag needs to be always available -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
340 -- fix: mswindows-font-regexp is too strict -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
341 -- fix: other-frame cycles through too many (all) frames -- Ron Isaacson |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
342 -- fix: po is not Polish -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
343 -- fix: raw-text isn't TRT in detected_coding_system -- Mike Sperber |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
344 -- fix: startup code was usurping device-specific roles -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
345 -- fix: winclient didn't try hard enough to connect -- Vin Shelton |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
346 -- fix: xm_update_progress crash (missing values) -- Stephen Turnbull |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
347 -- improve: Add locale information for many languages -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
348 -- improve: Add package-get-download-sites -- Adrian Aichner |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
349 -- improve: Always provide x, tty, mswindows, msprinter, gtk and carbon as device tags -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
350 -- improve: Avoid printing spurious gensyms -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
351 -- improve: Byte compilation warning elimination -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
352 -- improve: Byte compile lambdas in default menus -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
353 -- improve: Byte compiler tweaks -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
354 -- improve: Cyrillic coding and environment support -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
355 -- improve: Description of bindings in describe-function -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
356 -- improve: Detect overlong hex escapes in Lisp reader -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
357 -- improve: Display information functions use accurate device types -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
358 -- improve: Docstrings and comments -- Stephen Turnbull, Aidan Kehoe, Dider Verna |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
359 -- improve: Functions for querying window parameters -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
360 -- improve: Hash function for (short) lists -- Sebastian Freundt, Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
361 -- improve: Identification of source files from Lisp -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
362 -- improve: Info support for LZMA compression -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
363 -- improve: Init file migration -- Mike Sperber |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
364 -- improve: Interactive spec of lm-synopsis -- Stephen Turnbull |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
365 -- improve: Make help distinguish special forms and subrs -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
366 -- improve: Make preloaded-file-list respect new dependencies -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
367 -- improve: Maybe inline delete-duplicates -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
368 -- improve: More characters in x-compose.el -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
369 -- improve: More debug info from startup-setup-paths -- Mike Sperber |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
370 -- improve: NEW_GC implementation (write barrier) -- Marcus Crestani |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
371 -- improve: Optimize Feval -- Sebastian Freundt, Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
372 -- improve: Optimize binding in some compiled functions -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
373 -- improve: Optimize feature checks for xemacs, cl, cl-extra, cl-19, and backquote -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
374 -- improve: Optimize string-to-sequence, string-to-list, string-to-vector (GNU sync) -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
375 -- improve: Path-finding code now deals with multiple bases -- Mike Sperber |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
376 -- improve: Printing of gensyms -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
377 -- improve: Profiler -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
378 -- improve: Refactor symbol-file to use defun* and return-from. |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
379 -- improve: Remove baroque font initialization for GTK -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
380 -- improve: Remove commented code -- Stephen Turnbull |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
381 -- improve: Remove no-op code -- Jerry James |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
382 -- improve: Remove unused functions -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
383 -- improve: Remove unused {x,gtk}-iso8859-1.el -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
384 -- improve: Rework display tables as char-tables -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
385 -- improve: STRBUFFER in replace-match can be a subexpression (GNU sync) -- Stephen Turnbull |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
386 -- improve: Suppress experimental tutorials -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
387 -- improve: Use Boyer-Moore in more cases -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
388 -- improve: Use delete-duplicates instead of local defuns -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
389 -- improve: custom-variable-p needs to be a subr -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
390 -- improve: lambda expression correctness -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
391 -- improve: load-history -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
392 -- improve: make-image-specifier -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
393 -- improve: user options interactive prompting -- Didier Verna |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
394 -- improve: x-compose code -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
395 -- update: Add 'macintosh' as coding system name -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
396 -- update: FSF address -- Stephen Turnbull |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
397 -- update: INLINE_HEADER for C99 semantics -- Jerry James |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
398 -- update: Look for "share", not "lib", as data root (FHS) -- Mike Sperber |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
399 -- update: Remove automatic-conversion coding system -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
400 -- update: Remove vscii and viqr coding systems -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
401 -- update: Rename mule-ccl.el to ccl.el (GNU sync) -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
402 -- update: Support NOMODIFY in set-buffer-file-coding-systems (GNU API) -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
403 -- update: Sync API of encode-coding-char to GNU -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
404 -- update: Sync font lock keyword handling to GNU -- Jerry James |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
405 -- update: add-to-list supports compare-fn (GNU sync) -- Brian Palmer, Aidan Kehoe, Stephen Turnbull |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
406 -- update: etags to Francesco Potorti's 17.33 -- Stephen Turnbull |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
407 -- update: fontconfig has removed some misspelled names -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
408 |
4633
199ecf2503c8
Add standard section headers in preparation for 21.5.29.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
3973
diff
changeset
|
409 Testing and Debugging |
199ecf2503c8
Add standard section headers in preparation for 21.5.29.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
3973
diff
changeset
|
410 |
4635
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
411 -- new: #$ is not modifiable test -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
412 -- new: 8-bit coding system tests -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
413 -- new: Case test -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
414 -- new: Char table printing test -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
415 -- new: Error condition tests for replace-regexp-in-string -- Stephen Turnbull |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
416 -- new: Language environment tests -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
417 -- new: Lists differing only in order hash differently test -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
418 -- new: Little-endian Unicode surrogate tests -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
419 -- new: Symbol documentation tests -- Stephen Turnbull |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
420 -- new: Test that revert does not leave buffer-modified-p -- Stephen Turnbull |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
421 -- new: Unicode coverage tests -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
422 -- new: format tests -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
423 -- new: load-file-name is modifiable -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
424 -- new: print-gensym-alist tests -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
425 -- new: query-coding-tests.el -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
426 -- new: skip-chars-* tests -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
427 -- new: subr-arity tests -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
428 -- new: substitute-in-file-name with nonexistent envvar tests -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
429 -- new: test of at_dot with non-ASCII -- Stephen Turnbull |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
430 -- fix: Tried to test symlinks where they don't work -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
431 -- fix: tests using with-string-as-buffer-contents were doing nothing -- Stephen Turnbull |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
432 -- improve: Checked and renamed reproduce-bugs.el as reproduce-crashes.el. -- Stephen Turnbull |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
433 -- improve: Silence-message doesn't disable clear-message -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
434 -- improve: Use make-temp-file where appropriate -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
435 -- improve: escape-quoted tests -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
436 -- improve: remove unneeded debug code from tests -- Stephen Turnbull |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
437 -- improve: sanity[sic] of CCL tests -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
438 -- update: Test all 2^21 characters in Mule -- Aidan Kehoe |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
439 |
432f7d701731
Update CHANGES-beta for "garbanzo".
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4633
diff
changeset
|
440 to 21.5.28 "fuki" |
3886 | 441 |
442 Major Features and Backward Incompatible Changes | |
443 | |
444 -- fix: Check for missing dimensions for default face and window -- Aidan Kehoe, Mike Sperber | |
3973 | 445 -- fix: Crash in PNG error handler -- Stephen J. Turnbull, Ron Isaacson |
3886 | 446 -- fix: Crash in device-matching-specifier-list -- Stephen J. Turnbull |
3973 | 447 -- fix: Crash in gtk/x_reset_modifier_mapping -- Aidan Kehoe |
448 -- fix: Crash in linux_play_data_or_file on 64-bit linux -- Hans Graff, Vin Shelton | |
449 -- fix: Crash on double-close of fd in pdump -- Steve Higham, Vin Shelton | |
450 -- fix: Crash via buffer overflow in doc.c -- Aidan Kehoe, Fabrice Popineau | |
451 -- fix: Crash via buffer overrun in init_native_sound -- Jerry James | |
452 -- fix: Crash when deleting dialog via window manager -- Stephen J. Turnbull | |
453 -- fix: Device type of msprinter is non-window-system -- Aidan Kehoe | |
3886 | 454 -- fix: Float formats overflow output buffer -- Aidan Kehoe |
3973 | 455 -- fix: Font menu on non-Mule -- Aidan Kehoe |
3886 | 456 -- fix: ISO 2022 decoding kludges -- Aidan Kehoe |
457 -- fix: Make snarf-documentation robust to nonconforming DOC files -- Aidan Kehoe | |
3973 | 458 -- fix: Non-existent charset ID is specified for a mule-to-unicode call -- Aidan Kehoe |
3886 | 459 -- fix: Sanity checks before accessing frame in x_set_frame_properties -- Aidan Kehoe |
3973 | 460 -- fix: Type of arguments to GaugeMercury (related to progress bar crash?) -- Stephen J. Turnbull |
3886 | 461 -- fix: init_native_sound is called on a msprinter device -- Aidan Kehoe |
3973 | 462 -- fix: set-buffer-file-coding-system now sets buffer-modified-flag by default -- Aidan Kehoe |
463 -- new: Echo area resizing -- Adrian Aichner, Stephen J. Turnbull | |
3886 | 464 |
465 User-Visible Bug Fixes and Minor Improvements | |
466 | |
467 -- fix: Avoid delays in TTY-only builds by checking dispatch event queue -- Aidan Kehoe | |
468 -- fix: Avoid looking up variable bindings during GC -- Nix | |
469 -- fix: Buffer overruns in gnuclient and gnuslib -- Jerry James | |
3973 | 470 -- fix: Remove references to unimplemented input methods from language environments -- Aidan Kehoe |
3886 | 471 -- fix: Find modules correctly -- Ville Skyttä, Mike Sperber, Stephen Turnbull |
472 -- fix: Get X11 window property correctly on 64-bit platforms -- Stephen J. Turnbull, Mike Fabian, Takashi Iwai | |
473 -- fix: Handle coding system in file insertion in buffer properly -- Mike Sperber | |
474 -- fix: Info broke invariant `(equal buffer-file-truename (file-truename buffer-file-name))' -- Stephen J. Turnbull, Nelson Ferreira | |
475 -- fix: Lots of tweaking of Windows read-only handling -- Vin Shelton, Benson Margulies | |
476 -- fix: Make --unmapped work again -- Malcolm Purvis | |
477 -- fix: Make copying of char tables work -- Olivier Galibert, Stephen J. Turnbull | |
478 -- fix: Prevent C-z in a gnuclient frame from suspending the process -- Aidan Kehoe | |
479 -- fix: Regex for finding command nodes -- Jeff Miller | |
480 -- fix: Reversion should check buffer-file-coding-system -- Aidan Kehoe | |
481 -- fix: Syntax of guillemets -- Aidan Kehoe | |
482 -- fix: Window configuration should not restore window position unless requested -- Nix | |
483 -- improve: Better version info in etags -- Stephen Turnbull, Steve Youngs | |
484 -- improve: Case table, syntax table information for Cyrillic, Greek -- Aidan Kehoe | |
485 -- improve: Face initialization from X resources -- Aidan Kehoe | |
486 -- improve: Give x-compose-map an entry for sharp S -- Aidan Kehoe | |
487 -- improve: Handling of Asian "full-width" characters on TTY -- Aidan Kehoe | |
488 -- improve: Language environment detection from locale -- Aidan Kehoe | |
489 -- improve: Look harder for X11 locale-specific app-defaults files -- Malcolm Purvis | |
3973 | 490 -- improve: Make read-quoted-char terminate, not error, on non-character keys -- Aidan Kehoe |
491 -- improve: Sort abbrev database -- Adrian Aichner | |
492 -- improve: Support non-ISO Cyrillic keysyms -- Aidan Kehoe | |
493 -- improve: Sync etags to pot version 17.26; improve version report -- Stephen J. Turnbull, Steve Youngs | |
494 -- improve: Sync etags to pot version 17.32; move improved version report to configure, lose pot version report -- Stephen J. Turnbull | |
3886 | 495 -- improve: Try to rationalize resources of Xft in lwlib -- Stephen J. Turnbull |
496 -- improve: Use short list fixed string registries, not long list pruned by regexp for X11 fonts -- Aidan Kehoe | |
497 -- improve: charsets-in-region now in C -- Aidan Kehoe | |
498 -- improve: what-cursor-position gives Unicode and Mule information on non-ASCII -- Aidan Kehoe | |
499 -- new: Add raw string support like SXEmacs -- Aidan Kehoe | |
500 -- new: Find C source files for Lisp primitives -- Aidan Kehoe | |
501 -- new: Just-in-time definition of Unicode characters and X keysyms -- Aidan Kehoe | |
502 -- update: New package download sites -- Adrian Aichner | |
503 -- update: Sync etags to pot_etags_version 17.19 -- Stephen J. Turnbull | |
504 -- update: Sync pop[ch] to Emacs -- Jerry James | |
505 -- update: Update to 2003 version of ISO 8859-7 table -- Aidan Kehoe | |
506 | |
507 Build Infrastructure | |
508 | |
509 -- fix: Allow lowercase file names in mswin SDK -- Benson Margulies | |
510 -- fix: Avoid using Motif for cygwin -- Dr. Volker Zell | |
511 -- fix: C is not C++ -- Robert Pluim | |
512 -- fix: Check for u_int*_t typedefs -- Dr. Volker Zell | |
513 -- fix: Correct help strings, remove obsolete configure.* files -- Stephen J. Turnbull | |
3973 | 514 -- fix: Documentation of --with-error-checking options -- Stephen J. Turnbull |
3886 | 515 -- fix: Don't call ichar_to_unicode on non-MULE -- Mike Sperber |
516 -- fix: Enable SYSTEM_MALLOC on ppc64, alpha and ia64 systems -- Malcolm Purvis | |
517 -- fix: Make user-defined directories work in configure -- Mike Sperber | |
518 -- fix: Register --enable and --with forms with the option checking list -- Malcolm Purvis | |
519 -- fix: Remove Autoconf 2.13-isms -- Stephen J. Turnbull | |
520 -- fix: Revert workaround for now-fixed Cygwin bug of missing d_ino field -- Dr. Volker Zell | |
521 -- fix: Typo in configure shell syntax -- Jerry James | |
522 -- fix: Use $EGREP, not egrep -- Malcolm Purvis | |
523 -- fix: Use new Cygwin XPM lib name -- Rick Rankin | |
524 -- fix: Work around m4_cdr change -- Malcolm Purvis | |
525 -- fix: `config.status --recheck' bug in Autoconf 2.60/2.61 -- Malcolm Purvis | |
526 -- fix: char type correctness -- Vin Shelton, Aidan Kehoe | |
527 -- fix: configure debugger init files correctly -- Stephen J. Turnbull | |
528 -- improve: Conditionalize GCC warnings on version -- Jerry James | |
529 -- improve: Create $srcdir/src/depend if missing -- Stephen J. Turnbull | |
530 -- improve: Detect Intel Macs, use POSIX-style write barrier in NewGC -- Marcus Crestani | |
531 -- improve: Refactor Canna detection -- Stephen J. Turnbull | |
532 -- improve: Setup kit configuration -- Vin Shelton | |
533 improvement -- debugger init sources can use XCOMM convention | |
3915 | 534 -- new: Check for utilities that are not on "normal" Solaris PATH -- Stephen J. Turnbull, S L Baur |
3886 | 535 |
536 Documentation | |
537 | |
3973 | 538 -- fix: Description of kanji read syntax, size of Ichar (now 21 bits) -- Aidan Kehoe |
3886 | 539 -- fix: Improve docstrings -- Stephen J. Turnbull, Aidan Kehoe |
540 -- fix: Make manual conform to reality -- Malcolm Purvis, Robert Pluim, Aidan Kehoe, Stephen J. Turnbull | |
541 -- fix: New compatibility alias string-to-char-list -- Vin Shelton, Ville Skyttä | |
542 -- fix: Typo fixes in manual -- Stephen J. Turnbull, Aidan Kehoe | |
543 -- fix: Update FSF address -- Jerry James, Stephen Turnbull | |
544 -- fix: Update copyrights -- Stephen J. Turnbull | |
545 -- improve: Small rephrasing in TUTORIAL.de -- Adrian Aichner, hroptatyr | |
546 -- new: Describe X errors when using ssh in PROBLEMS -- Malcolm Purvis | |
547 -- new: Describe XFree86 crash in PROBLEMS -- Stephen J. Turnbull, Aidan Kehoe | |
548 -- new: Describe how X11R7 loses x11/bitmaps/gray in PROBLEMS -- Stephen J. Turnbull | |
3915 | 549 -- update: Addresses in files and ChangeLogs -- Adrian Aichner, Stephen J. Turnbull |
3886 | 550 |
551 Lisp API | |
552 | |
553 -- fix: Catch error in cloning language environment -- Aidan Kehoe | |
554 -- fix: Make shell-command use requested output buffer -- Jerry James | |
3973 | 555 -- fix: xft-version is now DEVAR_CONST_INT. |
556 -- improve: Face initialization and specification -- Aidan Kehoe | |
3886 | 557 -- improve: Make `split-char' available in no-mule -- Aidan Kehoe |
558 -- improve: New unicode-type property of Unicode coding systems -- Aidan Kehoe | |
3973 | 559 -- improve; Partial sync of coding-category stuff to GNU -- Aidan Kehoe |
3886 | 560 -- improve: Reorganize Mule lisp -- Aidan Kehoe |
3973 | 561 -- new: Full access to FcConfig objects -- Stephen J. Turnbull |
562 -- new: ccl-compile-mule-to-unicode, ccl-compile-unicode-to-mule, ccl-dump-mule-to-unicode, ccl-dump-unicode-to-mule -- Aidan Kehoe | |
3886 | 563 -- new: deprecate set-charset-registry, charset-registry -- Aidan Kehoe |
3915 | 564 -- new: font-lock-keywords-alist, font-lock-removed-keywords-alist, font-lock-add-keywords, font-lock-update-removed-keyword-alist, font-lock-remove-keywords -- Adrian Aichner |
3886 | 565 -- new: set-charset-registries, charset-registries -- Aidan Kehoe |
3973 | 566 -- new: x-coverage-instantiator specifier tag identifies Unicode fallbacks -- Aidan Kehoe |
3886 | 567 -- update: Sync font-lock-add-keywords and font-lock-remove-keywords from GNU Emacs. -- Adrian Aichner |
568 | |
569 Internal API and Implementation | |
570 | |
3973 | 571 -- fix: Dead code elimination in font-mgr -- Stephen J. Turnbull |
3886 | 572 -- fix: Eliminate buffer overflows and NULL pointer references -- Jerry James, Adrian Aichner |
573 -- fix: Memory leaks -- Jerry James | |
574 -- fix: Mule correctness with strings passed to warning functions -- Aidan Kehoe | |
575 -- fix: Syntax errors -- Aidan Kehoe | |
576 -- fix: Typo in string_direct_data_description -- Marcus Crestani | |
577 -- fix: Use defined APIs -- Stephen J. Turnbull, Aidan Kehoe | |
578 -- fix: Warning elimination -- Stephen J. Turnbull | |
579 -- improve: Cache Xrm coding system -- Aidan Kehoe | |
580 -- improve: GCPRO correctness -- Aidan Kehoe | |
581 -- improve: NewGC fault handling -- Marcus Crestani | |
3973 | 582 -- improve: Reorganize and document separate_textual_runs -- Olivier Galibert, Stephen J. Turnbull |
3886 | 583 -- improve: 21-bit Mule chars to support JIT charsets -- Aidan Kehoe |
3973 | 584 -- update: Get Unicode tables with permissive license -- Stephen J. Turnbull, Mike Fabian |
585 | |
586 Testing and Debugging | |
587 | |
588 -- improve: Sort results of charset-in-* before comparing to expected. -- Aidan Kehoe | |
589 -- improve: gdbinit.in recognizes new FcConfig objects -- Stephen J. Turnbull | |
3886 | 590 -- new: Silence-Message macro in test-harness.el -- Stephen J. Turnbull |
591 -- new: Test for ISO-2022 decoder not choking on invalid UTF-8 -- Aidan Kehoe | |
592 -- new: Test for copy-syntax-table bug -- Stephen Turnbull, Ralf Angeli | |
3973 | 593 -- new: Test for correct usage of escape-quoted cookie -- Aidan Kehoe |
594 -- new: Test for availability of input methods referenced in language environments -- Aidan Kehoe | |
3886 | 595 -- new: Test raw strings -- Aidan Kehoe |
3973 | 596 -- new: Test Unicode non-BMP support -- Aidan Kehoe |
3886 | 597 |
3403 | 598 to 21.5.27 "fiddlesticks" |
599 | |
600 Major Features and Backward Incompatible Changes | |
601 | |
602 -- fix: better autodetect of ISO 8859 vs. Big5 -- Joachim Schrod | |
603 -- fix: shell widget geometry management (metacity maximize bug) -- Stephen J. Turnbull | |
604 -- new: read multibyte characters as Unicode instead of Mule -- Aidan Kehoe, Pete Forman | |
605 | |
606 User-Visible Bug Fixes and Minor Improvements | |
607 | |
608 -- fix: separate resources for fcFontName and xftFont, fixes "can't change buffers-tabs font" bug -- Stephen J. Turnbull | |
609 -- improve: speed up read of process output -- Tony Bennett | |
610 -- improve: support more ALSA versions -- Jerry James | |
611 -- new: document Xft font customization in User Guide -- Stephen J. Turnbull | |
612 -- new: record load file name information for built-in symbols. -- Aidan Kehoe | |
613 | |
614 Build Infrastructure | |
615 | |
616 -- fix: update MS VC project files -- Adrian Aichner | |
617 -- improve: configure.ac: Add stubs for fontconfig configuration. -- Stephen J. Turnbull | |
618 | |
619 Documentation | |
620 | |
621 -- fix: remove obsolete comment at next-line-add-newlines -- Ville Skyttä | |
622 -- fix: COPYING: Update to latest upstream version. -- Jerry James | |
623 -- improve: comments in fontconfig.el, x-init.el -- Stephen J. Turnbull | |
624 -- improve: diagnostics for tab controls -- Stephen J. Turnbull | |
625 -- improve: docstrings for CL functions -- Aidan Kehoe | |
626 -- improve: geometry diagnostics in RootGeometryManager -- Stephen J. Turnbull, Francois L'Archeveque | |
627 -- improve: reorganize beta.texi -- Stephen J. Turnbull | |
628 -- new: internals node for creating new device types -- Stephen J. Turnbull | |
629 -- new: read multibyte characters as Unicode in User Guide -- Aidan Kehoe | |
630 | |
631 Lisp API | |
632 | |
633 -- fix: pass a device to x-font-menu-font-data-xft. -- Jerry James | |
634 -- fix: typo in code -- Aidan Kehoe | |
635 -- improve: GNU sync of goto-line -- Ville Skyttä | |
636 -- improve: error and usage messages -- Stephen J. Turnbull | |
637 -- improve: fontconfig refactoring -- Stephen J. Turnbull | |
638 | |
639 Internal API and Implementation | |
640 | |
641 -- fix: 64-bit cleanliness in number.c -- Jerry James | |
642 -- fix: 64-bit cleanliness in printing lwlib resources -- Jerry James | |
643 -- fix: copy_command_builder left console uninitialized -- Jerry James | |
644 -- fix: memory leak in font initialization -- Stephen J. Turnbull | |
645 -- fix: remove spurious diagnostics in FcPattern creation -- Stephen J. Turnbull | |
646 -- fix: signedness warnings in lwlib -- Jerry James | |
647 -- fix: use of char-like types -- Aidan Kehoe | |
648 -- fix: we don't support Xft v.1, remove pretense -- Stephen J. Turnbull | |
649 -- improve: fontconfig refactoring -- Stephen J. Turnbull | |
650 | |
3321 | 651 to 21.5.26 "endive" |
652 | |
653 Major Features and Backward Incompatible Changes | |
654 | |
655 -- Improve: search for package roots on Windows. -- Vin Shelton | |
656 -- Improve: support asynchronous finalization, remove explicit finalizers, and support for statistics for explicitly finalized objects. -- Marcus Crestani, Adrian Aichner | |
657 -- New: support ALSA sound on Linux. -- Jerry James | |
658 | |
659 User-Visible Bug Fixes and Minor Improvements | |
660 | |
661 -- Fix: GC cursor display in mc-alloc. -- Marcus Crestani | |
662 -- Fix: next-error.el vs. compile.el name clashes. -- Malcolm Purvis | |
663 -- Fix: restore memory usage stats (fix regexp). -- Marcus Crestani | |
664 -- Fix: synch widget-move-and-invoke, used by Gnus. -- Jerry James | |
665 -- Fix: uncomment-region in C files. -- Jerry James | |
666 -- Fix: use set-text-properties, not remove-list-of-text-properties. -- Jerry James | |
667 -- Improve: convert decode-coding-region, encode-coding-region to interactive commands. -- Stephen Turnbull | |
668 -- Improve: synch regex failure limits with GNU Emacs, avoiding asserts. -- Malcolm Purvis | |
669 | |
670 Build Infrastructure | |
671 | |
672 -- Fix: eliminate configure idioms obsolete in Autoconf 2.59. -- Jerry James, Ilya Golubev | |
673 -- Improve: merge mc-alloc features into --with-newgc. -- Marcus Crestani | |
674 | |
675 Documentation | |
676 | |
677 -- Fix: document dependence of `run-lisp' on os-utils package. -- Mike Sperber | |
678 -- Improve: move historical READMEs, etc, to internals.texi. -- Stephen Turnbull | |
679 | |
680 Lisp API | |
681 | |
682 -- Improve: remove dead API (lisp-send-defun). -- Mike Sperber | |
683 | |
684 Internal API and Implementation | |
685 | |
686 -- Fix: add missing do to RETURN_UNGCPRO_EXIT_PROFILING. -- Jerry James | |
687 -- Fix: avoid malloc in vdb signal handler. -- Marcus Crestani | |
688 -- Fix: broken use of memset in vdb_install_signal_handler. -- Mike Fabian | |
689 -- Fix: eliminate bogus pointer to nowhere. -- Stephen Turnbull, Jerry James | |
690 -- Fix: malloc size in Dynarr_realloc. -- Marcus Crestani | |
691 -- Improve: add internal API to zero uninitialized string. -- Marcus Crestani | |
692 -- Improve: dynamic array cleanup, remove duplicate code. -- Marcus Crestani | |
693 -- Improve: handle memory shortage in mc-alloc properly. -- Marcus Crestani | |
694 -- Improve: mc-alloc APIs now return number of pages processed. -- Marcus Crestani | |
695 | |
3256 | 696 to 21.5.25 "eggplant" |
697 | |
698 Major Features and Backward Incompatible Changes | |
699 | |
700 -- Fix: crash due to broken initialization of syntax cache. -- Stephen Turnbull | |
701 -- Fix: crash due to incomplete Mule-ization of x_font_instance_truename. -- Stephen Turnbull | |
702 -- Improve: configure UI for packages. -- Mike Sperber | |
703 | |
704 User-Visible Bug Fixes and Minor Improvements | |
705 | |
706 -- Fix: default char-syntax of CJK to ?w failed. -- Aidan Kehoe | |
707 -- Fix: missing fonts due to MAX_FONT_COUNT = 5000 isn't infinite any more. -- Aidan Kehoe | |
708 -- Fix: missing setlocale(3) initialization in Mule. -- Aidan Kehoe | |
709 -- Improve: Java support in font-lock. -- Martin Buchholz | |
710 -- Improve: Russian C-x processing. -- Aidan Kehoe | |
711 -- Improve: use logical "beta" path to downloads. -- Adrian | |
712 -- New: euc-cn coding system alias for cn-gb-2312. -- Aidan Kehoe | |
713 -- Update: package download sites. -- Adrian Aichner | |
714 | |
715 Build Infrastructure | |
716 | |
717 -- Fix: conditionalization of checks for Xft library. -- Mike Sperber | |
718 -- Fix: deletion of user-created links in distclean. -- Mike Sperber | |
719 -- Fix: reporting of Xft in Installation. -- Stephen Turnbull | |
720 -- Improve: cygwin include and no-X Xpm handling in configure. -- Vin Shelton | |
721 | |
722 Documentation | |
723 | |
724 -- Improve: comments. -- Aidan Kehoe, Stephen Turnbull | |
725 -- New: node on keyboards with which one can't type Latin. -- Aidan Kehoe | |
3915 | 726 -- Update: Info docs for new package-path configuration syntax. -- Mike Sperber |
3256 | 727 |
728 Lisp API | |
729 | |
730 -- New: rename command and binding in buffer menu mode. -- Stephen Turnbull | |
731 | |
732 Internal API and Implementation | |
733 | |
734 -- Fix: "not char-or-int-p: nil" bug in easymenu. -- Aidan Kehoe | |
735 -- Fix: C++ correctness. -- Marcus Crestani | |
736 -- Fix: buggy computation of dynarr size. -- Marcus Crestani | |
737 -- Fix: char/event confusion introduced by a GNU Emacs sync. -- Aidan Kehoe | |
738 -- Fix: missing hardware-specific X11 keycode initialization. -- Aidan Kehoe | |
739 -- Fix: syntax errors. -- Andrey Slusar | |
740 -- Fix: workaround missing d_ino field from 'struct dirent'. -- Rick Rankin | |
741 -- Fix: x_find_charset_font returned Qunboundp inefficiently. -- Aidan Kehoe | |
742 -- Fix: x_find_charset_font wasn't Mule-ized. -- Stephen Turnbull | |
743 -- Improve: Cygwin support in MC_ALLOC. -- Marcus Crestani | |
744 -- Improve: silence redundant gc cache warning. -- Marcus Crestani | |
745 -- Improve: syntax cache factoring and documentation. -- Stephen Turnbull | |
746 | |
3105 | 747 to 21.5.24 "dandelion" |
3107 | 748 Major features |
749 | |
3915 | 750 -- New: Xft font support. -- Stephen J. Turnbull, Aidan Kehoe, Daniel Pittman, Clemens Fruhwirth, Eric Knauel, Matthias Neubauer, Hrvoje Niksic, Olivier Galibert |
3107 | 751 -- New: incremental garbage collector. -- Marcus Crestani |
752 | |
753 User-Visible Bug Fixes and Minor Improvements | |
754 | |
3148 | 755 -- Fix: autoload list-matching-lines. -- Malcolm Purvis |
3107 | 756 -- Fix: change_window_height must change the window width when requested. -- Aidan Kehoe |
757 -- Fix: crashes printing ISO2022 coding systems. -- Ben Wing | |
3148 | 758 -- Improve: initializations depending on locale or language environment. -- Aidan Kehoe |
3107 | 759 -- Update: etags to upstream 17.15. -- Malcolm Purvis |
3148 | 760 -- Update: package download site list. -- Adrian Aichner |
3915 | 761 -- Update: X11 search paths to include /usr(/local)/share/X11. -- Ville Skyttä |
3107 | 762 |
763 Build Infrastructure | |
764 | |
765 -- Fix build output directory structure on Windows. -- Marcus Crestani | |
766 -- Fix: configuration of native sound on Windows. -- Ben Wing | |
767 -- Fix: small bugs in configure of AC_INIT and PostgreSQL. -- Stephen J. Turnbull | |
768 -- Improve: CVS behavior. -- Stephen J. Turnbull, Marcus Crestani, Malcolm Purvis | |
3148 | 769 -- Improve: treatment and docs XE_COMPLEX_ARGs defaults. -- Malcolm Purvis, Stephen Turnbull |
3107 | 770 -- Improve: refactor make clean, nuke .elcs. -- Ben Wing |
3148 | 771 -- New: tests for backward-up-list. -- Stephen J. Turnbull |
3107 | 772 |
773 Documentation | |
774 | |
3148 | 775 -- Fix: Don't mention standard-syntax-table and standard-category-table. -- Aidan Kehoe |
776 -- Fix: typos. -- Stephen J. Turnbull, Adrian Aichner | |
3107 | 777 -- Improve: Add 'Known Problems' to the Help menu. -- Malcolm Purvis |
778 -- Improve: HELLO in Irish and Tajik. -- Aidan Kehoe | |
3108 | 779 -- Improve: INSTALL. -- Stephen J. Turnbull |
3107 | 780 -- Improve: consistency of symbol quoting in documentation. -- Ben Wing |
781 -- Improve: docstrings. -- Stephen J. Turnbull | |
782 -- Improve: reorganize option list from configure. -- Malcolm Purvis | |
783 -- Improve: texi document CVS branching. -- Ben Wing | |
3108 | 784 -- Improve: texi documentation of DEFSYMBOL. -- Stephen J. Turnbull |
3107 | 785 -- Improve: texi documentation of XEmacs Autoconf macros. -- Malcolm Purvis |
786 -- Improve: update PROBLEMS, and install in etc. -- Malcolm Purvis | |
3111 | 787 -- Update: about Jerry James. -- Stephen J. Turnbull |
3148 | 788 -- Update: about Malcolm Purvis. -- Malcolm Purvis |
789 -- Update: descriptions of font name syntaxes. -- Stephen J. Turnbull | |
3107 | 790 |
791 Lisp API | |
792 | |
793 -- Improve: generalize describe-syntax-table to describe-char-table. -- Ben Wing | |
794 -- Improve: memory statistics reporting. -- Marcus Crestani | |
795 | |
796 Internal API and Implementation | |
797 | |
798 -- Fix: C++ build. -- Ben Wing, Marcus Crestani | |
799 -- Fix: Mule-ize canna_api module. -- Ben Wing, Stephen J. Turnbull | |
800 -- Fix: byte compile by conditional compilation. -- Ben Wing | |
801 -- Fix: compilation errors and warnings in GTK code. -- Malcolm Purvis | |
3148 | 802 -- Fix: compile stuff_buffered_input only if HAVE_TTY. -- Malcolm Purvis |
3107 | 803 -- Fix: help on functions without documentation. -- Ben Wing |
804 -- Fix: integer types for Berkeley db. -- Stephen J. Turnbull, Volker Zell | |
3111 | 805 -- Fix: make modules build on Cygwin and Mac. -- Stephen J. Turnbull, Rick Rankin, Ben Wing |
3107 | 806 -- Fix: quiet byte-compiler. -- Stephen J. Turnbull |
807 -- Fix: syntax error -- Marcus Crestani | |
808 -- Fix: uninitialized local variables. -- Stephen J. Turnbull | |
809 -- Fix: use princ, not prin1 in debug print. -- Ben Wing | |
810 -- Fix: use uint32_t declaration, fixing build on FreeBSD. -- Steve Youngs, Andrey Slusar | |
811 -- Fix: value of MAX_STRING_ASCII_BEGIN under MC_ALLOC. -- Ben Wing | |
3108 | 812 -- Fix: warning elimination, mark UNUSED parameters -- Marcus Crestani, Stephen J. Turnbull |
3107 | 813 -- Improve: bignum support on mingwin. -- Ben Wing |
814 -- Improve: lrecord uid handling. -- Ben Wing | |
815 -- Improve: refactor default_object_printer. -- Marcus Crestani | |
3108 | 816 -- Improve: remove dead code in lwlib. -- Stephen J. Turnbull |
3107 | 817 -- Improve: reorganize lisp.h. -- Ben Wing |
3148 | 818 -- Improve: set default syntax class to word. -- Aidan Kehoe, Ben Wing |
3111 | 819 -- Improve: tabs widget internals. -- Stephen J. Turnbull |
3105 | 820 |
2968 | 821 to 21.5.23 "daikon" |
822 Major features | |
823 | |
3009 | 824 -- New: all-singing, all-dancing --with/--enable aliasing. -- Malcolm Purvis |
825 -- New: native NT support for building gmp, db, postgresql, ldap. -- Ben Wing | |
2970 | 826 -- New: non-XPM color images can be mouse pointers. -- Ben Wing |
827 | |
2968 | 828 User-Visible Bug Fixes and Minor Improvements |
829 | |
3009 | 830 -- Fix: change address for crash reporting to xemacs-beta. -- Ben Wing |
3030 | 831 -- Fix: configure requires explicit choice of Motif (from 21.4). -- Malcolm Purvis |
2970 | 832 -- Fix: crash due to duplicate subrs with MC_ALLOC and modules. -- Marcus Crestani |
3009 | 833 -- Improve: memory usage reporting, especially with MC_ALLOC. -- Ben Wing |
834 -- Improve: remove obsolete autoconf 2.13 files. -- Malcolm Purvis. | |
835 -- Improve: --with-cflags-optimization now forces optimization. -- Ben Wing | |
3014 | 836 -- Update: sync package-get.el mirrors with website. -- Adrian Aichner, Ville Skyttä |
2970 | 837 |
2968 | 838 Build Infrastructure |
839 | |
2970 | 840 -- Fix: Cygwin, non-X build needs XPM header and library files in XE_CFLAGS. -- Mike Alexander, Rick Rankin |
3009 | 841 -- Fix: guess VC++ version; set debug and browser flags appropriately. -- Ben Wing |
842 -- Fix: pass -I$(SRC) to minitar.c so it compiles. -- Ben Wing | |
843 -- Fix: pass module sources, not objects, to make-docfile. -- Ben Wing | |
844 -- Fix: stop installexe.sh from adding redundant exe extension. -- Rick Rankin | |
2970 | 845 -- Fix: variable initialization misordering in xemacs.mak. -- Adrian Aichner |
3009 | 846 -- Improve: Canna API is now a module. -- Stephen Turnbull |
847 -- Improve: delete more stuff in `make clean'. -- Ben Wing | |
848 -- Improve: options now added to one OPT_*, rather than many FOO_*, variables. -- Ben Wing | |
2970 | 849 -- Improve: replace support for autoconf 2.13 with warning to use autoconf 2.59. -- Malcolm Purvis |
850 -- Improve: update config.inc.samp to recent versions and add gmp, db, postgresql, ldap support; also optimization in non-debug builds. -- Ben Wing | |
851 -- Improve: xemacs.mak now caters to VC++ version, support for building gmp, db, postgresql, ldap; other fixes. -- Ben Wing | |
852 | |
2968 | 853 Documentation |
854 | |
3009 | 855 -- Fix: force C-h N to find etc/NEWS, not some package's. -- Steve Youngs |
2970 | 856 -- Fix: texinfmt.el can build all Info files again. -- Adrian Aichner |
857 -- Fix: typos in Texinfo docs. -- Adrian Aichner | |
858 -- Improve: Texinfo docs about specifiers. -- Ben Wing | |
859 -- Improve: comment style, 'foo -> `foo'. -- Ben Wing | |
3014 | 860 -- Improve: comments and docstrings. -- Stephen Turnbull |
3030 | 861 -- Improve: document --with/--enable, improve Mac OS X in INSTALL. -- Malcolm Purvis |
3009 | 862 -- Improve: emodules.texi tells how to add modules to core. -- Stephen Turnbull |
3030 | 863 -- Improve: FAQ includes examples of 21.5 configure options. -- Malcolm Purvis |
3009 | 864 -- Improve: nt/README tells how to compile optional libs. -- Ben Wing |
865 -- New: FAQ on `rebaseall' under Cygwin. -- Ben Wing | |
866 -- New: internals documents XEmacs treatment of --with/--enable configure args. -- Malcolm Purvis | |
2970 | 867 |
2968 | 868 Lisp API |
869 | |
3009 | 870 -- Fix: finder-find-library returns accurate filename. -- Adrian Aichner |
871 -- Fix: xemacs-composefunc kvetching when noninteractive. -- Stephen Turnbull | |
2970 | 872 -- Improve: GC now triggers on relative, not absolute, consing. -- Ben Wing |
873 -- Improve: memory usage reporting. -- Ben Wing | |
3009 | 874 -- Improve: sync build-report.el to Adrian's version. -- Stephen Turnbull |
875 -- Improve: sync read-buffer, line-number-at-pos, delete-dups, occur to GNU Emacs 22.0.50. -- Malcolm Purvis | |
876 -- New: batch-build-report command. -- Stephen Turnbull | |
3030 | 877 -- New: inherit properties for faces and custom. -- Ben Wing |
3009 | 878 -- New: next-error from GNU Emacs. -- Malcolm Purvis |
2970 | 879 -- New: `specifier-instantiator' and related primitives. -- Ben Wing |
880 | |
2968 | 881 Internal API and Implementation |
882 | |
2970 | 883 -- Fix: address of register variable can't be taken. -- Ben Wing |
3030 | 884 -- Fix: asserts in lwlib are now consistent with src. -- Ben Wing |
2970 | 885 -- Fix: bitrot in sysdep.c and nt.c. -- Ben Wing |
886 -- Fix: bug in range tables with non-default closure. -- Ben Wing | |
887 -- Fix: don't use C++ reserved words "new" and "catch", append '_'. -- Ben Wing | |
888 -- Fix: initialization in mc-alloc. -- Marcus Crestani | |
3009 | 889 -- Fix: non-MULE needs mswindows_current_locale too. -- Mike Alexander |
2970 | 890 -- Fix: setlocale return string is volatile, dup it. -- Olivier Galibert |
3009 | 891 -- Fix: unexec for _LP64 ELF architectures. -- Andrey Slusar |
892 -- Fix: use of config.h, especially in Windows files. -- Ben Wing | |
3030 | 893 -- Improve: refactor MC_ALLOC to reduce #ifdefs. -- Ben Wing |
3009 | 894 -- Improve: use _CRT_SECURE_NO_DEPRECATE to suppress VC8 warnings. -- Ben Wing |
3030 | 895 -- Improve: warning elimination. -- Ben Wing, Stephen Turnbull |
2970 | 896 |
2928 | 897 to 21.5.22 "cucumber" |
898 | |
899 Major features | |
900 | |
2970 | 901 -- New: support for Unnnn-style keysyms on X11. -- Aidan Kehoe |
2929 | 902 |
2928 | 903 User-Visible Bug Fixes and Minor Improvements |
904 | |
2930 | 905 -- Fix: window configuration subsystem. -- Michael Sperber, Fabrice Popineau |
2929 | 906 |
2928 | 907 Build Infrastructure |
908 | |
2930 | 909 -- Fix: add generated dumper files to .cvsignore. -- Marcus Crestani |
910 -- Fix: add generated makefiles to .cvsignore in ./modules. -- Craig Lanning | |
2929 | 911 |
2928 | 912 Documentation |
913 | |
2929 | 914 -- Fix: lispref - compose processing now goes direct to character, not |
2930 | 915 keysym. -- Aidan Kehoe |
916 -- Improve: lispref - Mule explanations. -- Aidan Kehoe | |
2929 | 917 -- Improve: lispref - remove discussion of pure storage, long disabled. |
2930 | 918 -- Aidan Kehoe |
919 -- New: lispref - face aliasing. -- Didier Verna | |
2929 | 920 |
2928 | 921 Lisp API |
922 | |
2930 | 923 -- New: face aliasing. -- Didier Verna |
2929 | 924 |
2928 | 925 Internal API and Implementation |
926 | |
2930 | 927 -- Fix: DLL implementation for Mac OS X "Tiger". -- Atanu Ghosh |
928 -- Fix: false load path shadows after package update. -- Jeff Mincy, | |
929 Adrian Aichner | |
930 -- Fix: make CCL check for existence before using characters. -- Aidan Kehoe | |
2929 | 931 -- Fix: memory descriptions for gap variables for better 64-bit support. |
2930 | 932 -- Darryl Okahata |
933 -- Fix: various cleanups for MC_ALLOC. -- Marcus Crestani | |
2929 | 934 -- Improve: use characters instead of keysyms in x-compose.el. Remove |
2930 | 935 iso8859 .els from dumped-lisp.el. -- Aidan Kehoe |
2929 | 936 |
2788 | 937 to 21.5.21 "corn" |
938 | |
939 Major features | |
940 | |
2930 | 941 -- New: An alternative memory allocator. -- Marcus Crestani |
2788 | 942 |
943 User-Visible Bug Fixes and Minor Improvements | |
944 | |
2930 | 945 -- Fix: Calculations in font-spatial-to-canonical. -- Ralf Angeli |
946 -- Fix: Honor coding system argument when creating a file. -- Aidan Kehoe | |
947 -- Fix: Prevent stripping of items from Command menu. -- Ralf Angeli | |
948 -- Fix: Selection handling on Win32. -- Fabrice Popineau | |
949 -- Improve: Better defaults for mail-user-agent. -- Aidan Kehoe | |
950 -- Improve: Deprecate use of Emacs X resource class. -- Aidan Kehoe | |
951 -- Improve: Initialize fontlock properly in *scratch*. -- Aidan Kehoe | |
952 -- Improve: Make %backup%~ honor auto-save-directory. -- Steve Youngs, | |
953 Jamie Zawinski | |
954 -- Improve: Recognize some constructed Unicode keysyms. -- Aidan Kehoe | |
955 -- Improve: Synch dired features from GNU Emacs. -- Mike Sperber, | |
956 Richard Stallman, Luc Teirlinck, Stefan Monnier, Andreas Schwab | |
957 -- Improve: Syntax and case mapping for ISO 8859 parts 14-16. -- Aidan Kehoe | |
958 -- Improve: Warn about unbound Unicode keysyms. -- Aidan Kehoe | |
2788 | 959 |
960 Build Infrastructure | |
961 | |
2930 | 962 -- Fix: Asserts can't contain active code. -- Melvin Hadasht |
963 -- Fix: Avoid "head -#", coreutils doesn't like it. -- Vin Shelton | |
964 -- Fix: Build for non-DEBUG_XEMACS native Windows build. -- Marcus Crestani | |
965 -- Fix: Cater to OpenBSD /bin/sh. -- Malcolm Purvis | |
966 -- Fix: Check $ac_cv_build not $canonical for libossaudio. -- Aidan Kehoe | |
2788 | 967 -- Fix: Define elfw(type) for unexec on Alpha and amd64 for FreeBSD. |
2930 | 968 -- Andrey Slusar |
969 -- Fix: Make get-user-response available regardless of config. -- Mike Sperber | |
2788 | 970 -- Fix: Make srcdir absolute, include X header, terminate lines. |
2930 | 971 -- Malcolm Purvis |
972 -- Fix: Remove do-nothing --no-gnu-linker in Solaris builds. -- Vin Shelton | |
973 -- Fix: Specifying optimization flags implies optimization. -- Stephen Turnbull | |
974 -- Fix: Use HAVE_DECL_SYS_SIGLIST, not SYS_SIGLIST_DECLARED. -- Volker Zell | |
2788 | 975 -- Fix: configure needs to include X11/Intrinsic.h to check for Xaw. |
2930 | 976 -- Robert Delius Royar, Aidan Kehoe, Jerry James |
977 -- Fix: egetenv needs process.h in device-x.c. -- Marcus Crestani | |
978 -- New: Conditionally compile insert-data-in-exec. -- Marcus Crestani | |
2788 | 979 |
980 Documentation | |
981 | |
2930 | 982 -- Fix: Add "--with" prefix in docstrings in configure.ac. -- Aidan Kehoe |
983 -- Fix: Documentation typos. -- Aidan Kehoe, Adrian Aichner | |
984 -- Improve: Mention and deprecate atomic extents in docstring. -- Aidan Kehoe | |
985 -- Improve: Texinfo docs. -- Aidan Kehoe, Stephen Turnbull, Ben Wing | |
2788 | 986 |
987 Lisp API | |
988 | |
989 -- Improve: Use override-redirect to suppress WM decorations. | |
2930 | 990 -- Stephen Turnbull |
991 -- New: More stats for show-memory-usage. -- Marcus Crestani | |
2788 | 992 |
993 Internal API and Implementation | |
994 | |
995 -- Fix: Argument count in issue_call_trapping_problems_warning. | |
2930 | 996 -- Stephen Turnbull |
997 -- Fix: Avoid use of nonexistent insert-for-yank. -- Aidan Kehoe | |
998 -- Fix: Buffer overflow in pdump backtrace array. -- Jerry James | |
999 -- Fix: Control-1 handling in CCL. -- Aidan Kehoe | |
1000 -- Fix: fakemail for FreeBSD >= 4. -- Andrey Slusar | |
1001 -- Improve: Dynamic diagnostic backtrace for KKCC. -- Marcus Crestani | |
2788 | 1002 |
2652 | 1003 to 21.5.20 "cilantro" |
1004 | |
1005 Major Features | |
1006 | |
2930 | 1007 -- New: Handle various X selection targets properly. -- Aidan Kehoe |
2652 | 1008 |
1009 User-Visible Bug Fixes and Minor Improvements | |
1010 | |
2930 | 1011 -- Fix: Handle active regions properly. -- Adrian Aichner |
1012 -- Fix: pui-list-packages handles longer filenames. -- Norbert Koch | |
2652 | 1013 |
1014 Build Infrastructure | |
1015 | |
2930 | 1016 -- Improve: Port configure to autoconf 2.59. -- Malcolm Purvis |
1017 -- Fix: make-docfile.c misparsed UNUSED macro in defuns. -- Stephen Turnbull | |
1018 -- Fix: Don't copy non-existent BUGS file on NT. -- Adrian Aichner | |
1019 -- Fix: Typo in PDUMP section of Makefile.in.in. -- Mike Alexander | |
2652 | 1020 |
1021 Documentation | |
1022 | |
2930 | 1023 -- Improve: Update info/dir. -- Adrian Aichner |
1024 -- Improve: Automate updating of release date in about.el. -- Stephen Turnbull | |
3915 | 1025 -- New: about.el entry for Simon Josefsson. (Simon Josefsson |
2930 | 1026 -- Fix: Typos. (Adrian Aichner |
1027 -- Improve: Sort memory usage report sections by usage. -- Adrian Aichner | |
1028 -- Improve: Glyphs documentation. -- Ben Wing | |
1029 -- Improve: Description of build configuration system. -- Malcolm Purvis | |
1030 -- New: Description of build configuration system. -- Stephen Turnbull | |
1031 -- New: Lispref node on CCL Example. -- Aidan Kehoe | |
1032 -- Improve: Describe \c and \C in Syntax of Regexps. -- Aidan Kehoe | |
1033 -- Improve: Future Work -- Better Rendering Support. -- Stephen Turnbull | |
1034 -- Improve: Comments. -- Stephen Turnbull, Aidan Kehoe | |
2652 | 1035 |
1036 Lisp API | |
1037 | |
2930 | 1038 -- New: GNU semi-compatible decode-char and encode-char. (Aidan Kehoe |
2652 | 1039 |
1040 Internal API and Implementation | |
1041 | |
2930 | 1042 -- Fix: Avoid consing in operate-on-matching-lines. -- Adrian Aichner |
1043 -- Fix: Correctly disable geometry negotiation in tabs widget. -- Stephen Turnbull | |
1044 -- New: Backtrace feature for KKCC. -- Marcus Crestani | |
1045 -- Fix: Type casts in database.c. -- Marcus Crestani | |
1046 -- Fix: Adjust s&m to FreeBSD 6.x reality. -- Andrey Slusar | |
2652 | 1047 |
1048 Quality Assurance Infrastructure | |
1049 | |
2930 | 1050 -- New: USED_IF_BIGFLOAT macro. -- Jerry James |
1051 -- New: region-tests.el. -- Adrian Aichner | |
1052 -- New: autoconf/regressiontest.pl. -- Malcolm Purvis | |
2652 | 1053 |
2593 | 1054 to 21.5.19 "chives" |
1055 | |
1056 Major Features | |
1057 | |
2930 | 1058 -- Improve: major reorganization of source tree docs. -- Ben Wing |
1059 -- Improve: behaviors get new code and many new implementations. -- Ben Wing | |
2593 | 1060 |
1061 User-Visible Bug Fixes and Minor Improvements | |
1062 | |
2930 | 1063 -- Fix: security hole (CAN-2005-0100) in movemail. -- Vin Shelton |
1064 -- Fix: data truncation in i.c. -- Ben Wing | |
1065 -- Fix: region deletion bug. -- Stephen Turnbull | |
1066 -- Fix: crash in Frecord_buffer. -- Yoshiki Hayashi | |
1067 -- Fix: Metacity maximize bug. -- Stephen Turnbull | |
1068 -- Fix: data truncation bugs in unix_send_process. -- David Evers, Jerry James | |
1069 -- Fix: recognise AltGr as a valid modifier in GTK. -- Malcolm Purvis | |
1070 -- Fix: recognize ISO keysyms. -- Ville Skyttä | |
2593 | 1071 -- New: on Windows, dump Unicode tables to allow non-ASCII invocation. |
2930 | 1072 -- Ben Wing |
1073 -- New: splash screen. -- Ben Wing | |
1074 -- New: support treating shortcuts under Windows as symbolic links. -- Ben Wing | |
1075 -- Improve: GNU-compatible coding system aliases. -- Aidan Kehoe | |
1076 -- Improve: help system. -- Ben Wing | |
1077 -- Improve: mouse-track. -- Ben Wing | |
1078 -- Improve: support ISO 8859/16 by default. -- Aidan Kehoe | |
2593 | 1079 |
1080 Build Infrastructure | |
1081 | |
1082 -- Fix: copy BUGS, README, COPYING and Installation on installation on | |
2930 | 1083 Windows. -- Ben Wing |
1084 -- Fix: installation for Cygwin. -- Marcus Crestani | |
1085 -- Fix: various build problems. -- Ben Wing | |
1086 -- Fix: various things in configure. -- Ben Wing | |
1087 -- New: default pdump on for Cygwin. -- Marcus Crestani | |
1088 -- New: support NetBSD sound via Linux API. -- Aidan Kehoe | |
1089 -- Improve: generation of CFLAGS (Jerry James, Ben Wing | |
1090 -- Improve: parallel build support. -- Malcolm Purvis | |
3182 | 1091 -- Improve: support --package-prefix as simple interface to --package-path |
1092 facility. -- Ben Wing | |
2930 | 1093 -- Improve: support mmdf and pop arguments to --mail-locking. -- Ben Wing |
2593 | 1094 |
1095 Documentation | |
1096 | |
2930 | 1097 -- Fix: beta.texi. -- Stephen Turnbull, Robert Royar |
1098 -- Fix: typos. -- Alexey Mahotkin, Andreas Eder | |
1099 -- New: "Future Work -- Better Rendering Support". -- Stephen Turnbull | |
1100 -- New: "Future Work" collects feature proposals in Internals. -- Ben Wing | |
1101 -- New: empty ChangeLog entry. -- Ben Wing | |
1102 -- New: personal photos. -- Malcolm Purvis | |
1103 -- Improve: Lispref (Shyamal Prasad, Stephen Turnbull, Aidan Kehoe | |
1104 -- Improve: Users' Guide. -- Ben Wing | |
1105 -- Improve: about.el. -- Malcolm Purvis, Ben Wing | |
1106 -- Improve: docstrings. -- Ben Wing, Stephen Turnbull, Adrian Aichner, | |
1107 Aidan Kehoe | |
1108 -- Improve: gnuserv docs. -- Stephen J. Turnbull | |
1109 -- Improve: incorporate source tree docs in FAQ. -- Ben Wing | |
1110 -- Improve: major overhauls of FAQ, Internals. -- Ben Wing | |
1111 -- Improve: various comments. -- Ben Wing | |
2593 | 1112 |
1113 Lisp API | |
1114 | |
1115 -- Improve: sync bytecomp-runtime.el (make-obsolete, make-obsolete-variable). | |
2930 | 1116 -- Ville Skyttä |
2593 | 1117 -- Improve: sync paragraphs.el, custom.el, subr.el, newcomment.el, |
2930 | 1118 fill.el, page.el, register.el. -- Ben Wing |
1119 -- New: move regexp-opt.el and easy-mmode.el from packages to core. -- Ben Wing | |
2593 | 1120 -- New: next/previous-single-char-property-change and make |
2930 | 1121 next/previous-single-property-change work like in FSF. -- Ben Wing |
1122 -- New: xemacs-font-lock-c-keywords and friends. -- Ben Wing | |
2593 | 1123 |
1124 Internal API and Implementation | |
1125 | |
2930 | 1126 -- Fix: ^M brokenness in res.rc. -- Ben Wing |
1127 -- Fix: adapt to recent changes in Cygwin. -- Ben Wing | |
2593 | 1128 -- Fix: byte-char conversion, should speed up Mule if there are |
2930 | 1129 non-ASCII characters in the buffer. -- Ben Wing |
1130 -- Fix: coding cookie recognition in .elc. -- Ben Wing | |
1131 -- Fix: data-in-executable problems. -- Olivier Galibert, Ben Wing | |
1132 -- Fix: find-coding-system-magic-cookie-in-file. -- Ben Wing | |
1133 -- Fix: leaking process handles. -- Ben Wing | |
2593 | 1134 -- Fix: only call device method compute_scrollbar_instance_usage() if it |
2930 | 1135 is defined. -- Zajcev Evgeny |
2593 | 1136 -- Fix: protect callers of MSFT syscalls from MSFT API randomization. |
2930 | 1137 -- Ben Wing |
1138 -- Fix: typos. -- Robert Royar | |
1139 -- Fix: warnings. -- Aidan Kehoe, Ben Wing | |
1140 -- New: Hashcode type. -- Ben Wing | |
1141 -- New: color API. -- Ben Wing | |
1142 -- New: rename abort() macro to ABORT() to placate VC 7. -- Ben Wing | |
1143 -- Improve: GCPRO macros. -- Ben Wing | |
1144 -- Improve: Mule-ize various things. -- Ben Wing | |
2593 | 1145 -- Improve: Suppress aliasing warning in free_hook; Jerry says not a fix? |
2930 | 1146 -- Ben Wing |
1147 -- Improve: UNUSED parameter marking, UNO support. -- Malcolm Purvis, | |
1148 Jerry James | |
1149 -- Improve: Unicode-ize various things. -- Ben Wing | |
1150 -- Improve: critical section protection. -- Ben Wing | |
2593 | 1151 -- Improve: debug info on attempt to throw outside of a function where |
2930 | 1152 call_trapping_problems() has been used. -- Ben Wing |
1153 -- Improve: menubar support. -- Ben Wing | |
1154 -- Improve: more orthogonality in emacs-root-finding. -- Mike Sperber | |
1155 -- Improve: move etc/aliases.ksh to xemacs-builds CVS module. -- Ben Wing | |
1156 -- Improve: move etc/chr.png, etc/chrm.png to etc/photos/ (Ben Wing | |
1157 -- Improve: partially rework Unicode support. -- Ben Wing | |
1158 -- Improve: path handling correctness. -- Ben Wing | |
2593 | 1159 -- Improve: rangetabs get different types of ranges (open/closed start |
2930 | 1160 and end). Change default to be start-closed, end-open. -- Ben Wing |
1161 -- Improve: refactor Initialization changes: (Ben Wing | |
1162 -- Improve: refer to init.el not .emacs in menus. -- Stephen Turnbull | |
1163 -- Improve: s&m files by removing autodetected stuff. -- Ben Wing | |
1164 -- Improve: support dumping bignums. -- Jerry James, Olivier Galibert | |
1165 -- Improve: support for crashing gently. -- Ben Wing | |
1166 -- Improve: type and keyword pedantry. -- Jerry James, Ben Wing | |
1167 -- Improve: update etags from upstream. -- Jerry James | |
1168 -- Remove: EXTERNAL_LIST_LOOP because it can infloop. -- Ben Wing | |
2593 | 1169 -- Remove: etc/gnu.xpm, etc/gnu.xbm, etc/sink.xbm, etc/ms-kermit, |
2930 | 1170 etc/ms-kermit-7bit (Ben Wing |
1171 -- Remove: unneeded/unused code. -- Ben Wing, Stephen Turnbull | |
2593 | 1172 |
1173 Quality Assurance Infrastructure | |
1174 | |
2930 | 1175 -- Fix: conflict with builtin in .gdbinit. -- Golubev I. N. |
1176 -- New: regexp tests. -- Stephen Turnbull, Vin Shelton | |
1177 -- New: os-tests.el. -- Stephen Turnbull | |
1178 -- Improve: profiling support. -- Ben Wing | |
2593 | 1179 |
2345 | 1180 to 21.5.18 "chestnut" |
1181 | |
1182 Major Features | |
1183 | |
2930 | 1184 -- Improve: GTK support gets many fixes and improvements -- Purvis. |
1185 -- Improve: pdump gets data in executable support, -si option -- Galibert. | |
1186 -- New: GTK gets default gtkrc -- Purvis. | |
1187 -- New: bignum support -- James (lead), Sivakumar, Turnbull. | |
2345 | 1188 |
1189 User-Visible Bug Fixes and Minor Improvements | |
1190 | |
2930 | 1191 -- Fix: 'no-conversion is special in eol detection -- Turnbull. |
1192 -- Fix: `display-completion-list' does not overflow window -- Grundmann. | |
1193 -- Fix: X error handler must not call stderr_out -- Clements. | |
1194 -- Fix: bogus error in `apropros' -- Turnbull. | |
1195 -- Fix: bogus error in `package-require' -- Youngs. | |
1196 -- Fix: buffer editing by `call-process-region' -- Aichner. | |
1197 -- Fix: coredump from bogus position computation in syntax cache -- Euler. | |
1198 -- Fix: coredump from redisplay wrapping in signal.c -- James. | |
1199 -- Fix: coredump in giflib -- Hines. | |
1200 -- Fix: etags.el correctly handles tags with name fields -- Grundmann. | |
1201 -- Fix: prevent minibuffer from hijacking marks -- Sperber. | |
1202 -- Fix: respect `allow-deletion-of-last-visible-frame' -- Zajcev. | |
1203 -- Fix: sync revert-buffer to 21.4 -- Turnbull, Sparapani. | |
1204 -- Improve: error message formatting -- Gatzemeier. | |
1205 -- Improve: etags.el optimized for exuberant ctags -- Grundmann. | |
1206 -- Improve: isearch-abort preserves interim successes -- Turnbull, Zawinski. | |
1207 -- Improve: package info reporting -- Youngs. | |
1208 -- Improve: window configuration handling -- Rychter. | |
2345 | 1209 |
1210 Build Infrastructure | |
1211 | |
2930 | 1212 -- Fix: 64-bit support -- Purvis, SuSE. |
1213 -- Fix: configure.in syntax, logic -- Turnbull, James, Purvis. | |
1214 -- Fix: make install went interactive -- Aichner. | |
1215 -- Fix: rebuild finder-inf.el -- Turnbull. | |
1216 -- Improve: Makefile diagnostics -- Turnbull. | |
1217 -- Improve: Windows build support -- Aichner. | |
1218 -- Improve: configure compiler warning setup -- James, Purvis. | |
1219 -- Improve: configure diagnostics -- Turnbull. | |
1220 -- Improve: configure feature detection -- Purvis, James, Turnbull. | |
1221 -- Improve: configure report -- Turnbull, James. | |
1222 -- Improve: icc support -- James. | |
1223 -- Improve: install procedure -- Galibert. | |
1224 -- New: configure supports Playstation2 -- Myrkraverk. | |
1225 -- New: support for parallel builds -- Purvis. | |
2345 | 1226 |
1227 Documentation | |
1228 | |
2930 | 1229 -- Improve: about.el version reporting -- Turnbull. |
1230 -- Improve: comments and docstrings -- Turnbull, Aichner, Gatzemeier. | |
1231 -- New: lispref.texi documents bignum support -- Turnbull, James. | |
1232 -- New: lispref.texi documents text field support -- James. | |
1233 -- Update: FAQ -- Turnbull. | |
1234 -- Update: NEWS -- Turnbull. | |
1235 -- Update: PACKAGES -- Koch. | |
1236 -- Update: about.el -- Turnbull. | |
1237 -- Update: internals.texi -- James, Turnbull. | |
1238 -- Update: lispref.texi -- Turnbull, Okahata. | |
1239 -- Update: menus to XEmacs config file reality -- Turnbull. | |
2345 | 1240 |
1241 Lisp API | |
1242 | |
2930 | 1243 -- Improve: pixel position reporting -- Okahata. |
2345 | 1244 |
1245 Internal API and Implementation | |
1246 | |
2930 | 1247 -- Fix: C macro definition for icc -- James. |
1248 -- Fix: C++ build problems -- James, Verna. | |
1249 -- Fix: Cygwin bug workaround conditionalized -- James. | |
1250 -- Fix: Lisp internal type manipulation -- James. | |
1251 -- Fix: bogus CVS conflict in package-ui.el -- Aichner. | |
1252 -- Fix: callproc.c vestiges removed -- James. | |
1253 -- Fix: format conversions in pdump report -- Turnbull. | |
1254 -- Fix: function argument usage -- James. | |
1255 -- Fix: incomplete macro in external widget support -- Golubev. | |
1256 -- Fix: lwlib GC handling -- James. | |
1257 -- Fix: lwlib computation of widget changes -- James. | |
1258 -- Fix: mark unused parameters -- James, Wing. | |
1259 -- Fix: remove duplicate functions -- Turnbull. | |
1260 -- Fix: remove unused variables -- James. | |
1261 -- Fix: specifier validation -- James. | |
1262 -- Fix: update byte compiler function database -- James. | |
1263 -- Fix: warning suppression -- James, Gatzemeier. | |
2345 | 1264 -- Fix: workaround Darwin's distaste for ISO 8859/2 filenames. |
2930 | 1265 -- Improve: custom database save -- Aichner, Niksic. |
1266 -- Improve: itimer implementation -- James, Jones, Buchholz, Yamaoka. | |
1267 -- Improve: test-harness.el Assert macro -- James. | |
1268 -- New: LTDL support in ELLs -- James. | |
1269 -- Update: INSTALL Canna, Make descriptions -- James, Purvis. | |
1270 -- Update: SERVICE sync with upstream -- James. | |
1271 -- Update: derived.el, subr.el, cl*.el sync to Emacs 21.3 -- James. | |
1272 -- Update: etags sync with upstream v17.6 -- James. | |
2345 | 1273 |
1274 Quality Assurance Infrastructure | |
1275 | |
2930 | 1276 -- Fix: regression tests using most-negative-fixnum -- James. |
1277 -- Improve: faster Mule tests -- Turnbull. | |
1278 -- New: Uno support -- James. | |
1279 -- New: regression tests -- Turnbull, Youngs, Yamaoka, Shelton, James. | |
2345 | 1280 |
1963 | 1281 to 21.5.17 "chayote" |
1282 | |
1283 Build | |
1284 | |
2930 | 1285 -- New: configure reports cc and libc versions -- Kletnieks, Turnbull. |
1286 -- New: configure supports icc -- James. | |
1287 -- New: configure supports typeof extension -- James. | |
1288 -- New: use XCFLAGS to allow different flags for XEMACS_CC -- Turnbull. | |
1289 -- Improve: module build process -- James. | |
1290 -- Fix: compiler warnings -- Turnbull. | |
1291 -- Fix: configure CFLAGS detection -- James, Turnbull. | |
1292 -- Fix: configure arg parsing on Solaris -- Niksic, Shelton, Turnbull. | |
1293 -- Fix: configure warning and progress messages -- Turnbull. | |
1294 -- Fix: force regeneration of Lisp on every build -- Turnbull. | |
1295 -- Fix: minitar compiler warnings, errors -- Aichner. | |
1296 -- Fix: mislocation of installexe.sh -- James. | |
1297 -- Fix: missing $(ldflags) in libsrc -- James. | |
1298 -- Fix: remove dead references to GNU DLD -- James. | |
1299 -- Fix: remove obsolete makefile cruft -- Turnbull. | |
1963 | 1300 |
1301 Documentation | |
1302 | |
2930 | 1303 -- Improve: charset registry docs -- Golubev. |
1304 -- Improve: specifier and internals docs -- Turnbull. | |
1305 -- Improve: test-harness reporting -- Aichner, Shelton, Turnbull. | |
1306 -- New: weak data structure testing -- Kaltenbach. | |
1307 -- Remove: own photos and personal information -- Youngs. | |
1308 -- Update: library versions in Windows docs -- James. | |
1309 -- Update: package list -- Koch. | |
1310 -- Fix: TeXinfo syntax -- Golubev, Turnbull. | |
1311 -- Fix: clarifications -- Turnbull. | |
1312 -- Fix: typos -- Aichner, Golubev, Turnbull. | |
1313 -- Fix: workaround version issues in NAS headers -- Turnbull. | |
1963 | 1314 |
1315 Lisp API | |
1316 | |
1317 -- New: device-num-screens, device-backing-store, device-save-under, | |
2930 | 1318 add-to-invisibility-spec, remove-from-invisibility-spec -- James. |
1963 | 1319 -- New: lazy (widget), widget-child-value-get, widget-child-value-inline, |
1320 widget-child-validate, widget-type-value-create, widget-type-default-get, | |
2930 | 1321 widget-type-match -- Abrahamsen, Youngs. |
1322 -- New: package-get-list-packages-where -- Youngs. | |
1323 -- New: pui-display-maintainer command -- Youngs. | |
1324 -- New: pui-help-echo displays both installed and available versions -- Youngs. | |
1325 -- Synch: frame.el to GNU Emacs 21.3 -- James. | |
1326 -- Fix: cl-do-prettyprint formatting of prog* -- Youngs. | |
1327 -- Fix: update coding system name usage -- James. | |
1963 | 1328 |
1329 Internals | |
1330 | |
2930 | 1331 -- Improve: KKCC -- Kaltenbach. |
1332 -- Improve: compiler.h for use with modules -- James. | |
1333 -- Improve: make QUIT-related APIs visible to modules -- James. | |
1334 -- New: support more device metrics on X11 -- James. | |
1335 -- New: support symbols in Darwin shared libraries -- Purvis. | |
1336 -- New: widget-default-create uses char-table -- Haddock. | |
1337 -- New: xfree gets a type parameter for error-checking -- James. | |
1338 -- Fix: (remove) duplicated code -- James. | |
1339 -- Fix: GCPRO_STACK in byte interpreter -- Turnbull. | |
1340 -- Fix: GTK marshalling code -- Purvis. | |
1341 -- Fix: aliasing problems -- Turnbull. | |
1342 -- Fix: bad interaction in initialization of args with pdumper -- Benson. | |
1343 -- Fix: bit fields need to be unsigned in unicode detectors -- James. | |
1344 -- Fix: coding system for GPG verification -- Youngs. | |
1345 -- Fix: hard-coded options to use APIs -- Pakoulin. | |
1346 -- Fix: improper use of XSetArg in frame-x.c -- Turnbull. | |
1347 -- Fix: lstream close code -- Euler. | |
1348 -- Fix: paragraph detection in Japanese -- Yamaoka, Turnbull. | |
1349 -- Fix: regexps using \{ -- Monnier, Turnbull. | |
1350 -- Fix: set dirty flag in mirror window at proper time -- Galibert. | |
1351 -- Fix: several missing GC wrappers which caused crashes -- James. | |
1352 -- Fix: some GCPROed variables were declared register -- McPherson. | |
1353 -- Fix: stale info in realpath computation -- James. | |
1354 -- Fix: two infloops in GC -- James. | |
1355 -- Fix: usage of prin1 and princ in help -- Eide, Shelton. | |
1963 | 1356 |
1357 | |
1716 | 1358 to 21.5.16 "celeriac" |
1359 | |
1360 Build | |
1361 | |
2930 | 1362 -- Don't detect GNU DLD -- James. |
1363 -- Better detection of sound on Solaris9 -- Buchholz. | |
1364 -- Add support detecting SunOS 5.10 in configure -- Buchholz. | |
1716 | 1365 -- Use '-bundle' when testing ability to build shared libs, but use |
2930 | 1366 '-bundle_loader' in ellcc -- Begel. |
1367 -- Output separate declaration and definition for dump_id -- James. | |
1368 -- Add Makefile targets to build PDF docs -- Wambold. | |
1716 | 1369 -- Don't mangle the unload function in `unload_postgresql' and |
2930 | 1370 `unload_ldap' when compiling with C++ -- James. |
1371 -- Use extern "C" for C++ builds -- James. | |
1372 -- Conditionally compile messages missing from the Cygwin headers -- James. | |
1373 -- Add cast to quiet compiler in unexcw.c -- James. | |
1374 -- Quiet compiler warnings about struct stat in syswindows.h -- James. | |
1375 -- Test \{m,n\} in regexp-tests -- Turnbull. | |
1716 | 1376 |
1377 Documentation | |
1378 | |
2930 | 1379 -- Propose bash as workaround for buggy Solaris sh in PROBLEMS -- Sparapani. |
1716 | 1380 -- Fix the PRINTED-MANUAL-TITLE arg for cross ref to "The XEmacs User's Manual" |
2930 | 1381 -- Aichner. |
1382 -- New node: "A Reader's Guide to XEmacs Coding Conventions" -- Turnbull. | |
1383 -- New node: "Customizing Message Display" -- Golubev. | |
1716 | 1384 |
1385 Internals | |
1386 | |
2930 | 1387 -- In ellcc.c don't mangle external symbols in generated doc file -- James. |
1716 | 1388 -- Add PARTIALLY parameter to support Fpos_visible_in_window_p parameter in |
2930 | 1389 redisplay -- James. |
1390 -- Use 'point_would_be_visible' parameter in `scrollbar_reset_cursor' -- James. | |
1391 -- Add PARTIALLY parameter fo `Fpos_visible_in_window_p' -- James. | |
1392 -- Use new 'point_would_be_visible' parameter in `window_scroll' -- James. | |
1393 -- dll_open now takes a Lisp_Object -- James. | |
1394 -- Remove useless call to dll_init -- James. | |
1395 -- char to CIbyte conversion in emodules.c, sysdll.c -- James. | |
1396 -- Do not mangle module initialisation function names -- James. | |
1397 -- char to Extbyte conversion in sysdll.c -- James. | |
1398 -- Return a Lisp_Object instead of a string in `dll_error' -- James. | |
1399 -- Make eval-related functions visible to modules -- James. | |
3915 | 1400 -- Allow specifying elisp function for waiting user input while displaying |
2930 | 1401 message while in minibuffer -- Golubev. |
1402 -- Use OS_RELEASE=os_release_major*100+os_release_minor in s/sol2.h -- Buchholz. | |
1403 -- Add lrecord_memory_descriptions -- Crestani. | |
1404 -- Remove GetLongPathNameW -- Harris. | |
1405 -- A couple of new macros to compare w32api versions -- James. | |
1406 -- KKCC fixes -- Crestani. | |
1716 | 1407 |
1408 Lisp API | |
1409 | |
2930 | 1410 -- Allow user to specify alternative function for displaying message -- Golubev. |
1411 -- New var to specify the maximum received fonts -- LewisMoss. | |
1412 -- Allow gnuserv to fallback to GTK if X device fails -- LewisMoss. | |
1413 -- Eval the initialisation value of `eol-detection-enabled-p' -- Alexander. | |
1414 -- Make sure `setbuffer-file-coding-system' sets the eol type -- Alexander. | |
1415 -- Remove unnecessary definitions of 'null-device' -- Turnbull. | |
1416 -- Actually implement the specified semantics for 'defvar' -- Sperber. | |
1417 -- Fix `shrink-to-fit' by calling `shrink-window-if-larger-than-buffer' -- Aichner. | |
1716 | 1418 |
1419 | |
1665 | 1420 to 21.5.15 "celery" |
1421 | |
1422 Build | |
1423 | |
2930 | 1424 -- Autoconf configure updates -- James, Turnbull. |
1425 -- Makefile updates -- James. | |
1426 -- Minor updates to make-docfile.c -- Begel. | |
1427 -- Wrap assert_failed with EXTERN_C for modules -- James. | |
1428 -- Updates to modules Makefile.common -- James. | |
1665 | 1429 -- Include emodules.h when building modules in postgresql.c |
2930 | 1430 and ldap.c -- James. |
1431 -- Updates to xemacs.mak -- Aichner. | |
1665 | 1432 -- Add some extern "C" declarations for C++ module builds |
2930 | 1433 -- James. |
1434 -- Add casts for C++ builds in mule-canna.c -- James. | |
3915 | 1435 -- Add type casts in database.c to satisfy C++ compilers. |
1665 | 1436 -- Log result summary of tests when the testsuite is running |
2930 | 1437 noninteractive -- Aichner. |
1438 -- Add some tests for weak-lists -- Crestani, Kaltenbach. | |
1665 | 1439 |
1440 | |
1441 Documentation | |
1442 | |
2930 | 1443 -- Update README.(HYPERBOLE|OO-BROWSER) -- Turnbull. |
1444 -- Update etc/PACKAGES -- Turnbull, Koch, Youngs. | |
1445 -- Update etc/sample.Xresources -- Turnbull. | |
1446 -- Major update and audit of all documents relating to PUI -- Youngs. | |
1665 | 1447 -- Mention `line-move-ignore-invisible' (display.texi "Invisible Text") |
2930 | 1448 -- Kyllingstad. |
1665 | 1449 -- Document that end-glyph is still displayed when invisible |
2930 | 1450 is set (extents.texi "Extent Properties") -- Kyllingstad. |
1665 | 1451 -- Document that only begin-glyph is highlighted (extents.texi "Extents |
2930 | 1452 and Events") -- Kyllingstad. |
1453 -- Various typo and docstring fixes -- Turnbull, Sperber. | |
1454 -- Add missing '@end' defun in lists.texi -- Shelton. | |
2865 | 1455 -- Document ?\x00 read syntax and range limitations on ?\000 and |
2930 | 1456 ?\x00 read syntaxes (objects.texi "Character Type") -- Turnbull. |
1665 | 1457 -- Document `true-list-p' (lists.texi "List-related Predicates") |
2930 | 1458 -- Turnbull. |
1665 | 1459 |
1460 | |
1461 Internals | |
1462 | |
2930 | 1463 -- KKCC updates -- Crestani, Kyllingstad. |
1665 | 1464 -- Define DECLARE_MODULE_API_LRECORD when not ERROR_CHECK_TYPES |
2930 | 1465 -- James. |
1466 -- Updates to DSO code -- James. | |
1467 -- Remove unused (X)OPAQUE_MARKFUN definitions -- James. | |
1468 -- GCPRO updates -- Sperber. | |
1469 -- Mouse wheel fixes in event-msw.c -- Kyllingstad. | |
1470 -- Use 'HAVE_DLD_INIT' instead of 'HAVE_INIT_DLD' in sysdll.c -- James. | |
1471 -- Rewrite ephemeron marker code -- Sperber. | |
1472 -- Fix printing of symbol names in .gdbinit -- Golubev. | |
1473 -- Fixes to `update_frame_toolbars_geometry' -- Sperber. | |
1474 -- Fix missing commas in `fonts' initialiser -- Golubev. | |
1475 -- Add `opaque_ptr_description' -- Crestani. | |
1476 -- Add `allocate_big_string_chars' -- Turnbull, Buchholz. | |
1665 | 1477 |
1478 | |
1479 Lisp API | |
1480 | |
2930 | 1481 -- New alias `apropos-customize' -> `customize-apropos' -- Aichner. |
3915 | 1482 -- Remove unnecessary arg from `pui-set-local-package-get-directory -- Youngs. |
2930 | 1483 -- New key bindings in mwheel.el -- Kyllingstad. |
1484 -- Make `insert-directory' to be more like FSF version -- Sperber. | |
1485 -- Window configuration fixes in isearch code -- Sperber. | |
1486 -- Implement simple object finalisation in post-gc.el -- Sperber. | |
1487 -- Updates to etags.el -- Turnbull. | |
1488 -- Updates to cl-macs.el -- Pakoulin. | |
1489 -- Fix "do-nothing" bug in `derived-mode-merge-syntax-tables' -- Turnbull. | |
1490 -- Fixes to `restore-saved-window' -- James. | |
2865 | 1491 -- Handle missing "EMACSPACKAGEPATH" env var in |
2930 | 1492 `package-get-package-index-file-location' -- Aichner. |
1493 -- Fix substring errors in `package-admin-find-top-directory' -- Aichner. | |
1665 | 1494 -- Fix `byte-compile-lambda' so it only discards the docstring if it is |
2930 | 1495 not also the value of the lambda -- Turnbull. |
1496 -- Don't insist in lib-src directory in `path-emacs-root-p' on WinNT -- Aichner. | |
1497 -- Don't include '(' in `font-lock-function-name-face' -- Aichner. | |
1665 | 1498 |
1499 | |
1510 | 1500 to 21.5.14 "cassava" |
1501 | |
1502 This release has a few documentation updates thanks to Steve | |
1503 Turnbull, better Makefile handling for modules on MacOSX from | |
1504 Andrew Begel and Jerry James. Also, it is now possible for the | |
1505 user to specify the location of the package-index file for PUI to | |
1506 use, see `package-get-package-index-file-location'. | |
1507 | |
1508 Build | |
1509 | |
2930 | 1510 -- Autoconf tweaks for building modules on MacOSX -- James. |
1511 -- GCC fixes in ellcc.c -- James. | |
1512 -- Module Makefile fixes -- Begel, James. | |
1513 -- Fix shadow warning in regex.c -- James. | |
1510 | 1514 |
1515 Documentation | |
1516 | |
2930 | 1517 -- New TeXinfo node "Searching and Matching" -- Turnbull. |
1518 -- New section "Legacy Versions" in FAQ -- Turnbull. | |
1519 -- New FAQ question Q8.0.1 -- Turnbull. | |
1520 -- Update split-string specs in "Regexp Search" -- Turnbull. | |
1510 | 1521 |
1522 Internals | |
1523 | |
2930 | 1524 -- Package index file updated -- Koch. |
1525 -- Add some debug checks in file-coding.c -- Turnbull. | |
1510 | 1526 |
1527 Lisp API | |
1528 | |
1529 -- Make error message report the sym checked in | |
1530 `autoload-featurep-protect-autoloads' -- Turnbull. | |
2930 | 1531 -- `split-string' tweaks -- Turnbull. |
1532 -- Make the location of the package-index file user customisable -- Youngs. | |
1533 -- Turn on package-index file PGP verification -- Youngs. | |
1534 -- Only use message if interactive for functions in replace.el -- Josefsson. | |
1510 | 1535 |
1457 | 1536 to 21.5.13 "cauliflower" |
1537 | |
1473 | 1538 Remember that bug that made return behave as linefeed in a TTY? It's |
1539 gone! Thanks go out to Jerry James and Steve Turnbull for squashing | |
1540 this year old bug. Of course, that wasn't the only bug fixed this | |
1541 time around. | |
1457 | 1542 |
1543 Here are the highlights: | |
1544 | |
1545 Build | |
1546 | |
2930 | 1547 -- Don't look for Motif if it's already been found -- Buchholz. |
1548 -- Darwin, Cygwin, BerkDB autoconf fixes -- Turnbull. | |
1549 -- Make DEFUNed functions be tags -- Buchholz. | |
1550 -- Allow compiling with Motif 1 and linking with Motif 2 -- Buchholz. | |
1551 -- Update regexp tests -- Turnbull. | |
1552 -- Don't autodetect ESD (Enlightened Sound Daemon) -- Turnbull. | |
1457 | 1553 |
1554 | |
1555 Documentation | |
1556 | |
2930 | 1557 -- New section in PROBLEMS auxilary programs for Windows -- Turnbull. |
1457 | 1558 -- FAQ updates |
2930 | 1559 Q6.4.3 New aux programs for Windows -- Turnbull. |
1560 -- Document failed match preserves data -- Turnbull. | |
1457 | 1561 |
1562 | |
1563 Internals | |
1564 | |
2930 | 1565 -- Don't use the u_int8_t etc typedefs on FreeBSD in database.c -- Pluim. |
1566 -- Better support for externally defined lrecord types -- Begel. | |
1567 -- Only call `xm_update_progress' if Motif is defined -- Youngs. | |
1568 -- Define __STDC__ for BerkeleyDB -- Buchholz. | |
1569 -- Fix bug where XEmacs couldn't find its .dmp file -- Buchholz. | |
1570 -- Move `filemodestring' from lisp.h to sysfile.h -- Golubev. | |
1571 -- Clean ups against the possibility of sys/stat.h defining stat -- Turnbull. | |
1572 -- Search/match updates -- Turnbull. | |
1457 | 1573 |
1574 | |
1575 Lisp API | |
1576 | |
2930 | 1577 -- Fix bug preventing installing new packages -- Youngs. |
1578 -- Put exit message on separate line in `command-error' -- Turnbull. | |
1579 -- Temporarily turn off PGP verification of package-index -- Youngs. | |
1580 -- Remove keymapings for 'function-key-error' -- James. | |
1581 -- Fix bug that mapped RET to LFD in TTYs -- James. | |
1457 | 1582 |
1583 | |
1431 | 1584 to 21.5.12 "carrot" |
1585 | |
1586 Lots of updates, fixes, and features from Ben Wing (he never stops). | |
1587 Also, a lot of work has gone into cleaning up the test suite. Thanks | |
1588 to Steve Turnbull, Jerry James, Daiki Ueno because now all tests from | |
1589 'make check' pass 100% (at least on GNU/Linux). | |
1590 | |
1591 Here are the highlights: | |
1592 | |
1593 Build | |
1594 | |
2930 | 1595 -- Updates to configure.in -- Steuck, James, Skyttä, Wing. |
1596 -- Major updates to Makefile.in.in -- Wing. | |
1597 -- Allow for separate build and source directories -- Wing. | |
1598 -- Fix some compiler warnings -- Wing. | |
1599 -- Major clean up of xemacs.mak and friends -- Wing, Aichner. | |
1600 -- Fix some Solaris 2.7 CC compiler warnings -- Persico. | |
1601 -- Fix for building on Mac -- Palmer. | |
1431 | 1602 -- Work around a problem compiling with '--use-union-type' on Intel's |
2930 | 1603 ICC compiler -- Buchholz. |
1604 -- Fix problems with rel-alloc compilation -- Wing. | |
1605 -- Sequentialize dependencies even more in update-elc-2 -- Sperber. | |
1431 | 1606 -- Don't fatal() in 'report_sheap_usage' when need to rerun Make - |
2865 | 1607 Wing. |
2930 | 1608 -- Various updates to the test suite -- Turnbull. |
1431 | 1609 |
1610 Documentation | |
1611 | |
1612 -- Updates to | |
2930 | 1613 INSTALL -- Turnbull, Wing. |
1614 PROBLEMS -- Turnbull, Wing. | |
3915 | 1615 -- Global substitution of .Xresources for .Xdefaults -- Turnbull. |
2930 | 1616 -- Update packages in ./etc/BETA -- Skyttä. |
1617 -- Doc string updates -- Korytov, Turnbull, Wing. | |
1618 -- TeXinfo updates -- Aichner, Turnbull, Wing, Youngs. | |
1431 | 1619 |
1620 Internals | |
1621 | |
2930 | 1622 -- Fix stale match data after failed search bug -- Turnbull. |
1431 | 1623 -- Reformat function definitions correctly in menubar-gtk.c and |
2930 | 1624 event-gtk.c -- Turnbull. |
1431 | 1625 -- Fix bug matching ASCII character classes to Mule characters - |
2865 | 1626 Ueno. |
2930 | 1627 -- Frame updates for MS Win -- Alexander. |
1431 | 1628 -- Add .dylib as an acceptable shared library file extension to |
2930 | 1629 support MacOS X -- Begel. |
1630 -- Fix bug in database.c for Berkdb 4.1 -- Turnbull. | |
1631 -- Regex fixes -- Turnbull, Wing. | |
1632 -- Coding system updates -- Wing. | |
1633 -- Add clear-left-side functionality in print.c -- Wing. | |
1634 -- Seg fault rather than abort on Cygwin in 'assert_failed' -- Wing. | |
1635 -- Delete popup-data object -- Wing. | |
1636 -- Delete menubar_data field from frames -- Wing. | |
1637 -- Clean up handling of lwlib callback data GCPRO'ing -- Wing. | |
1431 | 1638 -- Use ALLOCA() in regex.c to avoid excessive stack allocation - |
2865 | 1639 Wing. |
2930 | 1640 -- Fix subtle problem with REL_ALLOC() -- Wing. |
1431 | 1641 -- Change *run_hook*_trapping_problems to take a warning class, not a |
2930 | 1642 string -- Wing. |
1643 -- Mule-ize encrypt/decrypt-string code -- Wing. | |
1644 -- Delete all support for bit-rotten CANNOT_DUMP -- Wing. | |
1431 | 1645 -- Fix crash due to attempt to free objects across dump/undump - |
2865 | 1646 Wing. |
1431 | 1647 -- Don't get in an infinite loop running post-redisplay actions - |
2865 | 1648 Wing. |
2930 | 1649 -- Make gc_currently_forbidden static -- Wing. |
1650 -- Defer redrawing if already in redisplay -- Wing. | |
1651 -- Add debug code for locking a dynarr to catch invalid mods -- Wing. | |
1431 | 1652 -- Ensure that various glyph functions that eval within redisplay |
2930 | 1653 protect the evals -- Wing. |
1654 -- Defer specifier-changed updating till after redisplay -- Wing. | |
1431 | 1655 -- Require that every place inside of redisplay catch errors itself - |
2865 | 1656 Wing. |
2930 | 1657 -- Introduce separate means of holding frame-size changes -- Wing. |
1431 | 1658 -- Introduce "post-redisplay" methods for deferring things till after |
2930 | 1659 redisplay -- Wing. |
1660 -- Disable all quit checking in redisplay -- Wing. | |
1431 | 1661 -- Use _wexecve() when under Windows NT for Unicode correctness - |
1662 Wing. | |
2930 | 1663 -- Update list of possibly valid console types -- Wing. |
1431 | 1664 -- Turn on Vstack_trace_on_error 'Frun_emacs_from_temacs' so that |
1665 errors are debuggable even when occurring extremely early in | |
2930 | 1666 reinitialization -- Wing. |
1667 -- Define new function `emacs-run-status' -- Wing. | |
1431 | 1668 -- Fix crash caused by an edge condition in the syntax-cache macros - |
2865 | 1669 Wing. |
2930 | 1670 -- Eliminate HAVE_WIN32_CODING_SYSTEMS, use WIN32_ANY instead -- Wing. |
1431 | 1671 -- Don't check_quit() unless we're unbinding a real Lisp |
2930 | 1672 `unwind-protect' -- Wing. |
1431 | 1673 -- Make absolutely sure there is no quit checking while we are in a |
2930 | 1674 "critical section" during frame deletion -- Wing. |
1431 | 1675 |
1676 Lisp API | |
1677 | |
2930 | 1678 -- Fix infloop in font-lock for java files -- Choi. |
1679 -- Fix split-string -- Turnbull. | |
1680 -- Support '(filename)nodename' as argument to 'info' -- Steib. | |
1681 -- Major clean up of the PUI code -- Youngs. | |
1682 -- Use 'equal' instead of '=' in 'saved-window-equal' -- James. | |
1683 -- Updates to wid-edit.el -- Turnbull. | |
1431 | 1684 -- Better layout for Tools -> Packages -> Download Site menu - |
2865 | 1685 Aichner. |
2930 | 1686 -- More sites added to packages download sites menu -- Aichner. |
1431 | 1687 -- Byte-compiler warning clean up and lots of synching with FSF 21.2 |
2930 | 1688 code -- Wing. |
1431 | 1689 -- Move lots of high-level code for computing paths into |
2930 | 1690 setup-paths.el from various places -- Wing. |
1691 -- Mule and coding system updates -- Wing, Turnbull. | |
1431 | 1692 |
1693 | |
1307 | 1694 to 21.5.11 "cabbage" |
1695 | |
1696 Lots of improvements and fixes this time around. One of our key | |
1697 players, Ben Wing, has drastically improved font-locking (go turn on | |
1698 lazy-lock to check it out). Apart from many other bug fixes, Ben | |
1699 has also given us a speed up to the build process (--quick-build | |
1700 configure option). | |
1701 | |
1702 Other stars we should mention are: Mike Sperber, for window | |
1703 configuration fixes and updates; Stephen Turnbull for build fixes, | |
1704 documentation and typo fixes. Stephen also gave us some major updates | |
1705 to autoload.el and wid-edit.el. And also Jerry James with some more | |
1706 DSO updates. | |
1707 | |
1708 Here are the highlights: | |
1709 | |
1710 Build | |
1711 | |
2930 | 1712 -- Updates to test suite -- Turnbull. |
1713 -- Use -no-autoloads with update-elc-2 -- Wing. | |
1714 -- Check for strupr and strlwr -- Sperber. | |
3915 | 1715 -- Delete auto-autoloads.el* & custom-load.el* files on make clean -- Turnbull. |
2930 | 1716 -- Fix --srcdir processing -- Turnbull. |
1717 -- Define DLSYM_NEEDS_UNDERSCORE on Darwin -- Turnbull. | |
1718 -- Use opsys=aix4-2 for AIX 5 and above -- Buchholz. | |
1719 -- Make ellcc search XEmacs directories for include files 1st -- James. | |
1720 -- Set stack-trace-on-error, load-always-display-messages -- Wing. | |
1721 -- Overhaul update-elc.el, cus-dep, autoload (speed ups) -- Wing. | |
1722 -- Various compiler warning fixes -- Wing. | |
1723 -- FreeBSD updates in modules/Makefile.common -- Pluim. | |
1724 -- Warning fix in eldap.c -- James. | |
1725 -- Support C++ & KKCC compilation in Windows -- Wing. | |
1726 -- Various fixups in nt/config.in.samp -- Wing. | |
1727 -- Fixes in xemacs.mak -- Wing. | |
1728 -- Clean up compile errors with C++ under Windows -- Wing. | |
1729 -- Re-order sections in ldflags for gcc 3.2 -- Okhapkin. | |
1730 -- Restore USE_XFONTSET -- Turnbull. | |
1731 -- New symbol: DLSYM_NEEDS_UNDERSCORE -- Turnbull. | |
1732 -- Guard against multiple definitions of _ALL_SOURCE -- Buchholz. | |
1733 -- QUICK_BUILD updates -- Wing. | |
1307 | 1734 |
1735 Documentation | |
1736 | |
2930 | 1737 -- Major update to configure.usage -- Wing. |
1738 -- New developer bio's -- James, Skyttä, Golubev. | |
1307 | 1739 -- Amendments/additions to PROBLEMS: |
2930 | 1740 - PostgreSQL DSO with --error-checking=all -- James. |
1741 - Consolidate Motif problems into one section -- Turnbull. | |
1307 | 1742 -- Amendments/additions to INSTALL: |
2930 | 1743 - Recommend Mule -- Turnbull. |
1744 - Deprecate stripped binaries -- Turnbull. | |
1307 | 1745 -- General tidy up of etc/BETA, rewrite sections dealing with packages |
2930 | 1746 and building from scratch -- Youngs. |
1747 -- General doc fixes, typos etc -- Youngs, Turnbull, Palmer, Wing. | |
1748 -- Fix xref in Auto-Saving -- Aichner. | |
1749 -- Update Local.rules File section in packages.texi -- Youngs. | |
1750 -- Clarify package hierarchy structure -- Turnbull. | |
1751 -- Major fixup of internals.texi -- Wing. | |
1752 -- Lots of Mule rewriting in lispref/mule.texi -- Wing. | |
1753 -- Document USE_UNION_TYPE evilness -- Wing. | |
1754 -- Document event-matches-key-specifier-p better -- Wing. | |
1755 -- Change illegal (for C) '//' comments to '/* */' -- Shelton, Turnbull. | |
1307 | 1756 |
1757 Internals | |
1758 | |
2930 | 1759 -- Synch rcs2log to GNU upstream -- Youngs. |
1307 | 1760 -- Use symbolic name `XtExposeCompressMaximal' instead of `TRUE' in |
2930 | 1761 xlwMenuClassRec -- Buchholz. |
1762 -- In xm_update_progress, don't define unless LWLIB_WIDGETS_MOTIF -- Buchholz. | |
1763 -- Rename class -> class_ & new -> new_ -- Wing. | |
1764 -- KKCC update in postgresql.c -- Wing. | |
1765 -- KKCC update in eldap.c -- James. | |
1766 -- Fix for unix_create_process -- Ueno. | |
1767 -- Set stack reserve size during unexec() -- Piper. | |
1768 -- Use 'struct htentry' not 'struct hentry' in elhash.c -- Wing. | |
1307 | 1769 -- New macros ALIST_LOOP_3, ALIST_LOOP_4. |
2930 | 1770 -- Fix 'xemacs -batch -l dunnet' under Cygwin -- Wing. |
1771 -- Implement delaying of XFlush() if pending expose events -- Wing. | |
1772 -- Fix some longstanding bugs in X quit handling -- Wing. | |
1773 -- Correct the message output upon crashing to be more up-to-date -- Wing. | |
1307 | 1774 -- Add dp() & db() as short synonyms of debug_print() & |
2930 | 1775 debug_backtrace() -- Wing. |
1776 -- Add C++ error-checking code to verify problems with GCPRO/UNGCPRO -- Wing. | |
1777 -- Change the way gap arrays are allocated (for KKCC) -- Wing. | |
1307 | 1778 -- Now lcrecords set the type of items sitting on the free list to |
2930 | 1779 lcrecord_type_free -- Wing. |
1307 | 1780 -- All lcrecord allocation functions now zero out the returned |
2930 | 1781 lcrecords -- Wing. |
1782 -- Additional asserts in FREE_FIXED_TYPE -- Wing. | |
1783 -- Make bit vectors lcrecords, like vectors -- Wing. | |
1784 -- MARKED_SLOT() call no longer includes semicolon -- Wing. | |
1785 -- Factor out some code duplicated in KKCC and pdump -- Wing. | |
1786 -- KKCC updates -- Wing. | |
1787 -- Add a fifth field "flags" to memory_description -- Wing. | |
1788 -- Add support for "description maps" -- Wing. | |
1307 | 1789 -- Redo XD_UNION so it works inline and change format to provide info |
2930 | 1790 for pdump -- Wing. |
2865 | 1791 -- Textual changes: |
2930 | 1792 - lrecord_description -> memory_description -- Wing. |
1793 - struct_description -> sized_memory_description -- Wing. | |
1794 -- Initialize protect_me field of popup_data in set_frame_menubar -- Sperber | |
1795 -- GTK updates -- Sperber. | |
1307 | 1796 -- Don't lead to a crash if dealing with a dead |
2930 | 1797 window/frame/device/console -- Sperber. |
1798 -- Prevent crash for combination windows -- Sperber. | |
1799 -- Window fixes in Fdelete_window -- Sperber. | |
1800 -- Module updates in emodules.h -- James. | |
1801 -- Fprovide from 'vars_of_file_coding' not 'syms_of_file_coding' -- Turnbull. | |
1802 -- Fix syntax of macro in 'mark_object_maybe_checking_free -- Turnbull. | |
1803 -- Eliminate bogus require-prints-loading-message -- Wing. | |
1804 -- Turn on `load-warn-when-source-newer' by default -- Wing. | |
1307 | 1805 -- Fix up crashes when selecting menubar items due to lack of GCPROing |
2930 | 1806 -- Wing. |
1807 -- Implement tail-recursion in KKCC -- Wing. | |
1808 -- Fix UTF-(8|16) detector -- Wing. | |
1307 | 1809 -- Fix problems with reentrant calling of lwlib and associated crashes |
2930 | 1810 when selecting menu items -- Wing. |
1811 -- Improve redisplay handling of preemption -- Wing. | |
1812 -- Return the parameter from strlvr, strupr, depend on !HAVE_STRUPR -- James. | |
1813 -- In sysdll.c included lisp.h to define needed alloca_array -- Begel. | |
1814 -- Pull GC_CHECK_NOT_FREE out of USE_KKCC -- Sperber. | |
1815 -- Abort when any attempts to output a stream console are made -- Wing. | |
1816 -- Formatting fixes in redisplay-output.c -- Wing. | |
1817 -- Clean up redisplay a bit -- Wing. | |
1818 -- Fix scrollbar code TTY devices don't have them -- Sperber. | |
1819 -- Major reworking of profile code -- Wing. | |
1820 -- Dramatically improve redisplay speed over slow X connections -- Buchholz. | |
1821 -- Move syntax table description from buffer.c to syntax.c -- Wing. | |
1822 -- Updates to char,mirror,syntax tables code -- Wing. | |
1823 -- Niggly whitespace fixups -- Wing. | |
1307 | 1824 |
1825 Lisp API | |
1826 | |
2930 | 1827 -- Updates to (japan|cryil)-util.el -- Turnbull. |
1828 -- Updates to how XEmacs computes various paths -- Sperber. | |
1829 -- Window configuration fixes -- Sperber, Wing. | |
1830 -- Make Info-insert-dir end n separator -- Buchholz. | |
1831 -- Drastically reorganise autoload.el -- Turnbull. | |
1832 -- Omit M-S-home/end from motion keys -- Wing. | |
1833 -- Synch wid-edit to GNU/Emacs 21.3.50 -- Turnbull. | |
1834 -- Updates to hyper-apropos -- Wing. | |
1835 -- Reorganise Help -> Info submenu -- Wing. | |
1836 -- Fix bug when end > start in text-props -- Wing. | |
1837 -- Fix walk-windows -- Wing. | |
3915 | 1838 -- Fix for call to set-language-unicode-precedence-list -- Nyyssönen. |
2930 | 1839 -- Synch up byte-optimize.el -- Wing. |
1840 -- Include FUNLIST argument to generate-c-file-autoloads-1 -- Wing. | |
1307 | 1841 |
1842 | |
1146 | 1843 to 21.5.10 "burdock" |
1844 | |
1187 | 1845 Please accept my apologies for the very long wait between releases |
1846 this time around. My PC chose the 21.5.10 development cycle to go up | |
1847 in a sickening cloud of smoke. :-( (Steve Youngs <youngs@xemacs.org>) | |
1848 | |
1849 Lots of updates from Ben Wing (as always), also from Andy Piper, Mike | |
1850 Sperber, and Stephen Turnbull with lots of documentation updates and | |
1851 fixes. One new exciting addition in this release is that the LDAP and | |
1852 PostgreSQL code has been extracted out of the core C code and moved to | |
1853 DSO's. We have Jerry James to thank/blame/worship for that. | |
1854 | |
1855 Build | |
1856 | |
2930 | 1857 -- Reset sheap-adjustment to zero -- Piper. |
1858 -- Make --pdump default to yes on Linux -- Turnbull. | |
1859 -- Only use -Wpacked in GCC v3 -- Wing. | |
1860 -- Remove LISP_FLOAT_TYPE definition. -- James. | |
1861 -- Temporarily disable DSO's under Cygwin -- Wing. | |
1862 -- Updates to DSO building code (Makefile.in, configure.in etc) -- Wing, James. | |
1863 -- Separate compiler warning flags from CFLAGS -- Wing. | |
1864 -- Delete auto-autoloads.e* & custom-load.e* on 'make clean' -- Turnbull. | |
1865 -- Disable detection of 'getaddrinfo' for HP-UX 11.XX -- Turnbull. | |
1866 -- Include modules directories in 'make tags' -- Youngs. | |
1867 -- Fix shadowing warnings in make-docfile.c -- Wing. | |
1187 | 1868 -- Move the common stuff from postgresql/ldap Makefile.in.in & |
1869 configure.ac's into a "common" Makefile and configure script - | |
1870 Wing. | |
2930 | 1871 -- Major cleanup of ellcc -- Wing, James. |
1872 -- Add Makefile var to pick up '--site-libraries' in DSO's -- Youngs. | |
1187 | 1873 -- Avoid unnecessary deviations from UNIX 'describe-installation' in |
2930 | 1874 xemacs.mak -- Aichner. |
1875 -- Don't confirm overwriting files in xemacs.mak -- Aichner. | |
1876 -- Support 'xemacs_extra_name' in xemacs.mak -- Aichner. | |
1877 -- Some gcc/g++ 3 fixes -- Wing. | |
1878 -- Warning fixes -- Wing. | |
1879 -- Fix some C++ errors -- Wing. | |
1187 | 1880 -- Allow for C needing volatile and C++ that can't have volatile, |
2930 | 1881 remove previous volatile hacks -- Wing. |
1882 -- Try for a working Cygwin build with old unexec -- Wing. | |
1883 -- Warning suppression -- Turnbull. | |
1884 -- New Mule character class regexp tests -- Turnbull, Ueno. | |
1885 -- Better handling of known bugs in tests -- Turnbull. | |
1886 -- Add test for stale subexpr match-data -- Turnbull. | |
1887 -- Update syntax-table tests -- Turnbull. | |
1888 -- Add word-boundary regexp tests -- Turnbull. | |
1187 | 1889 |
1890 Documentation | |
1891 | |
1892 -- Updates to PROBLEMS file | |
2930 | 1893 Running/Linux - Lesstif 0.93.36 -- Turnbull |
1894 Running/IRIX - Irix 6.5 coredumps -- Turnbull | |
1895 Running/Cygwin - "No cygXpm-noX" fatal error -- Turnbull | |
1896 Missing charsets - Remove ambiguity -- Turnbull | |
1897 Running, General - FontSet warnings -- Turnbull | |
1898 MacOS/X - Stack limitation -- Turnbull | |
1899 Digital Unix - Generalise -- Turnbull | |
1900 AIX - USE_KKCC lossage -- Turnbull. | |
1901 -- Update instructions in info/dir -- Wallington. | |
1902 -- Recommend TeXinfo 4.2 in INSTALL -- Turnbull. | |
1903 -- Add example in sample.Xdefaults -- Boffi. | |
1904 -- Typo fixes -- Yamaoka, Youngs, Turnbull, Wing. | |
1905 -- Docstring fixes -- Turnbull, Piper, Skyttä, Wing. | |
1906 -- Update description of XEmacs Patches and Design ML's -- Turnbull. | |
3915 | 1907 -- Incorporate ChangeLog.X into ChangeLog -- Wing. |
1187 | 1908 -- FAQ additions/amendments: |
2930 | 1909 Debugging FAQ improvements -- Wing. |
1910 Mention union type bugs -- Turnbull. | |
1911 Debugging HOWTO improvements -- Turnbull. | |
1912 Decoding Lisp objects in the debugger -- Turnbull. | |
1913 Fix location of FAQ on website -- Skyttä. | |
1914 Add missing menu entry for Q3.2.7 -- Verna. | |
1915 Displaying non-ASCII -- Turnbull. | |
1916 Mention bug report commands -- Turnbull. | |
1917 Revise Q1.3.[1-6] -- Turnbull. | |
1918 New FAQ for "no cygXpm-noX" fatal error -- Turnbull. | |
2865 | 1919 -- New TeXinfo nodes: |
2930 | 1920 "Widget Internals" -- Turnbull. |
1921 "Simple Specifier Usage" -- Turnbull. | |
1922 "Compilation Options" -- Turnbull. | |
1923 -- Document charset Unification and Tables -- Turnbull. | |
1924 -- Better short description of Mule in Mule submenu -- Turnbull. | |
1925 -- Regression Testing XEmacs design hints & rewrite -- Turnbull. | |
1926 -- Document 'face-frob-from-locale-first' -- Golubev. | |
1927 -- Document 'set-face-background-pixmap-file' -- Verna. | |
1187 | 1928 -- Add urefs to Doug Lea's * Wolfram Gloger's home pages in "Low-Level |
2930 | 1929 Modules" -- Turnbull. |
1930 -- Update "Available Packages" -- Skyttä. | |
1931 -- Document 'append' arg of 'add-to-list' -- Skyttä. | |
1932 -- Add optimisation hints in "Techniques for XEmacs Developers" -- Turnbull. | |
1187 | 1933 |
1934 Internals | |
1935 | |
2930 | 1936 -- Add *menubar*FontSet and *popup*FontSet entries -- Turnbull, Skyttä. |
1937 -- Extract ldap and postgresql code from core and put them into DSO's -- James. | |
1187 | 1938 -- 'Fset_window_point' Correct to GNU/Emacs behaviour (fixes some bugs |
2930 | 1939 in Gnus) -- Wing. |
1940 -- Inhibit GC in critical sections -- Wing. | |
1941 -- Fix calculation in 'report_sheap_usage' -- Piper. | |
1942 -- Implement and use new var 'garbage_collection_messages' -- Wallington. | |
1943 -- Fix 'open_database' for Berkeley DB 4.1.x -- Allen. | |
1944 -- Updates to frame code -- Sperber. | |
1187 | 1945 -- Change C debugger entrance: error message, then stack trace, then |
2930 | 1946 exiting message, then force debugger -- Wing. |
1947 -- Use EQ not EQUAL in 'mswindows_init_frame_1' -- Wing. | |
1948 -- Better redisplay-related asserts -- Wing. | |
1949 -- Don't generate large warning strings when they'll be discarded -- Wing. | |
1950 -- Implement 'debug-on-error' as documented -- Wing. | |
1951 -- Fix docs relating to QUIT which can't GC under any circumstances -- Wing. | |
1952 -- More robust package compilation and debugging -- Wing. | |
1953 -- Overhaul profile code -- Wing. | |
1954 -- Fix crashes due to incorrectly ported GNU/Emacs code -- Wing. | |
1955 -- Clean up realpath.c -- Wing. | |
1956 -- DdeCreateStringHandle needs to be manual due to new Cygwin bug -- Wing. | |
1957 -- Fix some Cygwin complaints -- Wing. | |
1958 -- Unconditionally use LISP_FLOAT_TYPE code -- James. | |
1959 -- Improve crash message in 'shut_down_emacs' -- Turnbull. | |
1960 -- Update NAS code for NAS 1.6 and later -- Toy. | |
1961 -- Fix "unused variable" warnings in mule-canna.c -- Turnbull. | |
1962 -- Prototype 'enqueue_focus_event' -- Turnbull. | |
1963 -- Use BORDER_FIDDLE_FACTOR instead of 10 in 'layout_layout' -- Piper. | |
1964 -- Add optional 'noerror' arg to 'Frequire' -- Wallington. | |
1187 | 1965 -- Only resize 'layout_query_geometry' dynamically if static sizes |
2930 | 1966 haven't been set -- Piper. |
1967 -- Fix infloop upon a gdm logout -- Sigelman. | |
1968 -- Fix scope of 'num_nonshy_regs' -- Turnbull. | |
1969 -- Fix "stale match data" bug -- Turnbull. | |
1970 -- Don't call 'XtDisplay' on a destroyed widget -- Golubev. | |
1971 -- Update specifier code -- Sperber. | |
1972 -- Update process code -- Sperber. | |
1973 -- Move ldap/postgresql code out to DSO's -- James. | |
3915 | 1974 -- Normalise Ffile_truename and drive spec on cygwin to win32 format |
2930 | 1975 -- Piper. |
1976 -- Use 'closesocket' instead of 'CloseHandle' in 'winsock_closer' -- Alexander. | |
1977 -- Coding system updates -- Ikiuo. | |
1187 | 1978 |
1979 Lisp API | |
1980 | |
2930 | 1981 -- Update window-xemacs.el to fix 'goto-line' -- Wing. |
1982 -- Add garbage collection messages -- Wallington. | |
1983 -- Re-implement window configurations in Emacs Lisp -- Sperber. | |
1984 -- Enhance background-pixmap-file code -- Verna. | |
1187 | 1985 -- New macro 'save-window-excursion' to eventually replace bytecode |
2930 | 1986 instruction -- Sperber. |
1987 -- Move window.el et al up the order in dumped-lisp.el -- Sperber. | |
1187 | 1988 -- Don't use 'save-window-excursion' in |
2930 | 1989 'shrink-window-if-larger-than-buffer' -- Sperber. |
1990 -- Updates to pixel-size code in dialog.el -- Sperber. | |
1991 -- Remove nonworking 'breakpoint-on-error' -- Wing. | |
1187 | 1992 -- Extract out 'with-displaying-help-buffer' into a more general mechanism |
2930 | 1993 -- Wing. |
1994 -- Don't catch errors when noninteractive in startup.el -- Wing. | |
1995 -- Fix warnings in code-files.el, loadhist.el, & package-get.el -- Wing. | |
1996 -- Simplify code in '*-reset-device-font-menus' -- James. | |
1997 -- Synch font-menu.el to the 21.4 version -- Turnbull. | |
1998 -- Preserve return value from 'call-process' -- Sperber. | |
1999 -- New functions in replace.el that operate on regions -- Evans. | |
2000 -- Run 'delete-frame-hook' in general dialogs only -- Piper. | |
2001 -- Add a margin parameter in autoload.el for DSO autoloads -- James. | |
2002 -- Conditionalise autoloads for DSO's on the existence of the DSO -- James. | |
2003 -- Always set module directories/paths in dump-paths.el -- James. | |
2004 -- Bring list of package sites up to date -- Skyttä. | |
1187 | 2005 -- Add "Find Variable" menu entry for 'hyper-apropos-find-variable' - |
2006 Wallington | |
2930 | 2007 -- Fix 'view-lossage' interactive spec -- Wallington. |
2008 -- Synch 'with-output-to-string' with GNU/Emacs 21 -- Wallington. | |
2009 -- Bind C-xrd to 'delete-rectangle' -- Yamaoka. | |
1187 | 2010 -- Move entries in 'auto-mode-alist' out to packages for the modes |
2930 | 2011 that are in packages -- Skyttä |
1187 | 2012 -- New compatible alias for 'lookup-syntax-properties' |
2930 | 2013 ('parse-sexp-lookup-properties') -- Turnbull. |
2014 -- Enable C autoloads for DSO's -- James. | |
2015 -- Update revert-buffer code -- Piper. | |
2016 -- Add new coding system 'utf-8-bom' -- Ikiuo. | |
1187 | 2017 |
2018 | |
981 | 2019 to 21.5.9 "brussels sprouts" |
2020 | |
2021 The main thrust of this release is the new GC algorithms. If you want | |
2022 to test this out configure with '--use-kkcc'. | |
2023 | |
2024 There are of course, the usual swag of bug fixes, typo fixes, and | |
2025 document updates. | |
2026 | |
2027 -- Add an extra element to the version string that can be used to | |
2930 | 2028 include a date in the version string -- Youngs. |
2029 -- Improve help string for --with-widgets configure option -- Skyttä. | |
981 | 2030 -- Define runtime & build problems, and rewrite "Hannibal Lecter" |
2930 | 2031 stuff in PROBLEMS -- Turnbull. |
2032 -- Add builtin and constant faces to font-lock-face-list -- Skyttä. | |
2033 -- Japanese language fixes -- Yamaoka. | |
981 | 2034 -- Fix find-library to allow Mule XEmacsen to find compressed |
2930 | 2035 libraries -- Youngs. |
2036 -- New alias for 'delete-indentation' (join-line) -- Wallington. | |
2037 -- Support docstring for define-derived-mode -- Turnbull | |
2038 -- Doc fix for keybindings in term.texi and misc.texi -- Skyttä. | |
2039 -- Bring package list up to date in packages.texi -- Skyttä. | |
2040 -- Document purecopy as a no-op -- Josefsson. | |
2041 -- New document chapter "Regression Testing XEmacs" -- Turnbull. | |
2042 -- Add "USE_KKCC" option to ./nt/xemacs.mak -- Aichner. | |
981 | 2043 -- New GC algorithms implemented (Turn them on with --use-kkcc |
2930 | 2044 configure option) -- Sperber, Crestani, Kaltenbach, Bush. |
2045 -- Define HAVE_WCHAR_H for native Win32 builds -- Harris. | |
2046 -- Fix x_locate_pixmap_file make sure path is not 0 -- MacLennan. | |
2047 -- Fix memory leak -- Verna. | |
981 | 2048 -- Add missing call to 'xfree (newname)' in 'make_coding_system_1 |
2930 | 2049 -- Verna. |
2050 -- Fix --with-mule --with-gtk builds -- Barta. | |
2051 -- Make SEPCHAR a required arg to Fsplit_string_by_char -- Palmer. | |
981 | 2052 -- Make locate_file indicate success with nonnegative return if MODE |
2930 | 2053 is nonnegative -- James. |
2054 -- Fix splitting window horizontally not splitting evenly -- James. | |
2055 -- ORDINARY_LINK OK for Linux -- James. | |
981 | 2056 -- Don't bogusly reinitialise ascii_character property in |
2930 | 2057 maybe_define_x_key_as_self_inserting_character -- Astapov. |
981 | 2058 -- Add warning to SOE_DEBUG about not using until debugging functions |
2930 | 2059 are rewritten -- Turnbull. |
2060 -- Update 'do_autoload' to GCPRO both arguments -- Turnbull. | |
981 | 2061 -- Update automated tests so they don't barf if required packages |
2930 | 2062 aren't present -- Turnbull. |
2063 -- Organise NSIG setting code for SVR4 in a better way -- James. | |
2064 -- Various typo fixes -- Skyttä, Turnbull, James. | |
981 | 2065 |
2066 | |
933 | 2067 to 21.5.8 "broccoli" |
2068 | |
2069 Lots of fixes and changes. This release is primarily been done to | |
2070 make way for the new GC stuff from Mike Sperber. | |
2071 | |
2072 CHANGES now uses surnames as listed in the ChangeLogs to identify | |
2073 contributors. And I haven't sorted the changes into different | |
2074 categories. Maybe next release... | |
2075 | |
2076 -- New configure option "--use-kkcc" for the upcoming new GC | |
2930 | 2077 algorithms -- Sperber. |
933 | 2078 -- Identify "--with-modules" as an autodetected configure option - |
2865 | 2079 James. |
2930 | 2080 -- Add a couple of configuration questions to PROBLEMS -- Turnbull. |
2081 -- Test for wchar.h in configure -- Sperber. | |
2082 -- Update package-index files -- Youngs. | |
2083 -- s/Xemacs/XEmacs/ doc fixes -- Aichner. | |
2084 -- Sync make-docfile.c with GNU -- James. | |
2085 -- Updates to gutter-items -- Palmieri. | |
2086 -- Sync setenv with GNU -- Wallington. | |
2087 -- Remove package-get's dependence on APEL -- Youngs. | |
2088 -- Fix case fold bug in replace-in-string -- Verna. | |
2089 -- Updates to code-process.el and process.el -- Alexander. | |
2090 -- Updates to mule/kinsoku.el -- Yamaoka. | |
2091 -- Updates to define-derived-mode -- Wallington. | |
2092 -- Printer fixes -- Piper. | |
2093 -- Updates to window-xemacs.el & frame.el -- James. | |
2094 -- Doc fix gutter-items.el -- Piper. | |
2095 -- Sync ":set-after" in custom with GNU -- Piper. | |
2096 -- Sort the lists in enabled-behavior-list -- Galibert | |
2097 -- Updates to lwlib-Xm.c -- Piper. | |
2098 -- Various doc fixes to the TeXinfo docs -- Aichner. | |
2099 -- GC fixes -- Sperber. | |
2100 -- Updates to lisp.h, symbols.c for DSO's -- James. | |
2101 -- Fix to mswindows_need_event -- Alexander. | |
2102 -- Declare Fcdr_safe to be callable from C -- Turnbull. | |
2103 -- Ffunctionp return nil for autoloaded macros & keymaps -- Niksic. | |
2104 -- Subwindow fixes -- Ueno. | |
2105 -- Include wchar.h only if available, define wclsen if not -- Sperber. | |
2106 -- Fixes to Fstart_process_internal -- Sperber. | |
2107 -- Fixes to init_ralloc for pdump -- Sperber. | |
2108 -- Remove duplicated definition of Lisp_Devmode -- Bush. | |
2109 -- Fixes to toolbar/redisplay -- Piper. | |
2110 -- Windows DDE fixes -- Moore. | |
933 | 2111 -- Fixes to 'query_string_geometry' and 'widget_logical_unit_height' - |
2112 Piper. | |
2113 -- Fix problem with XEmacs freezing with certain virtual window | |
2930 | 2114 managers on Windows -- Rankin. |
933 | 2115 -- Conditionalise calls to syms_of_dired_mswindows & |
2116 vars_of_dired_mswindows on WIN32_NATIVE instead of HAVE_MSW_C_DIRED | |
2930 | 2117 -- Harris. |
2118 -- Process related fixes -- Sperber. | |
2119 -- Fix #includes in input-method-motif.c -- Galibert. | |
2120 -- Fixes to automated tests -- Sperber. | |
933 | 2121 |
2122 | |
891 | 2123 to 21.5.7 "broccoflower" |
2124 | |
2125 CHANGES now uses @xemacs.org alias to identify contributors. If the | |
2126 contributor doesn't have one (that I know about), the full name from | |
2127 the ChangeLog is used. | |
2128 | |
2129 UI changes and runtime bugs | |
2130 | |
2131 -- Add: ask "yes/no/diff" question when recovering; known problem: dialog | |
2132 is modal, so you can't scroll the diff -- ben | |
2133 -- Add: balloon help for package-ui -- youngs | |
2134 -- Add: global-abbrev-mode, defining-abbrev-turns-on-abbrev-mode -- ben | |
2135 -- Add: lots of new menubar items -- ben | |
2136 -- Add: new winclient for MS Windows -- acs | |
2137 -- Add: option kill-word-into-kill-ring controls whether words are "cut" | |
2138 into the kill ring, or "cleared" into nothingness -- ben | |
2139 -- Add: revert-buffer optimization for unchanged files -- andy | |
2140 -- Add: undo-all-changes back to the beginning -- ben | |
2141 -- Fix: M-C-backslash does indent-region-or-balanced-expression, S-Tab | |
2142 inserts a TAB char -- ben | |
2143 -- Fix: Cmds menu so that most used commands appear directly on the menu and | |
2144 less used commands appear in submenus -- ben | |
2145 -- Fix: NILP(lim) crash in search.c -- mike | |
2146 -- Fix: STACK_TRACE_EYE_CATCHER now visible in MS Windows traces -- jonathan | |
2147 -- Fix: XmProcessTraversal crash -- stephen | |
2148 -- Fix: avoid infinite loop in extent code -- ben | |
2149 -- Fix: crash due to errant xfree() -- ben | |
2150 -- Fix: crash in gtk_popup_menu -- wmperry | |
2151 -- Fix: crashes due to excessive alloca -- ben | |
2152 -- Fix: detection of metric units on MS Windows -- jonathan | |
2153 -- Fix: don't output bell as ^G in console-stream when not a TTY -- ben | |
2154 -- Fix: improve MS Windows printer support -- andy | |
2155 -- Fix: improve appearance for gutters and dialogs -- andy | |
2156 -- Fix: improve lisp-mode indentation handling -- ben | |
2157 -- Fix: interprogram cut functions now don't add selection twice -- stephen | |
2158 -- Fix: many netinstaller improvements -- andy | |
2159 -- Fix: popup dialogs on MS Windows -- andy | |
2160 -- Fix: recover-session only shows session files with recoverable files, | |
2161 and in chronological order -- ben | |
2162 -- Fix: save customized values MUCH faster and in alphabetic order, | |
2163 custom-save-pretty-print turns on/off pretty-printing values | |
2164 -- Nickolay Pakoulin | |
2165 -- Fix: semicolons inside strings are not comments in lisp-mode -- ben | |
2166 -- Fix: short filename handling on Windows -- Peter Arius | |
2167 -- Fix: some crashes in syntax code -- ben | |
2168 -- Fix: some crashes with multibyte text -- ben | |
2169 -- Fix: two frames displaying the buffer, in different places; in one, | |
2170 temporarily switch away to another buffer and then back, and your position | |
2171 has been reset to the other one in the other frame -- ben | |
2172 -- Fix: update installed.db after updating packages -- andy | |
2173 | |
2174 Documentation | |
2175 | |
2176 -- Add: New FAQs -- stephen, adrian | |
2177 -- Add: New or improved code and documentation in sample.init.el -- ben, | |
2178 stephen | |
2179 -- Add: PROBLEMS: Hannibal Lecter crash, EFS AUTH failure, mail locking | |
2180 -- stephen | |
2181 -- Add: etc/TUTORIAL.se -- Mats Lidell | |
2182 -- Add: new Internals manual nodes -- ben, stephen, darrylo | |
2183 -- Add: why modules don't use RTLD_GLOBAL -- james | |
2184 -- Fix: README.integral-types doc moved to Internals, code moved to | |
2185 README.global-renaming -- ben | |
2186 -- Fix: README.packages: info about --package-path -- ben | |
2187 -- Fix: improve docstrings and comments -- ben, stephen, adrian, | |
2188 John H. Palmieri | |
2189 -- Fix: typos, minor updates -- stephen, I. N. Golubev, Frank Schmitt, | |
2190 adrian, youngs | |
2191 -- Fix: update etc/BETA -- Jarl Friis | |
2192 -- Fix: update etc/package-index.LATEST.pgp -- youngs | |
2193 -- Fix: update photos -- hniksic | |
2194 | |
2195 Lisp API | |
2196 | |
2197 -- Add: functions: args-out-of-range, argument-in-range-p, | |
2198 check-argument-range, indent-balanced-expression-function, | |
2199 indent-balanced-expression, indent-region-or-balanced-expression, | |
2200 image-instance-instantiator, truncate-string-with-continuation-dots, | |
2201 get-user-response, unicode-precedence-list -- ben, stephen | |
2202 -- Fix: GNU synchs of frame-parameter, makehash, buffer-local-value, | |
2203 line-beginning-position, line-end-position, with-temp-message, | |
2204 bound-and-true-p, propertize, delete-and-extract-region, add-to-list, | |
2205 string-to-char-list, find-non-ascii-charset-region, | |
2206 find-non-ascii-charset-string, truncate-string-to-width, plist-to-alist, | |
897 | 2207 kill-ring-max, kill-new -- John Paul Wallington, youngs, ben, james, ville |
2208 -- Add: set-frame-pixel-width, set-frame-pixel-size -- andy | |
891 | 2209 -- Add: args to map-specifier, various "heuristic" specifier functions -- ben |
2210 -- Fix: call-process moves to Lisp -- ben | |
2211 -- allows a buffer to be specified for input and stderr output | |
2212 -- use it on all systems | |
2213 -- implement C-g as documented | |
2214 -- clean up and comment | |
2215 -- call-process-region uses new call-process facilities; no temp file. | |
2216 -- remove duplicate funs | |
2217 -- Add: compat.el, preliminary (not working) code -- ben | |
2218 -- Add: handle subprocess stderr separately (src/ChangeLog 2002-05-28) -- ben | |
2219 -- Add: new error trapping mechanism (src/ChangeLog 2002-05-28) -- ben | |
2220 -- Add: pixel-based sizing APIs: set-frame-pixel-height, | |
2221 -- Add: preliminary support for ELL autoloads -- james | |
2222 -- Add: toolbar face -- wmperry | |
2223 -- Add: widget "logical-unit" sizing APIs: widget-logical-to-character-width, | |
2224 widget-logical-to-character-height -- andy | |
2225 -- Fix: paths-find-architecture-directory searches in | |
2226 `system-configuration'/`base', not `base'`system-configuration' -- james | |
2227 -- Fix: default CRLF conversion of process output off -- ben | |
2228 -- Fix: default value of gethash to Qunbound -- ben | |
2229 -- Fix: face-handling code (superseded by ben's overhaul) -- jan, andy | |
2230 -- Fix: layout improvements -- andy | |
2231 -- Fix: major overhaul of face-handling code -- ben | |
2232 -- avoid truenaming fonts | |
2233 -- msw-faces.el APIs now accept names and font instances, return names | |
2234 -- rewrite frobbing functions in faces.el | |
2235 -- don't duplicatively set a global specification for the default font | |
2236 -- remove redundant face lists from x-faces.el and msw-faces.el | |
2237 -- call init-global-faces under MS Windows! | |
2238 -- correct weight names in font.el. | |
2239 | |
2240 Internals | |
2241 | |
2242 -- Add: new APIs -- ben | |
2243 -- macros to GCPRO arrays | |
2244 -- default argument for char tables | |
2245 -- signal extent changes | |
2246 -- internal_bind_*, check_specbind_stack_sanity | |
2247 -- partial support for 8-, 16-, and 32-bit fixed-width text | |
2248 -- new cons treatment (src/ChangeLog 2002-05-28) | |
2249 -- rename character types to Itext, Ibyte, Ichar (src/ChangeLog 2002-06-05) | |
2250 -- rename various identifiers for consistency | |
2251 -- Add: New GC preparation -- mike, Martin Köbele, Jens Müller | |
2252 -- Add: support for fastcall in MS Windows -- ben | |
2253 -- Fix: ELL APIs -- james | |
2254 -- load only once | |
2255 -- no longer use RTLD_GLOBAL | |
2256 -- Fix: ELLs now use RTLD_NOW instead of RTLD_LAZY -- Andrew Begel | |
2257 -- Fix: Many Mule changes -- ben | |
2258 -- Fix: call-process ensures that the argument to `symbol-value-in-buffer' | |
2259 is a buffer even if `buffer' is a string -- mike | |
2260 -- Fix: code that outputs into a buffer, use unwind protects, etc. -- ben | |
2261 -- Fix: complete implementation of some Unicode functions, S-caron test | |
2262 failure -- stephen | |
2263 -- Fix: conditionalize code depending on features like toolbar -- jonathan, | |
2264 Mike Alexander | |
2265 -- Fix: create new process-synchronize-point to avoid dynamic binding | |
2266 problems; fix bogosity in setting process sentinels -- ben, mike | |
2267 -- Fix: make a lot of code use common includes and implementations | |
2930 | 2268 -- see 2002-06-20 src/ChangeLog) -- ben |
891 | 2269 -- Fix: move global-map to keydefs.el -- ben |
2270 -- Fix: new signal/C-g handling (src/ChangeLog 2002-05-28) -- ben | |
2271 -- Fix: numerous problems with the case-table implementation -- ben | |
2272 -- Fix: quoting of native-coding-system in CJK files -- Daiki Ueno | |
2273 -- Fix: race condition in process handling -- Nix | |
2274 -- Fix: recover gracefully from internal XOpenDevice failure -- mike | |
2275 -- Fix: redo syntax cache code -- ben | |
2276 -- Fix: save-restriction now uses markers -- ben | |
2277 -- Fix: small bugs -- stephen, ben, andy, martin, Eric Gillespie Jr | |
2278 | |
2279 Build | |
2280 | |
2281 -- Add: basic support for handling ISO 2022 doc strings in make-docfile -- ben | |
2282 -- Add: tmpdir for install, allowing simultaneous run & build -- andy | |
2283 -- Fix: "Stop Build" in VC++ now works -- Ben | |
2284 -- Fix: #undef INTERNET_DOMAIN_SOCKETS build of gnuserv -- Greg Steuck | |
2285 -- Fix: --with-widgets autodetection -- jan | |
2286 -- Fix: 64-bit support -- Andreas Jaeger, Gregory Steuck | |
2287 -- Fix: MS Windows Makefile cleanups -- ben, jonathan | |
2288 -- Fix: MS Windows builds default to pdump -- ben | |
2289 -- Fix: assorted build breakage -- ben, mike, andy, Malcolm Purvis | |
2290 -- Fix: check for EOF in make-docfile -- ben | |
2291 -- Fix: config.h.in organization -- ben | |
2292 -- Fix: ensure combined X and windows build gets widgets -- andy | |
2293 -- Fix: implement configure option moduledir -- Mike Fabian | |
2294 -- Fix: spurious failures in tests -- ben, stephen | |
2295 -- Fix: test harness now outputs FAIL messages to stderr in batch mode -- ben | |
2296 -- Fix: test-harness.el now cleans up Check-Message and Check-Error-Message | |
2297 when done -- stephen | |
2298 -- Fix: typos and platform specific bugs in configure -- Malcolm Purvis, | |
2299 galibert, Paul Stodghill | |
2300 -- Fix: warnings -- ben, wmperry, stephen, didier | |
2301 | |
803 | 2302 to 21.5.6 "bok choi" |
2303 | |
2304 UI changes and runtime bugs | |
2305 | |
2306 -- Fix: process waiting on MS Windows -- Mike Alexander | |
2307 -- Fix: (maybe) GTK progress bar crashes at startup -- William M. Perry | |
2308 -- Fix: detect printer set up for metric units -- Jonathan Harris | |
2309 -- Fix: add_charsets_to_precedence_list -- IKEYAMA Tomonori | |
2310 -- Change: misc menubar -- John Paul Wallington | |
2311 -- Add: auto-mode-alist: GNUmakefile is a Makefile, "system default" | |
891 | 2312 Xdefaults and friends get xrdb-mode -- Ville Skyttä |
803 | 2313 -- From Ben Wing <ben@xemacs.org>. |
2314 -- Fix: init_process_io_handles obeys coding-system-for-{read,write}. | |
2315 -- Fix: bug in md5 handling. | |
2316 -- Fix: data corruption in print.c from print_depth becoming negative. | |
2317 -- Fix: "nil channel" in MS Windows magic events crashes. | |
2318 -- Fix: (tentative) redisplay crash freeing display line structures. | |
2319 -- Fix: (tentative) TTYs don't work. | |
2320 -- Fix: too-small SHEAP_ADJUSTMENT on Cygwin (can't run temacs). | |
2321 -- Fix: hscroll/truncation/continuation glyphs causing "jumping lines". | |
2322 -- Fix: problem with text files with no newlines (). | |
2323 -- Fix: errors when opening (e.g.) mule-ucs/lisp/reldata/uiso8859-6.el. | |
2324 -- Fix: (partial) excess memory use in Unicode processing, esp. at startup | |
2325 -- Fix: sample.init.el (grep-all-files-in-current-directory-and-below): | |
2326 Missing argument. | |
2327 -- Fix: smoother scrolling on MS Windows. | |
2328 -- Change: Move the menubar frame commands from the View menu to | |
2329 the File menu, to be consistent with how most other programs do | |
2330 things. Move less-used revert/recover items to a submenu. Make | |
2331 "recover" not prompt for a file, but recover the current buffer. | |
2332 -- Change: implementation of matching font to charset. | |
2333 -- Change: default MS Windows font to Lucida Console, increase | |
2334 default frame size on Windows to 50 lines. | |
2335 -- Add: runtime flag -no-packages inhibits adding package lisp to load-path. | |
2336 -- Add: much functionality to behavior.el. | |
2337 -- Add: more Unicode translation files. | |
2338 | |
2339 Documentation | |
2340 | |
2341 -- Add: define STACK_TRACE_EYE_CATCHER for Windows -- Jonathan Harris | |
2342 -- Texinfo (internals): Add xref in emodules.texi -- Stephen J. Turnbull | |
2343 -- Texinfo (lispref): Unicode Support, Behaviors -- Stephen J. Turnbull | |
2344 -- Texinfo (user): Behaviors -- Stephen J. Turnbull | |
2345 -- Improve auto-mode-alist -- Simon Josefsson | |
2346 -- Docstrings: completion-ignored-extensions, file-name-all-completions -- | |
2347 John H. Palmieri | |
2348 -- From Ben Wing <ben@xemacs.org>. | |
2349 -- New ChangeLog for ./etc/. | |
2350 -- Updated: NEWS. | |
2351 -- Improve docs (developers): tree layout, merging branch to trunk. | |
2352 -- Improve docs (lispref): CL loop, menu sorting, sound-default-alist | |
2353 -- Obsoleted Lisp: 'sref, char-bytes. | |
2354 -- Internals: Revamped the sound documentation. | |
2355 -- Typo fixes -- Adrian Aichner | |
2356 | |
2357 Lisp API | |
2358 | |
2359 -- From Ben Wing <ben@xemacs.org>. | |
2360 -- Fixed: bug in keymap iteration in cl-macs.el. | |
2361 -- Fix: bugs in language environments English and Ethiopic | |
2362 -- Change: lisp/mule/*.el -- convert to XEmacs style. | |
2363 -- Add (synch to GNU): get-window-with-predicate, ALL-FRAMES, | |
2364 some-window, count-windows, window-safely-shrinkable-p, | |
2365 count-screen-lines, shrink-window-if-larger-than-buffer | |
2366 -- Add (line-oriented mouse selection): New functions | |
2367 mouse-consolidated-yank mouse-yank, mouse-track, | |
2368 default-mouse-track-normalize-point, | |
2369 default-mouse-track-return-dragged-selection, mouse-track-by-lines, | |
2370 mouse-track-insert mouse-track-adjust-by-lines, mouse-track-insert-1, | |
2371 mouse-track-insert-by-lines, mouse-track-delete-and-insert-by-lines | |
2372 -- Add (warnings): Add a consistent way to execute code, | |
2373 catching all errors and displaying a warning, including a | |
2374 backtrace showing where the error occurred. New functions | |
2375 backtrace-in-condition-handler-eliminating-handler, with-trapping-errors, | |
2376 view-warnings. Integrate show-message-log with view-lossage. | |
2377 -- Add (debugging): New functions debug-print-1, debug-print, | |
2378 debug-backtrace. | |
2379 -- Add (misc utils): map-plist, show-memory-usage, compare-strings, | |
2380 truncate-string-to-width, variable require-prints-loading-message. | |
2381 -- Add many languages and charsets. | |
2382 -- Add (autoloads): Support defun*, defmacro*. | |
2383 -- Add (byte-compiler): with-boundp, if-boundp, when-boundp, | |
2384 and-boundp, declare-boundp, globally-declare-boundp, with-fboundp, | |
2385 if-fboundp, when-fboundp, and-fboundp, declare-fboundp, | |
2386 globally-declare-fboundp, with-byte-compiler-warnings-suppressed | |
2387 -- Warning fixes. | |
2388 | |
2389 Internals | |
2390 | |
2391 -- Add: Get & SetLocaleInfo from winnls.h -- Jonathan Harris | |
2392 -- Add: codepages latin-jisx0201, japanese-jisx0212, remove | |
2393 japanese-jisx0208-1978 -- IKEYAMA Tomonori | |
2394 -- Fix: Use wrap_emacs_*(), not wrap_*() for gtk_boxed, gtk_object, ffi -- | |
2395 William M. Perry | |
2396 -- Fix: I18N APIs on windows -- Jonathan Harris | |
2397 -- Fix: typos causing GTK build errors -- Malcolm Purvis | |
2398 -- Warning fixes -- William M. Perry | |
2399 -- From Ben Wing <ben@xemacs.org>. | |
2400 -- Change: error-checking macros: ERROR_CHECK_TYPECHECK -> ERROR_CHECK_TYPES, | |
2401 ERROR_CHECK_CHARBPOS -> ERROR_CHECK_TEXT, add ERROR_CHECK_DISPLAY, | |
2402 ERROR_CHECK_STRUCTURES. | |
2403 -- Change: Redo print_*(). | |
2404 -- Change: character-to-unicode char-to-unicode; also unicode-to-char{acter}. | |
2405 -- Change: Replace XSETFOO with wrap_foo(). | |
2406 -- Change: symbol->name a Lisp_Object, not Lisp_String *. Eliminate latter. | |
2407 -- Change: rearrange init calls in emacs.c. | |
2408 -- Add: (partial) category API compatible with FSF. | |
2409 -- Add: (partial) GC triggering based on percentage of total memory | |
2410 usage. Not currently activated. | |
2411 -- Add: (partial) sledgehammer redisplay check. | |
2412 -- Add: error-behavior ERROR_ME_DEBUG_WARN. | |
2413 -- Add: more error checking on Dynarrs. | |
2414 -- Add: assert_at_line(), for use in asserts inside of inline functions. | |
2415 -- Add: resizing_buffer_to_lisp_string(). | |
2416 -- Add: function get_charset_limits. | |
2417 -- Add: (tentative, may go away) foo_checking_assert_at_line() macros. | |
2418 -- Add: new event methods for printing, comparing, and hashing magic | |
2419 events, to avoid event-type-specific stuff. | |
2420 -- Fix eifree(). Use Eistrings in various places | |
2421 -- Fix: bugs in chartab implementation and doc strings. | |
2422 | |
2423 Build | |
2424 | |
2425 -- Fix: make-mswin-unicode.pl -- Ben Wing, Jonathan Harris | |
2426 -- Fix: .texi files for Cygwin makeinfo -- Jonathan Harris | |
2427 -- Fix: Perl quoting in Windows build -- Jonathan Harris, Ben Wing | |
2428 -- Fix: Generate more intermediate files in obj subdirectory -- Jonathan Harris | |
2429 -- From Ben Wing <ben@xemacs.org>. | |
2430 -- Fix: require errors in behavior.el | |
2431 -- Fix: compile error when TTY-only. | |
2432 -- Change: update check_cygwin_setup.sh for current Cygwin reality. | |
2433 -- Change: Makefile regenerates itself if out of date. | |
2434 -- Change: improve error-checking config for Windows | |
2435 -- Add: HAVE_SYS_TIMES_H config.h #define. | |
2436 -- Add: new error-checking types in configure. | |
2437 -- Add: .cvsignore | |
2438 | |
762 | 2439 to 21.5.5 "beets" |
2440 | |
2441 Documentation | |
2442 -- new external-widget example node -- Stephen Turnbull | |
2443 -- new packaging manual nodes -- Steve Youngs, Stephen Turnbull | |
2444 -- new Swedish TUTORIAL -- Mats Lidell | |
2445 -- update etc/BETA -- Jarl Friis, Stephen Turnbull | |
2446 -- update FAQ, new FAQs -- Adrian Aichner, Stephen Turnbull | |
769 | 2447 -- fixes for build-breaking typos in Info docs -- Jeff Miller, Darryl Okahata |
2448 -- misc comment and docstring improvements -- Valdis Kletnieks | |
2449 Pretty much all the code fixers fixed docs too: keep up the good | |
2450 work, folks! | |
762 | 2451 |
2452 UI | |
2453 -- fix switching between virtual desktops on MS Windows -- Adrian Aichner | |
2454 -- improve Customize: modifier-keys-sticky-time, abbrev-mode-line-string, | |
2455 overwrite-mode-line-string, auto-fill-mode-line-string, | |
2456 defining-kbd-macro-mode-line-string -- John Paul Wallington | |
2457 -- improve GTK clipboard handling -- Eric Gillespie, Jr. | |
2458 -- improve Info dir - generate file if non-existent -- Michael Sperber | |
891 | 2459 -- improve printer handling -- Adrian Aichner, Björn Torkelsson |
762 | 2460 -- support GUI toolbar shadow thickness adjustment -- Bill Perry |
2461 -- support ISO 8859/15 (Euro) -- Stephen Turnbull | |
2462 -- support Sieve in auto-mode-alist -- Simon Josefsson | |
2463 -- suppress ask-user-about-supersession-threat if CLASH_DETECTION -- Daiki Ueno | |
2464 | |
2465 Lisp API | |
2466 -- synch from GNU Emacs 21: quit-window -- Christoph Wedler | |
2467 | |
2468 Internals | |
2469 -- improve dead console handling in post-command code -- Ben Wing | |
2470 -- improve handling when XOpenDevice calls error handler -- Mike Sperber | |
2471 -- move disabled-command-loop to C -- Jan Vroonhof | |
2472 | |
2473 Build | |
2474 -- improve Athena widgets detection -- Jan Vroonhof | |
2475 | |
724 | 2476 to 21.5.4 "bamboo" |
2477 -- auto-mode support .9 files as man pages -- Michael Sperber | |
2478 -- auto-mode support configure.ac as m4 -- Edward M. Lee | |
2479 -- bind `replace-rectangle' to `C-x r p' -- Didier Verna | |
2480 -- bind `hyper-apropos-find-variable' (new) to `v' in hyper-apropos-help-map | |
2481 -- David A. Panariti | |
2482 -- bind `delete-other-frames' to `C-x 5 1' -- John Paul Wallington | |
2483 -- default Info-auto-generate-directory to 'if-outdated -- Adrian Aichner | |
2484 -- improve printer handling -- Andy Piper, Mike Alexander, Adrian Aichner | |
2485 -- mark buffer as modified when changing coding system -- Andy Piper | |
2486 -- minor mode mode-line-strings now customizable -- John Paul Wallington | |
2487 isearch-mode, abbrev-mode, overwrite-mode, auto-fill-mode, | |
2488 gnuserv-mode, defining-kbd-macro-mode, font-lock-mode, view-mode | |
2489 -- search the core etc/ for package index if not in ~/.xemacs/ -- Steve Youngs | |
2490 -- support sub-expression replacement in replace-match -- Torsten Duwe | |
2491 -- support user {site,infodock}-packages hierarchies -- Michael Sperber | |
2492 -- truncate-partial-width-windows now applied in redisplay -- Ben Wing | |
2493 -- use version-specific name for root testing -- Michael Sperber | |
2494 Eg, /usr/local/lib/xemacs-21.5.4. Fixes common "can't find root" bug, | |
2495 but run-in-place XEmacs won't find installed packages. | |
2496 | |
2497 -- HTML docs from Texinfo sources -- Adrian Aichner | |
2498 -- document fix for Motif related crashes (Sun/Solaris) -- Robert Pluim | |
2499 -- improve package system documentation -- Stephen Turnbull | |
2500 -- new Japanese translation of xemacs.1 -- Kazuo Oishi | |
2501 -- update developer personal info -- Jan Vroonhof, Michael Diers | |
2502 -- many doc fixes and improvements, sorry about the credits :-( | |
2503 | |
2504 -- alias `interactive-form' to `function-interactive' -- John Paul Wallington | |
2505 -- etags to Potorti` version 14.28. -- Yoshiki Hayashi | |
2506 -- mark-paragraph - added optional argument -- John Paul Wallington | |
2507 | |
2508 -- arch-specific files go under ${libdir}, not ${datadir} -- Jered Floyd | |
2509 -- configure recognizes LDFLAGS and adds to top Makefile -- Lutz Jaenicke | |
2510 -- eliminate bogus check for Athena widgets -- Alexey Mahotkin | |
2511 -- omit -Wshadow when compiling with g++ -- Ben Wing | |
2512 -- use the ld reported by gcc, not gcc -- Andrew Begel | |
2513 -- work around lack of support for autoconf 2.5x -- Didier Verna | |
2514 | |
2515 -- fix "can't Customize standard faces" bug (partially) -- Jan Vroonhof | |
2516 -- fix "can't close last window" bug -- Adrian Aichner | |
2517 -- fix "doubled escape" bug in Mule (ISO-2022-7) autosave files -- Kyle Jones | |
2518 -- fix "fail to save (non-themed) variable customizations" bug -- Andy Piper | |
2519 -- fix PGP signature handling in package UI -- Steve Youngs | |
2520 -- fix allocation of module-defined names in symbol table -- Andrew Begel | |
2521 -- fix conversion of host and network byte order in multicast -- Daiki Ueno | |
2522 -- fix crash from missing XIM unregister callback on Motif -- Glynn Clements | |
2523 -- fix crash/infloops in read_key_sequence -- Hirokazu FUKUI | |
2524 -- fix early dereference crash in decode_buffer -- Torsten Duwe | |
2525 -- fix handling of negative C times -- Simon Josefsson and Stephen Turnbull | |
2526 -- fix 'report-xemacs-bug' issues -- Steve Youngs | |
2527 -- fix several font-lock bugs -- Jan Vroonhof, Andy Piper, Bill Perry | |
2528 -- fix several package-get bugs -- Steve Youngs | |
2529 -- fix some slow startups - default with_ipv6_cname=no -- Stephen Turnbull | |
2530 -- fix unsigned warnings; turn sign-compare warnings on for NT -- Ben Wing | |
2531 -- fix window_loop iteration across multiple devices -- Darryl Okahata | |
2532 -- fix/avoid GNU ld -z combreloc lossage -- Stephen Turnbull | |
2533 -- make sure installed.db gets updated after updating packages -- Andy Piper | |
2534 | |
2535 -- GTK improvements/fixes -- Bill Perry | |
2536 -- add face mappings | |
2537 -- fix "can't shut up bell" bug | |
2538 -- fix some face initialization bugs | |
2539 -- fix subwindow handling | |
2540 -- fix yes-or-no-p lossage | |
2541 -- improve conformance to internal APIs | |
2542 -- munge highlight, zmacs-region, toolbar, and gui-button faces from | |
2543 default GtkStyle | |
2544 -- remove useless XPM color symbol checks | |
2545 | |
2546 -- MS Windows improvements/fixes -- Andy Piper | |
2547 -- better build portability | |
2548 -- change registry key to XEmacs. | |
2549 -- add/fix Cygwin handling of URLs and win32 paths | |
2550 -- fix focus and event handling in scrollbars | |
2551 -- fix get-popup-menu-response bug | |
2552 -- improve DDE support | |
2553 -- improve netinstaller, especially uninstall and shortcuts | |
2554 -- improve popup dialog handling | |
2555 -- new directory dialog support | |
2556 -- quit if the user cancels in directory dialog | |
2557 -- Cygwin nox-xpm detection -- Charles Wilson | |
2558 -- fix compile problems when --with-msw, --with-x=no, --with-tty=no -- Ben Wing | |
2559 -- fix file handle leak in pipes -- Mike Alexander | |
2560 -- initial VC.NET support -- Andrew Begel | |
2561 | |
2562 -- Rename/redefine integral types -- Ben Wing | |
2563 -- See src/ChangeLog for details and rationale. | |
2564 -- All integral types that measure quantities of anything are signed. | |
2565 -- All quantity types boil down to EMACS_INT, except Hashcode, | |
2566 which is an unsigned value of the same size as EMACS_INT. | |
2567 -- Type names should be relatively short, with the first letter | |
2568 capitalized and no underscores if they can be avoided. | |
2569 -- "*count" == zero-based quantity. Includes sizes, offsets, and indexes. | |
2570 -- "*bpos" == one-based buffer position. | |
2571 -- "Char" refers to internal-format characters, not to the C type "char". | |
2572 -- CVS: improve .cvsignore files -- Adrian Aichner | |
2573 -- autoload handling improvements -- Didier Verna | |
2574 -- improve handling of face inheritance/fallback -- Jan Vroonhof | |
2575 -- condense repetitive window-system settings to 'win default' -- Bill Perry | |
2576 -- improve debugging in event-msw.c -- Adrian Aichner | |
2577 -- rename Menubar-items-truncate-list to Menubar-items-truncate-history | |
2578 -- Adrian Aichner | |
2579 -- rename default package index to 'package-index.LATEST.gpg' -- Steve Youngs | |
2580 -- unify GUI pixmap handling -- Bill Perry | |
2581 -- unify toolbar handling across GUI platforms -- Bill Perry | |
2582 | |
653 | 2583 to 21.5.3 "asparagus" |
2584 -- Add missing XIM unregister callback on Motif -- Glynn Clements | |
2585 -- Improve debugging in event-msw.c, fix "can't close last window" bug | |
2586 -- Adrian Aichner | |
2587 -- Improve Info docs for widget.el -- Stephen J. Turnbull | |
2588 -- Many small bug, typo, and warning fixes -- Ben Wing, Stephen J. Turnbull, | |
2589 Adrian Aichner | |
2590 -- Autoload handling improvements -- Didier Verna | |
2591 -- More 'report-xemacs-bug' updates -- Steve Youngs | |
2592 -- Fix unsigned warnings; turn sign-compare warnings on for NT -- Ben Wing | |
2593 -- Synch configure.usage options with configure -- Peter Brown | |
2594 | |
529 | 2595 to 21.5.2 "artichoke" |
640 | 2596 -- fixes and improvements -- Ben Wing |
2597 -- etags.c synched to upstream | |
2598 -- lisp/term/*.el cleanup | |
2599 -- miscellaneous help improvements | |
2600 -- transpose-line-up/down maybe moves the region | |
2601 -- MS Windows init improvements | |
2602 -- add scroll-in-place, jka-compr, efs, some fixes in behavior-defs.el | |
2603 -- paths-find-recursive-path: fix error with null EXCLUDE-REGEXP | |
2604 -- font-lock-mode: fix problem with buffers starting with a space | |
2605 -- make find-library search patch configurable | |
2606 -- fix Dired problem with directories containing [] and code that | |
2607 destructively modifies an existing string | |
2608 -- stop mark_window_as_deleted from deleting information that needs to | |
2609 be accessed by set-window-configuration | |
2610 -- Lisp object structure rationalization | |
2611 -- fix two nasty bugs in the unwinding code | |
2612 -- fix mouse wheel/dead window crash under MS Windows | |
2613 -- mswindows_utime, close_file_data: fix off-by-one-indirection error | |
2614 -- control-G handling fixes for MS Windows | |
2615 -- debug-mswindows-events and related code introduced | |
2616 -- rearrange the signal-handling code to eliminate the former | |
2617 spaghetti logic paths in it; document; fix numerous bugs | |
2618 -- maintain the "iconified" state, to fix the "can't delete a frame" bug | |
2619 -- use CBufbyte instead of char for error/warning functions | |
2620 -- prepare to remove encapsulation | |
2621 -- make play_sound_data return an int, like all other such functions | |
2622 -- use EMACS_SIGNAL to avoid preprocessing games with signal() | |
2623 -- gc-in-window-procedure fixes | |
2624 -- Cygwin setitimer fixes | |
2625 -- windows shell fixes | |
2626 -- more structured errors | |
2627 -- MS Windows network stream data corruption fixes | |
2628 -- fix ~user file name handling | |
2629 -- rename MAX_PATH to standard PATH_MAX | |
2630 -- fix error compiling regexps with back-references in them | |
2631 | |
2632 -- fixes and improvements -- Martin Buchholz | |
2633 -- byte optimizer fixes | |
2634 -- move alloca twiddling after the feature test definitions, but | |
2635 before the first "real" code | |
2636 -- internal DECIMAL_PRINT_SIZE macro | |
2637 -- s&m elimination: Eliminate the need to define HAVE_PTYS in s&m files | |
2638 -- avoid test failure if (temp-directory) is a symlink | |
2639 -- handle buggy Sun realloc() | |
2640 | |
2641 -- GTK fixes -- Bill Perry | |
2642 -- GTK popup dialog fix | |
2643 -- GTK added to font-window system mappings | |
2644 -- gtk-marshal.el updated for new hash.c, and generator fixes, | |
2645 -- GTK scrollbar fixes | |
2646 -- buttons are now modifiers, so selection with the mouse works again | |
2647 -- fix the disappearing GTK scrollbar problem | |
2648 | |
2649 -- movemail.c uses mkstemp if available -- Karl M. Hegbloom | |
2650 -- specifiers may now conditionalize on GTK -- Stephen J. Turnbull | |
2651 -- new hooks for package installation and deletion -- Sean MacLennan | |
2652 -- locate-library completes and other package UI improvements -- Robert Pluim | |
2653 -- save-some-buffers doesn't prematurely zap help window -- Michael Sperber | |
2654 -- MS windows subprocess quoting arguments -- Ben Wing, Dan Holmsand | |
2655 -- remove side effects from font-lock-compile-keywords -- Daiki Ueno | |
2656 -- custom-display works on the GTK platform -- Karl Hegbloom | |
2657 -- mouse-track fixes -- Adrian Aichner, Ben Wing | |
2658 -- dragdrop fix for windowless events -- Mike Alexander | |
2659 -- fix `unbalanced parentheses' bug in syntax -- Matt Tucker | |
2660 -- gpmevent.c header inclusion fixes -- Bill Perry | |
2661 -- make more glyph code shared across platforms -- Ben Wing, Bill Perry | |
2662 -- remove lisp_string_set_file_times() because set_file_times() now | |
2663 takes Lisp_Object path, instead of char* -- Adrian Aichner and Ben Wing | |
2664 -- allow preemption on redisplay -- Kirill 'Big K' Katsnelson | |
2665 -- new, faster implementation of long_to_string -- Hrvoje Niksic | |
2666 -- Qccl_error: New error -- Yoshiki Hayashi | |
2667 -- remove support for old beta versions of cygwin -- Ben Wing, Craig Lanning | |
2668 -- fix crash with an unavailable network printer -- Mike Alexander | |
2669 -- add support for MacOS X -- Greg Parkin and Martin Buchholz | |
2670 -- better win9x (including WinMe) support -- Ben Wing, Stephen J. Turnbull | |
2671 -- fix off-by-one error in EMACS_INT_MAX -- Yoshiki Hayashi | |
2672 | |
2673 -- warning, style, and doc fixes and improvements | |
2674 -- warning fixes -- Ben Wing, Kirill 'Big K' Katsnelson, Martin Buchholz | |
2675 -- eliminate numerous C++ errors -- Ben Wing, Martin Buchholz | |
2676 -- code style corrections -- Ben Wing, Martin Buchholz | |
2677 -- build improvements -- Ben Wing, Martin Buchholz | |
2678 -- configure improvements and fixes -- Martin Buchholz, Ben Wing, | |
2679 Stephen J. Turnbull | |
2680 -- doc updates -- Adrian Aichner, Ben Wing, Alexey Mahotkin, Steve | |
2681 Youngs, Stephen J. Turnbull, Yoshiki Hayashi, Steve Youngs, Paul | |
2682 Stodghill, Malcolm Purvis, Jim Horning, Nick V. Pakoulin, Kirill | |
2683 'Big K' Katsnelson | |
529 | 2684 |
478 | 2685 to 21.5.1 "anise" |
514 | 2686 -- This release contains a huge pile of changes by Ben Wing, including |
2687 both bug fixes and features. Highlights: | |
2688 -- Many changes to make printing work on Windows | |
2689 -- byte-compilation speed improvements | |
2690 -- New functions for cleanly eliminating byte-compiler warnings | |
2691 -- Remove core bytecompiler warnings | |
2692 -- Improve interactive help interface | |
2693 -- etags improvements | |
2694 -- Better "About XEmacs" page | |
2695 -- Windows configury changes | |
2696 -- Get QUIT working on Windows | |
2697 -- Fix shy group regexp code | |
2698 -- etc. etc. | |
2699 | |
2865 | 2700 -- The `short-name' argument to make-charset now works correctly |
521 | 2701 -- Yoshiaki Kasahara |
514 | 2702 -- `custom' changes -- Didier Verna |
2703 -- SET_FACE_PROPERTY bug fix -- Jerry James | |
2704 -- Unix tty configury changes -- Martin Buchholz | |
2705 -- Fix compile error with g++ on bsdi -- Martin Buchholz | |
2706 -- Fix crash with xlc -O3 -- Martin Buchholz | |
2707 -- Fix link error with (pre-release) gcc 3.0 -- Martin Buchholz | |
521 | 2708 -- Fix build error if system has makeinfo 3.12 -- Martin Buchholz |
514 | 2709 -- Speed up `intern' and hash tables containing strings -- Martin Buchholz |
2710 -- Make hash table mapping safe -- Martin Buchholz | |
477 | 2711 |
762 | 2712 Fork from 21.2: 21.5.0 "alfalfa" |
2713 -- For changes up to 21.4.0, see etc/NEWS |