Mercurial > hg > xemacs-beta
comparison src/ChangeLog @ 593:5fd7ba8b56e7
[xemacs-hg @ 2001-05-31 12:45:27 by ben]
xemacs-faq.texi: Major rewrite.
Update all MS Windows info to current.
Redo section 6.1 almost completely.
Incorporate sections 1 and 2 of Hrvoje's FAQ.
etags.el: Fix infloop when going up to the root.
s\cygwin32.h: Don't unilaterally include ntplay, but only when we're compiling
with native sound (look in configure now).
event-msw.c: Fix yet more problems with C-g handling.
Implement debug-mswindows-events.
event-stream.c, events.h, signal.c, sysdep.h:
Rearrange the signal-handling code to eliminate the former
spaghetti logic paths in it. Document clearly what
"low-level" and "high-level" timeouts are. Rename some
functions with unclear names (e.g. "...alarm...") to names
that reflect what they actually do (e.g. "...async_timeout...").
Fix numerous bugs discovered in the process.
console-x.h, event-Xt.c, event-msw.c, frame-x.c:
Hopefully make XEmacs properly maintain the "iconified"
state on frames at all times. This should fix the "can't
delete a frame with C-x 5 0 when there's another iconified
frame out there" bug.
Put a notice in of further changes that should probably
be made to clean up the frame-visibility support.
(especially directed at Jan Vroonhof)
lisp.h, miscplay.c:
Rename SBufbyte to CBufbyte to avoid a misleading name.
Eliminate UChar, which is not used anywhere and contributes
no semantic info. Add a comment about the documentation-only
properties of the char/unsigned char typedefs. Add
SChar_Binary as an explicitly `signed' version of Char_Binary
and put back the `signed' declarations in miscplay.c.
alloc.c:
Use char typedefs.
console-msw.c, device-msw.c, dialog-msw.c, editfns.c, fileio.c, glyphs-eimage.c, menubar-msw.c, ntplay.c, objects-msw.c, realpath.c, redisplay-msw.c, select-msw.c, syswindows.h, win32.c:
Eliminate numerous C++ errors.
frame-msw.c:
Eliminate numerous C++ errors and Mule-ize.
glyphs-msw.c:
Eliminate numerous C++ errors and use char typedefs.
configure.in:
Fix problems detecting both native and Linux sound on Cygwin
when compiled with --with-msw=no.
Rearrange file-coding handling a bit to avoid warning when
compiling with Mule.
configure.in, configure.usage, INSTALL:
Document XEMACS_CC and corresponding compiler option --xemacs-compiler.
Explain how to build xemacs using a C++ compiler.
author | ben |
---|---|
date | Thu, 31 May 2001 12:45:41 +0000 |
parents | 4f6ba8f1fb3d |
children | 1c880911c386 |
comparison
equal
deleted
inserted
replaced
592:4f6ba8f1fb3d | 593:5fd7ba8b56e7 |
---|---|
1 2001-05-30 Ben Wing <ben@xemacs.org> | |
2 | |
3 * s\cygwin32.h: | |
4 Don't unilaterally include ntplay, but only when we're compiling | |
5 with native sound (look in configure now). | |
6 | |
7 2001-05-30 Ben Wing <ben@xemacs.org> | |
8 | |
9 For 21.4: | |
10 | |
11 (Stephen, just take all event-msw.c patches. This includes | |
12 the "iconify" fix below.) | |
13 | |
14 * event-msw.c: | |
15 * event-msw.c (mswindows_dequeue_dispatch_event): | |
16 * event-msw.c (assert): | |
17 * event-msw.c (emacs_mswindows_quit_p): | |
18 * event-msw.c (debug_mswin_messages): | |
19 * event-msw.c (debug_output_mswin_message): | |
20 * event-msw.c (vars_of_event_mswindows): | |
21 Fix yet more problems with C-g handling. | |
22 Implement debug-mswindows-events. | |
23 | |
24 For 21.5: | |
25 | |
26 * event-stream.c: | |
27 * event-stream.c (add_low_level_timeout): | |
28 * event-stream.c (event_stream_generate_wakeup): | |
29 * event-stream.c (event_stream_resignal_wakeup): | |
30 * event-stream.c (event_stream_disable_wakeup): | |
31 * event-stream.c (event_stream_wakeup_pending_p): | |
32 * events.h: | |
33 * signal.c: | |
34 * signal.c (handle_async_timeout_signal): | |
35 * signal.c (signal_remove_async_interval_timeout): | |
36 * signal.c (alarm): | |
37 * signal.c (Fwaiting_for_user_input_p): | |
38 * signal.c (start_interrupts): | |
39 * signal.c (establish_slow_interrupt_timer): | |
40 * signal.c (slow_down_interrupts): | |
41 * signal.c (check_what_happened): | |
42 * signal.c (alarm_signal): | |
43 * signal.c (interrupt_signal): | |
44 * sysdep.h: | |
45 Rearrange the signal-handling code to eliminate the former | |
46 spaghetti logic paths in it. Document clearly what | |
47 "low-level" and "high-level" timeouts are. Rename some | |
48 functions with unclear names (e.g. "...alarm...") to names | |
49 that reflect what they actually do (e.g. "...async_timeout..."). | |
50 Fix numerous bugs discovered in the process. | |
51 | |
52 * console-x.h: | |
53 * event-Xt.c: | |
54 * event-Xt.c (update_frame_iconify_status): | |
55 * event-Xt.c (handle_map_event): | |
56 * event-Xt.c (emacs_Xt_handle_magic_event): | |
57 * event-Xt.c (emacs_Xt_event_pending_p): | |
58 * event-msw.c: | |
59 * frame-x.c: | |
60 * frame-x.c (x_frame_window_state): | |
61 * frame-x.c (x_frame_iconified_p): | |
62 * frame-x.c (x_frame_visible_p): | |
63 Hopefully make XEmacs properly maintain the "iconified" | |
64 state on frames at all times. This should fix the "can't | |
65 delete a frame with C-x 5 0 when there's another iconified | |
66 frame out there" bug. | |
67 | |
68 Put a notice in of further changes that should probably | |
69 be made to clean up the frame-visibility support. | |
70 (especially directed at Jan Vroonhof) | |
71 | |
72 * lisp.h: | |
73 * miscplay.c (sndcnv8S_2mono): | |
74 * miscplay.c (sndcnv2monounsigned): | |
75 * miscplay.c (int2ulaw): | |
76 * miscplay.c (sndcnv2byteLE): | |
77 * miscplay.c (sndcnv2byteBE): | |
78 * miscplay.c (sndcnv2monobyteLE): | |
79 * miscplay.c (sndcnv2monobyteBE): | |
80 Rename SBufbyte to CBufbyte to avoid a misleading name. | |
81 Eliminate UChar, which is not used anywhere and contributes | |
82 no semantic info. Add a comment about the documentation-only | |
83 properties of the char/unsigned char typedefs. Add | |
84 SChar_Binary as an explicitly `signed' version of Char_Binary | |
85 and put back the `signed' declarations in miscplay.c. | |
86 | |
87 * alloc.c (build_string): | |
88 * alloc.c (build_ext_string): | |
89 * alloc.c (build_translated_string): | |
90 Use char typedefs. | |
91 | |
92 * console-msw.c (mswindows_lisp_error): | |
93 * device-msw.c (sync_printer_with_devmode): | |
94 * device-msw.c (handle_devmode_changes): | |
95 * device-msw.c (Fmsprinter_select_settings): | |
96 * device-msw.c (Fmswindows_printer_list): | |
97 * dialog-msw.c: | |
98 * dialog-msw.c (ALIGN_TEMPLATE): | |
99 * dialog-msw.c (handle_question_dialog_box): | |
100 * editfns.c (user_login_name): | |
101 * fileio.c (Ffile_readable_p): | |
102 * glyphs-eimage.c (tiff_memory_seek): | |
103 * menubar-msw.c (mswindows_translate_menu_or_dialog_item): | |
104 * menubar-msw.c (populate_menu_add_item): | |
105 * ntplay.c: | |
106 * ntplay.c (DONT_ENCAPSULATE): | |
107 * ntplay.c (play_sound_file): | |
108 * ntplay.c (play_sound_data_1): | |
109 * objects-msw.c (initialize_font_instance): | |
110 * objects-msw.c (mswindows_list_fonts): | |
111 * realpath.c (cygwin_readlink): | |
112 * redisplay-msw.c (mswindows_text_width_single_run): | |
113 * select-msw.c (symbol_to_ms_cf): | |
114 * select-msw.c (mswindows_register_selection_data_type): | |
115 * syswindows.h (LOCAL_TO_WIN32_FILE_FORMAT): | |
116 * syswindows.h (WIN32_TO_LOCAL_FILE_FORMAT): | |
117 * win32.c (Fmswindows_shell_execute): | |
118 Eliminate numerous C++ errors. | |
119 | |
120 * frame-msw.c (mswindows_set_title_from_bufbyte): | |
121 Eliminate numerous C++ errors and Mule-ize. | |
122 | |
123 * glyphs-msw.c (convert_EImage_to_DIBitmap): | |
124 * glyphs-msw.c (mswindows_init_image_instance_from_eimage): | |
125 * glyphs-msw.c (set_mono_pixel): | |
126 * glyphs-msw.c (mswindows_initialize_image_instance_mask): | |
127 * glyphs-msw.c (xpm_to_eimage): | |
128 * glyphs-msw.c (mswindows_xpm_instantiate): | |
129 * glyphs-msw.c (read_bitmap_data): | |
130 * glyphs-msw.c (read_bitmap_data_from_file): | |
131 * glyphs-msw.c (xbm_create_bitmap_from_data): | |
132 * glyphs-msw.c (init_image_instance_from_xbm_inline): | |
133 * glyphs-msw.c (xbm_instantiate_1): | |
134 * glyphs-msw.c (mswindows_xbm_instantiate): | |
135 * glyphs-msw.c (mswindows_xface_instantiate): | |
136 Eliminate numerous C++ errors and use char typedefs. | |
137 | |
1 2001-05-29 Adrian Aichner <adrian@xemacs.org> | 138 2001-05-29 Adrian Aichner <adrian@xemacs.org> |
2 | 139 |
3 * fileio.c: Include nt.h. Remove lisp_string_set_file_times() | 140 * fileio.c: Include nt.h. Remove lisp_string_set_file_times() |
4 because set_file_times() now takes Lisp_Object path, instead of | 141 because set_file_times() now takes Lisp_Object path, instead of |
5 char*. | 142 char*. |