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