|
517
|
1 2001-05-08 Martin Buchholz <martin@xemacs.org>
|
|
|
2
|
|
|
3 * s/bsdos4.h: Protect C code with #ifndef NOT_C_CODE.
|
|
|
4
|
|
516
|
5 2000-04-22 zhaoway <zw@debian.org>
|
|
|
6
|
|
|
7 * event-stream.c (is_scrollbar_event): Return 0 when XEmacs is
|
|
|
8 compiled without scrollbars.
|
|
|
9
|
|
513
|
10 2001-05-05 Martin Buchholz <martin@xemacs.org>
|
|
|
11
|
|
|
12 TTY configury portability improvements.
|
|
|
13 Support systems which use OXTABS instead of TAB3, without any s&m.
|
|
|
14 * s/bsd386.h: Remove definitions for system symbols TABDLY and OXTABS.
|
|
|
15 * s/freebsd.h: Likewise.
|
|
|
16 * s/gnu.h: Likewise.
|
|
|
17 * s/netbsd.h: Likewise.
|
|
|
18 * s/nextstep.h: Remove definitions for TAB3 and BSD_TERMIOS.
|
|
|
19 * systty.h:
|
|
|
20 Fix up (unused) tty tab delay/expansion code.
|
|
|
21 Better preprocessor symbol hygiene.
|
|
|
22 Remove BSD_TERMIOS cruft.
|
|
|
23 * sysdep.c (child_setup_tty): More careful code. Check for OXTABS.
|
|
|
24 * sysdep.c (tty_init_sys_modes_on_device):
|
|
|
25 Tab expansion disabling code was buggy. So I fixed it.
|
|
|
26 But it shouldn't have been done at all. So I also #if 0'ed it.
|
|
|
27
|
|
510
|
28 2001-05-06 Ben Wing <ben@xemacs.org>
|
|
|
29
|
|
|
30 * console-msw.h:
|
|
|
31 * device-msw.c:
|
|
|
32 * device-msw.c (print_dialog_worker):
|
|
|
33 * device-msw.c (mswindows_handle_print_dialog_box):
|
|
|
34 * device-msw.c (syms_of_device_mswindows):
|
|
|
35 * dialog-msw.c (mswindows_make_dialog_box_internal):
|
|
|
36 * general-slots.h:
|
|
|
37 implement printing the selection when it's selected.
|
|
|
38
|
|
|
39 unrelated:
|
|
|
40
|
|
|
41 * mule-charset.c (Fset_charset_ccl_program):
|
|
|
42 * mule-charset.c (invalidate_charset_font_caches):
|
|
|
43 force redisplay when set-charset-ccl-program called.
|
|
|
44
|
|
508
|
45 2001-05-04 Martin Buchholz <martin@xemacs.org>
|
|
|
46
|
|
|
47 * s/bsdos4.h (openpty): Add declaration, missing from system headers.
|
|
|
48
|
|
507
|
49 2001-05-05 Martin Buchholz <martin@xemacs.org>
|
|
|
50
|
|
|
51 * search.c (warn_about_possibly_incompatible_back_references):
|
|
|
52 Target of a DEFVAR_INT should be a Fixnum, not int.
|
|
|
53
|
|
506
|
54 2001-05-05 Ben Wing <ben@xemacs.org>
|
|
|
55
|
|
|
56 * console-msw.h:
|
|
|
57 * device-msw.c:
|
|
|
58 * device-msw.c (mswindows_get_default_margin):
|
|
|
59 * frame-msw.c (mswindows_size_frame_internal):
|
|
|
60 * frame-msw.c (msprinter_init_frame_1):
|
|
|
61 * frame-msw.c (vars_of_frame_mswindows):
|
|
|
62 Change top/bottom margin defaults to 0.5 inches.
|
|
|
63
|
|
502
|
64 2001-04-23 Ben Wing <ben@xemacs.org>
|
|
|
65
|
|
|
66 ------------ notable bug fix: Windows event code --------------
|
|
|
67
|
|
|
68 * event-msw.c (FAKE_MOD_QUIT):
|
|
|
69 * event-msw.c (mswindows_dequeue_dispatch_event):
|
|
|
70 * event-msw.c (mswindows_wnd_proc):
|
|
|
71 * event-msw.c (emacs_mswindows_quit_p):
|
|
|
72 Get critical quit working.
|
|
|
73
|
|
|
74 ------------ notable bug fix and new feature: regex code --------------
|
|
|
75
|
|
|
76 * lisp.h:
|
|
|
77 * regex.c:
|
|
|
78 * regex.c (enum):
|
|
|
79 * regex.c (print_compiled_pattern):
|
|
|
80 * regex.c (INIT_REG_TRANSLATE_SIZE):
|
|
|
81 * regex.c (regex_compile):
|
|
|
82 * regex.c (re_match_2_internal):
|
|
|
83 * regex.h:
|
|
|
84 * regex.h (RE_SYNTAX_AWK):
|
|
|
85 * regex.h (RE_SYNTAX_GREP):
|
|
|
86 * regex.h (RE_SYNTAX_EGREP):
|
|
|
87 * regex.h (RE_SYNTAX_POSIX_EGREP):
|
|
|
88 * regex.h (_RE_SYNTAX_POSIX_COMMON):
|
|
|
89 * regex.h (struct re_pattern_buffer):
|
|
|
90 * search.c:
|
|
|
91 * search.c (vars_of_search):
|
|
|
92 Shy groups were implemented in a horrible, half-assed way that
|
|
|
93 would cause them to screw up regex searching in most cases.
|
|
|
94 Fixed to work correctly.
|
|
|
95
|
|
|
96 Also extended back-reference syntax past 9. Only is recognized
|
|
|
97 as such if there are at least that many non-shy groups; and
|
|
|
98 optionally will warn about such uses, to catch old code that
|
|
|
99 might be using them differently. (Added variable to control
|
|
|
100 this in search.c -- `warn-about-possibly-incompatible-back-
|
|
|
101 references', on by default for the moment. Declared in lisp.h.
|
|
|
102
|
|
|
103 ---------------- process/SIGIO improvements -------------------
|
|
|
104
|
|
|
105 * process-unix.c:
|
|
|
106 * process-unix.c (get_internet_address):
|
|
|
107 * process-unix.c (unix_canonicalize_host_name):
|
|
|
108 * process-unix.c (unix_open_network_stream):
|
|
|
109 * process-unix.c (unix_open_multicast_group):
|
|
|
110 define USE_GETADDRINFO to replace more complex conditional,
|
|
|
111 and use it. the code conditionalized on this in
|
|
|
112 unix_open_network_stream had *serious* problems handling errors.
|
|
|
113 it's now fixed, and major amounts of duplicate code between
|
|
|
114 the two versions were combined.
|
|
|
115
|
|
|
116 don't disable SIGIO and other interrupts unless
|
|
|
117 CONNECT_NEEDS_SLOWED_INTERRUPTS is defined -- don't penalize OS's
|
|
|
118 without bugs. similarly for a freebsd bug that was affecting all
|
|
|
119 OS's.
|
|
|
120
|
|
|
121 * s\ultrix.h:
|
|
|
122 define CONNECT_NEEDS_SLOWED_INTERRUPTS, since that's the OS
|
|
|
123 mentioned as having a kernel bug.
|
|
|
124
|
|
|
125 * sysdep.c (request_sigio_on_device):
|
|
|
126 * sysdep.c (unrequest_sigio_on_device):
|
|
|
127 fix SIGIO problems on Linux. add check for O_ASYNC in case it's
|
|
|
128 defined and FASYNC isn't. add comment about other ways to do
|
|
|
129 SIGIO on Linux.
|
|
|
130
|
|
|
131 * callproc.c (Fold_call_process_internal):
|
|
|
132 * process.c (Fstart_process_internal):
|
|
|
133 Deal with the possibility that `default-directory' doesn't
|
|
|
134 have terminating slash. Correct comments about vfork.
|
|
|
135
|
|
|
136 ---------------- Miscellaneous bug fixes/cleanup -------------------
|
|
|
137
|
|
|
138 * callint.c (Finteractive):
|
|
|
139 Add lots of documentation -- exactly what the Lisp equivalents of
|
|
|
140 all the interactive specs are.
|
|
|
141
|
|
|
142 * console.h (struct console): change type of quit_char to Emchar.
|
|
|
143
|
|
|
144 * event-msw.c (lstream_type_create_mswindows_selectable): spacing
|
|
|
145 change.
|
|
|
146
|
|
|
147 * event-Xt.c:
|
|
|
148 * event-msw.c:
|
|
|
149 * event-stream.c:
|
|
|
150 * events-mod.h:
|
|
|
151 * events.c:
|
|
|
152 * events.h:
|
|
|
153 * frame-x.c:
|
|
|
154 * gpmevent.c:
|
|
|
155 * keymap.c:
|
|
|
156 Eliminate events-mod.h and combine into events.h.
|
|
|
157
|
|
|
158 * emacs.c:
|
|
|
159 * emacs.c (make_arg_list_1):
|
|
|
160 * emacs.c (main_1):
|
|
|
161 A couple of char->Extbyte changes, add a comment.
|
|
|
162
|
|
|
163 * glyphs-msw.c (mswindows_resource_instantiate):
|
|
|
164 * glyphs-msw.c (mswindows_xface_instantiate):
|
|
|
165 * glyphs-msw.c (mswindows_subwindow_instantiate):
|
|
|
166 * glyphs-msw.c (mswindows_widget_instantiate):
|
|
|
167 * glyphs-msw.c (mswindows_native_layout_instantiate):
|
|
|
168 * glyphs-msw.c (mswindows_button_instantiate):
|
|
|
169 * glyphs-msw.c (mswindows_edit_field_instantiate):
|
|
|
170 * glyphs-msw.c (mswindows_progress_gauge_instantiate):
|
|
|
171 * glyphs-msw.c (mswindows_tree_view_instantiate):
|
|
|
172 * glyphs-msw.c (mswindows_tab_control_instantiate):
|
|
|
173 * glyphs-msw.c (mswindows_label_instantiate):
|
|
|
174 * glyphs-msw.c (mswindows_scrollbar_instantiate):
|
|
|
175 * glyphs-msw.c (mswindows_combo_box_instantiate):
|
|
|
176 Correct indentation of function defns to not exceed 80 cols.
|
|
|
177 Try (sort of) to fix some code that sets the colors of the
|
|
|
178 progress gauge. (Commented out)
|
|
|
179
|
|
|
180 * keymap.c (syms_of_keymap):
|
|
|
181 use DEFSYMBOL.
|
|
|
182
|
|
|
183 * process.c (read_process_output):
|
|
|
184 No need to fiddle with zmacs_region_stays, now that bogus
|
|
|
185 clearing of it (see below) is removed.
|
|
|
186
|
|
|
187 * search.c (Freplace_match): warning fix.
|
|
|
188
|
|
|
189
|
|
500
|
190 2001-05-03 Martin Buchholz <martin@xemacs.org>
|
|
|
191
|
|
|
192 * s/aix4.h: Fix crash with xlc -O3.
|
|
|
193 Improve comment explaining how -O3 works.
|
|
|
194
|
|
498
|
195 2001-05-02 Jerry James <james@xemacs.org>
|
|
|
196
|
|
|
197 * faces.h (SET_FACE_PROPERTY): pass parameters to
|
|
|
198 Fadd_spec_to_specifier in the correct order.
|
|
|
199
|
|
493
|
200 2001-05-01 Martin Buchholz <martin@xemacs.org>
|
|
|
201
|
|
|
202 Fix link error with gcc 3.0 on Linux.
|
|
|
203 * terminfo.c (UP): Remove.
|
|
|
204 * terminfo.c (BC): Remove.
|
|
|
205 * terminfo.c (PC): Remove.
|
|
|
206 They weren't used, and in any case, these symbols should be
|
|
|
207 defined in the *library*.
|
|
|
208
|
|
490
|
209 2001-04-30 Martin Buchholz <martin@xemacs.org>
|
|
|
210
|
|
|
211 Make string hashing more efficient.
|
|
|
212 Makes intern much faster.
|
|
|
213 Makes hash tables containing strings faster.
|
|
|
214 * symbols.c (hash_string): A much better hash function.
|
|
|
215 Change prototype to return unsigned value.
|
|
|
216 (init_symbols_once_early): Use unsigned type for hash value.
|
|
|
217 (oblookup): Use unsigned type for hash value.
|
|
|
218
|
|
489
|
219 2001-04-04 Martin Buchholz <martin@xemacs.org>
|
|
|
220
|
|
|
221 * keymap.c (Fmap_keymap): Revert to previous implementation, since
|
|
|
222 elisp_maphash is now safe.
|
|
|
223
|
|
|
224 * elhash.c: Remove erroneously added comment.
|
|
|
225 * elhash.c (copy_compress_hentries): New.
|
|
|
226 (Fmaphash): Use copy_compress_hentries.
|
|
|
227 (elisp_maphash): Use copy_compress_hentries.
|
|
|
228 (elisp_map_remhash): Use copy_compress_hentries.
|
|
|
229 (elisp_maphash_unsafe): New.
|
|
|
230 * elhash.h: Add prototype for elisp_maphash_unsafe.
|
|
|
231
|
|
|
232 * elhash.c (Fmaphash):
|
|
|
233 Avoid crashes/unpredictable behavior if a hash table is modified
|
|
|
234 during a mapping function, perhaps indirectly via gc.
|
|
|
235 (free_hentries): New.
|
|
|
236 Avoid crash if a pdumped hash table is collected.
|
|
|
237 (maphash_unwind): New.
|
|
|
238
|
|
|
239 * tests.c: Add C-level hash table tests.
|
|
|
240
|
|
487
|
241 2001-04-28 Ben Wing <ben@xemacs.org>
|
|
|
242
|
|
|
243 * buffer.c (Ferase_buffer):
|
|
|
244 * editfns.c (buffer_insert1):
|
|
|
245 * editfns.c (Finsert_before_markers):
|
|
|
246 * editfns.c (Finsert_string):
|
|
|
247 * editfns.c (Finsert_char):
|
|
|
248 * editfns.c (Fdelete_region):
|
|
|
249 * editfns.c (Fwiden):
|
|
|
250 * editfns.c (Fnarrow_to_region):
|
|
|
251 remove bogus lines setting zmacs_region_stays to 0.
|
|
|
252
|
|
|
253 * scrollbar-msw.c (mswindows_handle_mousewheel_event):
|
|
|
254 remove debug lines.
|
|
|
255
|
|
|
256 2001-03-08 Mike Alexander <mta@arbortext.com>
|
|
|
257
|
|
|
258 * event-msw.c (mswindows_need_event_in_modal_loop):
|
|
|
259 Don't dispatch a message if we didn't get one.
|
|
|
260 (mswindows_need_event):
|
|
|
261 Terminate the correct process when one exits instead of the first
|
|
|
262 one on Vprocess_list and look for process termination when in
|
|
|
263 mswindows_protect_modal_loop.
|
|
|
264
|
|
479
|
265 2001-04-20 Ben Wing <ben@xemacs.org>
|
|
|
266
|
|
|
267 * .cvsignore: Added stuff for Windows.
|
|
|
268
|
|
|
269 2001-04-15 Ben Wing <ben@xemacs.org>
|
|
|
270
|
|
|
271 * cmdloop.c (call_command_loop):
|
|
|
272 Fix braino in bit-rotting code.
|
|
|
273
|
|
|
274 * event-stream.c:
|
|
|
275 * event-stream.c (Fnext_event):
|
|
|
276 * event-stream.c (is_scrollbar_event):
|
|
|
277 * event-stream.c (execute_command_event):
|
|
|
278 Better fix for Yoshiki's `C-x @ h <scrollbar-drag> x causes a
|
|
|
279 crash' problem. His fix introduces other problems. We filter
|
|
|
280 out scrollbar events specifically, making them somewhat invisible
|
|
|
281 to command-building, and not appearing in `this-command-keys'.
|
|
|
282 More work is still needed (see comments in event-stream.c), but
|
|
|
283 this fixes all the major problems.
|
|
|
284
|
|
475
|
285 2001-04-15 Gunnar Evermann <ge204@eng.cam.ac.uk>
|
|
|
286
|
|
|
287 * process-unix.c (unix_open_network_stream): If connect() fails
|
|
|
288 invalidate file descriptor after closing it.
|
|
|
289
|
|
472
|
290 2001-04-18 Martin Buchholz <martin@xemacs.org>
|
|
|
291
|
|
|
292 * XEmacs 21.5.0 "alfalfa" is released.
|
|
|
293
|
|
469
|
294 2001-03-31 Mike Sperber <mike@xemacs.org>
|
|
|
295
|
|
|
296 * search.c (Freplace_match): [Again] support FSF-style
|
|
|
297 specification of match subexpression when applied to a buffer.
|
|
|
298
|
|
468
|
299 2001-04-07 Hrvoje Niksic <hniksic@arsdigita.com>
|
|
|
300
|
|
|
301 * extents.c (Fset_extent_endpoints): Force creation of extent info
|
|
|
302 in buffer_or_string.
|
|
|
303
|
|
|
304 2001-04-07 Hrvoje Niksic <hniksic@arsdigita.com>
|
|
|
305
|
|
|
306 * extents.c (process_extents_for_insertion_mapper): Correctly
|
|
|
307 check for open-open zero-length extents.
|
|
|
308
|
|
464
|
309 2001-04-02 Jan Vroonhof <jan@xemacs.org>
|
|
|
310
|
|
|
311 * redisplay.c (add_bufbyte_string_runes): Update data->bytepos
|
|
|
312
|
|
|
313 2001-04-03 Mike Sperber <mike@xemacs.org>
|
|
|
314
|
|
|
315 * search.c: Revert previous patch due because of release.
|
|
|
316
|
|
|
317 2001-03-30 Ben Wing <ben@xemacs.org>
|
|
|
318
|
|
|
319 * s\cygwin32.h:
|
|
|
320 Add missing killpg prototype.
|
|
|
321
|
|
|
322 * elhash.c:
|
|
|
323 Add a comment about fixing problems when a new entry is added
|
|
|
324 while mapping.
|
|
|
325
|
|
|
326 * frame-msw.c (mswindows_init_frame_1):
|
|
|
327 Fix compile warnings.
|
|
|
328
|
|
|
329 * menubar.c (vars_of_menubar):
|
|
|
330 Provide `menu-accelerator-support' to indicate that we properly
|
|
|
331 support %_ in menu specifications, so that package code can
|
|
|
332 conditionalize on this (and remove %_ from menu specifications
|
|
|
333 on older versions).
|
|
|
334
|
|
|
335 * event-msw.c:
|
|
|
336 * scrollbar-msw.c:
|
|
|
337 * scrollbar-msw.c (can_scroll):
|
|
|
338 * scrollbar-msw.h:
|
|
|
339 Fix handling of mouse wheel under Windows to follow standards --
|
|
|
340 now scrolls window under pointer, not selected window.
|
|
|
341
|
|
|
342 2001-03-31 Mike Sperber <mike@xemacs.org>
|
|
|
343
|
|
|
344 * search.c (Freplace_match): Support FSF-style specification of
|
|
|
345 match subexpression when applied to a buffer.
|
|
|
346
|
|
|
347 2001-03-15 Martin Buchholz <martin@xemacs.org>
|
|
|
348
|
|
|
349 * keymap.c (Fmap_keymap): map-keymap explicitly allows a mapping
|
|
|
350 function to modify KEYMAP, so map over a copy of the hash table.
|
|
|
351
|
|
462
|
352 2001-03-21 Martin Buchholz <martin@xemacs.org>
|
|
|
353
|
|
|
354 * XEmacs 21.2.46 "Urania" is released.
|
|
|
355
|
|
|
356 2001-03-20 Dan Holmsand <dan@eyebee.com>
|
|
|
357
|
|
|
358 * realpath.c (xrealpath): Make file-truename work with symlinks to
|
|
|
359 /cygdrive paths on cygwin. Always lowercase drive-letters on
|
|
|
360 native windows.
|
|
|
361 (cygwin_readlink): Don't try to find canonical filename unless
|
|
|
362 file exists.
|
|
|
363
|
|
|
364 2001-03-15 Stephen J. Turnbull <stephen@xemacs.org>
|
|
|
365
|
|
|
366 * ChangeLog: Log GTK merge.
|
|
|
367
|
|
|
368 * dumper.c:
|
|
|
369 * select-x.c:
|
|
|
370 * specifier.c:
|
|
|
371 * symeval.h:
|
|
|
372 Revert gratuitous whitespace changes from GTK merge.
|
|
|
373
|
|
|
374 * emacs.c: Document end of complex #ifdef @ l. 1495.
|
|
|
375
|
|
|
376
|
|
|
377 2001-03-12 Andy Piper <andy@xemacs.org>
|
|
|
378
|
|
|
379 * mingw32.h: unfortunately cygnus changed mingw32 -> mingw so we
|
|
|
380 have to do likewise.
|
|
|
381
|
|
|
382 2001-03-12 Andy Piper <andy@xemacs.org>
|
|
|
383
|
|
|
384 * sysdep.c: we only support mingw now.
|
|
|
385
|
|
|
386 2001-03-09 Andy Piper <andy@xemacs.org>
|
|
|
387
|
|
|
388 * unexcw.c (copy_executable_and_dump_data_section): making approx
|
|
|
389 overrun a warning only.
|
|
|
390
|
|
|
391 2001-03-10 William M. Perry <wmperry@aventail.com>
|
|
|
392
|
|
|
393 * faces.c (complex_vars_of_faces): Rewrote the font mucking to
|
|
|
394 satisfy Stephen's identical-after-cpp plea.
|
|
|
395
|
|
|
396 2001-03-02 Ben Wing <ben@xemacs.org>
|
|
|
397
|
|
|
398 * cmds.c:
|
|
|
399 * cmds.c (Fforward_char):
|
|
|
400 * syntax.c:
|
|
|
401 * window.c:
|
|
|
402
|
|
|
403 Augment documentation of the most common motion commands to make
|
|
|
404 note of the shifted-motion support.
|
|
|
405
|
|
|
406 2001-03-02 Ben Wing <ben@xemacs.org>
|
|
|
407
|
|
|
408 * nt.c (mswindows_fstat):
|
|
|
409 * nt.c (mswindows_stat):
|
|
|
410 * search.c (boyer_moore):
|
|
|
411 Fix compile warnings under Windows.
|
|
|
412
|
|
|
413 * sysdep.c (sys_readdir):
|
|
|
414 Fix buggy filename-conversion code under Mule.
|
|
|
415
|
|
|
416 2001-03-09 William M. Perry <wmperry@aventail.com>
|
|
|
417
|
|
|
418 * Makefile.in.in:
|
|
|
419 * config.h.in:
|
|
|
420 * console.c:
|
|
|
421 * console.h:
|
|
|
422 * device.c:
|
|
|
423 * device.h:
|
|
|
424 * dragdrop.c:
|
|
|
425 * emacs.c:
|
|
|
426 * event-stream.c:
|
|
|
427 * events.c:
|
|
|
428 * events.h:
|
|
|
429 * faces.c:
|
|
|
430 * frame.h:
|
|
|
431 * general-slots.h:
|
|
|
432 * glyphs.c:
|
|
|
433 * gutter.c:
|
|
|
434 * inline.c:
|
|
|
435 * lisp.h:
|
|
|
436 * lrecord.h:
|
|
|
437 * make-src-depend:
|
|
|
438 * redisplay-output.c:
|
|
|
439 * redisplay.c:
|
|
|
440 * symsinit.h:
|
|
|
441 * sysfile.h:
|
|
|
442 * toolbar.c:
|
|
|
443 * window.c:
|
|
|
444 The Great GTK Merge.
|
|
|
445
|
|
|
446 * ChangeLog.GTK:
|
|
|
447 * console-gtk.c:
|
|
|
448 * console-gtk.h:
|
|
|
449 * device-gtk.c:
|
|
|
450 * emacs-marshals.c:
|
|
|
451 * emacs-widget-accessors.c:
|
|
|
452 * event-gtk.c:
|
|
|
453 * frame-gtk.c:
|
|
|
454 * gccache-gtk.c:
|
|
|
455 * gccache-gtk.h:
|
|
|
456 * glade.c:
|
|
|
457 * glyphs-gtk.c:
|
|
|
458 * glyphs-gtk.h:
|
|
|
459 * gtk-glue.c:
|
|
|
460 * gtk-xemacs.c:
|
|
|
461 * gtk-xemacs.h:
|
|
|
462 * gui-gtk.c:
|
|
|
463 * gui-gtk.h:
|
|
|
464 * menubar-gtk.c:
|
|
|
465 * native-gtk-toolbar.c:
|
|
|
466 * objects-gtk.c:
|
|
|
467 * objects-gtk.h:
|
|
|
468 * redisplay-gtk.c:
|
|
|
469 * scrollbar-gtk.c:
|
|
|
470 * scrollbar-gtk.h:
|
|
|
471 * select-gtk.c:
|
|
|
472 * toolbar-gtk.c:
|
|
|
473 * ui-byhand.c:
|
|
|
474 * ui-gtk.c:
|
|
|
475 * ui-gtk.h:
|
|
|
476 The Great GTK Merge: new files.
|
|
|
477
|
|
|
478 2001-02-26 Ben Wing <ben@xemacs.org>
|
|
|
479
|
|
|
480 Reapplied Lstream change.
|
|
|
481
|
|
|
482 2001-02-26 Ben Wing <ben@xemacs.org>
|
|
|
483
|
|
|
484 Undid the last change, since it is more controversial than I
|
|
|
485 thought. It should be back in at some point soon.
|
|
|
486
|
|
|
487 2001-02-25 Ben Wing <ben@xemacs.org>
|
|
|
488
|
|
|
489 * buffer.c:
|
|
|
490 * callproc.c (Fold_call_process_internal):
|
|
|
491 * event-msw.c (ntpipe_slurp_reader):
|
|
|
492 * event-msw.c (ntpipe_shove_writer):
|
|
|
493 * event-msw.c (winsock_reader):
|
|
|
494 * event-msw.c (winsock_writer):
|
|
|
495 * file-coding.c:
|
|
|
496 * file-coding.c (detect_eol_type):
|
|
|
497 * file-coding.c (detect_coding_type):
|
|
|
498 * file-coding.c (determine_real_coding_system):
|
|
|
499 * file-coding.c (Fdetect_coding_region):
|
|
|
500 * file-coding.c (decoding_reader):
|
|
|
501 * file-coding.c (decoding_writer):
|
|
|
502 * file-coding.c (mule_decode):
|
|
|
503 * file-coding.c (Fdecode_coding_region):
|
|
|
504 * file-coding.c (encoding_reader):
|
|
|
505 * file-coding.c (encoding_writer):
|
|
|
506 * file-coding.c (mule_encode):
|
|
|
507 * file-coding.c (Fencode_coding_region):
|
|
|
508 * file-coding.c (detect_coding_sjis):
|
|
|
509 * file-coding.c (decode_coding_sjis):
|
|
|
510 * file-coding.c (encode_coding_sjis):
|
|
|
511 * file-coding.c (detect_coding_big5):
|
|
|
512 * file-coding.c (decode_coding_big5):
|
|
|
513 * file-coding.c (encode_coding_big5):
|
|
|
514 * file-coding.c (detect_coding_ucs4):
|
|
|
515 * file-coding.c (decode_coding_ucs4):
|
|
|
516 * file-coding.c (encode_coding_ucs4):
|
|
|
517 * file-coding.c (detect_coding_utf8):
|
|
|
518 * file-coding.c (decode_coding_utf8):
|
|
|
519 * file-coding.c (encode_coding_utf8):
|
|
|
520 * file-coding.c (detect_coding_iso2022):
|
|
|
521 * file-coding.c (decode_coding_iso2022):
|
|
|
522 * file-coding.c (encode_coding_iso2022):
|
|
|
523 * file-coding.c (decode_coding_no_conversion):
|
|
|
524 * file-coding.c (encode_coding_no_conversion):
|
|
|
525 * glyphs-x.c (write_lisp_string_to_temp_file):
|
|
|
526 * gpmevent.c (tty_get_foreign_selection):
|
|
|
527 * lisp.h:
|
|
|
528 * lstream.c:
|
|
|
529 * lstream.c (Lstream_flush_out):
|
|
|
530 * lstream.c (Lstream_adding):
|
|
|
531 * lstream.c (Lstream_write_1):
|
|
|
532 * lstream.c (Lstream_write):
|
|
|
533 * lstream.c (Lstream_raw_read):
|
|
|
534 * lstream.c (Lstream_read_more):
|
|
|
535 * lstream.c (Lstream_read):
|
|
|
536 * lstream.c (Lstream_unread):
|
|
|
537 * lstream.c (Lstream_fputc):
|
|
|
538 * lstream.c (stdio_reader):
|
|
|
539 * lstream.c (stdio_writer):
|
|
|
540 * lstream.c (filedesc_reader):
|
|
|
541 * lstream.c (filedesc_writer):
|
|
|
542 * lstream.c (lisp_string_reader):
|
|
|
543 * lstream.c (struct fixed_buffer_stream):
|
|
|
544 * lstream.c (make_fixed_buffer_input_stream):
|
|
|
545 * lstream.c (make_fixed_buffer_output_stream):
|
|
|
546 * lstream.c (fixed_buffer_reader):
|
|
|
547 * lstream.c (fixed_buffer_writer):
|
|
|
548 * lstream.c (struct resizing_buffer_stream):
|
|
|
549 * lstream.c (resizing_buffer_writer):
|
|
|
550 * lstream.c (dynarr_writer):
|
|
|
551 * lstream.c (lisp_buffer_reader):
|
|
|
552 * lstream.c (lisp_buffer_writer):
|
|
|
553 * lstream.h:
|
|
|
554 * lstream.h (lstream_implementation):
|
|
|
555 * lstream.h (struct lstream):
|
|
|
556 * md5.c (Fmd5):
|
|
|
557 * process-nt.c (nt_send_process):
|
|
|
558 * process-unix.c (unix_send_process):
|
|
|
559
|
|
|
560 Correct Lstream lossage due to mixing of signed and unsigned
|
|
|
561 quantities. All Lstream uses of size_t and ssize_t are now a
|
|
|
562 single signed data type Lstream_data_count. This fixes problems
|
|
|
563 under Windows with sending large quantities of data to a process,
|
|
|
564 and may well fix other subtle bugs.
|
|
|
565
|
|
460
|
566 2001-02-23 Martin Buchholz <martin@xemacs.org>
|
|
|
567
|
|
|
568 * XEmacs 21.2.45 "Thelxepeia" is released.
|
|
|
569
|
|
|
570 2001-02-21 Martin Buchholz <martin@xemacs.org>
|
|
|
571
|
|
|
572 * lisp-union.h (XSETINT):
|
|
|
573 (XSETCHAR):
|
|
|
574 (XSETOBJ):
|
|
|
575 Reverse previous change of 2001-02-06.
|
|
|
576
|
|
|
577 2001-02-20 Matt Tucker <tuck@whistlingfish.net>
|
|
|
578
|
|
|
579 Fix `VALID_BYTIND_P' crashes in regex.c when using narrowed
|
|
|
580 buffers.
|
|
|
581 * syntax.h (SYNTAX_CACHE_BYTE_TO_CHAR):
|
|
|
582 * syntax.h (SYNTAX_CACHE_OBJECT_BYTE_TO_CHAR):
|
|
|
583 Add `BI_BUF_BEGV' to bytepos before calculating bufpos.
|
|
|
584 * regex.c (POS_AS_IN_BUFFER): removed
|
|
|
585 * regex.c (re_search_2):
|
|
|
586 * regex.c (re_match_2):
|
|
|
587 Don't use an offset of 1 when calculating buffer positions, since
|
|
|
588 `BI_BUF_BEGV' does it already.
|
|
|
589
|
|
|
590 2001-02-18 Wim Dumon <wim@easics.be>
|
|
|
591
|
|
|
592 * insdel.c (prepare_to_modify_buffer): Also check for
|
|
|
593 supersession when clash-detection is enabled.
|
|
|
594
|
|
|
595 2001-02-17 Matt Tucker <tuck@whistlingfish.net>
|
|
|
596
|
|
|
597 * regex.c (re_match_2_internal):
|
|
|
598 Convert temp characters from 'const unsigned char' to 're_char'.
|
|
|
599 Fix crashing bug with extended characters under mule.
|
|
|
600 * syntax.c (Qsyntax_table): Moved from vars_of_syntax to
|
|
|
601 syms_of_syntax. Use defsymbol to define. Fixes hanging bug with
|
|
|
602 font-lock, pdump, and new syntax-table code.
|
|
|
603 * syntax.c (find_start_of_comment):
|
|
|
604 (find_end_of_comment):
|
|
|
605 (forward-comment):
|
|
|
606 Fix crashing bugs involving moving beyond end of buffer.
|
|
|
607 * syntax.c (find_start_of_comment):
|
|
|
608 Fixed logic to allow proper detection of cases where the same
|
|
|
609 character is used to end both a two-char comment start and a
|
|
|
610 two-char comment end sequence. Fixes `(forward-comment -1)'.
|
|
|
611 * syntax.c (find_start_of_comment):
|
|
|
612 Return position just past last comment-end character for all cases
|
|
|
613 (previously was only done for two-char comment-end sequences).
|
|
|
614 * syntax.c (forward-comment):
|
|
|
615 Take value returned from `find_end_of_comment', rather than
|
|
|
616 incrementing it.
|
|
|
617 * syntax.h (SYNTAX_CACHE_BYTE_TO_CHAR):
|
|
|
618 Properly deal with BUFFERP (syntax_cache.object)
|
|
|
619
|
|
|
620 2001-02-17 Martin Buchholz <martin@xemacs.org>
|
|
|
621
|
|
|
622 * alloc.c (Fgarbage_collect):
|
|
|
623 * alloc.c (make_bit_vector_from_byte_vector):
|
|
|
624 -Wsign-compare-correctness.
|
|
|
625
|
|
|
626 2001-02-16 Martin Buchholz <martin@xemacs.org>
|
|
|
627
|
|
|
628 * lisp-union.h (XSETINT): Eliminate unnecessary temp var.
|
|
|
629 (XSETCHAR): Likewise.
|
|
|
630 (XSETOBJ): Likewise.
|
|
|
631
|
|
|
632 2001-02-15 Martin Buchholz <martin@xemacs.org>
|
|
|
633
|
|
|
634 * mule-canna.c (canna-func-delete_previous):
|
|
|
635 Rename to canna-func-delete-previous.
|
|
|
636
|
|
|
637 2001-02-14 Martin Buchholz <martin@xemacs.org>
|
|
|
638
|
|
|
639 * mule-ccl.c (ccl_driver): Warning suppression. Use countof.
|
|
|
640
|
|
|
641 2001-02-13 Matt Tucker <tuck@whistlingfish.net>
|
|
|
642
|
|
|
643 * font-lock.c (find_context): Fix C++ compile errors introduced by
|
|
|
644 recent patch
|
|
|
645
|
|
|
646 2001-02-13 Martin Buchholz <martin@xemacs.org>
|
|
|
647
|
|
|
648 * s/aix4.h: Later versions of IBM C compiler need a bug workaround
|
|
|
649 pragma, but earlier ones barf on the same pragma.
|
|
|
650
|
|
|
651 2001-02-06 Mike Sperber <mike@xemacs.org>
|
|
|
652
|
|
|
653 * emacs.c (complex_vars_of_emacs): Add `mule-lisp-directory' and
|
|
|
654 `configure-mule-lisp-directory'.
|
|
|
655
|
|
|
656 2001-02-12 Martin Buchholz <martin@xemacs.org>
|
|
|
657
|
|
|
658 Make sure dump-id.c is compiled in the same way as other .c's.
|
|
|
659 Fixes pdump compilation failure with HP's cc, which defaults to K&R.
|
|
|
660 * dump-id.h: Remove.
|
|
|
661 * emacs.c: Move dump-id.h into dumper.h.
|
|
|
662 * dumper.h: Move dump-id.h into dumper.h.
|
|
|
663 * Makefile.in.in:
|
|
|
664 Use standard .c.o rule for building dump-id.o.
|
|
|
665 Remove preprocessor flags from link command.
|
|
|
666 Add dump-id.o to ${otherobjs} if PDUMP.
|
|
|
667
|
|
|
668 2001-02-07 Matt Tucker <tuck@whistlingfish.net>
|
|
|
669
|
|
|
670 Port FSF 20.7 syntax table improvements.
|
|
|
671 * syntax.c.
|
|
|
672 * syntax.h.
|
|
|
673
|
|
|
674 Fixups for new syntax table stuff.
|
|
|
675 * dired.c: Include syntax.c.
|
|
|
676 (Fdirectory_files): Initialize regex_match_object and
|
|
|
677 regex_emacs_buffer.
|
|
|
678 * extents.h: EXFUN Fnext_extent_change, Fprevious_extent_change,
|
|
|
679 and Fget_char_property.
|
|
|
680
|
|
|
681 Use ported FSF 20.7 syntax table improvements.
|
|
|
682 * font-lock.c.
|
|
|
683 * regex.c.
|
|
|
684 * search.c.
|
|
|
685
|
|
|
686 2001-02-09 Martin Buchholz <martin@xemacs.org>
|
|
|
687
|
|
|
688 * regex.c (Boolean): Renamed to `re_bool', to avoid conflict with
|
|
|
689 Unixware's enum boolean from sys/types.h.
|
|
|
690
|
|
|
691 2001-02-10 Martin Buchholz <martin@xemacs.org>
|
|
|
692
|
|
|
693 Fix support for building with latest Purify.
|
|
|
694 * Makefile.in.in (PURIFY_LIBS): Remove thread flags.
|
|
|
695 (PURIFY_FLAGS): Likewise.
|
|
|
696
|
|
|
697 2001-02-09 Martin Buchholz <martin@xemacs.org>
|
|
|
698
|
|
|
699 * fileio.c (lisp_string_set_file_times): New.
|
|
|
700 * fileio.c (Fcopy_file): Use it.
|
|
|
701 Fixes bug:
|
|
|
702 (copy-file filename non-ascii-filename t t)
|
|
|
703 ==> No such file or directory, non-ascii-filename
|
|
|
704
|
|
|
705 2001-02-10 Martin Buchholz <martin@xemacs.org>
|
|
|
706
|
|
|
707 * glyphs-x.c (generate_cursor_fg_bg): Avoid a warning.
|
|
|
708 USHRT_MAX seems clearer than ~0 anyways.
|
|
|
709
|
|
|
710 2001-02-09 Martin Buchholz <martin@xemacs.org>
|
|
|
711
|
|
|
712 dumper improvements. Inspired by Olivier.
|
|
|
713 * dumper.c (pdump_max_align): New.
|
|
|
714 * dumper.c (pdump_add_entry): Use pdump_max_align.
|
|
|
715 * dumper.c (pdump_get_entry_list): Likewise.
|
|
|
716 * dumper.c (pdump_scan_by_alignment): Likewise.
|
|
|
717 Don't iterate through unnecessary alignments.
|
|
|
718 * dumper.c (pdump_file_get): No need to align result of malloc().
|
|
|
719 * dumper.c (pdump_mallocadr): Remove.
|
|
|
720 The result of malloc() is guaranteed to be maximally aligned.
|
|
|
721 * dumper.c: s/elmt/elt/g;
|
|
|
722 * dumper.c (pdump_object_table): Allocate dynamically, not statically.
|
|
|
723 * dumper.c (pdump_alert_undump_object): Likewise.
|
|
|
724 * dumper.c (pdump_align_table):
|
|
|
725 Don't support alignments > 64.
|
|
|
726 Store ALIGNOF's, not shift counts, in table.
|
|
|
727
|
|
|
728 2001-02-09 Martin Buchholz <martin@xemacs.org>
|
|
|
729
|
|
|
730 * s/mingw32.h (HAVE_STRUCT_UTIMBUF): Remove.
|
|
|
731 * s/windowsnt.h (HAVE_STRUCT_UTIMBUF): Remove.
|
|
|
732 * systime.h: Use HAVE_UTIME.
|
|
|
733 * sysdep.c (struct utimbuf): Remove.
|
|
|
734 * sysdep.c (set_file_times): Prefer utime() to utimes().
|
|
|
735 * config.h.in (HAVE_UTIME): New.
|
|
|
736 * config.h.in (HAVE_UTIME_H): Remove.
|
|
|
737 * config.h.in (HAVE_STRUCT_UTIMBUF): Remove.
|
|
|
738
|
|
|
739 2001-02-09 Martin Buchholz <martin@xemacs.org>
|
|
|
740
|
|
|
741 * s/aix4.h: Hide #pragmas inside #ifndef NOT_C_CODE.
|
|
|
742
|
|
|
743 2001-02-08 Martin Buchholz <martin@xemacs.org>
|
|
|
744
|
|
|
745 * s/irix6-0.h: Use the standard system memmove, not bcopy.
|
|
|
746
|
|
458
|
747 2001-02-08 Martin Buchholz <martin@xemacs.org>
|
|
|
748
|
|
|
749 * XEmacs 21.2.44 "Thalia" is released.
|
|
|
750
|
|
|
751 2001-02-06 Martin Buchholz <martin@xemacs.org>
|
|
|
752
|
|
|
753 Fixes crashes in kill-emacs on some systems.
|
|
|
754 * process-unix.c (unix_kill_child_process):
|
|
|
755 It's OK for kill() to fail with ESRCH.
|
|
|
756
|
|
|
757 2001-02-07 Martin Buchholz <martin@xemacs.org>
|
|
|
758
|
|
|
759 Contortions to make .gdbinit tricks work on most systems.
|
|
|
760 * alloc.c (dbg_inhibit_dbg_symbol_deletion): Keep debugger info.
|
|
|
761 * alloc.c (dbg_valmask): Make non-const.
|
|
|
762 * alloc.c (dbg_typemask): Make non-const.
|
|
|
763 * alloc.c (dbg_USE_UNION_TYPE): Make non-const.
|
|
|
764 * alloc.c (dbg_valbits): Make non-const.
|
|
|
765 * alloc.c (dbg_gctypebits): Make non-const.
|
|
|
766 * .gdbinit (decode_object): Make it work with AIX cc.
|
|
|
767
|
|
|
768 2001-02-06 Martin Buchholz <martin@xemacs.org>
|
|
|
769
|
|
|
770 * elhash.c (make_general_lisp_hash_table):
|
|
|
771 Use simpler and more efficient calloc to clear entries.
|
|
|
772
|
|
|
773 2001-02-07 Martin Buchholz <martin@xemacs.org>
|
|
|
774
|
|
|
775 * window.c (window_scroll): Work around an AIX C compiler bug.
|
|
|
776 Fixes 'scroll-up' does nothing problem with xlC.
|
|
|
777
|
|
|
778 2001-02-05 Martin Buchholz <martin@xemacs.org>
|
|
|
779
|
|
|
780 * .gdbinit: Remove obsolete comment.
|
|
|
781
|
|
|
782 2001-01-31 Mike Alexander <mta@arbortext.com>
|
|
|
783
|
|
|
784 * select.c (Fown_selection_internal): Set owned_p for device
|
|
|
785 method correctly.
|
|
|
786
|
|
|
787 2001-02-01 Martin Buchholz <martin@xemacs.org>
|
|
|
788
|
|
|
789 Port to g++ 2.97.
|
|
|
790 "not" cannot be used as a macro name as it is an operator in C++
|
|
|
791 * config.h.in: Stop #defining `not'.
|
|
|
792 * chartab.c (check_category_char): not ==> not_p
|
|
|
793 * chartab.h: Likewise.
|
|
|
794 * regex.c (re_match_2_internal): Likewise.
|
|
|
795
|
|
|
796 2001-02-02 Martin Buchholz <martin@xemacs.org>
|
|
|
797
|
|
|
798 * lisp-disunion.h: Fix up comments.
|
|
|
799
|
|
|
800 2001-01-31 Martin Buchholz <martin@xemacs.org>
|
|
|
801
|
|
|
802 * keymap.c (define_key_check_and_coerce_keysym):
|
|
|
803 (syms_of_keymap):
|
|
|
804 Support mouse-6 and mouse-7 bindings in the obvious way.
|
|
|
805
|
|
|
806 2001-02-01 Martin Buchholz <martin@xemacs.org>
|
|
|
807
|
|
|
808 * m/hp9000s300.h (UNEXEC): Check for HPUX, not !BSD.
|
|
|
809
|
|
|
810 2001-01-30 Martin Buchholz <martin@xemacs.org>
|
|
|
811
|
|
|
812 Previous patch changing DEFVAR_INT to use EMACS_INT was incomplete.
|
|
|
813 Previous patch missed DEFVAR_INT_MAGIC.
|
|
|
814 Make sure future DEFVAR_foo use correct types.
|
|
|
815 * symeval.h (DEFVAR_SYMVAL_FWD_FIXNUM): New.
|
|
|
816 * (DEFVAR_SYMVAL_FWD_INT): Add type checking.
|
|
|
817 * (DEFVAR_SYMVAL_FWD_OBJECT): Add type checking.
|
|
|
818 * (DEFVAR_INT_MAGIC): Use DEFVAR_SYMVAL_FWD_FIXNUM.
|
|
|
819 * (DEFVAR_INT): Likewise.
|
|
|
820 * redisplay.c (vertical_clip): Should be of type Fixnum.
|
|
|
821 * redisplay.c (horizontal_clip): Likewise.
|
|
|
822 * lisp.h (dump_add_opaque_int): New.
|
|
|
823 (dump_add_opaque_fixnum): New.
|
|
|
824
|
|
|
825 2001-01-29 Andy Piper <andy@xemacs.org>
|
|
|
826
|
|
|
827 * glyphs-widget.c (check_valid_int_or_function): allow symbols
|
|
|
828 since they can be eval'ed
|
|
|
829
|
|
|
830 2001-01-29 Martin Buchholz <martin@xemacs.org>
|
|
|
831
|
|
|
832 * lisp.h (ALIGNOF): Make it work on non-gcc C++ compilers.
|
|
|
833 Oops, XEmacs redefines `class'. Use `typename' instead.
|
|
|
834
|
|
|
835 2001-01-28 Martin Buchholz <martin@xemacs.org>
|
|
|
836
|
|
|
837 * dumper.c: Fix C++ compile errors.
|
|
|
838
|
|
|
839 2001-01-29 Martin Buchholz <martin@xemacs.org>
|
|
|
840
|
|
|
841 * tparam.c: Use correct prototypes.
|
|
|
842
|
|
|
843 2001-01-28 Martin Buchholz <martin@xemacs.org>
|
|
|
844
|
|
|
845 * sysproc.h: #include util.h for NetBSD's openpty.
|
|
|
846
|
|
|
847 2001-01-27 Martin Buchholz <martin@xemacs.org>
|
|
|
848
|
|
|
849 More 64-bit correctness.
|
|
|
850 The C value of a DEFVAR_INT should be of type EMACS_INT, not int.
|
|
|
851 Use a typedef `fixnum' for the type used for DEFVAR_INT.
|
|
|
852 Fix up comments.
|
|
|
853 This finally finishes the 64-bit SGI port.
|
|
|
854 Fixes things like (let ((gc-cons-threshold most-positive-fixnum)) ...).
|
|
|
855 * symbols.c: Fix up comments and type casts.
|
|
|
856 * symbols.c (do_symval_forwarding): s/int/Fixnum/g
|
|
|
857 * symbols.c (store_symval_forwarding): s/int/Fixnum/g
|
|
|
858 * symeval.h (Fixnum): New type.
|
|
|
859 * symeval.h (symbol_value_type): Fix up comment.
|
|
|
860
|
|
|
861 * commands.h:
|
|
|
862 * nt.c:
|
|
|
863 * emacs.c:
|
|
|
864 * data.c:
|
|
|
865 * redisplay.c:
|
|
|
866 * abbrev.c:
|
|
|
867 * dired-msw.c:
|
|
|
868 * event-Xt.c:
|
|
|
869 * eldap.c:
|
|
|
870 * window.c:
|
|
|
871 * sound.c:
|
|
|
872 * event-stream.c:
|
|
|
873 * eval.c:
|
|
|
874 * buffer.c:
|
|
|
875 * mule-canna.c: A million DEFVAR_INTs here...
|
|
|
876 * mule-canna.c (count_char): s/int */Fixnum */g in arglist.
|
|
|
877 * extents.c:
|
|
|
878 * cmdloop.c:
|
|
|
879 * lisp.h:
|
|
|
880 * select-x.c:
|
|
|
881 * console-x.h:
|
|
|
882 * event-msw.c:
|
|
|
883 * mule-wnnfns.c:
|
|
|
884 * hpplay.c:
|
|
|
885 * ralloc.c:
|
|
|
886 * alloc.c:
|
|
|
887 * keymap.c:
|
|
|
888 * profile.c:
|
|
|
889 s/int/Fixnum/g in DEFVAR_INT declarations.
|
|
|
890
|
|
456
|
891 2001-01-26 Martin Buchholz <martin@xemacs.org>
|
|
|
892
|
|
|
893 Port pdump to SGI alignment-sensitive environment.
|
|
|
894 Lisp Object sizeof methods now return aligned sizes. Rely on that.
|
|
|
895 Eliminate is_lrecord since Lisp_Objects sizeof methods are now all
|
|
|
896 properly aligned.
|
|
|
897 Define and use aligned reading and writing macros.
|
|
|
898 Use buffered stdio instead of posix i/o for faster dumping.
|
|
|
899 Eliminate kludgy 256 byte space for header.
|
|
|
900 Read and write from dump file using structs for alignment safety.
|
|
|
901 * dumper.c (pdump_align_stream): New.
|
|
|
902 * dumper.c (PDUMP_ALIGN_OUTPUT): New.
|
|
|
903 * dumper.c (PDUMP_READ_ALIGNED): New.
|
|
|
904 * dumper.c (PDUMP_WRITE_ALIGNED): New.
|
|
|
905 * dumper.c (pdump_static_Lisp_Object): New struct.
|
|
|
906 * dumper.c (pdump_static_pointer): New struct.
|
|
|
907 * dumper.c (pdump_entry_list_element): Remove is_lrecord member.
|
|
|
908 * dumper.c (pdump_add_entry): Remove is_lrecord parameter.
|
|
|
909 * dumper.c (pdump_dump_data): Rely on sizeof method alignment.
|
|
|
910 * dumper.c (pdump_allocate_offset): Rely on sizeof method alignment.
|
|
|
911
|
|
|
912 * dumper.c (pdump_backtrace):
|
|
|
913 * dumper.c (pdump_get_indirect_count):
|
|
|
914 * dumper.c (pdump_register_object):
|
|
|
915 * dumper.c (pdump_register_struct):
|
|
|
916 * dumper.c (pdump_reloc_one):
|
|
|
917 * dumper.c (pdump_scan_by_alignment):
|
|
|
918 * dumper.c (pdump_dump_from_root_struct_ptrs):
|
|
|
919 * dumper.c (pdump_dump_opaques):
|
|
|
920 * dumper.c (pdump_dump_rtables):
|
|
|
921 * dumper.c (pdump_dump_from_root_objects):
|
|
|
922 * dumper.c (pdump):
|
|
|
923 * dumper.c (pdump_load_finish):
|
|
|
924 Use aligned reading and writing.
|
|
|
925
|
|
|
926 * dumper.c (pdump_free): Make static.
|
|
|
927 * dumper.c (pdump_hFile): Likewise.
|
|
|
928 * dumper.c (pdump_hMap): Likewise.
|
|
|
929
|
|
|
930 2001-01-26 Martin Buchholz <martin@xemacs.org>
|
|
|
931
|
|
|
932 * XEmacs 21.2.43 "Terspichore" is released.
|
|
|
933
|
|
|
934 2001-01-25 Martin Buchholz <martin@xemacs.org>
|
|
|
935
|
|
|
936 Type fiddling for window_config.saved_windows_count
|
|
|
937 * window.c (struct window_config):
|
|
|
938 Make saved_windows_count member unsigned.
|
|
|
939 * window.c (sizeof_window_config_for_n_windows):
|
|
|
940 Make parameter unsigned.
|
|
|
941 * window.c (mark_window_config):
|
|
|
942 * window.c (window_config_equal):
|
|
|
943 * window.c (free_window_configuration):
|
|
|
944 * window.c (Fset_window_configuration):
|
|
|
945 * window.c (count_windows):
|
|
|
946 * window.c (Fcurrent_window_configuration):
|
|
|
947 * window.c (reinit_vars_of_window):
|
|
|
948 Update all callers and users.
|
|
|
949
|
|
|
950 2001-01-25 Martin Buchholz <martin@xemacs.org>
|
|
|
951
|
|
|
952 Alignment correctness for flexible arrays.
|
|
|
953 * lisp.h (FLEXIBLE_ARRAY_STRUCT_SIZEOF):
|
|
|
954 Make alignment-correct. Add interesting comments.
|
|
|
955 * alloc.c (size_vector):
|
|
|
956 * alloc.c (make_vector_internal):
|
|
|
957 * alloc.c (make_bit_vector_internal):
|
|
|
958 * alloc.c (sweep_bit_vectors_1):
|
|
|
959 * fns.c (size_bit_vector):
|
|
|
960 Update all callers of FLEXIBLE_ARRAY_STRUCT_SIZEOF to add new arg.
|
|
|
961 * window.c (sizeof_window_config_for_n_windows):
|
|
|
962 Use FLEXIBLE_ARRAY_STRUCT_SIZEOF.
|
|
|
963
|
|
|
964 2001-01-24 Martin Buchholz <martin@xemacs.org>
|
|
|
965
|
|
|
966 * lread.c (read1): Rename `fexp', which is #defined in SGI's math.h
|
|
|
967
|
|
|
968 2001-01-23 Andy Piper <andy@xemacs.org>
|
|
|
969
|
|
|
970 * select.c (Fown_selection_internal): pass owned_p
|
|
|
971
|
|
|
972 * select-msw.c (mswindows_own_selection): New Signature.
|
|
|
973
|
|
|
974 * console.h (struct console_methods): add owned_p to
|
|
|
975 _own_selection.
|
|
|
976
|
|
|
977 * select-x.c (x_own_selection): pass owned_p
|
|
|
978 (hack_motif_clipboard_selection): use owned_p
|
|
|
979 (vars_of_select_x): new variable -
|
|
|
980 x_selection_strict_motif_ownership.
|
|
|
981
|
|
|
982 2001-01-23 Martin Buchholz <martin@xemacs.org>
|
|
|
983
|
|
|
984 * specifier.h (specifier_data_offset): Remove pointless parens.
|
|
|
985 * glyphs.h (IMAGE_SPECIFIER_DATA): Likewise.
|
|
|
986
|
|
|
987 2001-01-24 Martin Buchholz <martin@xemacs.org>
|
|
|
988
|
|
|
989 Make Lisp_Object sizeof methods be alignment-correct.
|
|
|
990 pdump must restore objects to the same alignment as the C compiler
|
|
|
991 assumes. It really matters on SGIs.
|
|
|
992 * lstream.c (aligned_sizeof_lstream): New.
|
|
|
993 (sizeof_lstream): Use aligned_sizeof_lstream.
|
|
|
994 (Lstream_new): Likewise.
|
|
|
995 * opaque.c (aligned_sizeof_opaque): New.
|
|
|
996 (sizeof_opaque): Use aligned_sizeof_opaque.
|
|
|
997 (make_opaque): Likewise.
|
|
|
998 * specifier.c (aligned_sizeof_specifier): New.
|
|
|
999 (sizeof_specifier): Use aligned_sizeof_specifier.
|
|
|
1000 (make_specifier_internal): Likewise.
|
|
|
1001
|
|
|
1002 2001-01-23 Martin Buchholz <martin@xemacs.org>
|
|
|
1003
|
|
|
1004 * lstream.h (struct lstream): Use max_align_t for trailing data.
|
|
|
1005 * specifier.h (struct Lisp_Specifier): Likewise.
|
|
|
1006
|
|
|
1007 2001-01-22 Martin Buchholz <martin@xemacs.org>
|
|
|
1008
|
|
|
1009 * mule-ccl.c (CCL_Extension): Renamed from CCL_Extention.
|
|
|
1010 (CCL_SUCCESS): Kludge to prevent Sun cc compiler warnings.
|
|
|
1011 (CCL_SUSPEND): Likewise.
|
|
|
1012 (CCL_INVALID_CMD): Likewise.
|
|
|
1013 (CCL_CALL_FOR_MAP_INSTRUCTION): Likewise.
|
|
|
1014 (ccl_driver): Likewise.
|
|
|
1015 (CCL_WRITE_CHAR): Macro hygiene.
|
|
|
1016 (CCL_WRITE_STRING): Macro hygiene.
|
|
|
1017
|
|
|
1018 2001-01-22 Martin Buchholz <martin@xemacs.org>
|
|
|
1019
|
|
|
1020 Port "portable" dumper to SunOS 4 and HP-UX.
|
|
|
1021 * s/aix4.h (AIX4): Move MAP_FAILED definition elsewhere.
|
|
|
1022 * emacs.c (main): PDUMP implies no RUN_TIME_REMAP.
|
|
|
1023 * dumper.c (pdump_file_get): Define MAP_FAILED if not already defined.
|
|
|
1024
|
|
|
1025 2001-01-22 Martin Buchholz <martin@xemacs.org>
|
|
|
1026
|
|
|
1027 * lisp.h (ALIGNOF): A better definition for C++.
|
|
|
1028
|
|
|
1029 2001-01-20 Martin Buchholz <martin@xemacs.org>
|
|
|
1030
|
|
|
1031 Macro hygiene.
|
|
|
1032 Fix printf warnings: int format, long int arg.
|
|
|
1033 * regex.c (DECLARE_DESTINATION): Use DECLARE_NOTHING.
|
|
|
1034 (PUSH_FAILURE_POINT): Use correct printf formats.
|
|
|
1035 (POP_FAILURE_POINT): Use correct printf formats.
|
|
|
1036 Use do {...} while (0)
|
|
|
1037
|
|
454
|
1038 2001-01-20 Martin Buchholz <martin@xemacs.org>
|
|
|
1039
|
|
|
1040 * XEmacs 21.2.42 "Poseidon" is released.
|
|
|
1041
|
|
|
1042 2001-01-20 Martin Buchholz <martin@xemacs.org>
|
|
|
1043
|
|
|
1044 * console-x.h: typo fix du jour. Remove #if 0'ed code.
|
|
|
1045
|
|
|
1046 2001-01-19 Martin Buchholz <martin@xemacs.org>
|
|
|
1047
|
|
|
1048 De-kludgify FIXED_TYPE free list frobbing.
|
|
|
1049 Fix crashes on 64-bit platforms introduced by my patch of 2001-01-13.
|
|
|
1050 * alloc.c (DECLARE_FIXED_TYPE_ALLOC): Use Lisp_Free.
|
|
|
1051 * alloc.c (ALLOCATE_FIXED_TYPE_1): Use new definitions.
|
|
|
1052 * alloc.c (Lisp_Free): New pseudo lisp object definition.
|
|
|
1053 * alloc.c (LRECORD_FREE_P): New.
|
|
|
1054 * alloc.c (MARK_LRECORD_AS_FREE): New.
|
|
|
1055 * alloc.c (MARK_LRECORD_AS_NOT_FREE): New.
|
|
|
1056 * alloc.c (STRUCT_FREE_P): Deleted.
|
|
|
1057 * alloc.c (MARK_STRUCT_AS_FREE): Deleted.
|
|
|
1058 * alloc.c (MARK_STRUCT_AS_NOT_FREE): Deleted.
|
|
|
1059 * alloc.c (STRING_CHARS_FREE_P): New.
|
|
|
1060 * alloc.c (MARK_STRING_CHARS_AS_FREE): New.
|
|
|
1061 * alloc.c (PUT_FIXED_TYPE_ON_FREE_LIST): Use new definitions.
|
|
|
1062 * alloc.c (FREE_FIXED_TYPE): Use new definitions.
|
|
|
1063 * alloc.c (STRING_CHARS_FREE_P): Use new definitions.
|
|
|
1064 * alloc.c (resize_string): Use new definitions.
|
|
|
1065 * alloc.c (SWEEP_FIXED_TYPE_BLOCK): Use new definitions.
|
|
|
1066 * alloc.c (verify_string_chars_integrity): Use new definitions.
|
|
|
1067 * alloc.c (compact_string_chars): Use new definitions.
|
|
|
1068 * alloc.c: Update monster comments.
|
|
|
1069 * lrecord.h (lrecord_type): Add some new lrecord types for
|
|
|
1070 alloc.c's use.
|
|
|
1071
|
|
|
1072 2001-01-18 Martin Buchholz <martin@xemacs.org>
|
|
|
1073
|
|
|
1074 Improve alignment hackery.
|
|
|
1075 * lisp.h (ALIGNOF): Better definition for the non-gcc case.
|
|
|
1076 (max_align_t): Moved from opaque.h - general purpose.
|
|
|
1077 (ALIGN_PTR): Use size_t, not long.
|
|
|
1078 * opaque.h (max_align_t): Move to lisp.h.
|
|
|
1079
|
|
|
1080 2001-01-18 Norbert Koch <nk@LF.net>
|
|
|
1081
|
|
|
1082 * gui.h: Fix and add prototypes to fix build problems.
|
|
|
1083
|
|
|
1084 2001-01-18 Martin Buchholz <martin@xemacs.org>
|
|
|
1085
|
|
|
1086 temacs is going away, so `dump-temacs' is now a bad name.
|
|
|
1087 * .dbxrc (dump-temacs): Rename to `dmp'.
|
|
|
1088 * .gdbinit (dump-temacs): Rename to `dmp'.
|
|
|
1089
|
|
|
1090 2001-01-17 Andy Piper <andy@xemacs.org>
|
|
|
1091
|
|
|
1092 * glyphs.c (print_image_instance): comment to make martin happy.
|
|
|
1093
|
|
|
1094 * glyphs-x.c (x_redisplay_widget): update faces after a frame
|
|
|
1095 change.
|
|
|
1096
|
|
|
1097 * glyphs-msw.c (mswindows_redisplay_widget): add code to cope with
|
|
|
1098 activation.
|
|
|
1099 (mswindows_tab_control_redisplay): warning suppression.
|
|
|
1100
|
|
|
1101 * glyphs-widget.c (widget_update): re-write to cope with updated
|
|
|
1102 items.
|
|
|
1103 (widget_instantiate): use new gui_item functions.
|
|
|
1104 (tab_control_update): deleted.
|
|
|
1105 (progress_gauge_update): deleted.
|
|
|
1106 (image_instantiator_progress_guage): take out update reference.
|
|
|
1107 (image_instantiator_tree_view): ditto.
|
|
|
1108 (image_instantiator_tab_control): ditto.
|
|
|
1109
|
|
|
1110 * gui.c (widget_gui_parse_item_keywords): new function. Do things
|
|
|
1111 Right the new way.
|
|
|
1112 (gui_item_add_keyval_pair): re-write to cope with descriptors and
|
|
|
1113 return whether anything was changed.
|
|
|
1114 (update_gui_item_keywords): as it sounds.
|
|
|
1115
|
|
|
1116 * gui.h: declare widget_gui_parse_item_keywords.
|
|
|
1117
|
|
|
1118 * fns.c (safe_copy_tree): new function taken from Fcopy_tree.
|
|
|
1119 (Fcopy_tree): use it. Stops infloop death in bogus instantiators.
|
|
|
1120
|
|
452
|
1121 2001-01-17 Martin Buchholz <martin@xemacs.org>
|
|
|
1122
|
|
|
1123 * XEmacs 21.2.41 "Polyhymnia" is released.
|
|
|
1124
|
|
|
1125 2001-01-16 Didier Verna <didier@xemacs.org>
|
|
|
1126
|
|
|
1127 * glyphs.c (image_instantiate): don't use fallbacks when
|
|
|
1128 instantiating a face's background pixmap by inheritance.
|
|
|
1129
|
|
|
1130 2001-01-14 Mike Sperber <mike@xemacs.org>
|
|
|
1131
|
|
|
1132 * sysdep.c (start_of_data): PDUMP implies ORDINARY_LINK.
|
|
|
1133 Conditionalize accordingly.
|
|
|
1134
|
|
|
1135 2001-01-16 Martin Buchholz <martin@xemacs.org>
|
|
|
1136
|
|
|
1137 * dumper.c (pdump_file_get): Fix a compiler warning.
|
|
|
1138
|
|
|
1139 2001-01-15 Martin Buchholz <martin@xemacs.org>
|
|
|
1140
|
|
|
1141 Make Purify happy when pdumping.
|
|
|
1142 * symbols.c (Fmake_variable_buffer_local): Make Purify happy, by
|
|
|
1143 iniitalizing all bits of new lisp object memory.
|
|
|
1144 * symbols.c (Fmake_local_variable): Likewise.
|
|
|
1145 * symbols.c (Fdontusethis_set_symbol_value_handler): Likewise.
|
|
|
1146 * symbols.c (Fdefvaralias): Likewise.
|
|
|
1147 * mule-charset.c (vars_of_mule_charset): Likewise.
|
|
|
1148
|
|
|
1149 2001-01-15 Martin Buchholz <martin@xemacs.org>
|
|
|
1150 Add the `-nd' flag when running pre-dump operations under the debugger.
|
|
|
1151 * .dbxrc (run-temacs): Add `-nd'.
|
|
|
1152 * .dbxrc (update-elc): Likewise.
|
|
|
1153 * .dbxrc (dump-temacs): Likewise.
|
|
|
1154 * .gdbinit (run-temacs): Likewise.
|
|
|
1155 * .gdbinit (check-temacs): Likewise.
|
|
|
1156 * .gdbinit (update-elc): Likewise.
|
|
|
1157 * .gdbinit (dump-temacs): Likewise.
|
|
|
1158
|
|
|
1159 2001-01-14 Martin Buchholz <martin@xemacs.org>
|
|
|
1160
|
|
|
1161 Allow building 64-bit executables on AIX with GNU malloc, e.g.
|
|
|
1162 export OBJECT_MODE=64
|
|
|
1163 configure --pdump --use-union-type=no
|
|
|
1164 * m/ibmrs6000.h (DATA_START): Define for 64-bit world.
|
|
|
1165 * gmalloc.c (__default_morecore): Remove pre-ANSI cruft.
|
|
|
1166
|
|
|
1167 * miscplay.c (sndcnv8U_2mono):
|
|
|
1168 Avoid two uses of `++' in the same expression.
|
|
|
1169 Suppresses a GCC warning.
|
|
|
1170
|
|
|
1171 2001-01-13 Martin Buchholz <martin@xemacs.org>
|
|
|
1172
|
|
|
1173 Make sure future compilers don't miscompile alloc.c.
|
|
|
1174 * alloc.c:
|
|
|
1175 (MARK_STRUCT_AS_FREE): Make aliasing-optimization-resistant.
|
|
|
1176 (MARK_STRUCT_AS_NOT_FREE): Make aliasing-optimization-resistant.
|
|
|
1177
|
|
|
1178 2001-01-12 Martin Buchholz <martin@xemacs.org>
|
|
|
1179
|
|
|
1180 * dumper.c: A little post-pdump-rename comment fixup.
|
|
|
1181
|
|
|
1182 2001-01-09 Jerry James <james@eecs.ku.edu>
|
|
|
1183
|
|
|
1184 * lisp-disunion.h: Change LISP_TO_CVOID arg to match its use.
|
|
|
1185
|
|
|
1186 2001-01-13 Martin Buchholz <martin@xemacs.org>
|
|
|
1187
|
|
|
1188 * *.[ch]: Globally rename symbols using the following `pdump-rename'
|
|
|
1189 script:
|
|
|
1190 #!/bin/sh
|
|
|
1191 replace_symbol () {
|
|
|
1192 (findn texi$; findn [ch]$) | xargs g -lw "$1" | xargs global-replace 's/(?<!_)\b'$1'\b(?!_)/'$2'/g'
|
|
|
1193 }
|
|
|
1194
|
|
|
1195 replace_symbol pdump_wire_lists pdump_weak_object_chains
|
|
|
1196 replace_symbol pdump_wire_list dump_add_weak_object_chain
|
|
|
1197
|
|
|
1198 replace_symbol pdump_wires pdump_root_objects
|
|
|
1199 replace_symbol pdump_wire dump_add_root_object
|
|
|
1200
|
|
|
1201 replace_symbol pdump_dump_wired pdump_dump_from_root_objects
|
|
|
1202 replace_symbol pdump_dump_structs pdump_dump_from_root_struct_ptrs
|
|
|
1203
|
|
|
1204 replace_symbol dumpstructinfos pdump_root_struct_ptrs
|
|
|
1205 replace_symbol dumpstructinfo_dynarr pdump_root_struct_ptr_dynarr
|
|
|
1206 replace_symbol dumpstructinfo pdump_root_struct_ptr
|
|
|
1207 replace_symbol dumpstruct dump_add_root_struct_ptr
|
|
|
1208
|
|
|
1209 replace_symbol dumpopaque dump_add_opaque
|
|
|
1210 replace_symbol dumpopaqueinfo_dynarr pdump_opaque_dynarr
|
|
|
1211 replace_symbol dumpopaqueinfos pdump_opaques
|
|
|
1212 replace_symbol dumpopaqueinfo pdump_opaque
|
|
|
1213
|
|
|
1214 replace_symbol nb_structdump nb_root_struct_ptrs
|
|
|
1215 replace_symbol nb_opaquedump nb_opaques
|
|
|
1216
|
|
|
1217 replace_symbol align_table pdump_align_table
|
|
|
1218 replace_symbol dump_header pdump_header
|
|
|
1219
|
|
|
1220 replace_symbol DUMP_SIGNATURE_LEN PDUMP_SIGNATURE_LEN
|
|
|
1221 replace_symbol DUMP_SIGNATURE PDUMP_SIGNATURE
|
|
|
1222
|
|
|
1223
|
|
|
1224 2001-01-12 Martin Buchholz <martin@xemacs.org>
|
|
|
1225
|
|
|
1226 * s/aix4.h: Keep the C for AIX compiler from overaggressively
|
|
|
1227 optimizing bytecount_to_charcount().
|
|
|
1228
|
|
|
1229 2001-01-06 Golubev I. N. <gin@mo.msk.ru>
|
|
|
1230
|
|
|
1231 * config.h.in:
|
|
|
1232 (HAVE_DLFCN_H): Removed.
|
|
|
1233 * sysdll.c: Remove HAVE__DLOPEN, HAVE_DLFCN_H.
|
|
|
1234
|
|
|
1235 2001-01-06 Martin Buchholz <martin@xemacs.org>
|
|
|
1236
|
|
|
1237 Portable dumper maintainability improvements.
|
|
|
1238 * alloc.c (staticpro):
|
|
|
1239 * alloc.c (staticpro_nodump):
|
|
|
1240 * alloc.c (garbage_collect_1):
|
|
|
1241 * alloc.c (reinit_alloc_once_early):
|
|
|
1242 * alloc.c (init_alloc_once_early):
|
|
|
1243 * alloc.c: Move dumper functions to alloc.c.
|
|
|
1244 * dumper.c (pdump_backtrace):
|
|
|
1245 * dumper.c (pdump_dump_structs):
|
|
|
1246 * dumper.c (pdump_dump_opaques):
|
|
|
1247 * dumper.c (pdump_dump_rtables):
|
|
|
1248 * dumper.c (pdump_dump_wired):
|
|
|
1249 * dumper.c (pdump):
|
|
|
1250 * dumper.c (pdump_load_check):
|
|
|
1251 * dumper.c (pdump_load_finish):
|
|
|
1252 * dumper.c (pdump_file_unmap):
|
|
|
1253 * dumper.c (pdump_file_get):
|
|
|
1254 * dumper.c (pdump_resource_free):
|
|
|
1255 * dumper.c (pdump_resource_get):
|
|
|
1256 * dumper.c (pdump_file_free):
|
|
|
1257 * dumper.c (pdump_file_try):
|
|
|
1258 * dumper.c (pdump_load):
|
|
|
1259 Remove fixed size limits on staticpro(), staticpro_nodump(),
|
|
|
1260 dumpopaque(), dumpstruct() by using Dynarrs instead of static C arrays.
|
|
|
1261 Remove custom code for dumping lrecord_implementations_table - use
|
|
|
1262 dumpopaque instead.
|
|
|
1263 Remove (most of the) custom code for dumping staticpros - dump it
|
|
|
1264 like any other dynarr.
|
|
|
1265
|
|
|
1266 * alloc.h: Removed. No longer useful, since dumper now more self-contained.
|
|
|
1267 * dumper.c: Moved functions from alloc.c.
|
|
|
1268 * alloc.c (dumpstruct): Moved to dumper.c.
|
|
|
1269 * alloc.c (dumpopaque): Likewise.
|
|
|
1270 * alloc.c (pdump_wire): Likewise.
|
|
|
1271 * alloc.c (pdump_wire_list): Likewise.
|
|
|
1272
|
|
|
1273 * lisp.h (Dynarr_sizeof): New.
|
|
|
1274 * lisp.h (Dynarr_begin): New. Very slightly C++oid.
|
|
|
1275 * lisp.h (Dynarr_end): New. Very slightly C++oid.
|
|
|
1276 * lisp.h (Lisp_Object_ptr_dynarr): New. For staticpros.
|
|
|
1277
|
|
|
1278 * lisp.h (dumpstruct): Define to nothing if not PDUMPing.
|
|
|
1279 * lisp.h (dumpopaque): ditto.
|
|
|
1280 * lisp.h (pdump_wire): ditto.
|
|
|
1281 * lisp.h (pdump_wire_list): ditto.
|
|
|
1282
|
|
|
1283 2001-01-09 Martin Buchholz <martin@xemacs.org>
|
|
|
1284
|
|
|
1285 * make-src-depend (PrintPatternDeps):
|
|
|
1286 Use `sort' to make output independent of perl version.
|
|
|
1287
|
|
|
1288 2001-01-08 Martin Buchholz <martin@xemacs.org>
|
|
|
1289
|
|
|
1290 Port to Netbsd 1.5.
|
|
|
1291 * unexelf.c: Remove (never used) bogus Netbsd-specific cruft.
|
|
|
1292 * s/netbsd.c: Use unexelf.o if __ELF__ is defined.
|
|
|
1293
|
|
|
1294 2001-01-03 Didier Verna <didier@xemacs.org>
|
|
|
1295
|
|
|
1296 * event-stream.c (emacs_handle_focus_change_preliminary): ensure
|
|
|
1297 that `focus_frame' is alive before thinking of calling
|
|
|
1298 `redisplay_redraw_cursor' on it.
|
|
|
1299
|
|
450
|
1300 2001-01-08 Martin Buchholz <martin@xemacs.org>
|
|
|
1301
|
|
|
1302 * XEmacs 21.2.40 is released.
|
|
|
1303
|
|
|
1304 2001-01-06 Golubev I. N. <gin@mo.msk.ru>
|
|
|
1305
|
|
|
1306 * regex.c: Replace PREFETCH with REGEX_PREFETCH.
|
|
|
1307
|
|
|
1308 2001-01-06 Martin Buchholz <martin@xemacs.org>
|
|
|
1309
|
|
|
1310 * alloc.c (dbg_valmask): Make const.
|
|
|
1311 * alloc.c (dbg_typemask): Make const.
|
|
|
1312 * alloc.c (dbg_USE_UNION_TYPE): Make const.
|
|
|
1313 * alloc.c (dbg_valbits): Make const.
|
|
|
1314 * alloc.c (dbg_gctypebits): Make const.
|
|
|
1315
|
|
|
1316 2001-01-06 Stephen J. Turnbull <stephen@xemacs.org>
|
|
|
1317
|
|
|
1318 * redisplay-x.c (x_bevel_area):
|
|
|
1319 redisplay.h (struct rune):
|
|
|
1320 Typo fixes in comments.
|
|
|
1321
|
|
|
1322 2001-01-05 Andy Piper <andy@xemacs.org>
|
|
|
1323
|
|
|
1324 * glyphs-x.c (x_redisplay_widget): use size changed for offset
|
|
|
1325 adjustment.
|
|
|
1326
|
|
|
1327 * menubar.c (menubar_visible_p_changed): don't mark frame changed.
|
|
|
1328
|
|
|
1329 2001-01-05 Martin Buchholz <martin@xemacs.org>
|
|
|
1330
|
|
|
1331 * alloc.c (pure-bytes-used): Remove unused mendacious variable.
|
|
|
1332
|
|
|
1333 * mule-ccl.c (stack_idx_of_map_multiple):
|
|
|
1334 Non const global data must not be initialized!
|
|
|
1335 Found by MIYASHITA Hisashi.
|
|
|
1336
|
|
|
1337 2001-01-02 Andy Piper <andy@xemacs.org>
|
|
|
1338
|
|
|
1339 * frame.c (change_frame_size): make sure frame size is always
|
|
|
1340 marked as changed.
|
|
|
1341
|
|
|
1342 * glyphs.c (image_instance_layout): minor code reuse.
|
|
|
1343
|
|
|
1344 * window.c (Fcurrent_window_configuration): revert previous
|
|
|
1345 change.
|
|
|
1346
|
|
|
1347 2001-01-02 Martin Buchholz <martin@xemacs.org>
|
|
|
1348
|
|
|
1349 * glyphs.h:
|
|
|
1350 * glyphs.c (make_image_instance_cache_hash_table): Use ANSI prototypes.
|
|
|
1351
|
|
|
1352 2000-12-31 Andy Piper <andy@xemacs.org>
|
|
|
1353
|
|
|
1354 * glyphs-x.c (x_unmap_subwindow): return focus to enclosing frame
|
|
|
1355 when widget gets unmapped.
|
|
|
1356
|
|
|
1357 * event-Xt.c (emacs_Xt_handle_widget_losing_focus): new
|
|
|
1358 function. Make sure widgets losing focus don't just drop it.
|
|
|
1359 (handle_focus_event_1): record the widget with focus.
|
|
|
1360
|
|
|
1361 2000-12-31 Andy Piper <andy@xemacs.org>
|
|
|
1362
|
|
|
1363 * window.c (allocate_window): use
|
|
|
1364 make_image_instance_cache_hash_table.
|
|
|
1365 (make_dummy_parent): ditto.
|
|
|
1366 (Fset_window_configuration): ditto.
|
|
|
1367
|
|
|
1368 * glyphs.h (INSTANTIATOR_TYPE): new macro. declare new functions.
|
|
|
1369
|
|
|
1370 * glyphs.c (process_image_string_instantiator): use
|
|
|
1371 INSTANTIATOR_TYPE.
|
|
|
1372 (get_image_instantiator_governing_domain): ditto.
|
|
|
1373 (normalize_image_instantiator): ditto.
|
|
|
1374 (instantiate_image_instantiator): ditto.
|
|
|
1375 (make_image_instance_1): ditto.
|
|
|
1376 (image_instantiate): ditto. Key on glyph *and* instantiator type.
|
|
|
1377 (instantiator_eq_equal): new function for use with instance hash
|
|
|
1378 tables.
|
|
|
1379 (instantiator_eq_hash): ditto.
|
|
|
1380 (make_image_instance_cache_hash_table): create a suitable hash
|
|
|
1381 table for storing image instances.
|
|
|
1382
|
|
|
1383 * elhash.h (hash_table_weakness): new internal weakness type
|
|
|
1384 HASH_TABLE_KEY_CAR_VALUE_WEAK.
|
|
|
1385 declare new functions.
|
|
|
1386
|
|
|
1387 * elhash.c (finish_marking_weak_hash_tables): introduce yet
|
|
|
1388 another weakness type for glyphs.
|
|
|
1389 (make_standard_lisp_hash_table): new function split out from
|
|
|
1390 make_general_lisp_hash_table.
|
|
|
1391 (make_lisp_hash_table): call make_standard_lisp_hash_table.
|
|
|
1392 (hash_table_instantiate): ditto.
|
|
|
1393 (Fmake_hash_table): ditto.
|
|
|
1394
|
|
448
|
1395 2000-12-31 Martin Buchholz <martin@xemacs.org>
|
|
|
1396
|
|
|
1397 * XEmacs 21.2.39 is released.
|
|
|
1398
|
|
|
1399 2000-12-29 Andy Piper <andy@xemacs.org>
|
|
|
1400
|
|
|
1401 * menubar.c (menubar_visible_p_changed): signal the frame changed.
|
|
|
1402
|
|
|
1403 * glyphs-x.c (x_redisplay_widget): Re-calculate widget offsets if
|
|
|
1404 the frame has changed so that we pick up geometry changes such as
|
|
|
1405 menubar visibility.
|
|
|
1406
|
|
|
1407 2000-12-28 Andy Piper <andy@xemacs.org>
|
|
|
1408
|
|
|
1409 * lastfile.c (my_ebss): make a char array so we can pad the
|
|
|
1410 bss. Fixes cygwin unexec.
|
|
|
1411
|
|
|
1412 * unexcw.c: invert BROKEN_GDB to NO_DEBUG.
|
|
|
1413
|
|
|
1414 2000-12-26 Andy Piper <andy@xemacs.org>
|
|
|
1415
|
|
|
1416 * event-Xt.c (emacs_Xt_force_event_pending): add some verbose
|
|
|
1417 comments and try and be more precise about a non-/SIGIO world.
|
|
|
1418 (emacs_Xt_event_pending_p): use XtAppPending under cygwin and non
|
|
|
1419 SIGIO.
|
|
|
1420
|
|
|
1421 * redisplay-output.c (redisplay_normalize_glyph_area): make sure
|
|
|
1422 we don't normalize to zero width or height.
|
|
|
1423
|
|
|
1424 2000-12-24 Andy Piper <andy@xemacs.org>
|
|
|
1425
|
|
|
1426 * Makefile.in.in (ldflags): add -mwindows when appropriate.
|
|
|
1427
|
|
|
1428 2000-08-18 Golubev I. N. <gin@mo.msk.ru>
|
|
|
1429
|
|
|
1430 * s/sco5.h: SCO 5 has pty support.
|
|
|
1431
|
|
|
1432 2000-07-20 Kazuyuki IENAGA <ienaga@xemacs.org>
|
|
|
1433
|
|
|
1434 * input-method-xlib.c: supports both XIM_XLIB and USE_XFONTSET.
|
|
|
1435 input-method-xlib.c contains whole contents of input-method-xfs.c,
|
|
|
1436 so we can use input-method-xlib.c's code for USE_XFONTSET
|
|
|
1437 using #ifdefs.
|
|
|
1438 * input-method-xfs.c: removed.
|
|
|
1439
|
|
|
1440 2000-12-20 Stephen Turnbull <stephen@xemacs.org>
|
|
|
1441
|
|
|
1442 * file-coding.h (enum coding_category_type): reorder enumerators to
|
|
|
1443 make autodetection safer. Make CODING_CATEGORY_LAST an enumerator
|
|
|
1444 (now one greater than largest real coding_category_type enumerator).
|
|
|
1445 * file-coding.c (coding_category_symbol, coding_category_by_priority,
|
|
|
1446 coding_category_system, fcd_descriptihon_1, decode_coding_category,
|
|
|
1447 Fcoding_category_list, Fset_coding_priority_list,
|
|
|
1448 Fcoding_priority_list, coding_system_from_mask, Fdetect_coding_region,
|
|
|
1449 vars_of_file_coding): adjust for change in CODING_CATEGORY_LAST.
|
|
|
1450
|
|
|
1451 2000-12-18 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
1452
|
|
|
1453 * redisplay-output.c (redisplay_clear_top_of_window): Remove static.
|
|
|
1454 * redisplay-output.c (redisplay_output_window): Clear top of window
|
|
|
1455 when face is changed.
|
|
|
1456 * redisplay-x.c (x_redraw_exposed_window): Call
|
|
|
1457 redisplay_clear_top_of_window.
|
|
|
1458 * redisplay.h: Publish redisplay_clear_top_of_window.
|
|
|
1459
|
|
|
1460 2000-12-18 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
1461
|
|
|
1462 * buffer.c (Fkill_buffer): Map over all devices.
|
|
|
1463 * window.c (window_loop): Remove UNSHOW_BUFFER code.
|
|
|
1464 (list_windows): New function.
|
|
|
1465 (list_all_windows): Ditto.
|
|
|
1466 (Freplace_buffer_in_windows): Use them.
|
|
|
1467
|
|
|
1468 2000-02-02 Daiki Ueno <ueno@ueda.info.waseda.ac.jp>
|
|
|
1469
|
|
|
1470 * database.c (berkdb_subtype): Recognize new subtype `queue'.
|
|
|
1471 (Fopen_database): Use `db_create' instead of `db_open'.
|
|
|
1472 (syms_of_database): Initialize Qqueue.
|
|
|
1473
|
|
|
1474 2000-12-13 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
1475
|
|
|
1476 * buffer.c (common_init_complex_vars_of_buffer): Initialize
|
|
|
1477 buffer_local_face_property.
|
|
|
1478 * buffer.h (struct buffer): New member buffer_local_face_property.
|
|
|
1479 * window.c (Fset_window_buffer): Mark window's face as changed
|
|
|
1480 when buffer has buffer local face.
|
|
|
1481 * window.h (MARK_WINDOW_FACES_CHANGED): New macro.
|
|
|
1482 * objects.c (color_after_change): Set buffer_local_face_property
|
|
|
1483 when locale of face specifier is buffer.
|
|
|
1484 * objects.c (font_after_change): Ditto.
|
|
|
1485 * objects.c (face_boolean_after_change): Ditto.
|
|
|
1486 * glyphs.c (image_after_change): Ditto.
|
|
|
1487
|
|
|
1488 2000-12-09 Dan Holmsand <dan@eyebee.com>
|
|
|
1489
|
|
|
1490 * nt.c (mswindows_fstat): Report file permissions, volume serial
|
|
|
1491 number, etc. Code adapted from FSF Emacs 20.7.
|
|
|
1492
|
|
|
1493 2000-12-09 Dan Holmsand <dan@eyebee.com>
|
|
|
1494
|
|
|
1495 * sysfile.h (lstat): Make lstat an alias for xemacs_stat instead
|
|
|
1496 of stat when we don't have symbolic links, to make sure
|
|
|
1497 mswindows_stat is called on mswindows.
|
|
|
1498
|
|
|
1499 2000-12-12 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
1500
|
|
|
1501 * alloca.c: Define malloc to xmalloc only when built with XEmacs.
|
|
|
1502
|
|
|
1503 2000-12-12 Martin Buchholz <martin@xemacs.org>
|
|
|
1504
|
|
|
1505 * doprnt.c (emacs_doprnt_1): More printing fixes.
|
|
|
1506 Make printing of numbers compatible with libc and FSF Emacs.
|
|
|
1507 BUG was: (format "%6.3f" 1.2) ==>"1.200000"
|
|
|
1508 Use the system printf to do most of the hard work of formatting,
|
|
|
1509 instead of doprnt_1().
|
|
|
1510 Calculate memory to allocate for format string.
|
|
|
1511 Remove arbitrary limit on precision, e.g. (format "%.1000f" 3.14)
|
|
|
1512 (doprnt_1): Cleaner code and documentation.
|
|
|
1513
|
|
|
1514 2000-12-01 Jerry James <james@eecs.ukans.edu>
|
|
|
1515
|
|
|
1516 * Makefile.in.in: Use the loop variable to install headers.
|
|
|
1517
|
|
|
1518 2000-12-04 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
1519
|
|
|
1520 * window.c (Fsplit_window): Don't invalidate face cache.
|
|
|
1521
|
|
|
1522 2000-12-04 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
1523
|
|
|
1524 * minibuf.c (Fall_completions): Undo the previous change
|
|
|
1525 which removed checking elements start with space.
|
|
|
1526
|
|
|
1527 2000-12-06 Stephen Turnbull <stephen@xemacs.org>
|
|
|
1528
|
|
|
1529 * mule-canna.c: Didier suppression.
|
|
|
1530
|
|
|
1531 2000-12-06 Stephen Turnbull <stephen@xemacs.org>
|
|
|
1532
|
|
|
1533 * mule-canna.c: rename static unsigned char buf[] to key_buffer
|
|
|
1534 (warning suppression). Add English comment translations.
|
|
|
1535
|
|
|
1536 2000-12-05 Martin Buchholz <martin@xemacs.org>
|
|
|
1537
|
|
|
1538 * unexelfsgi.c (unexec): Better test for mmap failure.
|
|
|
1539
|
|
446
|
1540 2000-12-05 Martin Buchholz <martin@xemacs.org>
|
|
|
1541
|
|
|
1542 * XEmacs 21.2.38 is released.
|
|
|
1543
|
|
|
1544 2000-12-05 Martin Buchholz <martin@xemacs.org>
|
|
|
1545
|
|
|
1546 * redisplay.c (bar-cursor): Make a user variable.
|
|
|
1547
|
|
|
1548 * symsinit.h: Add init_postgresql_from_environment.
|
|
|
1549
|
|
|
1550 2000-12-04 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
1551
|
|
|
1552 * regex.c: Convert to clean C.
|
|
|
1553
|
|
|
1554 2000-12-05 Dan Holmsand <dan@eyebee.com>
|
|
|
1555
|
|
|
1556 * realpath.c:
|
|
|
1557 Don't #include sysfile.h. Revert to duplicating PATH_MAX
|
|
|
1558 initialization.
|
|
|
1559 (sys_readlink): renamed to system_readlink to avoid conflict with
|
|
|
1560 the other sys_readlink.
|
|
|
1561
|
|
|
1562 2000-12-04 Hiroaki Abe <h-abe@pc.highway.ne.jp>
|
|
|
1563
|
|
|
1564 * dumper.c (pdump_file_get): Correct uses of pdump_fd.
|
|
|
1565
|
|
|
1566 2000-12-04 Stephen J. Turnbull <stephen@xemacs.org>
|
|
|
1567
|
|
|
1568 * postgresql.c (init_postgresql_from_environment): new function.
|
|
|
1569 (vars_of_postgresql): Move code initializing Lisp variables out and
|
|
|
1570 into init_postgresql_from_environment.
|
|
|
1571 emacs.c (main_1): Call init_postgresql_from_environment if and only
|
|
|
1572 if running a dumped XEmacs.
|
|
|
1573
|
|
|
1574 2000-08-31 Dan Holmsand <dan@eyebee.com>
|
|
|
1575
|
|
|
1576 * buffer.c: Make find-file-compare-truenames default to true on
|
|
|
1577 windows.
|
|
|
1578
|
|
452
|
1579 * realpath.c (win32_abs_start):
|
|
446
|
1580 (cygwin_readlink):
|
|
|
1581 (win32_readlink): New functions.
|
|
|
1582 (xrealpath): Return really real filenames on windows.
|
|
|
1583
|
|
|
1584 * fileio.c (Ffile_truename): Make file-truename work on windows.
|
|
|
1585
|
|
|
1586 2000-11-29 Didier Verna <didier@xemacs.org>
|
|
|
1587
|
|
|
1588 * faces.c (MAYBE_UNFROB_BACKGROUND_PIXMAP): new macro.
|
|
|
1589 * faces.c (update_face_cachel_data): use it.
|
|
|
1590 * faces.c (add_face_cachel): use it. Complete background pixmap
|
|
|
1591 frobbing in face cache if `update_face_cachel_data' has not done so.
|
|
|
1592
|
|
|
1593 2000-11-29 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
1594
|
|
|
1595 * search.c (string_match_1): Don't set last_thing_searched
|
|
|
1596 when search failed.
|
|
|
1597
|
|
|
1598 2000-11-27 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
1599
|
|
|
1600 * buffer.c: Include casetab.h
|
|
|
1601 (common_init_complex_vars_of_buffer): Use new case-table object.
|
|
|
1602 * buffer.h: Include casetab.h
|
|
|
1603 * buffer.h (MAKE_TRT_TABLE): Use generic char-table.
|
|
|
1604 (DOWNCASE_TABLE_OF): Ditto.
|
|
|
1605 * bufslots.h: Remove char-tables and add case-table.
|
|
|
1606 * casetab.c: Include casetab.h
|
|
|
1607 (CASE_TABLE_P): Removed.
|
|
|
1608 (mark_case_table): New function.
|
|
|
1609 (allocate_case_table): New function.
|
|
|
1610 (Fcase_table_p): Use new case-table.
|
|
|
1611 (case_table_char): New function.
|
|
|
1612 (Fget_case_table): Ditto.
|
|
|
1613 (Fput_case_table): Ditto.
|
|
|
1614 (Fput_case_table_pair): Ditto.
|
|
|
1615 (Fcopy_case_table): Ditto.
|
|
|
1616 (Fcurrent_case_table): Return case-table.
|
|
|
1617 (Fstandard_case_table): Return case-table.
|
|
|
1618 (Fset_case_table): Fix doc-string.
|
|
|
1619 (set_case_table): Use case-table
|
|
|
1620 (syms_of_casetab): DEFSUBR new functions.
|
|
|
1621 (complex_vars_of_casetab): Set up standard case-table.
|
|
|
1622 * casetab.h: New file.
|
|
|
1623 * editfns.c: Include casetab.h
|
|
|
1624 (Fcompare_buffer_substrings): Use case-table.
|
|
|
1625 * inline.c: Include casetab.h
|
|
|
1626 * lisp.h: Remove bogus extern.
|
|
|
1627 * lrecord.h (lrecord_type): Add lrecord_type_case_table.
|
|
|
1628 * search.c: Include casetab.h
|
|
|
1629 (TRANSLATE_ASCII): Removed.
|
|
|
1630 (TRANSLATE): Unconditionally translate character.
|
|
|
1631 (looking_at_1): Use case-table.
|
|
|
1632 (string_match_1): Ditto.
|
|
|
1633 (fast_string_match): Ditto.
|
|
|
1634 (search_command): Ditto.
|
|
|
1635 (search_buffer): Separate boyer_moore. Check whether
|
|
456
|
1636 boyer_moore is possible.
|
|
446
|
1637 (simple_search): New function.
|
|
|
1638 (boyer_moore): Separated from search_buffer. Translate char.
|
|
|
1639
|
|
|
1640 2000-11-24 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
1641
|
|
|
1642 * regex.c (RE_TR_ASCII): Removed.
|
|
|
1643 (RE_TRANSLATE): Unconditionally use TRT_TABLE.
|
|
|
1644 (PATFETCH): Call PATFETCH_RAW.
|
|
|
1645 (PATFETCH_RAW): Fetch Emchar.
|
|
|
1646 (PATUNFETCH): Decrement charptr.
|
|
|
1647 (GET_BUFFER_SPACE): Rename b to buf_end.
|
|
|
1648 (BUF_PUSH): Ditto.
|
|
|
1649 (BUF_PUSH_2): Ditto.
|
|
|
1650 (BUF_PUSH_3): Ditto.
|
|
|
1651 (EXTEND_BUFFER): Ditto.
|
|
|
1652 (SET_LIST_BIT): Ditto.
|
|
|
1653 (regex_compile): Ditto. Translate non ASCII char.
|
|
|
1654 (compile_range): Ditto.
|
|
|
1655 (re_search_2): Ditto.
|
|
|
1656 (re_match_2_internal): Compare Emchar.
|
|
|
1657 (bcmp_translate): Ditto.
|
|
|
1658
|
|
|
1659 2000-11-29 Stephen J. Turnbull <turnbull@xemacs.org>
|
|
|
1660
|
|
|
1661 * lisp.h (basic char/int typedefs): comment improvement.
|
|
|
1662
|
|
|
1663 2000-11-24 Stephen J. Turnbull <turnbull@xemacs.org>
|
|
|
1664
|
|
|
1665 * emacs.c (main_1): unconditional pdump unstomping; don't save and
|
|
|
1666 unstomp inhibit_site_lisp. Improve comments.
|
|
|
1667
|
|
|
1668 2000-11-22 Stephen J. Turnbull <turnbull@xemacs.org>
|
|
|
1669
|
|
|
1670 * mule-charset.c (Fcharset_property): improve type checking, comments.
|
|
|
1671
|
|
|
1672 2000-11-28 Andy Piper <andy@xemacs.org>
|
|
|
1673
|
|
|
1674 * redisplay-output.c (redisplay_output_subwindow): make sure we do
|
|
|
1675 clipped display for windows in the gutter also.
|
|
|
1676 (redisplay_display_boxes_in_window_p): change semantics of return
|
|
|
1677 codes to be more intuitive.
|
|
|
1678
|
|
|
1679 * gutter.h: declare display_boxes_in_gutter_p.
|
|
|
1680
|
|
|
1681 * gutter.c (display_boxes_in_gutter_p): new function for
|
|
|
1682 redisplay.
|
|
|
1683
|
|
|
1684 2000-11-22 Andy Piper <andy@xemacs.org>
|
|
|
1685
|
|
|
1686 * glyphs-x.c (image_instantiator_format_create_glyphs_x): change
|
|
|
1687 autodetect domain.
|
|
|
1688
|
|
|
1689 2000-11-21 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
1690
|
|
|
1691 * callproc.c (Fold_call_process_internal):
|
|
|
1692 * gpm.c (Freceive_gpm_event):
|
|
|
1693 (tty_get_foreign_selection): Might be just warning supression.
|
|
|
1694 * fileio.c (Fwrite_region_internal):
|
|
|
1695 (Fset_visited_file_modtime):
|
|
|
1696 * keymap.c (event_matches_key_specifier_p):
|
|
|
1697 Initialize GCPROed variable.
|
|
|
1698
|
|
|
1699 * menubar-x.c (command_builder_find_menu_accelerator):
|
|
|
1700 Initialize before use.
|
|
|
1701
|
|
|
1702 2000-11-23 Andy Piper <andy@xemacs.org>
|
|
|
1703
|
|
|
1704 * unexcw.c (unexec): make the resulting executable executable.
|
|
|
1705
|
|
|
1706 2000-11-21 Martin Buchholz <martin@xemacs.org>
|
|
|
1707
|
|
|
1708 * doc.c (get_doc_string):
|
|
|
1709 Use size_t, not int, for result of XSTRING_LENGTH.
|
|
|
1710
|
|
|
1711 * cmds.c (Fdelete_char):
|
|
|
1712 * cmds.c (Fpoint_at_eol):
|
|
|
1713 * cmds.c (Fself_insert_command):
|
|
|
1714 Use EMACS_INT, not int, for result of XINT.
|
|
|
1715 Someday, someone will want to insert more than 2**31 identical characters.
|
|
|
1716
|
|
|
1717 * cmds.c (Fdelete_char):
|
|
|
1718 * cmds.c (Fdelete_backward_char):
|
|
|
1719 * syntax.c (Fforward_word):
|
|
|
1720 * syntax.c (Fforward_comment):
|
|
|
1721 Make COUNT argument optional, for consistency with forward-char et al.
|
|
|
1722
|
|
|
1723 2000-11-22 Martin Buchholz <martin@xemacs.org>
|
|
|
1724
|
|
|
1725 * lisp.h:
|
|
|
1726 * print.c (long_to_string):
|
|
|
1727 Return a useful value: the pointer at end of data written.
|
|
|
1728
|
|
|
1729 * doprnt.c:
|
|
|
1730 Use `static const char * const' for constant strings.
|
|
|
1731 (union printf_arg): Delete `i', `ui' members.
|
|
|
1732 (get_doprnt_args):
|
|
|
1733 (emacs_doprnt_1):
|
|
|
1734 Fix LP64 platform bug: (format "%d" most-positive-fixnum) ==> "-1"
|
|
|
1735 Do all printf-ing via the `l' specifier.
|
|
|
1736 Use EMACS_INT instead of int.
|
|
|
1737 Optimize.
|
|
|
1738
|
|
|
1739 2000-11-20 Didier Verna <didier@xemacs.org>
|
|
|
1740
|
|
|
1741 * faces.c (update_face_cachel_data): don't frob the background
|
|
|
1742 pixmap when the window is being created. The face is needed but
|
|
|
1743 does not exist yet.
|
|
|
1744
|
|
|
1745 2000-11-20 Andy Piper <andy@xemacs.org>
|
|
|
1746
|
|
|
1747 * unexcw.c (copy_executable_and_dump_data_section): Only do bss
|
|
|
1748 messing with a debug environment.
|
|
|
1749
|
|
|
1750 2000-11-20 Martin Buchholz <martin@xemacs.org>
|
|
|
1751
|
|
|
1752 * emacs.c (__sti__iflPNGFile_c___): Pedantically correct prototype.
|
|
|
1753
|
|
|
1754 2000-11-20 Martin Buchholz <martin@xemacs.org>
|
|
|
1755
|
|
|
1756 * casetab.c (Fcase_table_p): Fix compile error and crash.
|
|
|
1757
|
|
|
1758 2000-11-18 Philip Aston <philipa@mail.com>
|
|
|
1759
|
|
|
1760 * s/cygwin32.h: Cygwin has SVR4-like pty support.
|
|
|
1761
|
|
|
1762 2000-11-18 Martin Buchholz <martin@xemacs.org>
|
|
|
1763
|
|
|
1764 * fileio.c (Fexpand_file_name): GCPRO bug! Protect `handler'.
|
|
|
1765 * filelock.c (lock_file): GCPRO bug! Initialize all GCPROed vars!
|
|
|
1766
|
|
|
1767 2000-11-17 Martin Buchholz <martin@xemacs.org>
|
|
|
1768
|
|
|
1769 * config.h.in: Define HAVE_ELF_H if elf.h exists.
|
|
|
1770 * unexelf.c: Use HAVE_ELF_H.
|
|
|
1771 * unexelfsgi.c: Fix bug with dumped xemacs stdout/stderr not working.
|
|
|
1772 I copied FSF Emacs 20.7 unexelf.c to unexelfsgi.c and ANSIfied it.
|
|
|
1773 Max Matveev <makc@sgi.com> removed non-SGI-relevant parts and tested.
|
|
|
1774 Greg Harrington <greg_harrington@hotmail.com> provided a machine
|
|
|
1775 for testing.
|
|
|
1776 So this is an unexelfsgi.c from a different line of development.
|
|
|
1777
|
|
|
1778 2000-11-16 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
1779
|
|
|
1780 * regex.c (RE_TR_ASCII): New function.
|
|
|
1781 (RE_TRANSLATE): Call it.
|
|
|
1782
|
|
|
1783 2000-11-16 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
1784
|
|
|
1785 * buffer.h (TRT_TABLE_OF): Remove assert.
|
|
|
1786 (IN_TRT_TABLE_DOMAIN): Removed.
|
|
|
1787
|
|
|
1788 2000-11-16 Gunnar Evermann <ge204@eng.cam.ac.uk>
|
|
|
1789
|
|
|
1790 * free-hook.c (log_gcpro):
|
|
|
1791 (show_gcprohist): Add support for GCPRO5.
|
|
|
1792
|
|
|
1793 2000-11-08 Stephen J. Turnbull <stephen@xemacs.org>
|
|
|
1794
|
|
|
1795 * emacs.c (main_1): Improve -sd error message when --pdump=no.
|
|
|
1796
|
|
|
1797 2000-11-16 Olivier Galibert <galibert@xemacs.org>
|
|
|
1798
|
|
|
1799 * symeval.h: Declare flush_all_buffer_local_cache.
|
|
|
1800
|
|
|
1801 * symbols.c: Change XD_LO_RESET_NIL into XD_LISP_OBJECTs.
|
|
|
1802 (flush_buffer_local_cache): Added.
|
|
|
1803 (flush_all_buffer_local_cache): Added.
|
|
|
1804
|
|
|
1805 * lrecord.h: Remove unused XD_LO_RESET_NIL.
|
|
|
1806
|
|
|
1807 * dumper.c (pdump_register_sub): Remove unused XD_LO_RESET_NIL.
|
|
|
1808 (pdump_dump_data): Ditto.
|
|
|
1809 (pdump_reloc_one): Ditto.
|
|
|
1810 (pdump): Remove unused pdump_qnil. Flush buffer local caches
|
|
|
1811 before dumping.
|
|
|
1812
|
|
|
1813
|
|
|
1814 2000-11-14 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
1815
|
|
|
1816 * buffer.c: Remove if 0'ed entry.
|
|
|
1817 * buffer.h: Rewrite TRT to use char-table.
|
|
|
1818 * bufslots.h: Remove mirror tables.
|
|
|
1819 * casetab.c: Remove mirror tables.
|
|
|
1820 (CASE_TABLE_P): New macro.
|
|
|
1821 (Fcase_table_p): Element of a case table is string or char-table.
|
|
|
1822 (make_mirror_trt_table): Removed.
|
|
|
1823 (set_case_table): Setup char-table from strings for backward
|
|
|
1824 compatibility.
|
|
|
1825 * dired.c (Fdirectory_files):
|
|
|
1826 * dired-msw.c: (mswindows_get_files):
|
|
|
1827 * lisp.h: Change prototype of re_pattern_buffer.
|
|
|
1828 * regex.c: (RE_TRANSLATE): New macro.
|
|
|
1829 (TRANSLATE_P): Ditto.
|
|
|
1830 Change translate to type RE_TRANSLATE_TYPE.
|
|
|
1831 * regex.h: Define RE_TRANSLATE_TYPE
|
|
|
1832 * search.c (TRANSLATE): New macro.
|
|
|
1833 (TRANSLATE_ASCII): New macro.
|
|
|
1834 Translate table is changed to Lisp_Object.
|
|
|
1835 (signal_failure): Inhibit return.
|
|
|
1836
|
|
|
1837 2000-11-14 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
1838
|
|
|
1839 * device-msw.c:
|
|
|
1840 * eldap.c:
|
|
|
1841 * event-Xt.c:
|
|
|
1842 * event-stream.c:
|
|
|
1843 * print.c:
|
|
|
1844 Do UNGCPRO before return.
|
|
|
1845
|
|
444
|
1846 2000-11-14 Martin Buchholz <martin@xemacs.org>
|
|
|
1847
|
|
|
1848 * XEmacs 21.2.37 is released.
|
|
|
1849
|
|
|
1850 2000-11-13 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
1851
|
|
|
1852 * fileio.c (Finsert_file_contents_internal): UNGCPRO before return.
|
|
|
1853 Add comments about discarded return value.
|
|
|
1854
|
|
|
1855 2000-11-09 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
1856
|
|
|
1857 * callint.c:
|
|
|
1858 * event-stream.c: Fix comments. Remove some #if 0'ed part.
|
|
|
1859
|
|
|
1860 2000-10-27 Andy Piper <andy@xemacs.org>
|
|
|
1861
|
|
|
1862 * gutter.c (Fset_default_gutter_position): default left and right
|
|
|
1863 gutters to visible.
|
|
|
1864 (calculate_gutter_size): calculate resonable heuristic for left
|
|
|
1865 and right gutter sizes.
|
|
|
1866 (specifier_vars_of_gutter): change left and right gutter sizes to
|
|
|
1867 autodetect.
|
|
|
1868 (calculate_gutter_size_from_display_lines): new function.
|
|
|
1869 (output_gutter): check for resizing on left and right gutters.
|
|
|
1870 (clear_gutter): don't special case top and left gutters.
|
|
|
1871 (specifier_vars_of_gutter): use new signature for
|
|
|
1872 set_specifier_caching.
|
|
|
1873
|
|
|
1874 * glyphs-x.c (x_redisplay_widget): spelling fix.
|
|
|
1875 * glyphs.c (specifier_vars_of_glyphs):
|
|
|
1876 * menubar.c (specifier_vars_of_menubar):
|
|
|
1877 * redisplay.c (specifier_vars_of_redisplay):
|
|
|
1878 * toolbar.c (specifier_vars_of_toolbar):
|
|
|
1879 * window.c (specifier_vars_of_window):
|
|
|
1880 * scrollbar.c (specifier_vars_of_scrollbar):
|
|
|
1881 (complex_vars_of_scrollbar): use new signature for
|
|
|
1882 set_specifier_caching.
|
|
|
1883
|
|
|
1884 * specifier.c (set_specifier_caching): include recompute flag.
|
|
|
1885 (recompute_one_cached_specifier_in_window): always recompute if
|
|
|
1886 flag set.
|
|
|
1887 (recompute_one_cached_specifier_in_frame): ditto.
|
|
446
|
1888
|
|
444
|
1889 * specifier.h (struct specifier_caching): add recompute flag.
|
|
|
1890
|
|
|
1891 2000-10-24 Andy Piper <andy@xemacs.org>
|
|
|
1892
|
|
|
1893 * unexcw.c (copy_executable_and_dump_data_section): add new
|
|
|
1894 BSS_PAD_SIZE so that we can re-instate a mini-bss. This keeps gdb
|
|
|
1895 5.0 happy.
|
|
|
1896
|
|
|
1897 2000-11-06 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
1898
|
|
|
1899 * console-x.h (x_device): New member modifier_release_time.
|
|
|
1900 * event-Xt.c (x_handle_sticky_modifiers):
|
|
|
1901 Bound interval modifier keys are sticky.
|
|
|
1902 * event-stream.c (Vmodifier_keys_sticky_time): New variable.
|
|
|
1903 * events.h: extern it.
|
|
|
1904
|
|
|
1905 2000-11-06 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
1906
|
|
|
1907 * cmdloop.c (Fcommand_loop_1): Just add C-g to event queue.
|
|
|
1908
|
|
|
1909 2000-11-06 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
1910
|
|
|
1911 * event-stream.c (execute_command_event): Preserve current_events
|
|
|
1912 and the like when event is misc-user-event.
|
|
|
1913 Inhibit quit during the call to maybe_echo_keys.
|
|
|
1914
|
|
|
1915 2000-10-31 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
1916
|
|
|
1917 * filelock.c (lock_buffer): Cope with kill-buffer. Don't create a
|
|
|
1918 symlink when buffer is killed.
|
|
|
1919 (inhibit_clash_detection): New variable.
|
|
|
1920
|
|
|
1921 2000-10-30 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
1922
|
|
|
1923 * console.c (Fset_input_method): Trigger redisplay on tty.
|
|
|
1924
|
|
|
1925 2000-11-07 Martin Buchholz <martin@xemacs.org>
|
|
|
1926
|
|
|
1927 * process.c (Fprocess_status): Revert to previous behavior:
|
|
|
1928 (process-status "nosuchprocess") ==> nil
|
|
|
1929
|
|
|
1930 2000-11-06 Martin Buchholz <martin@xemacs.org>
|
|
|
1931
|
|
|
1932 * mule-charset.h (CHARSET_BY_LEADING_BYTE):
|
|
|
1933 Work around another GCC 2.95.2 optimizer bug.
|
|
|
1934
|
|
|
1935 2000-11-02 Martin Buchholz <martin@xemacs.org>
|
|
|
1936
|
|
|
1937 * process.c (Fget_process): Use LIST_LOOP_2.
|
|
|
1938 (kill_buffer_processes): Use LIST_LOOP_2.
|
|
|
1939
|
|
|
1940 * minibuf.c (Fall_completions):
|
|
|
1941 Delete old non-functional code for FSF fourth argument.
|
|
|
1942
|
|
446
|
1943 * frame.c (frame_matches_frame_spec):
|
|
444
|
1944 Renamed from `frame_matches_frametype'. Update all callers.
|
|
446
|
1945 (device_matches_device_spec):
|
|
444
|
1946 Renamed from 'device_matches_console_spec'. Update all callers.
|
|
|
1947
|
|
|
1948 * doc.c (Fsubstitute_command_keys):
|
|
|
1949 Remove buffer overflow crash. Small code cleanups.
|
|
|
1950
|
|
|
1951 * casetab.c (check_case_table): Simpler code.
|
|
|
1952
|
|
|
1953 * window.c (Freplace_buffer_in_windows):
|
|
446
|
1954 Give this the same WHICH-FRAMES and WHICH-DEVICES parameters
|
|
444
|
1955 (and similar implementation) as Fdelete_windows_on.
|
|
|
1956 Update all callers.
|
|
|
1957
|
|
|
1958 * alloc.c (Fmake_list):
|
|
|
1959 * alloc.c (make_vector):
|
|
|
1960 * alloc.c (Fmake_vector):
|
|
|
1961 * alloc.c (make_bit_vector):
|
|
|
1962 * alloc.c (Fmake_bit_vector):
|
|
|
1963 * alloc.c (Fbit_vector):
|
|
|
1964 * alloc.c (Fmake_string):
|
|
|
1965 * alloc.c (Fpurecopy):
|
|
|
1966 * alloc.c (Fmemory_limit):
|
|
|
1967 * buffer.c:
|
|
|
1968 * buffer.c (Fget_buffer):
|
|
|
1969 * buffer.c (Fkill_buffer):
|
|
|
1970 * buffer.c (complex_vars_of_buffer):
|
|
|
1971 * bytecode.c (Fcompiled_function_stack_depth):
|
|
|
1972 * callint.c (Fprefix_numeric_value):
|
|
|
1973 * event-stream.c:
|
|
|
1974 * event-stream.c (Fread_key_sequence):
|
|
|
1975 * casetab.c:
|
|
|
1976 * casetab.c (Fcase_table_p):
|
|
|
1977 * casetab.c (check_case_table):
|
|
|
1978 * casetab.c (Fset_case_table):
|
|
|
1979 * casetab.c (Fset_standard_case_table):
|
|
|
1980 * chartab.c:
|
|
|
1981 * chartab.c (Fchar_table_type):
|
|
|
1982 * chartab.c (Freset_char_table):
|
|
|
1983 * chartab.c (Fget_char_table):
|
|
|
1984 * chartab.c (Fget_range_char_table):
|
|
|
1985 * chartab.c (Fput_char_table):
|
|
|
1986 * chartab.c (Fmap_char_table):
|
|
|
1987 * chartab.c (Fcategory_table_p):
|
|
|
1988 * chartab.c (Fcheck_category_at):
|
|
|
1989 * chartab.c (Fchar_in_category_p):
|
|
|
1990 * chartab.c (Fcategory_table):
|
|
|
1991 * chartab.c (Fcopy_category_table):
|
|
|
1992 * chartab.c (Fset_category_table):
|
|
|
1993 * chartab.c (Fcategory_designator_p):
|
|
|
1994 * chartab.c (Fcategory_table_value_p):
|
|
|
1995 * cmds.c (Fdelete_char):
|
|
|
1996 * cmds.c (Fdelete_backward_char):
|
|
|
1997 * cmds.c (Fself_insert_command):
|
|
|
1998 * cmds.c (Fself_insert_internal):
|
|
|
1999 * console.c (Fvalid_console_type_p):
|
|
|
2000 * console.c (Fcdfw_console):
|
|
|
2001 * console.c (Fconsole_type):
|
|
|
2002 * console.c (Fconsole_name):
|
|
|
2003 * console.c (Fconsole_device_list):
|
|
|
2004 * console.c (Fconsole_on_window_system_p):
|
|
|
2005 * data.c:
|
|
|
2006 * data.c (Feq):
|
|
|
2007 * data.c (Fold_eq):
|
|
|
2008 * data.c (Fsubr_interactive):
|
|
|
2009 * data.c (Fchar_to_int):
|
|
|
2010 * data.c (Fint_to_char):
|
|
|
2011 * data.c (Fsetcar):
|
|
|
2012 * data.c (Fsetcdr):
|
|
|
2013 * data.c (Fnumber_to_string):
|
|
|
2014 * data.c (Fstring_to_number):
|
|
|
2015 * data.c (Frem):
|
|
|
2016 * database.c (mark_database):
|
|
|
2017 * database.c (finalize_database):
|
|
|
2018 * database.c (Fdatabase_live_p):
|
|
|
2019 * database.c (Fdatabasep):
|
|
|
2020 * device-x.c (Fx_get_resource):
|
|
|
2021 * device.c (Fdfw_device):
|
|
|
2022 * dired.c:
|
|
|
2023 * dired.c (Ffile_name_completion):
|
|
|
2024 * dired.c (Ffile_name_all_completions):
|
|
|
2025 * dired.c (Fuser_name_completion):
|
|
|
2026 * dired.c (Fuser_name_completion_1):
|
|
|
2027 * dired.c (Fuser_name_all_completions):
|
|
|
2028 * doc.c (Fdocumentation):
|
|
|
2029 * doc.c (Fdocumentation_property):
|
|
|
2030 * doc.c (Fsubstitute_command_keys):
|
|
|
2031 * editfns.c:
|
|
|
2032 * editfns.c (Fchar_to_string):
|
|
|
2033 * editfns.c (Fstring_to_char):
|
|
|
2034 * editfns.c (Ftemp_directory):
|
|
|
2035 * editfns.c (Finsert_char):
|
|
|
2036 * editfns.c (Fbuffer_substring_no_properties):
|
|
|
2037 * editfns.c (Fnarrow_to_region):
|
|
|
2038 * editfns.c (Fchar_equal):
|
|
|
2039 * editfns.c (Fchar_Equal):
|
|
|
2040 * editfns.c (Ftranspose_regions):
|
|
|
2041 * emacs.c (Fdump_emacs):
|
|
|
2042 * eval.c (Fthrow):
|
|
|
2043 * eval.c (Fcommand_execute):
|
|
|
2044 * eval.c (Fautoload):
|
|
|
2045 * eval.c (Fbacktrace):
|
|
|
2046 * eval.c (Fbacktrace_frame):
|
|
|
2047 * events.c:
|
|
|
2048 * events.c (Fcopy_event):
|
|
|
2049 * events.c (Fcharacter_to_event):
|
|
|
2050 * events.c (Fevent_button):
|
|
|
2051 * events.c (Fevent_process):
|
|
|
2052 * extents.c:
|
|
|
2053 * extents.c (Fnext_extent_change):
|
|
|
2054 * extents.c (Fextent_property):
|
|
|
2055 * faces.c (Ffacep):
|
|
|
2056 * faces.c (Fmake_face):
|
|
|
2057 * file-coding.c:
|
|
|
2058 * file-coding.c (Fencode_shift_jis_char):
|
|
|
2059 * file-coding.c (Fencode_big5_char):
|
|
|
2060 * fileio.c (Ffile_name_directory):
|
|
|
2061 * fileio.c (Ffile_name_nondirectory):
|
|
|
2062 * fileio.c (Ffile_name_as_directory):
|
|
|
2063 * fileio.c (Fdirectory_file_name):
|
|
|
2064 * fileio.c (Ffile_truename):
|
|
|
2065 * fileio.c (Fsubstitute_in_file_name):
|
|
|
2066 * fileio.c (Ffile_modes):
|
|
|
2067 * fileio.c (Fset_file_modes):
|
|
|
2068 * fileio.c (Fset_default_file_modes):
|
|
|
2069 * fileio.c (Fverify_visited_file_modtime):
|
|
|
2070 * floatfns.c (Facos):
|
|
|
2071 * floatfns.c (Fasin):
|
|
|
2072 * floatfns.c (Fatan):
|
|
|
2073 * floatfns.c (Fcos):
|
|
|
2074 * floatfns.c (Fsin):
|
|
|
2075 * floatfns.c (Ftan):
|
|
|
2076 * floatfns.c (Fbessel_j0):
|
|
|
2077 * floatfns.c (Fbessel_j1):
|
|
|
2078 * floatfns.c (Fbessel_jn):
|
|
|
2079 * floatfns.c (Fbessel_y0):
|
|
|
2080 * floatfns.c (Fbessel_y1):
|
|
|
2081 * floatfns.c (Fbessel_yn):
|
|
|
2082 * floatfns.c (Ferf):
|
|
|
2083 * floatfns.c (Ferfc):
|
|
|
2084 * floatfns.c (Flog_gamma):
|
|
|
2085 * floatfns.c (Fexp):
|
|
|
2086 * floatfns.c (Fexpt):
|
|
|
2087 * floatfns.c (Flog):
|
|
|
2088 * floatfns.c (Flog10):
|
|
|
2089 * floatfns.c (Fsqrt):
|
|
|
2090 * floatfns.c (Fcube_root):
|
|
|
2091 * floatfns.c (Facosh):
|
|
|
2092 * floatfns.c (Fasinh):
|
|
|
2093 * floatfns.c (Fatanh):
|
|
|
2094 * floatfns.c (Fcosh):
|
|
|
2095 * floatfns.c (Fsinh):
|
|
|
2096 * floatfns.c (Ftanh):
|
|
|
2097 * floatfns.c (Fabs):
|
|
|
2098 * floatfns.c (Ffloat):
|
|
|
2099 * floatfns.c (Flogb):
|
|
|
2100 * floatfns.c (Fceiling):
|
|
|
2101 * floatfns.c (Ffloor):
|
|
|
2102 * floatfns.c (Fround):
|
|
|
2103 * floatfns.c (Ftruncate):
|
|
|
2104 * floatfns.c (Ffceiling):
|
|
|
2105 * floatfns.c (Fffloor):
|
|
|
2106 * floatfns.c (Ffround):
|
|
|
2107 * floatfns.c (Fftruncate):
|
|
|
2108 * fns.c (Fstring_equal):
|
|
|
2109 * fns.c (Fstring_lessp):
|
|
|
2110 * fns.c (concat2):
|
|
|
2111 * fns.c (concat3):
|
|
|
2112 * fns.c (vconcat2):
|
|
|
2113 * fns.c (vconcat3):
|
|
|
2114 * fns.c (Fsubstring):
|
|
|
2115 * fns.c (Fassoc):
|
|
|
2116 * fns.c (Fold_assoc):
|
|
|
2117 * fns.c (assoc_no_quit):
|
|
|
2118 * fns.c (Fassq):
|
|
|
2119 * fns.c (Fold_assq):
|
|
|
2120 * fns.c (assq_no_quit):
|
|
|
2121 * fns.c (Frassoc):
|
|
|
2122 * fns.c (Fold_rassoc):
|
|
|
2123 * fns.c (Frassq):
|
|
|
2124 * fns.c (Fold_rassq):
|
|
|
2125 * fns.c (rassq_no_quit):
|
|
|
2126 * fns.c (Fremassoc):
|
|
|
2127 * fns.c (remassoc_no_quit):
|
|
|
2128 * fns.c (Fremassq):
|
|
|
2129 * fns.c (remassq_no_quit):
|
|
|
2130 * fns.c (Fremrassoc):
|
|
|
2131 * fns.c (Fremrassq):
|
|
|
2132 * fns.c (remrassq_no_quit):
|
|
|
2133 * fns.c (Fsort):
|
|
|
2134 * fns.c (Fplist_get):
|
|
|
2135 * fns.c (Fplist_put):
|
|
|
2136 * fns.c (Fplist_remprop):
|
|
|
2137 * fns.c (Fplist_member):
|
|
|
2138 * fns.c (Flax_plist_get):
|
|
|
2139 * fns.c (Flax_plist_put):
|
|
|
2140 * fns.c (Flax_plist_remprop):
|
|
|
2141 * fns.c (Flax_plist_member):
|
|
|
2142 * fns.c (Fequal):
|
|
|
2143 * fns.c (Fold_equal):
|
|
|
2144 * fns.c (Frequire):
|
|
|
2145 * fns.c (Fbase64_encode_region):
|
|
|
2146 * fns.c (Fbase64_encode_string):
|
|
|
2147 * fns.c (Fbase64_decode_region):
|
|
|
2148 * frame.c:
|
|
|
2149 * frame.c (frame_matches_frame_spec):
|
|
|
2150 * frame.c (device_matches_device_spec):
|
|
|
2151 * frame.c (next_frame):
|
|
|
2152 * frame.c (previous_frame):
|
|
|
2153 * frame.c (Fnext_frame):
|
|
|
2154 * frame.c (Fprevious_frame):
|
|
|
2155 * frame.c (Fframe_property):
|
|
|
2156 * frame.c (Fset_frame_height):
|
|
|
2157 * frame.c (Fset_frame_size):
|
|
|
2158 * frame.h:
|
|
|
2159 * glyphs.c:
|
|
|
2160 * glyphs.c (if):
|
|
|
2161 * glyphs.c (decode_error_behavior_flag):
|
|
|
2162 * glyphs.c (Fmake_image_instance):
|
|
|
2163 * indent.c (Findent_to):
|
|
|
2164 * intl.c (Fignore_defer_gettext):
|
|
|
2165 * keymap.c (Fkeymapp):
|
|
|
2166 * keymap.c (Flookup_key):
|
|
|
2167 * lread.c:
|
|
|
2168 * lread.c (Fload_internal):
|
|
|
2169 * lread.c (Feval_buffer):
|
|
|
2170 * lread.c (Feval_region):
|
|
|
2171 * macros.c (Fexecute_kbd_macro):
|
|
|
2172 * marker.c (set_marker_internal):
|
|
|
2173 * marker.c (Fset_marker):
|
|
|
2174 * marker.c (set_marker_restricted):
|
|
|
2175 * marker.c (Fcopy_marker):
|
|
|
2176 * marker.c (noseeum_copy_marker):
|
|
|
2177 * menubar.c:
|
|
|
2178 * menubar.c (Fpopup_menu):
|
|
|
2179 * minibuf.c:
|
|
|
2180 * mule-charset.c (Fcharset_name):
|
|
|
2181 * mule-charset.c (Fchar_charset):
|
|
|
2182 * mule-charset.c (Fchar_octet):
|
|
|
2183 * mule-charset.c (Fsplit_char):
|
|
|
2184 * mule-wnnfns.c (Fwnn_open):
|
|
|
2185 * mule-wnnfns.c (Fwnn_dict_comment):
|
|
|
2186 * mule-wnnfns.c (Fwnn_quit_henkan):
|
|
|
2187 * mule-wnnfns.c (Fwnn_word_toroku):
|
|
|
2188 * mule-wnnfns.c (Fwnn_word_sakujo):
|
|
|
2189 * mule-wnnfns.c (Fwnn_word_use):
|
|
|
2190 * mule-wnnfns.c (Fwnn_hindo_set):
|
|
|
2191 * objects.c:
|
|
|
2192 * objects.c (Fmake_color_instance):
|
|
|
2193 * objects.c (Fmake_font_instance):
|
|
|
2194 * print.c (Fwrite_char):
|
|
|
2195 * process.c:
|
|
|
2196 * process.c (mark_process):
|
|
|
2197 * process.c (print_process):
|
|
|
2198 * process.c (get_process_from_usid):
|
|
|
2199 * process.c (Fprocessp):
|
|
|
2200 * process.c (Fprocess_live_p):
|
|
|
2201 * process.c (Fget_process):
|
|
|
2202 * process.c (Fget_buffer_process):
|
|
|
2203 * process.c (get_process):
|
|
|
2204 * process.c (Fprocess_id):
|
|
|
2205 * process.c (Fprocess_name):
|
|
|
2206 * process.c (Fprocess_command):
|
|
|
2207 * process.c (init_process_io_handles):
|
|
|
2208 * process.c (start_process_unwind):
|
|
|
2209 * process.c (Fstart_process_internal):
|
|
|
2210 * process.c (Fopen_multicast_group_internal):
|
|
|
2211 * process.c (Fset_process_window_size):
|
|
|
2212 * process.c (read_process_output):
|
|
|
2213 * process.c (send_process):
|
|
|
2214 * process.c (Fprocess_tty_name):
|
|
|
2215 * process.c (Fset_process_buffer):
|
|
|
2216 * process.c (Fprocess_buffer):
|
|
|
2217 * process.c (Fprocess_mark):
|
|
|
2218 * process.c (set_process_filter):
|
|
|
2219 * process.c (Fset_process_filter):
|
|
|
2220 * process.c (Fprocess_filter):
|
|
|
2221 * process.c (Fprocess_send_region):
|
|
|
2222 * process.c (Fprocess_send_string):
|
|
|
2223 * process.c (exec_sentinel):
|
|
|
2224 * process.c (Fset_process_sentinel):
|
|
|
2225 * process.c (Fprocess_sentinel):
|
|
|
2226 * process.c (status_notify):
|
|
|
2227 * process.c (Fprocess_status):
|
|
|
2228 * process.c (Fprocess_exit_status):
|
|
|
2229 * process.c (process_send_signal):
|
|
|
2230 * process.c (Fprocess_send_eof):
|
|
|
2231 * process.c (deactivate_process):
|
|
|
2232 * process.c (remove_process):
|
|
|
2233 * process.c (Fdelete_process):
|
|
|
2234 * process.c (kill_buffer_processes):
|
|
|
2235 * process.c (Fprocess_kill_without_query):
|
|
|
2236 * process.c (Fprocess_kill_without_query_p):
|
|
|
2237 * rangetab.c:
|
|
|
2238 * rangetab.c (Fget_range_table):
|
|
|
2239 * rangetab.c (Fput_range_table):
|
|
|
2240 * rangetab.c (Fremove_range_table):
|
|
|
2241 * rangetab.c (Fclear_range_table):
|
|
|
2242 * search.c:
|
|
|
2243 * search.c (Fskip_chars_forward):
|
|
|
2244 * search.c (Fskip_chars_backward):
|
|
|
2245 * search.c (Fskip_syntax_forward):
|
|
|
2246 * search.c (Fskip_syntax_backward):
|
|
|
2247 * search.c (search_command):
|
|
|
2248 * search.c (Freplace_match):
|
|
|
2249 * search.c (Fregexp_quote):
|
|
|
2250 * select.c (Fown_selection_internal):
|
|
|
2251 * select.c (Fselection_owner_p):
|
|
|
2252 * select.c (Fselection_exists_p):
|
|
|
2253 * select.c (Fget_selection_internal):
|
|
|
2254 * specifier.c:
|
|
|
2255 * symbols.c:
|
|
|
2256 * symbols.c (Fintern):
|
|
|
2257 * symbols.c (Fintern_soft):
|
|
|
2258 * symbols.c (Funintern):
|
|
|
2259 * symbols.c (Fapropos_internal):
|
|
|
2260 * symbols.c (Fset_default):
|
|
|
2261 * syntax.c:
|
|
|
2262 * syntax.c (Fsyntax_table_p):
|
|
|
2263 * syntax.c (Fcopy_syntax_table):
|
|
|
2264 * syntax.c (Fset_syntax_table):
|
|
|
2265 * syntax.c (Fchar_syntax):
|
|
|
2266 * syntax.c (syntax_match):
|
|
|
2267 * syntax.c (Fmatching_paren):
|
|
|
2268 * syntax.c (Fforward_word):
|
|
|
2269 * syntax.c (scan_lists):
|
|
|
2270 * syntax.c (Fscan_lists):
|
|
|
2271 * syntax.c (Fscan_sexps):
|
|
|
2272 * syntax.c (Fparse_partial_sexp):
|
|
|
2273 * toolbar.c (Fcheck_toolbar_button_syntax):
|
|
|
2274 * tooltalk.doc:
|
|
|
2275 * window.c:
|
|
|
2276 * window.c (Fwindowp):
|
|
|
2277 * window.c (Fwindow_live_p):
|
|
|
2278 * window.c (Fwindow_point):
|
|
|
2279 * window.c (Fdelete_window):
|
|
|
2280 * window.c (Fnext_window):
|
|
|
2281 * window.c (Fprevious_window):
|
|
|
2282 * window.c (Fother_window):
|
|
|
2283 * window.c (window_loop):
|
|
|
2284 * window.c (Fget_lru_window):
|
|
|
2285 * window.c (Fsplit_window):
|
|
|
2286 * window.c (Fenlarge_window):
|
|
|
2287 * window.c (Fenlarge_window_pixels):
|
|
|
2288 * window.c (Fshrink_window):
|
|
|
2289 * window.c (Fshrink_window_pixels):
|
|
|
2290 * window.c (change_window_height):
|
|
|
2291 * window.c (Fwindow_configuration_p):
|
|
|
2292 * window.c (Fcurrent_window_configuration):
|
|
|
2293 * window.h:
|
|
|
2294 * casefiddle.c (casify_object):
|
|
|
2295 * casefiddle.c (Fupcase):
|
|
|
2296 * casefiddle.c (Fdowncase):
|
|
|
2297 * casefiddle.c (Fcapitalize):
|
|
|
2298 * casefiddle.c (Fupcase_initials):
|
|
|
2299 * casefiddle.c (casify_region_internal):
|
|
|
2300 * casefiddle.c (casify_region):
|
|
|
2301 * casefiddle.c (Fupcase_region):
|
|
|
2302 * casefiddle.c (Fdowncase_region):
|
|
|
2303 * casefiddle.c (Fcapitalize_region):
|
|
|
2304 * casefiddle.c (Fupcase_initials_region):
|
|
|
2305 * casefiddle.c (Fupcase_word):
|
|
|
2306 * casefiddle.c (Fdowncase_word):
|
|
|
2307 * casefiddle.c (Fcapitalize_word):
|
|
|
2308 Docstring arglist/Texinfo fixes. See man/ChangeLog for details.
|
|
|
2309 Replace 0 with '\0' when working with bytes.
|
|
|
2310 Replace initial "(" with "\(" in docstrings.
|
|
|
2311
|
|
|
2312 2000-11-01 Martin Buchholz <martin@xemacs.org>
|
|
|
2313
|
|
|
2314 * config.h.in: Handle alloca with Compaq C on Alpha Linux.
|
|
|
2315
|
|
|
2316 * m/alpha.h: Let configure handle SYSTEM_MALLOC on Linux.
|
|
|
2317
|
|
|
2318 2000-10-31 Martin Buchholz <martin@xemacs.org>
|
|
|
2319
|
|
|
2320 * eldap.c (print_ldap): 64-bit cleaner. Fixes warning.
|
|
|
2321
|
|
|
2322 2000-10-30 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
2323
|
|
|
2324 * doprnt.c (emacs_do_prnt_1): Format (format "%01.2d" 10)
|
|
|
2325 correctly.
|
|
|
2326
|
|
|
2327 2000-10-30 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
2328
|
|
|
2329 * fileio.c (Vauto_save_list_file_prefix): Moved from startup.el.
|
|
|
2330 (inhibit_auto_save_session): New variable.
|
|
|
2331 (vars_of_fileio): Declare and initialize them.
|
|
|
2332 * fileio.c (Fdo_auto_save): Don't create session file if
|
|
|
2333 Vinhibit_auto_save_session or Vauto_save_list_file_prefix is non-nil.
|
|
|
2334
|
|
|
2335 2000-10-31 Martin Buchholz <martin@xemacs.org>
|
|
|
2336
|
|
|
2337 * sgiplay.c (play_internal): C++ compilability.
|
|
|
2338 * alloc.c (SWEEP_FIXED_TYPE_BLOCK): Remove unused var `SFTB_prev'.
|
|
446
|
2339 * callproc.c (Fold_call_process_internal):
|
|
444
|
2340 Remove unused vars `env', `first'.
|
|
446
|
2341 * scrollbar.c (update_scrollbar_instance):
|
|
444
|
2342 #### unused var `current_window'.
|
|
|
2343 * redisplay-tty.c: Put currently unused vars insert_mode_on,
|
|
|
2344 etc. within #ifdef NOT_YET.
|
|
|
2345 * emacs.c: #### unused vars `initial_argc', `initial_argv'.
|
|
|
2346 * dialog-x.c (dbox_descriptor_to_widget_value): ### unused var `title'.
|
|
446
|
2347 * specifier.c (specifier_instance):
|
|
444
|
2348 #### unused var `tag'.
|
|
|
2349 Use WINDOW_BUFFER, FRAME_DEVICE instead of their expansion.
|
|
|
2350
|
|
|
2351 2000-10-27 Martin Buchholz <martin@xemacs.org>
|
|
|
2352
|
|
|
2353 * fns.c (Fbutlast):
|
|
|
2354 * fns.c (list_sort):
|
|
|
2355 * fns.c (Ffillarray):
|
|
|
2356 * fns.c (bytecode_nconc2):
|
|
|
2357 * fns.c (Fnconc):
|
|
|
2358 * fns.c (mapcar1):
|
|
|
2359 * fns.c (Fmapconcat):
|
|
|
2360 Be pedantically 64-bit correct. For the time when someone will
|
|
|
2361 want to have a list with length > 2**32.
|
|
|
2362
|
|
|
2363 * lisp.h (PRIVATE_EXTERNAL_LIST_LOOP_6):
|
|
|
2364 Work around MIPSpro compiler bug.
|
|
|
2365
|
|
|
2366 * process-unix.c (unix_kill_child_process): Add snarky comment.
|
|
|
2367 * process-unix.c (try_to_initialize_subtty): Oops, `=' ==> `=='
|
|
|
2368
|
|
|
2369 * config.h.in: Oops, _getpt ==> _getpty
|
|
|
2370
|
|
|
2371 2000-10-26 Martin Buchholz <martin@xemacs.org>
|
|
|
2372
|
|
|
2373 * config.h.in:
|
|
|
2374 * regex.c:
|
|
|
2375 Use void*, not char*, as return type of alloca().
|
|
|
2376
|
|
|
2377 * alloc.c (free_marker): Side effect inside assert expression!
|
|
|
2378
|
|
|
2379 2000-10-16 MIYASHITA Hisashi <himi@m17n.org>
|
|
|
2380
|
|
|
2381 * mule-charset.c (Fset_charset_ccl_program): To check
|
|
|
2382 if the given ccl program is valid, use setup_ccl_program()
|
|
|
2383 instead of CHECK_VECTOR().
|
|
|
2384 (Fmake_charset): Likewise.
|
|
|
2385
|
|
|
2386 2000-10-20 Golubev I. N. <gin@mo.msk.ru>
|
|
|
2387
|
|
|
2388 * faces.c (get_extent_fragment_face_cache_index):
|
|
|
2389 Fix cachel.merged_faces memory leak.
|
|
|
2390
|
|
|
2391 2000-10-14 MIYASHITA Hisashi <himi@m17n.org>
|
|
|
2392
|
|
|
2393 * mule-ccl.c (ccl_driver)<CCL_DECODE_SJIS>:
|
|
|
2394 Reset MSB of octets obtained by DECODE_SJIS
|
|
|
2395 because of the incompatibility with Emacs.
|
|
|
2396 (ccl_driver)<CCL_ENCODE_SJIS>:
|
|
|
2397 Set MSB of octets before passing them to
|
|
|
2398 ENCODE_SJIS because of the incompatibility
|
|
|
2399 with Emacs.
|
|
|
2400
|
|
|
2401 2000-10-18 Daiki Ueno <ueno@unixuser.org>
|
|
|
2402
|
|
|
2403 * lrecord.h (DECLARE_TYPECHECK_LRECORD): Abolish.
|
|
|
2404 (DECLARE_LRECORD): Undo the last change.
|
|
|
2405 (DECLARE_EXTERNAL_LRECORD): Expand typechecking stuff.
|
|
|
2406
|
|
|
2407 2000-10-17 Daiki Ueno <ueno@unixuser.org>
|
|
|
2408
|
|
|
2409 * lrecord.h (INIT_EXTERNAL_LRECORD_IMPLEMENTATION): Connect
|
|
|
2410 the implementation to lrecord_implementations_table.
|
|
|
2411
|
|
|
2412 2000-10-14 Daiki Ueno <ueno@unixuser.org>
|
|
|
2413
|
|
|
2414 * lrecord.h (MAKE_EXTERNAL_LRECORD_IMPLEMENTATION): Don't set the
|
|
|
2415 initial value of `lrecord_type_##c_name' and
|
|
|
2416 `lrecord_##c_name.lrecord_type_index'; discard "const" qualifier.
|
|
|
2417 (INIT_EXTERNAL_LRECORD_IMPLEMENTATION): New macro.
|
|
|
2418 [ERROR_CHECK_TYPECHECK] (DECLARE_TYPECHECK_LRECORD): New macro.
|
|
|
2419 [ERROR_CHECK_TYPECHECK] (DECLARE_LRECORD): Use it.
|
|
|
2420 [ERROR_CHECK_TYPECHECK] (DECLARE_EXTERNAL_LRECORD): Use it.
|
|
|
2421
|
|
|
2422 2000-10-17 Martin Buchholz <martin@xemacs.org>
|
|
|
2423
|
|
|
2424 * miscplay.c (sndcnv8S_2mono):
|
|
446
|
2425 (sndcnv2monounsigned):
|
|
|
2426 (sndcnvULaw_2linear):
|
|
|
2427 (sndcnv16swap):
|
|
444
|
2428 Remove implementation-defined behavior.
|
|
|
2429
|
|
|
2430 2000-10-12 Martin Buchholz <martin@xemacs.org>
|
|
|
2431
|
|
|
2432 * input-method-xlib.c: Warning suppression.
|
|
|
2433
|
|
|
2434 2000-10-05 MIYASHITA Hisashi <himi@m17n.org>
|
|
|
2435
|
|
|
2436 * mule-ccl.c: Sync up with Emacs 21.0.90.
|
|
|
2437 (ccl_driver)<CCL_TranslateCharacter>: Disabled.
|
|
|
2438 Do nothing.
|
|
|
2439 (ccl_driver)<CCL_TranslateCharacterConstTbl>:
|
|
|
2440 Likewise.
|
|
|
2441 (ccl_driver[WriteMultibyteChar2]): Bug fix.
|
|
|
2442 Use MAX_LEADING_BYTE_OFFICIAL_2 instead of
|
|
|
2443 MIN_LEADING_BYTE_OFFICIAL_2 to check whether the
|
|
|
2444 leading char belongs to official 2-dimensional charset.
|
|
|
2445 (CCL_WRITE_CHAR): When CCL_MODE_ENCODING,
|
|
|
2446 write the given character as is. Otherwise,
|
|
|
2447 if it is a multibyte char, convert it by
|
|
|
2448 non_ascii_set_charptr_emchar, then write it.
|
|
|
2449 (CCL_WRITE_STRING): Likewise.
|
|
|
2450 (ccl_get_compiled_code): New function.
|
|
|
2451 (setup_ccl_program): When ccl_prog is invalid,
|
|
|
2452 return -1.
|
|
|
2453 (Fregister_code_conversion_map): New function.
|
|
|
2454 (syms_of_mule_ccl): defsubr Fregister_code_conversion_map.
|
|
|
2455
|
|
|
2456 * mule-ccl.h: Sync up with Emacs 21.0.90.
|
|
|
2457 (Fregister_ccl_program): export it.
|
|
|
2458
|
|
|
2459 * redisplay-msw.c (separate_textual_runs):
|
|
|
2460 If ccl program is not valid, don't do ccl conversion.
|
|
|
2461
|
|
|
2462 * redisplay-x.c (separate_textual_runs): Ditto.
|
|
|
2463
|
|
|
2464 * file-coding.c (Fmake_coding_system):
|
|
|
2465 When type is ccl and value is vector, register it
|
|
|
2466 with a proper symbol. And checks whether the
|
|
|
2467 given ccl program is valid.
|
|
|
2468 (mule_decode): When calling ccl_driver, if src indicates
|
|
|
2469 NULL pointer, set an empty string instead.
|
|
|
2470 (mule_encode): Likewise.
|
|
|
2471
|
|
|
2472 2000-10-11 Martin Buchholz <martin@xemacs.org>
|
|
|
2473
|
|
|
2474 The following large batch of changes gets us back to a state of
|
|
|
2475 C++ compilability. Extbyte is now a char, which means that
|
|
|
2476 Extbyte * and Bufbyte * cannot be freely interchanged - a win!
|
|
|
2477
|
|
|
2478 * tooltalk.c (Fset_tooltalk_message_attribute): Type correctness.
|
|
|
2479
|
|
|
2480 * sound.c (Fplay_sound): Type correctness.
|
|
|
2481
|
|
|
2482 * select-x.c (hack_motif_clipboard_selection): Type correctness.
|
|
|
2483 (x_get_window_property): Type correctness.
|
|
|
2484 (receive_incremental_selection): unsigned char ==> Extbyte
|
|
|
2485 (selection_data_to_lisp_data): unsigned char ==> Extbyte
|
|
|
2486 (Fx_get_cutbuffer_internal): unsigned char ==> Extbyte
|
|
|
2487 (Fx_store_cutbuffer_internal): Type correctness.
|
|
|
2488
|
|
|
2489 * process-unix.c (try_to_initialize_subtty): Type correctness.
|
|
|
2490
|
|
|
2491 * objects-x.c (x_print_color_instance): Type correctness.
|
|
|
2492 (x_print_font_instance): Type correctness.
|
|
|
2493 (x_list_fonts): SExtbyte ==> Extbyte.
|
|
|
2494 (valid_x_font_name_p): SExtbyte ==> Extbyte.
|
|
|
2495 (x_find_charset_font): SExtbyte ==> Extbyte.
|
|
|
2496 Use TO_INTERNAL_FORMAT. build_string ==> make_string.
|
|
|
2497 (truename_via_XListFonts): SExtbyte ==> Extbyte.
|
|
|
2498 (x_font_instance_properties): Use TO_INTERNAL_FORMAT.
|
|
|
2499 Use bufbyte_strcmp.
|
|
|
2500
|
|
|
2501 * mule-charset.h (LEADING_BYTE_PREFIX_P): unsigned char ==> Bufbyte
|
|
|
2502 (PRIVATE_LEADING_BYTE_PREFIX): Add paranoia cast.
|
|
|
2503 (BYTE_ASCII_P): Use bit ops for char-signedness safety.
|
|
|
2504 (BYTE_C0_P): Use bit ops for char-signedness safety.
|
|
|
2505 (BYTE_C1_P): Use bit ops for char-signedness safety.
|
|
446
|
2506 (CHARSET_BY_LEADING_BYTE):
|
|
|
2507 (CHARSET_BY_ATTRIBUTES):
|
|
444
|
2508 Always use inline function.
|
|
|
2509 Use type_checking_assert.
|
|
|
2510 Hide chlook.
|
|
|
2511
|
|
|
2512 * mule-charset.c (non_ascii_charptr_copy_char):
|
|
|
2513 Modify to work with both ASCII and non-ASCII characters.
|
|
|
2514 Improve docs and variable names.
|
|
|
2515 Replace over-clever fall-through switch with a simple loop.
|
|
446
|
2516 (Lstream_get_emchar_1):
|
|
444
|
2517 Replace over-clever fall-through switch with a simple loop.
|
|
|
2518
|
|
|
2519 * menubar-x.c (menu_item_descriptor_to_widget_value_1):
|
|
|
2520 Warning suppression.
|
|
|
2521
|
|
|
2522 * lstream.h (Lstream_get_emchar): BYTE_ASCII_P cannot be used on
|
|
|
2523 the return value of Lstream_getc, which could be EOF as well.
|
|
|
2524
|
|
|
2525 * lstream.c (Lstream_raw_read): Now returns ssize_t, not int.
|
|
|
2526
|
|
|
2527 * lisp.h: Make Extbyte a char, not unsigned char, so that external
|
|
|
2528 APIs can be used on Extbytes without casts. Risky!
|
|
|
2529 (SExtbyte): Remove.
|
|
|
2530 (UExtbyte): Remove.
|
|
|
2531
|
|
|
2532 * input-method-xlib.c (XIM_init_device):
|
|
|
2533 Use Xlib.h instead of IntrinsicP.h.
|
|
|
2534 Use HAVE_XREGISTERIMINSTANTIATECALLBACK instead of THIS_IS_X11R6,
|
|
|
2535 which will break in X11R7.
|
|
|
2536 Use XREGISTERIMINSTANTIATECALLBACK_NONSTANDARD_PROTOTYPE,
|
|
|
2537 to call XRegisterIMInstantiateCallback with correct types.
|
|
|
2538
|
|
|
2539 * gui-x.c (button_item_to_widget_value): Type correctness.
|
|
|
2540
|
|
|
2541 * glyphs.c (bitmap_to_lisp_data): Type correctness.
|
|
|
2542
|
|
|
2543 * glyphs-x.c (pixmap_from_xbm_inline): Type correctness.
|
|
|
2544 (xbm_instantiate_1): Type correctness.
|
|
|
2545 (BUILD_GLYPH_INST): Type correctness.
|
|
|
2546
|
|
|
2547 * fileio.c (Fsubstitute_in_file_name): Type correctness.
|
|
|
2548
|
|
|
2549 * file-coding.c:
|
|
|
2550 (decode_coding_sjis):
|
|
|
2551 (decode_coding_big5):
|
|
|
2552 (decode_coding_ucs4):
|
|
|
2553 (decode_coding_utf8):
|
|
|
2554 (decode_coding_iso2022):
|
|
|
2555 (decode_coding_no_conversion):
|
|
|
2556 Make all decoding functions take an Extbyte * arg.
|
|
|
2557 (encode_coding_sjis):
|
|
|
2558 (encode_coding_big5):
|
|
|
2559 (encode_coding_ucs4):
|
|
|
2560 (encode_coding_utf8):
|
|
|
2561 (encode_coding_iso2022):
|
|
|
2562 (encode_coding_no_conversion):
|
|
|
2563 Make all encoding functions take a Bufbyte * arg.
|
|
|
2564 Use size_t instead of unsigned int for memory sizes.
|
|
|
2565 Only cast to unsigned char whenever dereferencing Extbyte *.
|
|
|
2566
|
|
|
2567 * doc.c (unparesseuxify_doc_string): Type correctness.
|
|
|
2568
|
|
|
2569 * console-x.c (split_up_display_spec):
|
|
|
2570 Rewrite without using details of internal string representation.
|
|
|
2571 (x_semi_canonicalize_device_connection): Type correctness.
|
|
|
2572
|
|
|
2573 * config.h.in:
|
|
|
2574 (HAVE_XREGISTERIMINSTANTIATECALLBACK): New.
|
|
|
2575 (XREGISTERIMINSTANTIATECALLBACK_NONSTANDARD_PROTOTYPE): New.
|
|
|
2576 (HAVE_XFREE386): Removed.
|
|
|
2577
|
|
|
2578 * buffer.h (DEC_CHARPTR): `const' correctness.
|
|
|
2579 (bufbyte_strcmp): New.
|
|
|
2580 (bufbyte_memcmp): New.
|
|
|
2581
|
|
|
2582 * buffer.c (dfc_convert_to_internal_format): Extbyte ==> Bufbyte
|
|
|
2583
|
|
|
2584 * buffer.h (XCHAR_OR_CHAR_INT):
|
|
|
2585 Always use inline function.
|
|
|
2586 Remove redundant type checking assert() - XINT will abort quite nicely.
|
|
|
2587
|
|
|
2588 2000-10-03 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
2589
|
|
|
2590 * search.c (Freplace_match): Set newtext to an empty string.
|
|
|
2591
|
|
|
2592 2000-10-10 Martin Buchholz <martin@xemacs.org>
|
|
|
2593
|
|
|
2594 * s/decosf1-3.h: Remove #include of stropts.h
|
|
|
2595 * s/ptx.h: Remove #include of stropts.h
|
|
|
2596 * s/usg5-4.h: Remove #include of stropts.h
|
|
446
|
2597 * sysproc.h:
|
|
|
2598 * config.h.in:
|
|
444
|
2599 Use stropts.h, not sys/stropts.h.
|
|
|
2600 Use strtio.h, not sys/strtio.h.
|
|
|
2601
|
|
442
|
2602 2000-10-04 Martin Buchholz <martin@xemacs.org>
|
|
|
2603
|
|
|
2604 * XEmacs 21.2.36 is released.
|
|
|
2605
|
|
444
|
2606 2000-09-21 Andy Piper <andy@xemacs.org>
|
|
|
2607
|
|
|
2608 * glyphs-x.c (x_redisplay_widget): make sure non-structural
|
|
|
2609 changes still involve copying the widget tree.
|
|
|
2610 (update_widget_face): make sure a change is register in the widget
|
|
|
2611 tree. Call update_tab_widget_face appropriately.
|
|
|
2612 (update_tab_widget_face): ditto.
|
|
|
2613 (x_tab_control_redisplay): make sure non-structural changes still
|
|
|
2614 involve copying the widget tree.
|
|
|
2615
|
|
442
|
2616 2000-08-31 Daiki Ueno <ueno@unixuser.org>
|
|
|
2617
|
|
|
2618 * lread.c (locate_file): Check the path element is non-nil.
|
|
|
2619
|
|
|
2620 2000-10-02 Martin Buchholz <martin@xemacs.org>
|
|
|
2621
|
|
|
2622 * lisp.h: Warning suppression for SCO compilers.
|
|
|
2623
|
|
|
2624 * redisplay-tty.c (reset_tty_modes): Fix crash.
|
|
|
2625 E.g. from xemacs running on X: (delete-device (make-device 'tty nil))
|
|
|
2626
|
|
|
2627 2000-09-27 Martin Buchholz <martin@xemacs.org>
|
|
|
2628
|
|
|
2629 Big signal/process handling overhaul. Bugs fixed:
|
|
|
2630 M-x shell, type `sleep 10000', M-x comint-interrupt-subjob and
|
|
|
2631 M-x comint-kill-subjob should work for both values nil and t of
|
|
|
2632 process-connection-type. It was broken on most platforms.
|
|
|
2633 Testing on Irix and Cygwin still needed. Other plaforms tested.
|
|
|
2634 * sysdep.c: Move #include of stropts.h into sysproc.h. Use pid_t.
|
|
|
2635 * process-unix.c: Signal/Process handling overhaul.
|
|
|
2636 (pty_name): make 64 bytes, as `expect' does, for paranoia.
|
|
|
2637 (allocate_pty): Use all available modern methods of allocating
|
|
|
2638 ptys, falling back to old style BSD allocation as a last resort.
|
|
|
2639 Use allegedly more secure Unix98 pty allocation by default.
|
|
|
2640 (allocate_pty_the_old_fashioned_way): New. the last resort.
|
|
|
2641 (unix_create_process): Push ptem, ldterm, ttcompat where
|
|
|
2642 available. Autoconfiscate.
|
|
|
2643 (try_to_initialize_subtty): New.
|
|
|
2644 (unix_kill_child_process): Proper signal handling for ptys on most
|
|
|
2645 platforms, using special knowledge of AIX, BSD, etc...
|
|
|
2646 (unix_create_process): Always disconnect_controlling_terminal() for
|
|
|
2647 subprocesses, whether using ptys or not.
|
|
|
2648 * process.h: Remove old getpt-dependent PTY code.
|
|
|
2649 * process.c (Fprocess_send_signal): New, obvious generic function.
|
|
|
2650 (decode_signal): New.
|
|
|
2651 (Finterrupt_process):
|
|
|
2652 (Fkill_process):
|
|
|
2653 (Fquit_process):
|
|
|
2654 (Fstop_process):
|
|
|
2655 (Fcontinue_process):
|
|
|
2656 (Fsignal_process): Use decode_signal.
|
|
|
2657 (process_send_signal):
|
|
|
2658 Many docstring corrections.
|
|
|
2659 Allow any signal to be sent to a process object.
|
|
|
2660 * config.h.in: Add symbols for big signal/process overhaul.
|
|
|
2661 * syssignal.h (EMACS_KILLPG): Use HAVE_KILLPG. Use `pid', not `gid'.
|
|
|
2662 * sysproc.h: Include process-related headers, where available:
|
|
|
2663 sys/stropts.h sys/strtio.h pty.h libutil.h
|
|
|
2664 * s/irix4-0.h:
|
|
|
2665 * s/irix5-0.h:
|
|
|
2666 * s/cygwin32.h:
|
|
|
2667 * s/gnu.h:
|
|
|
2668 * s/linux.h:
|
|
|
2669 * s/hpux.h:
|
|
|
2670 * s/aix3-1.h:
|
|
|
2671 Remove old S&M pty stuff.
|
|
|
2672 * console-tty.c (tty_init_console): Use pid_t, not int, for pids.
|
|
|
2673 * systty.h: Simplify cpp hackery, improve comments.
|
|
|
2674 Favor BSD ioctl(TIOCGPGRP) over Posix tcgetpgrp().
|
|
|
2675
|
|
|
2676 * editfns.c (Fformat_time_string):
|
|
|
2677 Be a little more paranoid with the return value of ctime.
|
|
|
2678
|
|
|
2679 * fileio.c (check_executable):
|
|
|
2680 (check_writable):
|
|
|
2681 Use symbolic constants X_OK, W_OK.
|
|
|
2682
|
|
|
2683 * console-x.c (split_up_display_spec): Fix a warning.
|
|
|
2684
|
|
|
2685 2000-10-02 Martin Buchholz <martin@xemacs.org>
|
|
|
2686
|
|
|
2687 * gui-x.c (add_accel_and_to_external): strlen ==> XSTRING_LENGTH
|
|
|
2688 * ntproc.c (sys_spawnve): make_string ==> build_string
|
|
|
2689 Small clarity improvements.
|
|
|
2690
|
|
|
2691 2000-09-30 Martin Buchholz <martin@xemacs.org>
|
|
|
2692
|
|
|
2693 * events.c (WRONG_EVENT_TYPE_FOR_PROPERTY): Warning removal.
|
|
|
2694
|
|
|
2695 * s/windowsnt.h (HAVE_STRCASECMP): Remove.
|
|
|
2696
|
|
|
2697 * config.h.in (HAVE_STRCASECMP): Remove.
|
|
|
2698
|
|
|
2699 2000-09-29 Martin Buchholz <martin@xemacs.org>
|
|
|
2700
|
|
|
2701 * redisplay-output.c (redisplay_output_pixmap):
|
|
|
2702 Cleaner and possibly more 64-bit correct code.
|
|
|
2703
|
|
|
2704 2000-09-28 Stephen J. Turnbull <stephen@xemacs.org>
|
|
|
2705
|
|
|
2706 * dumper.c (pdump_load_finish): move restoration of
|
|
|
2707 `noninteractive1' to emacs.c (main_1).
|
|
|
2708 * emacs.c (main_1): protect LISP-visible command-line flags
|
|
|
2709 from pdump_load().
|
|
|
2710
|
|
|
2711 2000-09-26 Stephen J. Turnbull <stephen@xemacs.org>
|
|
|
2712
|
|
|
2713 * Makefile.in.in (versionclean): Use EXE_TARGET and
|
|
|
2714 DUMP_TARGET instead of literal program names.
|
|
|
2715
|
|
|
2716 2000-09-20 Martin Buchholz <martin@xemacs.org>
|
|
|
2717
|
|
|
2718 * Makefile.in.in: Recent purify's require absolute paths for cache-dir.
|
|
|
2719
|
|
|
2720 2000-09-19 Martin Buchholz <martin@xemacs.org>
|
|
|
2721
|
|
|
2722 * *: Spelling mega-patch
|
|
|
2723
|
|
|
2724 2000-09-19 Martin Buchholz <martin@xemacs.org>
|
|
|
2725
|
|
|
2726 * fns.c (bad_bad_turtle):
|
|
|
2727 Delete "Eek!" comment, since we fixed the bug to which it refers.
|
|
|
2728
|
|
|
2729 2000-09-16 Martin Buchholz <martin@xemacs.org>
|
|
|
2730
|
|
|
2731 * alloca.c: Replace REGISTER with register.
|
|
|
2732
|
|
|
2733 2000-09-16 Daiki Ueno <ueno@unixuser.org>
|
|
|
2734
|
|
|
2735 * file-coding.c (ucs_to_char): Use countof.
|
|
|
2736
|
|
|
2737 2000-09-16 Martin Buchholz <martin@xemacs.org>
|
|
|
2738
|
|
|
2739 * file-coding.c: (ucs_to_char):
|
|
|
2740 (complex_vars_of_file_coding):
|
|
|
2741 Use countof instead of sizeof.
|
|
|
2742 Use CHECK_NATNUM instead of CHECK_INT.
|
|
|
2743
|
|
|
2744 * sysdep.c (strcasecmp): Remove.
|
|
|
2745 * device-x.c (ascii_strcasecmp): New.
|
|
|
2746 * device-x.c (Fx_get_resource): Use ascii_strcasecmp.
|
|
|
2747 Avoid using non-standard non-portable strcasecmp.
|
|
|
2748
|
|
|
2749 2000-09-16 Martin Buchholz <martin@xemacs.org>
|
|
|
2750
|
|
|
2751 * Makefile.in.in (mostlyclean): remove reference to prefix-args.
|
|
|
2752 * font-lock.c: remove reference to emacsfns.h.
|
|
|
2753 * search.c: small doc improvement.
|
|
|
2754 * event-Xt.c: correct file names in comments.
|
|
|
2755 * console-x.h Correct file names in comments.
|
|
|
2756 * frame.c: Correct file names in comments.
|
|
|
2757 * event-stream.c: remove Energize from comments.
|
|
|
2758
|
|
|
2759 2000-09-15 Martin Buchholz <martin@xemacs.org>
|
|
|
2760
|
|
|
2761 * symeval.h (DEFERROR_STANDARD):
|
|
|
2762 (DEFERROR):
|
|
|
2763 (DEFSYMBOL):
|
|
|
2764 (DEFSYMBOL_NO_DUMP):
|
|
|
2765 (DEFSYMBOL_MULTIWORD_PREDICATE):
|
|
|
2766 (DEFSYMBOL_MULTIWORD_PREDICATE_NO_DUMP):
|
|
|
2767 (DEFKEYWORD):
|
|
|
2768 The construct &##name is not sensible C.
|
|
|
2769 Fixes compilation errors with Unixware native compiler.
|
|
|
2770
|
|
|
2771 2000-09-14 Martin Buchholz <martin@xemacs.org>
|
|
|
2772
|
|
|
2773 * frame.c (device_matches_console_spec): no longer takes a `frame' arg
|
|
|
2774 (next_frame_internal): Removed. We now just have next_frame.
|
|
|
2775 (next_frame):
|
|
|
2776 Write a simpler and cleaner one-pass algorithm.
|
|
|
2777 Remove called_from_delete_device arg and #ifdefed-out code.
|
|
|
2778 (previous_frame):
|
|
|
2779 Renamed from prev_frame. Update callers.
|
|
|
2780 Cleaned up to have an analogous implementation to next_frame.
|
|
|
2781 (other_visible_frames_internal): Remove the
|
|
|
2782 called_from_delete_device bogus arg, and hence, remove this
|
|
|
2783 function. Just use other_visible_frames().
|
|
|
2784
|
|
446
|
2785 * window.c (Fnext_window):
|
|
442
|
2786 Prettify docstring.
|
|
|
2787 Since next_frame() is guaranteed to return a frame, remove check
|
|
|
2788 for nil inserted in previous patch.
|
|
446
|
2789 (Fprevious_window):
|
|
|
2790 Prettify docstring.
|
|
442
|
2791 Make code look more like Fnext_window.
|
|
|
2792 (window_loop):
|
|
|
2793 Respect the `console' arg when iterating through windows.
|
|
|
2794 Fixes bug: (get-buffer-window buffer t device) not respecting
|
|
|
2795 the `device' arg.
|
|
|
2796 This function needs more work, as others have pointed out.
|
|
|
2797
|
|
|
2798 * frame.h: Rename prev_frame to previous_frame.
|
|
|
2799 device_matches_console_spec no longer takes a `frame' arg.
|
|
|
2800
|
|
|
2801 * s/gnu.h:
|
|
|
2802 * s/linux.h:
|
|
|
2803 * s/hpux.h:
|
|
|
2804 Use EMACS_BLOCK_SIGNAL instead of sigblock.
|
|
|
2805 From "Golubev I. N." <gin@mo.msk.ru>.
|
|
|
2806
|
|
|
2807 * make-src-depend: Fix typo.
|
|
|
2808
|
|
|
2809 2000-09-13 Martin Buchholz <martin@xemacs.org>
|
|
|
2810
|
|
|
2811 * window.c (Fnext_window):
|
|
|
2812 next_frame() might return nil, not a frame.
|
|
|
2813 Fixes this crash:
|
|
|
2814 (gdb) run -eval '(progn (make-device (quote x) "polgar:0") (next-window (minibuffer-window) t (quote visible) (second (device-list))))'
|
|
|
2815
|
|
|
2816 * frame.c (next_frame_internal):
|
|
|
2817 We've passed a frame if we've passed its device.
|
|
|
2818 Fixes this crash:
|
|
|
2819 (gdb) run -eval '(progn (make-frame nil (make-device (quote x) "polgar:0")) (next-window (minibuffer-window) t (quote visible) (second (device-list))))'
|
|
|
2820 Fatal error: assertion failed, file /project/xemacs/ws/dev/src/frame.h, line 245, RECORD_TYPEP (obj, lrecord_type_frame)
|
|
|
2821
|
|
|
2822 2000-09-11 Jonathan Harris <jhar@tardis.ed.ac.uk>
|
|
|
2823
|
|
|
2824 * menubar-msw.c (mswindows_translate_menu_or_dialog_item):
|
|
|
2825 Allow option to suppress accelerators in menu/dialog items.
|
|
|
2826 (populate_or_checksum_helper): Pass dialog title through above.
|
|
|
2827
|
|
|
2828 2000-09-10 Jonathan Harris <jhar@tardis.ed.ac.uk>
|
|
|
2829
|
|
|
2830 * event-msw.c (mswindows_key_to_emacs_keysym):
|
|
|
2831 Add "pause" key, fix "menu" key.
|
|
|
2832
|
|
|
2833 2000-09-09 Martin Buchholz <martin@xemacs.org>
|
|
|
2834
|
|
|
2835 * eval.c (reinit_vars_of_eval):
|
|
|
2836 Increase max_lisp_eval_depth to 1000,
|
|
|
2837 required for thai-xtis.el to byte-compile under some circumstances.
|
|
|
2838
|
|
|
2839 2000-09-04 Martin Buchholz <martin@xemacs.org>
|
|
|
2840
|
|
|
2841 * event-Xt.c (x_to_emacs_keysym): Increase size of `buffer' to 513.
|
|
|
2842 From Kenichi Handa.
|
|
|
2843
|
|
|
2844 2000-09-01 Martin Buchholz <martin@xemacs.org>
|
|
|
2845
|
|
|
2846 * make-src-depend: Make the generated Makefiles smaller.
|
|
|
2847
|
|
|
2848 * s/hpux.h (SETUP_SLAVE_PTY):
|
|
|
2849 Provide a %d in the format string for the errno argument.
|
|
|
2850
|
|
|
2851 * editfns.c (Ftemp_directory):
|
|
|
2852 Warning fix.
|
|
|
2853 Avoid buffer overrun on very long file name.
|
|
|
2854
|
|
446
|
2855 * input-method-xlib.c (XIM_init_device):
|
|
442
|
2856 6th parameter of XRegisterIMInstantiateCallback has different
|
|
|
2857 pointer types on different OSes, so simply cast to (void *).
|
|
|
2858
|
|
|
2859 * unexhp9k800.c: Warning fixes. Fiddly changes.
|
|
|
2860
|
|
|
2861 * sysdll.c (dll_open):
|
|
|
2862 shl_load will hang hard if passed a NULL filename.
|
|
|
2863 Simply return NULL for compatibility with dlopen.
|
|
|
2864 * sysdll.c: Conform to XEmacs coding standards.
|
|
|
2865
|
|
446
|
2866 * sysdep.c (get_pty_max_bytes):
|
|
442
|
2867 Support pty input lines longer than 512 bytes on HP-UX 10.20.
|
|
|
2868
|
|
|
2869 2000-08-31 Martin Buchholz <martin@xemacs.org>
|
|
|
2870
|
|
|
2871 * tooltalk.c: Add #include <syssignal.h>
|
|
|
2872
|
|
|
2873 2000-08-12 Alexandre Oliva <aoliva@redhat.com>
|
|
|
2874
|
|
|
2875 * s/hpux.h: Don't use undefined function sigunblock().
|
|
|
2876
|
|
|
2877 2000-08-31 Martin Buchholz <martin@xemacs.org>
|
|
|
2878
|
|
|
2879 * config.h.in: Add HAVE_BALLOON_HELP.
|
|
|
2880 * emacs.c: Use HAVE_BALLOON_HELP.
|
|
|
2881 * Makefile.in.in (x_objs):
|
|
|
2882 Make Balloon Help conditional on finding shape.h.
|
|
|
2883
|
|
|
2884 2000-08-23 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
2885
|
|
|
2886 * syntax.c (regex_emacs_buffer_p): New variable.
|
|
|
2887 * syntax.h (regex_emacs_buffer_p): extern.
|
|
|
2888 * search.c (looking_at_1):
|
|
|
2889 (string_match_1):
|
|
|
2890 (fast_string_match):
|
|
|
2891 (search_buffer): Set regex_emacs_buffer_p.
|
|
|
2892 * regex.c (re_match_2_internal): Reference regex_emacs_buffer_p
|
|
|
2893 when before_dot, at_dot, after_dot.
|
|
|
2894
|
|
|
2895 2000-08-23 Andy Piper <andy@xemacs.org>
|
|
|
2896
|
|
|
2897 * gui-x.c (popup_selection_callback): Only set action_occurred
|
|
|
2898 when we really have an image instance.
|
|
|
2899 * gui-msw.c (mswindows_handle_gui_wm_command): ditto.
|
|
|
2900
|
|
|
2901 2000-08-23 Andy Piper <andy@xemacs.org>
|
|
|
2902
|
|
|
2903 * gui-msw.c (mswindows_handle_gui_wm_command): set
|
|
|
2904 action_occurred.
|
|
|
2905 * gui-x.c (popup_selection_callback): ditto.
|
|
|
2906
|
|
|
2907 * glyphs.h (IMAGE_INSTANCE_WIDGET_ACTION_OCCURRED): new accessor.
|
|
|
2908 (XIMAGE_INSTANCE_WIDGET_ACTION_OCCURRED): ditto.
|
|
|
2909 (struct Lisp_Image_Instance): add action_occurred flag.
|
|
|
2910
|
|
|
2911 * glyphs.c (redisplay_subwindow): use action_occurred flag.
|
|
|
2912 (image_instance_changed): ditto.
|
|
|
2913 (reset_frame_subwindow_instance_cache): only unmap windows - do
|
|
|
2914 not remove them from the cache also.
|
|
|
2915
|
|
|
2916 * glyphs-widget.c (tab_control_update): better debug.
|
|
|
2917 (progress_gauge_update): ditto.
|
|
|
2918 (layout_update): ditto.
|
|
|
2919 (layout_instantiate): ditto.
|
|
|
2920 (tab_control_order_only_changed): cope with null pending items.
|
|
|
2921
|
|
|
2922 * glyphs-msw.c (mswindows_tab_control_redisplay): add better
|
|
|
2923 debug. Force selection of an item when an action occurred. Cope
|
|
|
2924 with null pending_items.
|
|
|
2925 (mswindows_progress_gauge_redisplay): better debug.
|
|
|
2926 * glyphs-x.c (x_tab_control_redisplay): ditto.
|
|
|
2927
|
|
|
2928 * redisplay.c (redisplay_frame): reset the frame cache if the
|
|
|
2929 frame is garbaged.
|
|
|
2930
|
|
|
2931 * window.c (Fset_window_configuration): potentially re-enable
|
|
|
2932 frame cache reset.
|
|
|
2933 (window_unmap_subwindows): need to finalize instances here since
|
|
|
2934 it is only used in mark_window_as_deleted.
|
|
|
2935
|
|
|
2936 2000-08-22 Stephen J. Turnbull <stephen@xemacs.org>
|
|
|
2937
|
|
|
2938 * nas.c (SndOpenDataForReading):
|
|
|
2939 nas.c (WaveOpenDataForReading):
|
|
|
2940 nas.c (readChunk): {BIG,LITTLE}_ENDIAN -> NAS_{BIG,LITTLE}_ENDIAN.
|
|
|
2941 Somehow escaped from the 2000-08-14 patch.
|
|
|
2942
|
|
|
2943 2000-08-14 Stephen J. Turnbull <stephen@xemacs.org>
|
|
|
2944
|
|
|
2945 * nas.c: Preprocessor trickery to use NAS_LITTLE_ENDIAN instead
|
|
|
2946 of LITTLE_ENDIAN (conflicts with glibc, at least) in NAS <= 1.2p5.
|
|
|
2947
|
|
|
2948 2000-08-21 Andy Piper <andy@xemacs.org>
|
|
|
2949
|
|
|
2950 * glyphs-x.c (x_map_subwindow): Minor optimization - only map the
|
|
|
2951 window if it is not already displayed.
|
|
|
2952
|
|
|
2953 * glyphs-msw.c (mswindows_map_subwindow): only map the window if
|
|
|
2954 it is not already displayed.
|
|
|
2955
|
|
|
2956 * window.c (Fset_window_configuration): don't reset the frame
|
|
|
2957 cache.
|
|
|
2958
|
|
|
2959 * glyphs.c (unmap_subwindow_instance_cache_mapper): only remove
|
|
|
2960 instances from the frame cache if we are actually finalizing them.
|
|
|
2961 (reset_frame_subwindow_instance_cache): reset frame cache only
|
|
|
2962 after unmapping everything.
|
|
|
2963 (map_subwindow): set displayed flag after mapping.
|
|
|
2964
|
|
|
2965 2000-08-21 Martin Buchholz <martin@xemacs.org>
|
|
|
2966
|
|
|
2967 * data.c (indirect_function):
|
|
|
2968 Rename ERRORP to non-misleading VOID_FUNCTION_ERRORP.
|
|
|
2969
|
|
446
|
2970 * eval.c (function_argcount):
|
|
442
|
2971 Use original function when signaling errors.
|
|
|
2972
|
|
|
2973 2000-08-18 Andy Piper <andy@xemacs.org>
|
|
|
2974
|
|
|
2975 * frame.c (delete_frame_internal): use new
|
|
|
2976 free_frame_subwindow_instances name.
|
|
|
2977
|
|
|
2978 * glyphs-msw.c (mswindows_tab_control_instantiate): verify index.
|
|
|
2979 (add_tab_item): make return type correct.
|
|
|
2980 (mswindows_tab_control_instantiate): assert index of tab.
|
|
|
2981 (mswindows_tab_control_redisplay): Re-code to use
|
|
|
2982 gui_item_equal_sans_selected and gui_item_list_find_selected.
|
|
|
2983
|
|
|
2984 * glyphs-widget.c (tab_control_update): Correct comment.
|
|
|
2985
|
|
|
2986 * window.c (window_unmap_subwindows): use new
|
|
|
2987 unmap_subwindow_instance_cache_mapper.
|
|
|
2988 (window_unmap_subwindows_cache_mapper): deleted.
|
|
|
2989 (Fset_window_configuration): comparisons should now be with
|
|
|
2990 EQ. Preserve the subwindow instance cache across configuration
|
|
|
2991 changes.
|
|
|
2992 (allocate_window): ditto.
|
|
|
2993 (make_dummy_parent): ditto.
|
|
|
2994
|
|
|
2995 * glyphs.c (free_frame_subwindow_instances): rename from
|
|
|
2996 free_frame_subwindow_instance_cache. finalize all instances rather
|
|
|
2997 than just those in the display cache.
|
|
|
2998 (finalize_all_subwindow_instances): walk windows unmapping and
|
|
|
2999 finalizing subwindows.
|
|
|
3000 (unmap_subwindow_instance_cache_mapper): moved from
|
|
|
3001 window.c. Allow finalization as well as unmapping.
|
|
|
3002
|
|
|
3003 * gui.c (gui_item_list_find_selected): new function.
|
|
|
3004
|
|
|
3005 * gui.h (gui_item_list_find_selected): declare.
|
|
|
3006
|
|
|
3007 * glyphs-x.c (x_tab_control_redisplay): pick tab
|
|
|
3008 explicitly. Re-code to use gui_item_equal_sans_selected and
|
|
|
3009 gui_item_list_find_selected.
|
|
|
3010
|
|
|
3011 * glyphs-x.h: add lwlib-utils.h
|
|
|
3012
|
|
|
3013 * buffer.c (Frecord_buffer): undo previous change.
|
|
|
3014
|
|
|
3015 2000-08-09 Vin Shelton <acs@xemacs.org>
|
|
|
3016
|
|
|
3017 * config.h.in, s/gnu.h, s/hpux.h, s/linux.h: Use UNIX98 PTYs if
|
|
|
3018 possible. Create temporary files more securely. The patch was
|
|
|
3019 generated by Torsten Duwe <duwe@caldera.de>, Florian Weimer
|
|
|
3020 <Florian.Weimer@RUS.Uni-Stuttgart.DE> and Olaf Kirch. See
|
|
|
3021 http://www.xemacs.org/list-archives/xemacs-patches/200007/msg00123.html
|
|
|
3022 for details.
|
|
|
3023
|
|
|
3024 2000-08-07 Ben Wing <ben@xemacs.org>
|
|
|
3025
|
|
|
3026 * getloadavg.c: remove duplicate (and windows-breaking)
|
|
|
3027 includes of fcntl.h and sys/file.h.
|
|
|
3028
|
|
|
3029 * nt.c: remove duplicate getloadavg() definition.
|
|
|
3030
|
|
|
3031 * sysdll.h (Qdll_filename_encoding): add missing stand-in
|
|
|
3032 encodings.
|
|
|
3033
|
|
|
3034 2000-08-07 Gunnar Evermann <ge204@eng.cam.ac.uk>
|
|
|
3035
|
|
|
3036 * eval.c (function_argcount): If function needs to be autoloaded
|
|
|
3037 actually use the loaded definition.
|
|
|
3038 GCPRO function.
|
|
|
3039
|
|
|
3040 2000-08-05 Ben Wing <ben@xemacs.org>
|
|
|
3041
|
|
|
3042 * getloadavg.c: add prototype for getloadavg(). remove
|
|
|
3043 duplicate WIN32_NATIVE/CYGWIN code (already in the middle
|
|
|
3044 of the code). remove duplicate header includes.
|
|
|
3045
|
|
|
3046 * s\cygwin32.h, s\mingw32.h: remove stray NO_ARG_ARRAY.
|
|
446
|
3047
|
|
442
|
3048 * s\cygwin32.h, s\mingw32.h, m\windowsnt.h:
|
|
|
3049 don't define LOAD_AVE_TYPE/LOAD_AVE_CVT because we have no
|
|
|
3050 useful load average.
|
|
|
3051
|
|
|
3052 * alloc.c (reinit_alloc_once_early): removed references to
|
|
|
3053 VIRT_ADDR_VARIES, malloc_sbrk_used/free, and data-bytes-used/free.
|
|
|
3054 the lisp vars are the only things referencing the malloc_sbrk_*
|
|
|
3055 vars, and they were already if 0'd out. these vars only exist
|
|
|
3056 in the older malloc.c, which is basically unused, and they're
|
|
|
3057 only for informational purposes.
|
|
|
3058
|
|
|
3059 * m\*.h: removed useless VIRT_ADDR_VARIES.
|
|
|
3060
|
|
|
3061 * m\powerpc.h: removed stray NO_ARG_ARRAY.
|
|
|
3062
|
|
|
3063 2000-04-26 IKEYAMA Tomonori <tomonori@suiyokai.org>
|
|
|
3064
|
|
|
3065 * redisplay-msw.c (mswindows_output_dibitmap): Set foreground
|
|
|
3066 color if the image is a mono pixmap.
|
|
|
3067
|
|
|
3068 2000-07-30 Ben Wing <ben@xemacs.org>
|
|
|
3069
|
|
|
3070 * Makefile.in.in (release):
|
|
|
3071 Remove stray @.
|
|
446
|
3072
|
|
442
|
3073 * buffer.c (directory_is_current_directory):
|
|
|
3074 * dired-msw.c (mswindows_get_files):
|
|
|
3075 * dired.c:
|
|
|
3076 * dired.c (Fdirectory_files):
|
|
|
3077 * dired.c (file_name_completion_stat):
|
|
|
3078 * dired.c (Ffile_attributes):
|
|
|
3079 [[[[1]]]]: Rename stat() -> xemacs_stat() and eliminate nasty
|
|
|
3080 preprocessor tricks, to avoid problems on some machines
|
|
|
3081 (e.g. SCO).
|
|
|
3082
|
|
|
3083 * callproc.c (egetenv): GC docs.
|
|
446
|
3084
|
|
442
|
3085 * console-msw.h:
|
|
|
3086 * console-msw.h (struct mswindows_dialog_id):
|
|
|
3087 * lrecord.h (lrecord_type):
|
|
|
3088 New object for use with MSW dialogs.
|
|
446
|
3089
|
|
442
|
3090 * console.h (struct console_methods):
|
|
|
3091 New enable/disable frame methods, for proper modal dialogs.
|
|
446
|
3092
|
|
442
|
3093 * device-msw.c (msprinter_default_printer): Fix to follow
|
|
|
3094 proper Mule conventions.
|
|
446
|
3095
|
|
442
|
3096 * device-msw.c:
|
|
|
3097 * device-msw.c (signal_open_printer_error):
|
|
|
3098 * device-msw.c (msprinter_init_device):
|
|
|
3099 * device-msw.c (ensure_not_printing):
|
|
|
3100 * device-msw.c (plist_get_margin):
|
|
|
3101 * device-msw.c (Fmsprinter_select_settings):
|
|
|
3102 * device-msw.c (finalize_devmode):
|
|
|
3103 * device-msw.c (Fmsprinter_settings_despecialize):
|
|
|
3104 * device-msw.c (signal_enum_priner_error):
|
|
|
3105 * extents.c (decode_extent):
|
|
|
3106 * extents.c (decode_map_extents_flags):
|
|
|
3107 * extents.c (decode_extent_at_flag):
|
|
|
3108 * extents.c (Fextent_at):
|
|
|
3109 * extents.c (Fextents_at):
|
|
|
3110 * extents.c (symbol_to_glyph_layout):
|
|
|
3111 [[[[2]]]] Use structured errors.
|
|
446
|
3112
|
|
442
|
3113 * dialog-msw.c:
|
|
|
3114 * dialog-msw.c (mswindows_is_dialog_msg):
|
|
|
3115 * dialog-msw.c (mark_mswindows_dialog_id):
|
|
|
3116 * dialog-msw.c (dialog_proc):
|
|
|
3117 * dialog-msw.c (handle_question_dialog_box):
|
|
|
3118 * dialog-msw.c (syms_of_dialog_mswindows):
|
|
|
3119 Define new object to clean up marking; use it as a dialog identifier.
|
|
|
3120 Call new delete-dialog-box-hook.
|
|
446
|
3121
|
|
442
|
3122 * dialog-x.c (dbox_selection_callback):
|
|
|
3123 * dialog-x.c (dbox_descriptor_to_widget_value):
|
|
|
3124 * dialog-x.c (x_make_dialog_box_internal):
|
|
|
3125 Call new delete-dialog-box-hook.
|
|
|
3126 Return an id.
|
|
|
3127
|
|
|
3128 * dialog.c:
|
|
|
3129 * dialog.c (syms_of_dialog):
|
|
|
3130 * dialog.c (vars_of_dialog):
|
|
|
3131 Define new delete-dialog-box-hook, for use w/modal dialog boxes.
|
|
446
|
3132
|
|
442
|
3133 * eval.c:
|
|
|
3134 * eval.c (signal_call_debugger):
|
|
|
3135 when noninteractive, output stack traces on the console instead
|
|
|
3136 of in a (never-seen) buffer.
|
|
446
|
3137
|
|
442
|
3138 * eval.c (signal_type_error):
|
|
|
3139 * eval.c (invalid_argument_2):
|
|
|
3140 * lisp.h:
|
|
|
3141 new funs for use w/structured errors.
|
|
446
|
3142
|
|
442
|
3143 * event-Xt.c:
|
|
|
3144 * event-Xt.c (x_to_emacs_keysym):
|
|
|
3145 * event-Xt.c (describe_event):
|
|
|
3146 * event-Xt.c (emacs_Xt_event_handler):
|
|
|
3147 * event-Xt.c (vars_of_event_Xt):
|
|
|
3148 * event-msw.c:
|
|
|
3149 * event-msw.c (mswindows_wnd_proc):
|
|
|
3150 * event-msw.c (vars_of_event_mswindows):
|
|
|
3151 rename {x,mswindows}-debug-events to debug-{}-events for
|
|
|
3152 consistency with other debug-foo variables.
|
|
446
|
3153
|
|
442
|
3154 * event-stream.c:
|
|
|
3155 document next-event more clearly.
|
|
446
|
3156
|
|
442
|
3157 * fileio.c (Ffile_name_directory):
|
|
|
3158 * fileio.c (Ffile_name_nondirectory):
|
|
|
3159 * fileio.c (Funhandled_file_name_directory):
|
|
|
3160 * fileio.c (file_name_as_directory):
|
|
|
3161 * fileio.c (Ffile_name_as_directory):
|
|
|
3162 * fileio.c (directory_file_name):
|
|
|
3163 * fileio.c (Fdirectory_file_name):
|
|
|
3164 * fileio.c (Fmake_temp_name):
|
|
|
3165 * fileio.c (Ffile_truename):
|
|
|
3166 * fileio.c (Fsubstitute_in_file_name):
|
|
|
3167 * fileio.c (expand_and_dir_to_file):
|
|
|
3168 * fileio.c (barf_or_query_if_file_exists):
|
|
|
3169 * fileio.c (check_executable):
|
|
|
3170 * fileio.c (Ffile_exists_p):
|
|
|
3171 * fileio.c (Ffile_writable_p):
|
|
|
3172 * fileio.c (Ffile_directory_p):
|
|
|
3173 * fileio.c (Ffile_regular_p):
|
|
|
3174 * fileio.c (Ffile_modes):
|
|
|
3175 * fileio.c (Ffile_newer_than_file_p):
|
|
|
3176 * fileio.c (Fverify_visited_file_modtime):
|
|
|
3177 * fileio.c (Fset_visited_file_modtime):
|
|
|
3178 * fileio.c (auto_save_1):
|
|
|
3179 (1). (2).
|
|
|
3180 fix up gcpro's.
|
|
446
|
3181
|
|
442
|
3182 * frame-msw.c:
|
|
|
3183 * frame-msw.c (mswindows_init_frame_1):
|
|
|
3184 * frame-msw.c (mswindows_enable_frame):
|
|
|
3185 * frame-msw.c (error_frame_unsizable):
|
|
|
3186 * frame-msw.c (msprinter_init_frame_1):
|
|
|
3187 * frame-msw.c (msprinter_init_frame_3):
|
|
|
3188 * frame-msw.c (console_type_create_frame_mswindows):
|
|
|
3189 (2).
|
|
|
3190 implement new enable/disable frame methods.
|
|
446
|
3191
|
|
442
|
3192 * frame-x.c:
|
|
|
3193 * frame-x.c (x_enable_frame):
|
|
|
3194 * frame-x.c (console_type_create_frame_x):
|
|
|
3195 implement new enable/disable frame methods.
|
|
446
|
3196
|
|
442
|
3197 * frame.c:
|
|
|
3198 * frame.c (Fdisable_frame):
|
|
|
3199 * frame.c (syms_of_frame):
|
|
|
3200 * frame.h (struct frame):
|
|
|
3201 implement new enable/disable frame methods/functions.
|
|
446
|
3202
|
|
442
|
3203 * general-slots.h:
|
|
|
3204 add initial-focus.
|
|
446
|
3205
|
|
442
|
3206 * glyphs-msw.c (mswindows_widget_instantiate):
|
|
|
3207 comment that initial-focus should be implemented.
|
|
446
|
3208
|
|
442
|
3209 * glyphs-widget.c:
|
|
|
3210 * glyphs-widget.c (check_valid_instantiator):
|
|
|
3211 * glyphs-widget.c (check_valid_orientation):
|
|
|
3212 * glyphs-widget.c (check_valid_tab_orientation):
|
|
|
3213 * glyphs-widget.c (check_valid_justification):
|
|
|
3214 * glyphs-widget.c (check_valid_border):
|
|
|
3215 * glyphs-widget.c (check_valid_callback):
|
|
|
3216 * glyphs-widget.c (check_valid_int_or_function):
|
|
|
3217 * glyphs-widget.c (check_valid_string_or_vector):
|
|
|
3218 * glyphs-widget.c (check_valid_item_list_1):
|
|
|
3219 * glyphs-widget.c (widget_validate):
|
|
|
3220 * glyphs-widget.c (combo_box_validate):
|
|
|
3221 * glyphs-widget.c (widget_instantiate):
|
|
|
3222 * glyphs-widget.c (syms_of_glyphs_widget):
|
|
|
3223 * glyphs-widget.c (VALID_WIDGET_KEYWORDS):
|
|
|
3224 * glyphs-widget.c (image_instantiator_combo_box):
|
|
|
3225 * glyphs-widget.c (image_instantiator_scrollbar):
|
|
|
3226 * glyphs-widget.c (image_instantiator_tab_control):
|
|
|
3227 * glyphs-widget.c (VALID_LAYOUT_KEYWORDS):
|
|
|
3228 (2).
|
|
|
3229 support (unimplemented) keyword initial-focus.
|
|
|
3230 reindent long macros.
|
|
446
|
3231
|
|
442
|
3232 * glyphs-x.c (x_redisplay_widget):
|
|
|
3233 * glyphs-x.c (x_button_instantiate):
|
|
|
3234 * glyphs-x.c (x_button_redisplay):
|
|
|
3235 * glyphs-x.c (x_progress_gauge_instantiate):
|
|
|
3236 * glyphs-x.c (x_edit_field_instantiate):
|
|
|
3237 * glyphs-x.c (x_combo_box_instantiate):
|
|
|
3238 * glyphs-x.c (x_tab_control_instantiate):
|
|
|
3239 * glyphs-x.c (x_label_instantiate):
|
|
|
3240 * gui-x.c:
|
|
|
3241 * gui-x.c (button_item_to_widget_value):
|
|
|
3242 * gui-x.c (gui_items_to_widget_values_1):
|
|
|
3243 * gui-x.c (gui_item_children_to_widget_values):
|
|
|
3244 * gui-x.c (gui_items_to_widget_values):
|
|
|
3245 * gui-x.h:
|
|
|
3246 * menubar-x.c (menu_item_descriptor_to_widget_value_1):
|
|
|
3247 add new flag to gui-parsing routines to indicate whether
|
|
|
3248 accelerator specs should be supported.
|
|
446
|
3249
|
|
442
|
3250 * glyphs.c (syms_of_glyphs): use DEFSYMBOL.
|
|
446
|
3251
|
|
442
|
3252 * glyphs.h (struct Lisp_Image_Instance):
|
|
|
3253 * glyphs.h (IMAGE_INSTANCE_WANTS_INITIAL_FOCUS):
|
|
|
3254 add initial-focus flag.
|
|
446
|
3255
|
|
442
|
3256 * gui.c:
|
|
|
3257 * gui.c (syms_of_gui):
|
|
|
3258 * gui.c (vars_of_gui):
|
|
|
3259 clean up menu-no-selection-hook.
|
|
446
|
3260
|
|
442
|
3261 * gui.h:
|
|
|
3262 support delete-dialog-box-hook.
|
|
446
|
3263
|
|
442
|
3264 * lread.c (Fload_internal):
|
|
|
3265 * lread.c (locate_file_in_directory_mapper):
|
|
|
3266 (1).
|
|
446
|
3267
|
|
442
|
3268 * lrecord.h:
|
|
|
3269 * lrecord.h (struct toolbar_button):
|
|
|
3270 * lrecord.h (syms_of_toolbar):
|
|
|
3271 document how to create a new object.
|
|
446
|
3272
|
|
442
|
3273 * menubar-msw.c (mswindows_char_is_accelerator):
|
|
|
3274 may be called on frames w/o menus.
|
|
|
3275
|
|
|
3276 * menubar.c (vars_of_menubar):
|
|
|
3277 clean up :filter docs.
|
|
446
|
3278
|
|
442
|
3279 * nt.c (readdir):
|
|
|
3280 * ntproc.c:
|
|
|
3281 (1).
|
|
446
|
3282
|
|
442
|
3283 * process-nt.c:
|
|
|
3284 * process-nt.c (validate_signal_number):
|
|
|
3285 * process-nt.c (signal_cannot_launch):
|
|
|
3286 * process-nt.c (nt_create_process):
|
|
|
3287 * process-nt.c (nt_send_process):
|
|
|
3288 * process-nt.c (nt_kill_child_process):
|
|
|
3289 * process-nt.c (nt_open_network_stream):
|
|
|
3290 * process-nt.c (syms_of_process_nt):
|
|
|
3291 (2).
|
|
|
3292 delete quote-handling. call new lisp code that does it better.
|
|
446
|
3293
|
|
442
|
3294 * process-unix.c (connect_to_file_descriptor):
|
|
|
3295 * process-unix.c (allocate_pty):
|
|
|
3296 * process-unix.c (unix_send_process):
|
|
|
3297 * process-unix.c (unix_kill_child_process):
|
|
|
3298 * process-unix.c (unix_open_network_stream):
|
|
|
3299 * process-unix.c (unix_open_multicast_group):
|
|
|
3300 (1). (2).
|
|
446
|
3301
|
|
442
|
3302 * process.c:
|
|
|
3303 * process.c (Fstart_process_internal):
|
|
|
3304 (2). need to canonicalize process path even if absolute.
|
|
446
|
3305
|
|
442
|
3306 * select-msw.c (symbol_to_ms_cf):
|
|
|
3307 * select-msw.c (ms_cf_to_symbol):
|
|
|
3308 * select-msw.c (cf_is_autofreed):
|
|
|
3309 * select-msw.c (mswindows_destroy_selection):
|
|
|
3310 * select.c:
|
|
|
3311 * select.c (syms_of_select):
|
|
|
3312 * select.h:
|
|
|
3313 support dibv5, fix bugs. (from Mike Alexander)
|
|
446
|
3314
|
|
442
|
3315 * select.c (Fget_selection_internal):
|
|
|
3316 * select.c (select_convert_out):
|
|
446
|
3317
|
|
442
|
3318 * sysdep.c:
|
|
|
3319 * sysdep.c (xemacs_stat):
|
|
|
3320 renamed.
|
|
446
|
3321
|
|
442
|
3322 * sysdep.c (mkdir):
|
|
|
3323 * sysdep.c (rmdir):
|
|
|
3324 but keep original stat() here because we provide encapsulation
|
|
|
3325 around these funs.
|
|
446
|
3326
|
|
442
|
3327 * sysfile.h:
|
|
|
3328 * sysfile.h (fstat):
|
|
|
3329 remove stat garbage.
|
|
446
|
3330
|
|
442
|
3331 * syswindows.h:
|
|
|
3332 fix X/MSW conflict.
|
|
|
3333 don't include tchar.h. it's inappropriate because it makes
|
|
|
3334 compile-time distinctions when we want runtime distinctions.
|
|
|
3335 (we provide our own tchar replacements)
|
|
446
|
3336
|
|
442
|
3337 * toolbar.c:
|
|
|
3338 use default object printer for toolbar-button.
|
|
446
|
3339
|
|
442
|
3340 * unexcw.c:
|
|
|
3341 make sure we don't encapsulate.
|
|
446
|
3342
|
|
442
|
3343 * window.c (vars_of_window):
|
|
|
3344 emphasize that temp-buffer-show-hook is obsolete.
|
|
|
3345
|
|
|
3346 2000-08-05 Martin Buchholz <martin@xemacs.org>
|
|
|
3347
|
|
|
3348 * glyphs.c (image_instance_hash): HASH2 wants EMACS_INT args.
|
|
|
3349 (Fimage_instance_subwindow_id): make_int wants EMACS_INT arg.
|
|
|
3350
|
|
446
|
3351 * events.c (Fevent_timestamp_lessp):
|
|
442
|
3352 Not 64-bit clean. Use EMACS_INT, not int.
|
|
|
3353
|
|
|
3354 2000-06-05 Andrew Begel <abegel@cs.berkeley.edu>
|
|
|
3355
|
|
|
3356 * lrecord.h (lrecord_types): Changed lrecord_type_count to an
|
|
|
3357 unsigned int and changed the last enum to
|
|
446
|
3358 lrecord_type_last_built_in_type.
|
|
442
|
3359 (lrecord_implementations_table): changed prototype to know how
|
|
446
|
3360 long the array is supposed to be.
|
|
442
|
3361 (lrecord_type_count): new unsigned int to keep track of the
|
|
|
3362 current number of lisp lrecord types.
|
|
|
3363 (DEFINE_EXTERNAL_LRECORD):
|
|
|
3364 (DECLARE_EXTERNAL_LRECORD): Added these two for external
|
|
|
3365 dynamic-modules to declare new lisp types. They are the same
|
|
|
3366 as the non-EXTERNAL forms, but declare an lrecord_type unsigned
|
|
|
3367 int for each new type, and increment lrecord_type_count by 1.
|
|
|
3368
|
|
|
3369 * alloc.c (lrecord_implementations_table): Changed to reference
|
|
|
3370 lrecord_type_last_built_in_type for the size of the array.
|
|
|
3371 Moved MODULE_DEFINABLE_TYPE_COUNT to lrecord.h.
|
|
|
3372
|
|
|
3373 2000-08-03 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
3374
|
|
|
3375 * glyphs.h (check_valid_item_list): Renamed from
|
|
|
3376 check_valid_item_list_1.
|
|
|
3377
|
|
|
3378 2000-08-01 Alastair J. Houghton <ajhoughton@lineone.net>
|
|
|
3379
|
|
|
3380 * select.c (Qselect_coerce): New.
|
|
|
3381 * select.c (Vselection_coercion_alist): New.
|
|
|
3382 * select.c (syms_of_select): Declare.
|
|
|
3383 * select.c (get-selection-internal): Use it.
|
|
|
3384 Use the new select-coerce functionality.
|
|
|
3385
|
|
|
3386 * select.c (select_coerce): New.
|
|
|
3387 * select.h (select_coerce): Declare.
|
|
|
3388 New function to coerce one type of data into another.
|
|
|
3389
|
|
|
3390 2000-08-03 Martin Buchholz <martin@xemacs.org>
|
|
|
3391
|
|
446
|
3392 * callproc.c (Fcall_process_internal):
|
|
|
3393 (Fcall_process_internal):
|
|
442
|
3394 * process-unix.c (unix_create_process):
|
|
|
3395 Save and restore the value of errno, so that error messages are accurate.
|
|
|
3396
|
|
|
3397 2000-08-01 Martin Buchholz <martin@xemacs.org>
|
|
|
3398
|
|
446
|
3399 * elhash.c (print_hash_table):
|
|
442
|
3400 Fix printing of hash tables to also use `key-and-value' instead of `t'.
|
|
|
3401 Prettify docstrings and indentation.
|
|
|
3402
|
|
|
3403 2000-07-31 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
3404
|
|
|
3405 * window.c (Fwindow_pixel_edges): Subtract frame border and
|
|
|
3406 gutter size.
|
|
|
3407
|
|
|
3408 2000-07-31 Andy Piper <andy@xemacs.org>
|
|
|
3409
|
|
|
3410 * buffer.c (Frecord_buffer): make absolutely sure that redisplay
|
|
|
3411 will acknowledge the change.
|
|
|
3412
|
|
|
3413 * glyphs.h: declare tab_control_order_only_changed.
|
|
|
3414
|
|
|
3415 * glyphs-x.c (x_tab_control_redisplay): use
|
|
|
3416 tab_control_order_only_changed.
|
|
|
3417
|
|
|
3418 * glyphs-widget.c (tab_control_order_only_changed): new function.
|
|
|
3419
|
|
|
3420 * glyphs-msw.c (mswindows_tab_control_redisplay): use
|
|
|
3421 tab_control_order_only_changed.
|
|
|
3422
|
|
|
3423 * gui.c (gui_item_equal_sans_selected): new function.
|
|
|
3424 (gui_item_equal): use it.
|
|
|
3425
|
|
|
3426 * glyphs-msw.c (mswindows_combo_box_instantiate): deprecate
|
|
|
3427 :properties in favor of :items..
|
|
|
3428
|
|
|
3429 * glyphs-widget.c (check_valid_item_list): rename from
|
|
|
3430 check_valid_item_list_1.
|
|
|
3431 (check_valid_item_list_1): renamed.
|
|
|
3432 (combo_box_validate): deprecate :properties in favor of :items.
|
|
|
3433 (widget_instantiate): ditto.
|
|
|
3434 (tab_control_update): ditto.
|
|
|
3435 (image_instantiator_combo_box): ditto.
|
|
|
3436 (image_instantiator_tree_view): ditto.
|
|
|
3437 (image_instantiator_tab_control): ditto.
|
|
|
3438 (layout_post_instantiate): remove dead code.
|
|
|
3439
|
|
|
3440 * print.c (debug_print_no_newline): only write to debugger if in
|
|
|
3441 WIN32_NATIVE.
|
|
|
3442
|
|
|
3443 * elhash.c (Fmake_hash_table): update doc string.
|
|
|
3444
|
|
|
3445 * event-msw.c (mswindows_wnd_proc): don't allow processing of
|
|
|
3446 messages whilst in GC. This at least stops XEmacs crashing but has
|
|
|
3447 the potential for wierd behaviour.
|
|
|
3448
|
|
|
3449 2000-07-31 Martin Buchholz <martin@xemacs.org>
|
|
|
3450
|
|
|
3451 * config.h.in:
|
|
|
3452 Make existence of s&m files optional.
|
|
446
|
3453
|
|
442
|
3454 * s/bsd386.h: Remove HAVE_GETLOADAVG.
|
|
|
3455 * s/freebsd.h: Remove HAVE_GETLOADAVG.
|
|
|
3456 * s/gnu.h: Remove HAVE_GETLOADAVG.
|
|
|
3457 * s/netbsd.h: Remove HAVE_GETLOADAVG.
|
|
|
3458 * s/sol2.h: Remove HAVE_GETLOADAVG.
|
|
|
3459 * lisp.h: Remove getloadavg() declaration.
|
|
|
3460 * fns.c:
|
|
|
3461 Include <sys/loadavg.h> if available.
|
|
|
3462 Don't declare our own getloadavg() if HAVE_GETLOADAVG.
|
|
|
3463 * config.h.in: Group together getloadavg()-related macros.
|
|
|
3464 Use only configure-time tests to detect getloadavg().
|
|
|
3465
|
|
|
3466 2000-07-30 Martin Buchholz <martin@xemacs.org>
|
|
|
3467
|
|
|
3468 * Makefile.in.in (TransientEmacsShell.o): Fix race condition.
|
|
|
3469
|
|
|
3470 2000-07-25 Andy Piper <andy@xemacs.org>
|
|
|
3471
|
|
|
3472 * syswindows.h: add tchar.h for native builds.
|
|
|
3473
|
|
|
3474 * frame.c (syms_of_frame): remove set-glyph-image.
|
|
|
3475
|
|
|
3476 * general-slots.h: add Qset_glyph_image.
|
|
|
3477
|
|
|
3478 * glyphs-widget.c (layout_update): add domain arg to
|
|
|
3479 set-glyph-image.
|
|
|
3480 (syms_of_glyphs_widget): remove set-glyph-image.
|
|
|
3481
|
|
|
3482 2000-07-23 Ben Wing <ben@xemacs.org>
|
|
|
3483
|
|
|
3484 * dialog-msw.c (vars_of_dialog_mswindows): need to staticpro
|
|
|
3485 Vpopup_frame_list.
|
|
|
3486
|
|
|
3487 2000-07-22 Andy Piper <andy@xemacs.org>
|
|
|
3488
|
|
|
3489 * symsinit.h: add syms_of_win32().
|
|
|
3490
|
|
|
3491 * gui-msw.c (syms_of_gui_mswindows): remove
|
|
|
3492 Fmswindows_shell_execute.
|
|
|
3493 (Fmswindows_shell_execute): moved to win32.c.
|
|
|
3494
|
|
|
3495 * emacs.c (main_1): add syms_of_win32 ().
|
|
|
3496
|
|
|
3497 * win32.c (init_potentially_nonexistent_functions): rewrite in
|
|
|
3498 compiler-friendly terms.
|
|
|
3499 (Fmswindows_shell_execute): move here from gui-msw.c.
|
|
|
3500 (syms_of_win32): new.
|
|
|
3501
|
|
|
3502 * device-msw.c (Fmswindows_printer_list): clean up args to
|
|
|
3503 EnumPrinters.
|
|
|
3504 Don't include tchar under cygwin or mingw.
|
|
|
3505 (msprinter_default_printer): make cygwin-friendly.
|
|
|
3506
|
|
|
3507 2000-07-21 Andy Piper <andy@xemacs.org>
|
|
|
3508
|
|
|
3509 * glyphs-widget.c (image_instantiator_tree_view): use tab
|
|
|
3510 control's update function.
|
|
|
3511 (layout_property): new function. Retrieve items.
|
|
|
3512
|
|
|
3513 * glyphs-msw.c (mswindows_tree_view_redisplay): new
|
|
|
3514 function. Re-populate the tree view from the pending items.
|
|
|
3515
|
|
|
3516 * glyphs.c (instantiate_image_instantiator): Make sure the domain
|
|
|
3517 is designated the parent if the domain is an image instance. This
|
|
|
3518 is needed so that dirtiness can be cascade up the hierarchy and
|
|
|
3519 thus for layout children to be redisplayed correctly.
|
|
|
3520 (allocate_image_instance): rename glyph -> parent.
|
|
|
3521
|
|
|
3522 * redisplay.h: change redisplay_output_layout signature.
|
|
|
3523
|
|
|
3524 * redisplay-msw.c (mswindows_output_display_block): use domain
|
|
|
3525 arg.
|
|
|
3526
|
|
|
3527 * redisplay-x.c (x_output_display_block): use domain arg.
|
|
|
3528
|
|
|
3529 2000-07-10 Andy Piper <andy@xemacs.org>
|
|
|
3530
|
|
|
3531 * window.c (Fset_window_configuration): add comment.
|
|
|
3532
|
|
446
|
3533 * redisplay-output.c (compare_runes):
|
|
442
|
3534 (redisplay_output_subwindow): redisplay rather than update subwindow.
|
|
|
3535 (redisplay_output_layout): ditto.
|
|
|
3536
|
|
|
3537 * redisplay-msw.c (mswindows_frame_output_end):
|
|
|
3538 (mswindows_frame_output_end): make defer window pos optional.
|
|
|
3539
|
|
|
3540 * lisp.h: add Flast.
|
|
|
3541
|
|
|
3542 * glyphs.h (struct image_instantiator_methods): add dest_mask top
|
|
|
3543 normalize method. Change update method to be for changed
|
|
|
3544 instantiators. Add redisplay method. Change signature of layout
|
|
|
3545 method.
|
|
|
3546 (struct Lisp_Image_Instance): add instantiator.
|
|
|
3547 (IMAGE_INSTANCE_INSTANTIATOR): new.
|
|
|
3548 (IMAGE_INSTANCE_SUBWINDOW_FACE): new.
|
|
|
3549 (XIMAGE_INSTANCE_INSTANTIATOR): new.
|
|
|
3550 (XIMAGE_INSTANCE_SUBWINDOW_FACE): new.
|
|
|
3551
|
|
|
3552 * glyphs.c:
|
|
|
3553 (find_instantiator_differences): new function.
|
|
|
3554 (Fset_instantiator_property): new convenience function.
|
|
|
3555 (check_image_instance_structure): strictly check for vector
|
|
|
3556 instantiators.
|
|
|
3557 (normalize_image_instantiator): make non-static.
|
|
|
3558 (instantiate_image_instantiator): pass on dest_mask and use new
|
|
|
3559 signatures for image_instance_layout and friends.
|
|
|
3560 (mark_image_instance): mark the instantiator. Mark the subwindow
|
|
|
3561 face not the widget face.
|
|
|
3562 (image_instance_equal): add instantiator.
|
|
|
3563 (image_instance_hash): ditto.
|
|
|
3564 (allocate_image_instance): ditto.
|
|
|
3565 (Fset_image_instance_property): removed.
|
|
|
3566 (Fimage_instance_file_name): ditto.
|
|
|
3567 (Fcolorize_image_instance): ditto.
|
|
|
3568 (image_instance_layout): add offsets to be set.
|
|
|
3569 (update_image_instance): new function. update an image instance
|
|
|
3570 from its changed instantiator.
|
|
|
3571 (inherit_normalize): add dest_mask.
|
|
|
3572 (xbm_normalize): ditto.
|
|
|
3573 (xface_normalize): ditto.
|
|
|
3574 (xpm_normalize): ditto.
|
|
|
3575 (text_update): set_property -> update.
|
|
|
3576 (image_instantiate): use the glyph identity as a hash key, not the
|
|
|
3577 instantiator.
|
|
|
3578 (glyph_width): use new image_instance_layout signature.
|
|
|
3579 (glyph_ascent): ditto.
|
|
|
3580 (glyph_descent): ditto.
|
|
|
3581 (glyph_height): ditto.
|
|
|
3582 (glyph_query_geometry): ressurrect.
|
|
|
3583 (glyph_layout): ditto.
|
|
|
3584 (redisplay_subwindow): update -> redisplay.
|
|
|
3585 (syms_of_glyphs): add Fset_instantiator_property.
|
|
|
3586 (image_instantiator_format_create): set_property -> update.
|
|
|
3587
|
|
|
3588 * glyphs-x.c:
|
|
|
3589 (autodetect_normalize): add dest_maks to signature.
|
|
|
3590 (x_redisplay_subwindow): update -> redisplay.
|
|
|
3591 (x_redisplay_widget): ditto.
|
|
|
3592 (x_button_redisplay): ditto.
|
|
|
3593 (x_progress_gauge_redisplay): ditto.
|
|
|
3594 (x_tab_control_redisplay): ditto. Rewrite to cope with changed
|
|
|
3595 stacking order.
|
|
|
3596 (console_type_create_glyphs_x): update -> redisplay.
|
|
|
3597 (image_instantiator_format_create_glyphs_x): ditto.
|
|
|
3598
|
|
|
3599 * glyphs-widget.c:
|
|
|
3600 (check_valid_instantiator): disallow glyphs in the instantiator,
|
|
|
3601 they must now be vectors.
|
|
|
3602 (check_valid_instantiator_list): ditto.
|
|
|
3603 (glyph_instantiator_to_glyph): use internal symbol rather than
|
|
|
3604 intern.
|
|
|
3605 (widget_update): renamed from widget_set_property. Call cascaded
|
|
|
3606 update methods.
|
|
|
3607 (redisplay_widget): renamed from update_widget.
|
|
|
3608 (widget_layout): image_instance_layout now takes position as well
|
|
|
3609 as size.
|
|
|
3610 (widget_normalize): ditto.
|
|
|
3611 (widget_instantiate): ditto.
|
|
|
3612 (tab_control_query_geometry) ditto.:
|
|
|
3613 (tab_control_update): renamed from tab_control_set_property.
|
|
|
3614 (progress_gauge_update): set_property -> update.
|
|
|
3615 (layout_normalize): rewrite so that child instantiators are
|
|
|
3616 normalized also.
|
|
|
3617 (layout_update): new function. Create glyphs from the normalized
|
|
|
3618 children and cope with any other layout keywords. We do not
|
|
|
3619 instantiate children here that will be take care of by
|
|
|
3620 redisplay_output_layout.
|
|
|
3621 (layout_instantiate): call layout_update and not much else.
|
|
|
3622 (layout_post_instantiate): not sure whether this is needed
|
|
|
3623 anymore.
|
|
|
3624 (layout_query_geometry): query glyph geometry rather than
|
|
|
3625 image_instance geometry.
|
|
|
3626 (layout_layout): set offsets from pass in parameters. Use glyph
|
|
|
3627 geometry and layout functions rather than image instance ones.
|
|
|
3628 (native_layout_layout): ditto.
|
|
|
3629 (syms_of_glyphs_widget): add make-glyph and set-glyph-image.
|
|
|
3630 (image_instantiator_widget): set_property -> update.
|
|
|
3631 (image_instantiator_buttons): ditto.
|
|
|
3632 (image_instantiator_progress_guage): ditto.
|
|
|
3633 (image_instantiator_tab_control): ditto.
|
|
|
3634 (VALID_LAYOUT_KEYWORDS): instantiators must now be vectors.
|
|
|
3635 (image_instantiator_layout): add update method.
|
|
|
3636
|
|
|
3637 * glyphs-msw.c (bmp_normalize):
|
|
|
3638 (mswindows_resource_normalize): add dest_mask so that it can be
|
|
|
3639 proprogated by layout_normalize.
|
|
|
3640 (begin_defer_window_pos): make optional because it may not be the
|
|
|
3641 right thing to do and it introduces differences with X.
|
|
|
3642 (mswindows_unmap_subwindow): ditto.
|
|
|
3643 (mswindows_map_subwindow): ditto.
|
|
|
3644 (mswindows_redisplay_subwindow): renamed from
|
|
|
3645 mswindows_update_subwindow.
|
|
|
3646 (mswindows_redisplay_widget): ditto.
|
|
|
3647 (mswindows_button_redisplay): renamed from
|
|
|
3648 mswindows_button_update. Update is now what the instantiation
|
|
|
3649 function does for a changed instantiator.
|
|
|
3650 (mswindows_progress_gauge_instantiate): set the progress value
|
|
|
3651 here if appropriate.
|
|
|
3652 (mswindows_tab_control_redisplay): cope with re-ordering of the
|
|
|
3653 members of the tab widget by simply selecting the new top
|
|
|
3654 widget. This makes things appear ok if you click on a tab.
|
|
|
3655 (mswindows_combo_box_instantiate): image_instance_layout now takes
|
|
|
3656 position as well as size.
|
|
|
3657 (mswindows_progress_gauge_redisplay): renamed from
|
|
|
3658 mswindows_progress_gauge_update.
|
|
|
3659 (console_type_create_glyphs_mswindows): fix update -> redisplay.
|
|
|
3660 (image_instantiator_format_create_glyphs_mswindows): ditto.
|
|
|
3661
|
|
|
3662 * glyphs-eimage.c (jpeg_normalize):
|
|
|
3663 (gif_normalize):
|
|
|
3664 (png_normalize):
|
|
|
3665 (tiff_normalize): add dest_mask so that it can be proprogated by
|
|
|
3666 layout_normalize.
|
|
|
3667
|
|
|
3668 * elhash.c:
|
|
|
3669 (print_hash_table):
|
|
|
3670 (hash_table_weakness_validate):
|
|
|
3671 (decode_hash_table_weakness):
|
|
|
3672 (Fhash_table_weakness):
|
|
|
3673 (Fhash_table_type):
|
|
|
3674 (syms_of_elhash): use Ben's naming scheme for hashtable types..
|
|
|
3675
|
|
|
3676 * console.h (struct console_methods): move update_* to
|
|
|
3677 redisplay_*.
|
|
|
3678
|
|
|
3679 2000-07-20 Ben Wing <ben@xemacs.org>
|
|
|
3680
|
|
|
3681 * *.[ch] (XSETOBJ): remove unused middle argument.
|
|
|
3682 lisp-disunion.h: correct wrap_object() to one argument.
|
|
446
|
3683
|
|
442
|
3684 2000-07-15 Ben Wing <ben@xemacs.org>
|
|
|
3685
|
|
|
3686 * s/cygwin32.h:
|
|
|
3687 * s/cygwin32.h (CYGWIN_CONV_PATH):
|
|
|
3688 Add missing logb prototype for v1.1.
|
|
|
3689 Use post-b20 names and alias to pre-b20 names when pre-b20.
|
|
|
3690
|
|
|
3691 * s/windowsnt.h: [5].
|
|
|
3692
|
|
|
3693 2000-07-15 Ben Wing <ben@xemacs.org>
|
|
|
3694
|
|
|
3695 * Makefile.in.in (x_objs):
|
|
|
3696 * Makefile.in.in (sheap_objs):
|
|
|
3697 * Makefile.in.in (objs):
|
|
|
3698 added win32.o, cosmetic cleanups.
|
|
446
|
3699
|
|
442
|
3700 * alloc.c (Fmake_byte_code):
|
|
|
3701 [[[1]]]: Changes for new LIST_LOOP, EXTERNAL_LIST_LOOP,
|
|
|
3702 etc. macros which declare their own args now.
|
|
|
3703
|
|
|
3704 * alloc.c (syms_of_alloc):
|
|
|
3705 [[[2]]]: Use DEFSYMBOL, DEFKEYWORD, DEFERROR and friends.
|
|
|
3706
|
|
|
3707 * buffer.c:
|
|
|
3708 Moved buffer-dedicated-frame, set-buffer-dedicated-frame into lisp.
|
|
|
3709
|
|
|
3710 * buffer.c (Fget_file_buffer):
|
|
|
3711 Fixed GCPRO problem.
|
|
|
3712
|
|
|
3713 * buffer.c (get_truename_buffer):
|
|
|
3714 Fixed comment about GC checking.
|
|
|
3715
|
|
|
3716 * buffer.c (syms_of_buffer):
|
|
|
3717 Undeclared those dedicated frame funs.
|
|
|
3718 [2].
|
|
|
3719
|
|
|
3720 * buffer.h:
|
|
|
3721 Define convenience macros for internal/external conversions.
|
|
|
3722 [[[3]]]: Define codesys aliases Qcommand_argument_encoding
|
|
|
3723 and Qenvironment_variable_encoding for cleaner code.
|
|
|
3724
|
|
|
3725 * bufslots.h:
|
|
|
3726 Remove dedicated-frame; in lisp.
|
|
|
3727
|
|
|
3728 * bytecode.c (funcall_compiled_function):
|
|
|
3729 [1].
|
|
|
3730
|
|
|
3731 * bytecode.c (syms_of_bytecode):
|
|
|
3732 [2].
|
|
|
3733
|
|
|
3734 * console-msw.c:
|
|
|
3735 * console-msw.c (mswindows_show_console): Rewrote.
|
|
|
3736
|
|
|
3737 * console-msw.c (Fmswindows_debugging_output): New.
|
|
|
3738 Sends to OutputDebugString (special MSWin debugger interface).
|
|
|
3739
|
|
|
3740 * console-msw.c (Fmswindows_message_box):
|
|
|
3741 Fixed stupid bugs so it works when called from kill-emacs.
|
|
|
3742
|
|
|
3743 * console-msw.c (syms_of_console_mswindows):
|
|
|
3744 Declare Fmswindows_debugging_output.
|
|
|
3745
|
|
|
3746 * console-msw.h:
|
|
|
3747 New MSWin prototypes.
|
|
|
3748
|
|
|
3749 * console-msw.h (struct mswindows_frame):
|
|
|
3750 New entry last-click-mods for improved button-modifier support.
|
|
|
3751
|
|
|
3752 * console-msw.h (FRAME_MSWINDOWS_POPUP):
|
|
|
3753 New struct entry `popup' with corresponding accessor.
|
|
|
3754
|
|
|
3755 * console-x.c:
|
|
|
3756 * console-x.c (split_up_display_spec):
|
|
|
3757 * console-x.c (get_display_arg_connection):
|
|
|
3758 * console-x.c (x_semi_canonicalize_console_connection):
|
|
|
3759 * console-x.c (x_canonicalize_device_connection):
|
|
|
3760 [[[6]]]: Change char to more specific type.
|
|
|
3761 [[[8]]]: Make use of abstracting codesys aliases defined in [3], [4];
|
|
|
3762
|
|
|
3763 * console-x.c (x_semi_canonicalize_console_connection):
|
|
|
3764 * console-x.c (x_canonicalize_device_connection):
|
|
|
3765 [[[9]]]: Fix up error signalling to use new structured error system.
|
|
|
3766
|
|
|
3767 * console-x.h:
|
|
|
3768 [[[4]]]: Define codesys aliases:
|
|
|
3769 Qlwlib_encoding, Qx_atom_name_encoding, Qx_font_name_encoding,
|
|
|
3770 Qx_color_name_encoding, Qx_display_name_encoding.
|
|
|
3771
|
|
|
3772 * console.h (struct console_methods):
|
|
|
3773 New method make_dialog_box_internal supersedes older
|
|
|
3774 popup_dialog_box method.
|
|
|
3775
|
|
|
3776 * data.c:
|
|
|
3777 Define many new errors, part of new structured errors.
|
|
|
3778
|
|
|
3779 * data.c (init_errors_once_early):
|
|
|
3780 * data.c (syms_of_data):
|
|
|
3781 [2].
|
|
|
3782
|
|
|
3783 * device-msw.c (mswindows_init_device):
|
|
|
3784 [[[5]]]: Cleanup to support NT 3.51.
|
|
|
3785
|
|
|
3786 * device-msw.c (decode_devmode): Cleanup.
|
|
|
3787
|
|
|
3788 * device-msw.c (mswindows_handle_print_setup_dialog_box):
|
|
|
3789 * device-msw.c (mswindows_handle_print_dialog_box):
|
|
|
3790 * device-msw.c (mswindows_handle_page_setup_dialog_box):
|
|
|
3791 * device-msw.c (syms_of_device_mswindows):
|
|
|
3792 Delete the dialog box primitives recently introduced by Kirill and
|
|
|
3793 instead interface to general dialog box interface.
|
|
|
3794
|
|
|
3795 * device-x.c:
|
|
|
3796 * device-x.c (compute_x_app_name):
|
|
|
3797 * device-x.c (x_init_device):
|
|
|
3798 * device-x.c (Fx_valid_keysym_name_p):
|
|
|
3799 * device-x.c (Fx_set_font_path):
|
|
|
3800 [6].
|
|
|
3801 [7].
|
|
|
3802
|
|
|
3803 * device.h (wrap_device): New.
|
|
|
3804 First of its kind; meant to replace XSETDEVICE.
|
|
|
3805
|
|
|
3806 * dialog-msw.c: Many file-dialog symbols.
|
|
|
3807
|
|
|
3808 * dialog-msw.c (mswindows_register_popup_frame): New.
|
|
|
3809 * dialog-msw.c (mswindows_is_dialog_msg): New.
|
|
|
3810 For supporting kbd traversal in dialog boxes.
|
|
|
3811
|
|
|
3812 * dialog-msw.c (dialog_proc):
|
|
|
3813 Support hitting ESC in dialogs.
|
|
|
3814
|
|
|
3815 * dialog-msw.c (struct):
|
|
|
3816 Common dialog box errors.
|
|
|
3817
|
|
|
3818 * dialog-msw.c (handle_file_dialog_box): New.
|
|
|
3819 Add file dialog code.
|
|
|
3820
|
|
|
3821 * dialog-msw.c (handle_question_dialog_box):
|
|
|
3822 Redo existing code to support new question dialog syntax.
|
|
|
3823
|
|
|
3824 * dialog-msw.c (console_type_create_dialog_mswindows):
|
|
|
3825 We support new dialog console method.
|
|
|
3826
|
|
|
3827 * dialog-msw.c (syms_of_dialog_mswindows):
|
|
|
3828 * dialog-msw.c (vars_of_dialog_mswindows):
|
|
|
3829 New file dialog symbols, vars.
|
|
|
3830
|
|
|
3831 * dialog-x.c:
|
|
|
3832 * dialog-x.c (maybe_run_dbox_text_callback):
|
|
|
3833 * dialog-x.c (dbox_descriptor_to_widget_value):
|
|
|
3834 * dialog-x.c (x_make_dialog_box_internal):
|
|
|
3835 * dialog-x.c (console_type_create_dialog_x):
|
|
|
3836 Mule-ize entire file.
|
|
|
3837 Redo to support question dialog syntax.
|
|
|
3838 [6].
|
|
|
3839
|
|
|
3840 * dialog.c:
|
|
|
3841 * dialog.c (Fmake_dialog_box_internal):
|
|
|
3842 * dialog.c (syms_of_dialog):
|
|
|
3843 Kill old popup-dialog-box, replace with new primitive.
|
|
|
3844 Just call device method or signal error.
|
|
|
3845
|
|
|
3846 * eldap.c (Fldap_open):
|
|
|
3847 * eldap.c (Fldap_search_basic):
|
|
|
3848 * eldap.c (Fldap_add):
|
|
|
3849 * eldap.c (Fldap_modify):
|
|
|
3850 [1].
|
|
|
3851 [7].
|
|
|
3852
|
|
|
3853 * emacs.c:
|
|
|
3854 * emacs.c (make_arg_list_1):
|
|
|
3855 * emacs.c (make_arg_list):
|
|
|
3856 Mule-ize call to dll_init().
|
|
|
3857 [6].
|
|
|
3858 [8].
|
|
|
3859
|
|
|
3860 * emacs.c (make_argc_argv):
|
|
|
3861 * emacs.c (free_argc_argv):
|
|
|
3862 * emacs.c (init_cmdargs):
|
|
|
3863 * emacs.c (main_1):
|
|
|
3864 * emacs.c (Fkill_emacs):
|
|
|
3865 * emacs.c (Fdump_emacs):
|
|
|
3866 Update comments about what can be used in syms_* etc.
|
|
|
3867 Call init_win32() when necessary.
|
|
|
3868 Fix up MS Win dialog box in kill-buffer to actually work right.
|
|
|
3869 [7].
|
|
|
3870
|
|
|
3871 * eval.c:
|
|
|
3872 * eval.c (For):
|
|
|
3873 * eval.c (Fand):
|
|
|
3874 * eval.c (Fprogn):
|
|
|
3875 * eval.c (Fprog1):
|
|
|
3876 * eval.c (Fprog2):
|
|
|
3877 * eval.c (FletX):
|
|
|
3878 * eval.c (Flet):
|
|
|
3879 * eval.c (condition_case_3):
|
|
|
3880 * eval.c (Feval):
|
|
|
3881 * eval.c (function_argcount):
|
|
|
3882 * eval.c (funcall_lambda):
|
|
|
3883 [1].
|
|
|
3884
|
|
|
3885 * eval.c (type_error): New.
|
|
|
3886 * eval.c (maybe_type_error): New.
|
|
|
3887 * eval.c (continuable_type_error): New.
|
|
|
3888 * eval.c (maybe_continuable_type_error): New.
|
|
|
3889 * eval.c (type_error_with_frob): New.
|
|
|
3890 * eval.c (maybe_type_error_with_frob): New.
|
|
|
3891 * eval.c (continuable_type_error_with_frob): New.
|
|
|
3892 * eval.c (maybe_continuable_type_error_with_frob): New.
|
|
|
3893 New functions for use with structured errors.
|
|
|
3894
|
|
|
3895 * event-Xt.c:
|
|
|
3896 * event-Xt.c (x_event_to_emacs_event):
|
|
|
3897 Buttons are now modifiers too.
|
|
|
3898
|
|
|
3899 * event-Xt.c (emacs_Xt_current_event_timestamp):
|
|
|
3900 Implement new event method.
|
|
|
3901 * event-Xt.c (reinit_vars_of_event_Xt): Set it.
|
|
|
3902
|
|
|
3903 * event-msw.c:
|
|
|
3904 * event-msw.c (ntpipe_shove_writer): [5].
|
|
|
3905 * event-msw.c (mswindows_enqueue_mouse_button_event):
|
|
|
3906 * event-msw.c (mswindows_drain_windows_queue):
|
|
|
3907 * event-msw.c (mswindows_wnd_proc): [7].
|
|
|
3908 * event-msw.c (mswindows_current_layout_has_AltGr): [5].
|
|
|
3909 * event-msw.c (mswindows_modifier_state):
|
|
|
3910 Throughout: support new button modifiers.
|
|
|
3911
|
|
|
3912 * event-msw.c (emacs_mswindows_current_event_timestamp):
|
|
|
3913 Implement new event method.
|
|
|
3914 * event-msw.c (reinit_vars_of_event_mswindows): Set it.
|
|
|
3915
|
|
|
3916 * event-stream.c:
|
|
|
3917 * event-stream.c (event_stream_current_event_timestamp): New.
|
|
|
3918 * event-stream.c (maybe_kbd_translate): New functionality.
|
|
|
3919 * event-stream.c (vars_of_event_stream):
|
|
|
3920 Document new kbd-translate-table functionality.
|
|
|
3921
|
|
|
3922 * event-stream.c (Fcurrent_event_timestamp): New.
|
|
|
3923 New primitive for use in fabricated events.
|
|
|
3924 * event-stream.c (syms_of_event_stream): [2]. Declare new primitive.
|
|
|
3925
|
|
|
3926 * events-mod.h (XEMACS_MOD_BUTTON1): new button modifiers.
|
|
|
3927
|
|
|
3928 * events.c:
|
|
|
3929 * events.c (Fmake_event):
|
|
|
3930 * events.c (WRONG_EVENT_TYPE_FOR_PROPERTY):
|
|
|
3931 [1].
|
|
|
3932 [9].
|
|
|
3933
|
|
|
3934 * events.c (format_event_object): fix gcc warnings.
|
|
|
3935
|
|
|
3936 * events.c (Fevent_timestamp): Document new primitives.
|
|
|
3937
|
|
|
3938 * events.c (TIMESTAMP_HALFSPACE): New.
|
|
|
3939
|
|
|
3940 * events.c (Fevent_timestamp_lessp): New. New primitive for
|
|
|
3941 comparing timestamps correctly (half-space algorithm).
|
|
|
3942
|
|
|
3943 * events.c (Fevent_modifier_bits): Doc fix.
|
|
|
3944
|
|
|
3945 * events.c (Fevent_modifiers): Major doc addition.
|
|
|
3946 * events.c (event_x_y_pixel_internal): Typo fix.
|
|
|
3947 * events.c (syms_of_events): Declare new primitives.
|
|
|
3948
|
|
|
3949 * events.h:
|
|
|
3950 Update long comment for button modifiers, timestamps.
|
|
|
3951
|
|
|
3952 * events.h (struct event_stream):
|
|
|
3953 New current_event_timestamp method.
|
|
|
3954
|
|
|
3955 * extents.c:
|
|
|
3956 * extents.c (extent_in_region_p):
|
|
|
3957 * extents.c (decode_extent):
|
|
|
3958 * extents.c (Fset_extent_parent):
|
|
|
3959 * extents.c (decode_map_extents_flags):
|
|
|
3960 Fix gcc warnings.
|
|
|
3961 [9].
|
|
|
3962
|
|
|
3963 * extents.c (struct extent_at_arg):
|
|
|
3964 * extents.c (decode_extent_at_flag):
|
|
|
3965 * extents.c (extent_at_mapper):
|
|
|
3966 * extents.c (extent_at_bytind):
|
|
|
3967 * extents.c (Fextent_at): Adapt to new lower-level interface. [9].
|
|
|
3968 * extents.c (Fextents_at): New primitive. [9].
|
|
|
3969 * extents.c (symbol_to_glyph_layout): [9].
|
|
|
3970 Support new primitive `extents-at'.
|
|
|
3971
|
|
|
3972
|
|
|
3973 * extents.c (get_text_property_bytind):
|
|
|
3974 extent_at_bytind has another arg.
|
|
|
3975 [9].
|
|
|
3976
|
|
|
3977 * extents.c (syms_of_extents): New primitive.
|
|
|
3978
|
|
|
3979 * file-coding.c (Fmake_coding_system): [1].
|
|
|
3980 * file-coding.c (subsidiary_coding_system): fix gcc warning
|
|
|
3981 * file-coding.c (syms_of_file_coding): [2].
|
|
|
3982
|
|
|
3983 * fileio.c (Fexpand_file_name):
|
|
|
3984 * fileio.c (Fsysnetunam):
|
|
|
3985 * fileio.c (Ffile_exists_p):
|
|
|
3986 * fileio.c (Ffile_executable_p):
|
|
|
3987 * fileio.c (Fverify_visited_file_modtime):
|
|
|
3988 Clean up GCPROing.
|
|
|
3989
|
|
|
3990 * fileio.c (syms_of_fileio): [2].
|
|
|
3991
|
|
|
3992 * filelock.c (lock_file_1):
|
|
|
3993 * filelock.c (current_lock_owner):
|
|
|
3994 * filelock.c (lock_if_free):
|
|
|
3995 * filelock.c (lock_file):
|
|
|
3996 * filelock.c (unlock_file):
|
|
|
3997 Clean up GCPROing.
|
|
|
3998
|
|
|
3999 * fns.c (concat): Fix gcc warning.
|
|
|
4000
|
|
|
4001 * fns.c (Fmember):
|
|
|
4002 * fns.c (Fold_member):
|
|
|
4003 * fns.c (Fmemq):
|
|
|
4004 * fns.c (Fold_memq):
|
|
|
4005 * fns.c (memq_no_quit):
|
|
|
4006 * fns.c (Fassoc):
|
|
|
4007 * fns.c (Fold_assoc):
|
|
|
4008 * fns.c (Fassq):
|
|
|
4009 * fns.c (Fold_assq):
|
|
|
4010 * fns.c (assq_no_quit):
|
|
|
4011 * fns.c (Frassoc):
|
|
|
4012 * fns.c (Fold_rassoc):
|
|
|
4013 * fns.c (Frassq):
|
|
|
4014 * fns.c (Fold_rassq):
|
|
|
4015 * fns.c (rassq_no_quit):
|
|
|
4016 * fns.c (Fdelete):
|
|
|
4017 * fns.c (Fold_delete):
|
|
|
4018 * fns.c (Fdelq):
|
|
|
4019 * fns.c (Fold_delq):
|
|
|
4020 * fns.c (delq_no_quit):
|
|
|
4021 * fns.c (Fremassoc):
|
|
|
4022 * fns.c (Fremassq):
|
|
|
4023 * fns.c (remassq_no_quit):
|
|
|
4024 * fns.c (Fremrassoc):
|
|
|
4025 * fns.c (Fremrassq):
|
|
|
4026 * fns.c (remrassq_no_quit):
|
|
|
4027 * fns.c (Freverse):
|
|
|
4028 * fns.c (mapcar1):
|
|
|
4029 [1].
|
|
|
4030
|
|
|
4031 * frame-msw.c (mswindows_init_frame_1):
|
|
|
4032 * frame-msw.c (mswindows_delete_frame):
|
|
|
4033 Register popups with dialog code so keyboard traversing works.
|
|
|
4034
|
|
|
4035 * frame-tty.c (tty_raise_frame_no_select): [1].
|
|
|
4036
|
|
|
4037 * frame-x.c:
|
|
|
4038 * frame-x.c (x_set_frame_text_value):
|
|
|
4039 * frame-x.c (x_set_frame_properties):
|
|
|
4040 * frame-x.c (x_create_widgets):
|
|
|
4041 [7].
|
|
|
4042
|
|
|
4043 * frame.c:
|
|
|
4044 * frame.c (Fmouse_pixel_position): Minor doc fixes.
|
|
|
4045
|
|
|
4046 * frame.h (wrap_frame): New.
|
|
|
4047 Macro like wrap_device.
|
|
|
4048
|
|
|
4049 * general.c:
|
|
|
4050 * general.c (SYMBOL):
|
|
|
4051 * general.c (syms_of_general):
|
|
|
4052 Major reorg. This is now just a wrapper and symbols themselves
|
|
|
4053 are listed in general-slots.h.
|
|
|
4054
|
|
|
4055 * glyphs-eimage.c (tiff_instantiate): Need cast to fix warning.
|
|
|
4056 * glyphs-msw.c (mswindows_resource_instantiate): [5].
|
|
|
4057
|
|
|
4058 * glyphs-msw.c (mswindows_native_layout_instantiate):
|
|
|
4059 Add DS_CONTROL so keyboard traversal will work.
|
|
|
4060
|
|
|
4061 * glyphs-widget.c:
|
|
|
4062 * glyphs-widget.c (syms_of_glyphs_widget):
|
|
|
4063 Move some symbols to general-slots.h.
|
|
|
4064
|
|
|
4065 * glyphs-x.c:
|
|
|
4066 * glyphs-x.c (xbm_instantiate_1):
|
|
|
4067 * glyphs-x.c (x_xbm_instantiate):
|
|
|
4068 * glyphs-x.c (x_xface_instantiate):
|
|
|
4069 * glyphs-x.c (autodetect_instantiate):
|
|
|
4070 * glyphs-x.c (cursor_font_instantiate):
|
|
|
4071 * glyphs-x.c (x_update_widget):
|
|
|
4072 * glyphs-x.c (x_widget_instantiate):
|
|
|
4073 * glyphs.c (bitmap_to_lisp_data):
|
|
|
4074 * glyphs.c (pixmap_to_lisp_data):
|
|
|
4075 [7].
|
|
|
4076
|
|
|
4077 * glyphs.c (syms_of_glyphs):
|
|
|
4078 [2].
|
|
|
4079
|
|
|
4080 * gui-x.c:
|
|
|
4081 * gui-x.c (print_widget_value):
|
|
|
4082 * gui-x.c (menu_separator_style_and_to_external):
|
|
|
4083 * gui-x.c (add_accel_and_to_external):
|
|
|
4084 * gui-x.c (button_item_to_widget_value):
|
|
|
4085 * gui-x.c (gui_items_to_widget_values_1):
|
|
|
4086 * gui-x.c (gui_items_to_widget_values):
|
|
|
4087 * gui-x.c (syms_of_gui_x):
|
|
|
4088 * gui-x.c (vars_of_gui_x):
|
|
|
4089 Mule-ize entire file. Move menu-no-selection-hook to gui.c.
|
|
|
4090 [9].
|
|
|
4091
|
|
|
4092 * gui-x.h:
|
|
|
4093 Muleize, prototype changes matching gui-x.c.
|
|
|
4094
|
|
|
4095 * gui.c:
|
|
|
4096 * gui.c (separator_string_p):
|
|
|
4097 * gui.c (gui_item_add_keyval_pair):
|
|
|
4098 * gui.c (make_gui_item_from_keywords_internal):
|
|
|
4099 * gui.c (signal_too_long_error):
|
|
|
4100 * gui.c (parse_gui_item_tree_item):
|
|
|
4101 * gui.c (syms_of_gui):
|
|
|
4102 * gui.c (vars_of_gui):
|
|
|
4103 * gui.h:
|
|
|
4104 menu-no-selection-hook moved here (used by MSWin).
|
|
|
4105 Move some symbols to general-slots.h.
|
|
|
4106 [6].
|
|
|
4107 [9].
|
|
|
4108
|
|
|
4109 * insdel.c (get_buffer_pos_char):
|
|
|
4110 * insdel.c (get_buffer_range_char):
|
|
|
4111 Add GC comments.
|
|
|
4112
|
|
|
4113 * keymap.c (keymap_lookup_directly):
|
|
|
4114 * keymap.c (keymap_store):
|
|
|
4115 * keymap.c (ensure_meta_prefix_char_keymapp):
|
|
|
4116 * keymap.c (describe_map):
|
|
|
4117 * keymap.h:
|
|
|
4118 Support new button modifiers.
|
|
|
4119
|
|
|
4120 * lisp-disunion.h (wrap_object):
|
|
|
4121 * lisp-disunion.h (XSETOBJ):
|
|
|
4122 Rename make_obj to wrap_object.
|
|
|
4123
|
|
|
4124 * lisp-union.h:
|
|
|
4125 * lisp-union.h (make_int):
|
|
|
4126 * lisp-union.h (make_char):
|
|
|
4127 Support wrap_object.
|
|
|
4128
|
|
|
4129 * lisp.h:
|
|
|
4130 * lisp.h (LIST_LOOP):
|
|
|
4131 * lisp.h (EXTERNAL_LIST_LOOP):
|
|
|
4132 * lisp.h (LIST_LOOP_2):
|
|
|
4133 * lisp.h (EXTERNAL_LIST_LOOP_1):
|
|
|
4134 * lisp.h (EXTERNAL_LIST_LOOP_2):
|
|
|
4135 * lisp.h (EXTERNAL_LIST_LOOP_3):
|
|
|
4136 * lisp.h (EXTERNAL_LIST_LOOP_4_NO_DECLARE):
|
|
|
4137 * lisp.h (PRIVATE_EXTERNAL_LIST_LOOP_6):
|
|
|
4138 * lisp.h (GET_EXTERNAL_LIST_LENGTH):
|
|
|
4139 * lisp.h (EXTERNAL_ALIST_LOOP_5):
|
|
|
4140 * lisp.h (EXTERNAL_ALIST_LOOP_6):
|
|
|
4141 * lisp.h (EXTERNAL_ALIST_LOOP_6_NO_DECLARE):
|
|
|
4142 * lisp.h (EXTERNAL_PROPERTY_LIST_LOOP_5_NO_DECLARE):
|
|
|
4143 * lisp.h (EXTERNAL_PROPERTY_LIST_LOOP_7):
|
|
|
4144 * lisp.h (struct Lisp_Symbol):
|
|
|
4145 * lisp.h (maybe_continuable_error_with_frob):
|
|
|
4146 Fix up section comments.
|
|
|
4147 Add new types for char to indicate usage.
|
|
|
4148 Delete symbols auto-generated from general-slots.h.
|
|
|
4149 Add prototypes for structured error functions.
|
|
|
4150 Add long comments describing looping macros and change interface
|
|
|
4151 so that lvalues are automatically declared.
|
|
|
4152 Add NO_DECLARE macro in case callers want to declare lvalues
|
|
|
4153 themselves.
|
|
|
4154
|
|
|
4155 * lread.c (read_syntax_error):
|
|
|
4156 * lread.c (continuable_read_syntax_error):
|
|
|
4157 * lread.c (read_structure):
|
|
|
4158 * lread.c (sequence_reader):
|
|
|
4159 * lread.c (read_list_conser):
|
|
|
4160 * lread.c (read_compiled_function):
|
|
|
4161 Rename syntax_error and continuable_syntax_error to avoid clash
|
|
|
4162 with same-named structured error functions.
|
|
|
4163
|
|
|
4164 * menubar-msw.c (mswindows_translate_menu_or_dialog_item):
|
|
|
4165 * menubar-msw.c (populate_menu_add_item):
|
|
|
4166 * menubar-msw.c (populate_or_checksum_helper):
|
|
|
4167 [5].
|
|
|
4168 [9].
|
|
|
4169
|
|
|
4170 * menubar-x.c:
|
|
|
4171 * menubar-x.c (menu_item_descriptor_to_widget_value_1):
|
|
|
4172 Mule-ize whole file.
|
|
|
4173
|
|
|
4174 * menubar.c (Fnormalize_menu_item_name): Add optimization.
|
|
|
4175
|
|
|
4176 * mule-charset.c (Fmake_charset):
|
|
|
4177 * mule-wnnfns.c (Fwnn_set_param):
|
|
|
4178 [1].
|
|
|
4179
|
|
|
4180 * ntproc.c (create_child):
|
|
|
4181 * ntproc.c (Fwin32_set_current_locale):
|
|
|
4182 Add comments portending doom.
|
|
|
4183
|
|
|
4184 * objects-msw.c:
|
|
|
4185 * objects-msw.c (old_font_enum_callback_2):
|
|
|
4186 * objects-msw.c (font_enum_callback_1):
|
|
|
4187 * objects-msw.c (mswindows_enumerate_fonts):
|
|
|
4188 [5].
|
|
|
4189
|
|
|
4190 * objects-x.c:
|
|
|
4191 * objects-x.c (allocate_nearest_color):
|
|
|
4192 * objects-x.c (x_parse_nearest_color):
|
|
|
4193 * objects-x.c (x_initialize_color_instance):
|
|
|
4194 * objects-x.c (x_print_color_instance):
|
|
|
4195 * objects-x.c (x_finalize_color_instance):
|
|
|
4196 * objects-x.c (x_valid_color_name_p):
|
|
|
4197 * objects-x.c (x_initialize_font_instance):
|
|
|
4198 * objects-x.c (x_print_font_instance):
|
|
|
4199 * objects-x.c (valid_x_font_name_p):
|
|
|
4200 * objects-x.c (truename_via_FONT_prop):
|
|
|
4201 * objects-x.c (truename_via_random_props):
|
|
|
4202 * objects-x.c (truename_via_XListFonts):
|
|
|
4203 * objects-x.c (x_font_truename):
|
|
|
4204 * objects-x.c (x_font_instance_truename):
|
|
|
4205 * objects-x.c (x_font_instance_properties):
|
|
|
4206 * objects-x.c (x_list_fonts):
|
|
|
4207 * objects-x.c (x_find_charset_font):
|
|
|
4208 Mule-ize entire file.
|
|
|
4209 [7].
|
|
|
4210
|
|
|
4211 * objects-x.h:
|
|
|
4212 Mule-verify.
|
|
|
4213
|
|
|
4214 * print.c:
|
|
|
4215 * print.c (std_handle_out_external):
|
|
|
4216 * print.c (debug_print_no_newline):
|
|
|
4217 * print.c (syms_of_print):
|
|
|
4218 Output to all debugger kinds in debug-print.
|
|
|
4219 Fix console-output code under MSWin to actually work.
|
|
|
4220
|
|
|
4221 * process-nt.c (send_signal):
|
|
|
4222 * process-nt.c (nt_create_process):
|
|
|
4223 Use newer Unicode macros.
|
|
|
4224
|
|
|
4225 * process-unix.c (unix_create_process):
|
|
|
4226 * process-unix.c (unix_canonicalize_host_name):
|
|
|
4227 * process-unix.c (unix_open_network_stream):
|
|
|
4228 [7].
|
|
|
4229
|
|
|
4230 * scrollbar-x.c:
|
|
|
4231 Mule-verify.
|
|
|
4232
|
|
|
4233 * search.c (syms_of_search):
|
|
|
4234 [2].
|
|
|
4235
|
|
|
4236 * select-msw.c (mswindows_destroy_selection):
|
|
|
4237 Use LIST_LOOP_2.
|
|
|
4238
|
|
|
4239 * select-x.c (symbol_to_x_atom):
|
|
|
4240 [7].
|
|
|
4241
|
|
|
4242 * select.c (syms_of_select):
|
|
|
4243 [2].
|
|
|
4244
|
|
|
4245 * sound.c (Fplay_sound_file):
|
|
|
4246 [7].
|
|
|
4247
|
|
|
4248 * specifier.c:
|
|
|
4249 * specifier.c (decode_specifier_type):
|
|
|
4250 * specifier.c (Fvalid_specifier_locale_type_p):
|
|
|
4251 * specifier.c (check_valid_locale_or_locale_type):
|
|
|
4252 * specifier.c (decode_locale):
|
|
|
4253 * specifier.c (decode_locale_type):
|
|
|
4254 * specifier.c (decode_locale_list):
|
|
|
4255 * specifier.c (check_valid_domain):
|
|
|
4256 * specifier.c (decode_specifier_tag_set):
|
|
|
4257 * specifier.c (Fcanonicalize_tag_set):
|
|
|
4258 * specifier.c (Fdefine_specifier_tag):
|
|
|
4259 * specifier.c (Fspecifier_tag_predicate):
|
|
|
4260 * specifier.c (check_valid_inst_list):
|
|
|
4261 * specifier.c (check_valid_spec_list):
|
|
|
4262 * specifier.c (decode_how_to_add_specification):
|
|
|
4263 * specifier.c (check_modifiable_specifier):
|
|
|
4264 * specifier.c (specifier_add_spec):
|
|
|
4265 * specifier.c (boolean_validate):
|
|
|
4266 * specifier.c (display_table_validate):
|
|
|
4267 [9].
|
|
|
4268
|
|
|
4269 * specifier.c (syms_of_specifier):
|
|
|
4270 Move some symbols to general-slots.h.
|
|
|
4271 [2].
|
|
|
4272
|
|
|
4273 * symbols.c:
|
|
|
4274 * symbols.c (Fmapatoms):
|
|
|
4275 * symbols.c (Fapropos_internal):
|
|
|
4276 Add GCPROs.
|
|
|
4277
|
|
|
4278 * symbols.c (set_default_buffer_slot_variable):
|
|
|
4279 * symbols.c (set_default_console_slot_variable):
|
|
|
4280 [1].
|
|
|
4281
|
|
|
4282 * symbols.c (defsymbol_massage_name_1):
|
|
|
4283 * symbols.c (defkeyword_massage_name):
|
|
|
4284 * symbols.c (deferror_1):
|
|
|
4285 * symbols.c (deferror):
|
|
|
4286 * symbols.c (deferror_massage_name_and_message):
|
|
|
4287 * symeval.h:
|
|
|
4288 * symeval.h (DEFSYMBOL):
|
|
|
4289 Support DEFSYMBOL*, DEFKEYWORD, DEFERROR
|
|
|
4290
|
|
|
4291 * symbols.c (syms_of_symbols):
|
|
|
4292 [2].
|
|
|
4293
|
|
|
4294 * symsinit.h:
|
|
|
4295 * symsinit.h (init_win32): New.
|
|
|
4296 Also new is syms_of_dialog_mswindows.
|
|
|
4297
|
|
|
4298 * syswindows.h:
|
|
|
4299 Add new Unicode macros, missing Cygwin wide-char functions,
|
|
|
4300 convenience conversion macros for Qmswindows_tstr, macros for
|
|
|
4301 encapsulating required MSWin <-> Cygwin filename conversions,
|
|
|
4302 prototype for dynamically-extracted (not in NT 3.51) functions.
|
|
|
4303
|
|
|
4304 * toolbar-x.c:
|
|
|
4305 Mule-verify.
|
|
|
4306
|
|
|
4307 * tooltalk.c (Fadd_tooltalk_message_arg):
|
|
|
4308 * tooltalk.c (Fadd_tooltalk_pattern_attribute):
|
|
|
4309 * tooltalk.c (Fadd_tooltalk_pattern_arg):
|
|
|
4310 [7].
|
|
|
4311
|
|
|
4312 * tooltalk.c (syms_of_tooltalk):
|
|
|
4313 [2].
|
|
|
4314
|
|
|
4315 * unexnt.c:
|
|
|
4316 * unexnt.c (unexec):
|
|
|
4317 Fix up headers, declaration of unexec() to be more standard.
|
|
|
4318
|
|
|
4319 2000-07-20 Martin Buchholz <martin@xemacs.org>
|
|
|
4320
|
|
|
4321 * offix.h: Revert change to guard macros - they're used in offix.c!
|
|
|
4322
|
|
|
4323 2000-07-18 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
|
4324
|
|
|
4325 * lisp.h: Defsubred Fdelete.
|
|
|
4326
|
|
|
4327 * console-msw.h: (msprinter_default_printer): Added.
|
|
|
4328
|
|
|
4329 * console-msw.c (msprinter_canonicalize_console_connection):
|
|
|
4330 (msprinter_canonicalize_device_connection): Added.
|
|
|
4331
|
|
|
4332 * device-msw.c (msprinter_default_printer):
|
|
446
|
4333 (Fmswingows_get_default_printer):
|
|
|
4334 (signal_enum_priner_error):
|
|
442
|
4335 (Fmswingows_printer_list): Added.
|
|
|
4336
|
|
|
4337 2000-07-19 Martin Buchholz <martin@xemacs.org>
|
|
|
4338
|
|
|
4339 * XEmacs 21.2.35 is released.
|
|
|
4340
|
|
|
4341 2000-07-19 Martin Buchholz <martin@xemacs.org>
|
|
|
4342
|
|
446
|
4343 * select-x.c (x_handle_selection_request):
|
|
442
|
4344 Text selected in xemacs and pasted into xterm failed to appear.
|
|
|
4345 Spelling fixes and cosmetic changes.
|
|
|
4346
|
|
|
4347 2000-07-18 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
|
4348
|
|
|
4349 * event-msw.c (mswindows_drain_windows_queue): Correctly check for
|
|
|
4350 XEmacs frame (fix for doubling chars in dialog boxes).
|
|
|
4351
|
|
|
4352 2000-07-17 Alastair J. Houghton <ajhoughton@lineone.net>
|
|
|
4353
|
|
|
4354 * select.c (select_convert_in, select_convert_out):
|
|
|
4355 Don't call intern() every time.
|
|
|
4356
|
|
|
4357 * select.c (Qselect_convert_in, Qselect_convert_out): New.
|
|
|
4358 * select.c (vars_of_select): Initialise them.
|
|
|
4359
|
|
|
4360 2000-07-18 Alastair J. Houghton <ajhoughton@lineone.net>
|
|
|
4361
|
|
|
4362 * select.c (selection-coercible-types): New.
|
|
|
4363
|
|
|
4364 * select.c (own-selection-internal):
|
|
|
4365 * select.c (get-selection-internal):
|
|
|
4366 MULE bug fix - these should default to COMPOUND_TEXT and not
|
|
|
4367 STRING for MULE. I think.
|
|
|
4368
|
|
|
4369 * select.c (select_convert_out): Use selection-coercible-types
|
|
|
4370 to find types that we can attempt to perform coercions on.
|
|
|
4371
|
|
|
4372 2000-07-18 Martin Buchholz <martin@xemacs.org>
|
|
|
4373
|
|
|
4374 * mule-wnnfns.c:
|
|
|
4375 * mule-canna.c:
|
|
|
4376 Add coding: cookie to identify encoding.
|
|
|
4377
|
|
|
4378 * mule-canna.c (CANNA_mode_keys): make static.
|
|
|
4379 Use proper prototypes, even for functions of no arguments.
|
|
|
4380 Remove external prototype for Fding().
|
|
|
4381
|
|
|
4382 * symsinit.h: Add missing prototype for reinit_vars_of_mule_wnn.
|
|
|
4383
|
|
|
4384 * select.c (syms_of_select): Add missing DEFSUBR.
|
|
|
4385
|
|
|
4386 2000-07-18 Alastair J. Houghton <ajhoughton@lineone.net>
|
|
|
4387
|
|
|
4388 * select.c (get_selection_internal, own_selection_internal):
|
|
|
4389 Make the type default to STRING, rather than placing a nil type
|
|
|
4390 into Vselection_alist.
|
|
|
4391
|
|
|
4392 2000-07-17 Alastair J. Houghton <ajhoughton@lineone.net>
|
|
|
4393
|
|
|
4394 * gpmevent.c (tty_selection_exists_p):
|
|
|
4395 * gpmevent.c (tty_own_selection):
|
|
|
4396 Updated parameter lists.
|
|
|
4397
|
|
|
4398 2000-07-15 Alastair J. Houghton <ajhoughton@lineone.net>
|
|
|
4399
|
|
|
4400 * select.h (selection-alist): Removed declaration.
|
|
|
4401
|
|
|
4402 * select.h (get_local_selection):
|
|
|
4403 * select.c (get_local_selection):
|
|
|
4404 Made static.
|
|
|
4405
|
|
|
4406 * select.h (convert_selection): Removed declaration.
|
|
|
4407 * select.c (convert_selection): Removed.
|
|
|
4408 This function belongs in Lisp.
|
|
|
4409
|
|
|
4410 * select.h (select_convert_in): Declare.
|
|
|
4411 * select.h (select_convert_out): Declare.
|
|
|
4412 * select.c (select_convert_in): New.
|
|
|
4413 * select.c (select_convert_out): New.
|
|
|
4414 New conversion functions for other files to call.
|
|
|
4415
|
|
|
4416 * select.h (select_notify_buffer_kill): Declare.
|
|
|
4417 * select.c (select_notify_buffer_kill): New.
|
|
|
4418 New functions that get called from kill-buffer.
|
|
|
4419
|
|
|
4420 * buffer.c (kill-buffer): Call select_notify_buffer_kill, rather than
|
|
|
4421 X-specific lisp code.
|
|
|
4422
|
|
|
4423 * select.h: Declare some of the lisp-visible functions for
|
|
|
4424 external use.
|
|
|
4425
|
|
|
4426 * select.c (clean_local_selection_data): Removed. This was
|
|
|
4427 a disgusting function, and previously should have been in
|
|
|
4428 select-x.c in any case. The functionality is now provided
|
|
|
4429 in select-convert-from-integer (select.el).
|
|
|
4430
|
|
|
4431 * select.c (available-selection-types): Fixed stupidity where
|
|
|
4432 INTEGER and ATOM got added twice. Also add STRING when we see an
|
|
|
4433 extent.
|
|
|
4434
|
|
|
4435 * select.c (get-selection-internal): Removed symbol stripping. No
|
|
|
4436 longer causes conversion when data comes from the internal cache.
|
|
|
4437
|
|
|
4438 * select.c (syms_of_select): Added new functions.
|
|
|
4439
|
|
|
4440 * select-x.c (motif_clipboard_cb): Use select_convert_out. Rewrote
|
|
|
4441 error checking - previously this called abort!
|
|
446
|
4442
|
|
442
|
4443 * select-x.c (x_own_selection): Changed comment.
|
|
446
|
4444
|
|
442
|
4445 * select-x.c (x_handle_selection_request): Use select_convert_out.
|
|
|
4446 Don't mess with selection-alist; it's an internal variable of select.c.
|
|
446
|
4447
|
|
442
|
4448 * select-x.c (x_get_foreign_selection): Use select_convert_in.
|
|
446
|
4449
|
|
442
|
4450 * select-x.c (x_handle_selection_clear): Use get-selection-timestamp,
|
|
|
4451 rather than messing with selection-alist.
|
|
446
|
4452
|
|
442
|
4453 * select-msw.c (mswindows_get_foreign_selection):
|
|
|
4454 Use TO_INTERNAL_FORMAT rather than hacking.
|
|
|
4455
|
|
|
4456 2000-07-14 Martin Buchholz <martin@xemacs.org>
|
|
|
4457
|
|
|
4458 * process-unix.c (unix_open_multicast_group):
|
|
|
4459 (unix_open_multicast_group): Remove useless casts.
|
|
|
4460
|
|
|
4461 2000-07-13 Martin Buchholz <martin@xemacs.org>
|
|
|
4462
|
|
|
4463 * sound.c (Fplay_sound): Fix `unused variable' warning.
|
|
|
4464
|
|
|
4465 * emacs.c (main): Use correct type for _environ on SCO5.
|
|
|
4466
|
|
|
4467 2000-07-12 Alastair J. Houghton <ajhoughton@lineone.net>
|
|
|
4468
|
|
|
4469 * console.h (own_selection_method):
|
|
|
4470 * console.h (selection_exists_p_method):
|
|
|
4471 * console.h (available_selection_types_method): New.
|
|
|
4472 * console.h (register_selection_data_type_method): New.
|
|
|
4473 * console.h (selection_data_type_name): New.
|
|
446
|
4474
|
|
442
|
4475 * console-msw.h (mswindows_destroy_selection): Declare it. New
|
|
|
4476 function & alist to track GlobalAlloc()'d handles that need
|
|
|
4477 releasing when the clipboard data gets replaced or emptied.
|
|
|
4478
|
|
|
4479 * event-msw.c (mswindows_wnd_proc): Call it.
|
|
|
4480
|
|
|
4481 * lisp.h, general.c (Qappend): New symbol representing a
|
|
|
4482 `how-to-add' mode.
|
|
446
|
4483
|
|
442
|
4484 * select.c (own-selection-internal):
|
|
|
4485 * select.c (selection-exists-p):
|
|
|
4486 * select.c (available-selection-types): New.
|
|
|
4487 * select.c (register-selection-data-type): New.
|
|
|
4488 * select.c (selection-data-type-name): New. New functions to deal
|
|
|
4489 with device-specific selection data formats.
|
|
|
4490 * select.c (selection-converter-out-alist): Renamed.
|
|
|
4491 * select.c (selection-converter-in-alist): New.
|
|
|
4492 * select.c (selection-appender-alist): New. Added new alists.
|
|
|
4493 * select.c (syms_of_select, vars_of_select): Added new symbols &
|
|
|
4494 variables.
|
|
|
4495 * select.c (get_local_selection): Split.
|
|
|
4496 * select.c: Removed spurious type checking - selections may now be
|
|
|
4497 of any type, not just strings.
|
|
|
4498 * select.c (own-selection-internal):
|
|
|
4499
|
|
|
4500 * select.h, select.c (convert_selection): New. Created
|
|
|
4501 convert_selection() function based on get_local_selection().
|
|
|
4502 * select.h, select.c (QCF_*): New symbols representing mswindows
|
|
|
4503 clipboard formats.
|
|
|
4504 * select.h, select.c (Qreplace_all, Qreplace_existing): New
|
|
|
4505 symbols representing `how-to-add' modes.
|
|
|
4506
|
|
|
4507 * select-msw.c (x_sym_p): New.
|
|
|
4508 * select-msw.c (symbol_to_ms_cf): New.
|
|
|
4509 * select-msw.c (ms_cf_to_symbol): New. New functions to deal with
|
|
|
4510 symbols & clipboard formats. Can also handle string names.
|
|
|
4511 * select-msw.c (mswindows_own_selection):
|
|
|
4512 * select-msw.c (mswindows_selection_exists_p):
|
|
|
4513 Added `data-type' parameter. Use it.
|
|
|
4514 * select-msw.c (mswindows_available_selection_types): New.
|
|
|
4515 * select-msw.c (mswindows_register_selection_data_type): New.
|
|
|
4516 * select-msw.c (mswindows_selection_data_type_name): New.
|
|
|
4517 * select-msw.c (mswindows_own_selection):
|
|
|
4518 * select-msw.c (mswindows_get_foreign_selection):
|
|
|
4519 * select-msw.c (mswindows_selection_exists_p): Rewrote.
|
|
|
4520 * select-msw.c (console_create_select_mswindows): Added new methods.
|
|
|
4521 * select-msw.c (mswindows_destroy_selection): New.
|
|
|
4522 * select-msw.c (Vhandle_alist): New list.
|
|
|
4523 * select-msw.c (mswindows_own_selection):
|
|
|
4524
|
|
|
4525 * select-x.c (x_own_selection):
|
|
|
4526 * select-x.c (x_selection_exists_p):
|
|
|
4527 * select-x.c: Added some comments about maybe using new
|
|
|
4528 functionality.
|
|
|
4529 * select-x.c (x_own_selection):
|
|
|
4530
|
|
|
4531 * specifier.c: Remove definition of Qappend (now in general.c)
|
|
|
4532 * specifier.c (syms_of_specifier): Remove Qappend.
|
|
|
4533
|
|
|
4534 2000-07-12 Martin Buchholz <martin@xemacs.org>
|
|
|
4535
|
|
|
4536 * config.h.in: Add socklen_t.
|
|
|
4537
|
|
|
4538 * s/decosf4-0.h: No special compiler flags needed or desired.
|
|
|
4539 In particular, undefine _BSD for DEC OSF 4.0.
|
|
|
4540
|
|
|
4541 2000-07-07 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
|
4542
|
|
|
4543 * redisplay-msw.c (msprinter_frame_output_end): Added.
|
|
|
4544 (console_type_create_redisplay_mswindows): Referred the above.
|
|
|
4545
|
|
|
4546 * frame.c (setup_frame_without_minibuffer): Do not create a
|
|
|
4547 default minibuffer frame on a printer device.
|
|
|
4548
|
|
|
4549 * frame-msw.c (apply_dc_geometry): Added.
|
|
446
|
4550 (msprinter_start_page):
|
|
|
4551 (msprinter_init_frame_3):
|
|
442
|
4552 (msprinter_eject_page): Use it.
|
|
|
4553
|
|
|
4554 * console-msw.h (struct msprinter_frame): Added pix_left and top,
|
|
|
4555 and removed residual duplex and orientation properties.
|
|
|
4556
|
|
|
4557 2000-07-11 Martin Buchholz <martin@xemacs.org>
|
|
|
4558
|
|
|
4559 * eval.c (function_argcount): Work around a DEC CC compiler bug.
|
|
|
4560
|
|
|
4561 * unexalpha.c: Remove system prototypes from C sources!
|
|
|
4562
|
|
|
4563 2000-07-09 Adrian Aichner <aichner@ecf.teradyne.com>
|
|
|
4564
|
|
|
4565 * eval.c: Remove references to M-x edit-options in DEFUNs for
|
|
|
4566 `defvar' and `defconst'.
|
|
|
4567
|
|
|
4568 2000-07-09 Martin Buchholz <martin@xemacs.org>
|
|
|
4569
|
|
|
4570 * config.h.in: Remove SMART_INCLUDE hackery.
|
|
446
|
4571
|
|
442
|
4572 PostgreSQL hacking:
|
|
|
4573 * config.h.in: Don't use SMART_INCLUDE.
|
|
|
4574
|
|
|
4575 * postgresql.h: Include libpq-fe.h here. Fix typo.
|
|
|
4576 * inline.c: Simply #include "postgresql.h"
|
|
|
4577 * postgresql.c:
|
|
|
4578 - Don't use SMART_INCLUDE
|
|
|
4579 - Use simply "const".
|
|
|
4580 - Use standard doc string conventions.
|
|
|
4581 - Use correct type for result of PQstatus.
|
|
|
4582
|
|
|
4583 2000-07-09 Martin Buchholz <martin@xemacs.org>
|
|
|
4584
|
|
|
4585 * glyphs-x.c (x_xface_instantiate): Fix C++ compilation warnings.
|
|
|
4586
|
|
|
4587 C++ compilation changes.
|
|
|
4588 * config.h.in (EXTERN_C): Define.
|
|
|
4589 * config.h.in (not): This is also a C++ keyword.
|
|
|
4590 * unexalpha.c (DEFAULT_ENTRY_ADDRESS): Enable C++ compilation.
|
|
|
4591 * cm.c: Use EXTERN_C.
|
|
|
4592 * redisplay-tty.c: Use EXTERN_C.
|
|
|
4593 * sysdep.c: Use EXTERN_C. Remove Gould support.
|
|
|
4594
|
|
|
4595 2000-07-09 Martin Buchholz <martin@xemacs.org>
|
|
|
4596
|
|
|
4597 * general.c: Remove duplicate definition for Qfunction.
|
|
|
4598
|
|
|
4599 2000-07-08 Ben Wing <ben@xemacs.org>
|
|
|
4600
|
|
|
4601 * device-msw.c (msprinter_init_device):
|
|
|
4602 * device-msw.c (sync_printer_with_devmode):
|
|
|
4603 * device-msw.c (handle_devmode_changes):
|
|
|
4604 * device-msw.c (print_dialog_worker):
|
|
|
4605 * device-msw.c (Fmsprinter_apply_settings):
|
|
|
4606 * device-msw.c (hash_devmode):
|
|
|
4607 * device-msw.c (Fmsprinter_settings_despecialize):
|
|
|
4608 use Qmswindows_tstr, not Qctext.
|
|
446
|
4609
|
|
442
|
4610 * vm-limit.c (check_memory_limits):
|
|
|
4611 avoid infinite loop printing warning messages.
|
|
|
4612
|
|
|
4613 2000-07-05 Craig Lanning <lanning@scra.org>
|
|
|
4614
|
|
|
4615 * Makefile.in.in: Add support for including the Windows resources
|
|
|
4616 when building with the cygwin and mingw targets.
|
|
|
4617
|
|
|
4618 * buffer.c: from Dan Holmsand, on Windows $PWD is most likely either
|
|
|
4619 not set or not correct.
|
|
|
4620 (directory_is_current_directory): Don't compile for WIN32_NATIVE.
|
|
|
4621 (init_initial_directory): Don't try to use $PWD on the
|
|
|
4622 WIN32_NATIVE target.
|
|
|
4623
|
|
|
4624 * s\cygwin32.h:
|
|
|
4625 [[Add -mwindows to eliminate console window.]] not required --ben
|
|
|
4626 (HAVE_NATIVE_SOUND): removed; now handled by configure.
|
|
|
4627 (MAIL_USE_POP): removed; now handled by configure.
|
|
|
4628
|
|
|
4629 * s\mingw32.h: [[Add -mwindows to eliminate console window.]] not in
|
|
|
4630 C_SWITCH_SYSTEM or it will affect lib-src progs. --ben
|
|
|
4631 (HAVE_NATIVE_SOUND): removed; now handled by configure.
|
|
|
4632 (MAIL_USE_POP): removed; now handled by configure.
|
|
|
4633 (ENCAPSULATE_STAT): from Dan Holmsand, added.
|
|
|
4634 (ENCAPSULATE_FSTAT): from Dan Holmsand, added.
|
|
|
4635 (DIRECTORY_SEP): from Dan Holmsand, use lisp variable instead of
|
|
|
4636 constant string.
|
|
|
4637 (HAVE_TIMEVAL): from Dan Holmsand, added; struct timeval is picked
|
|
|
4638 up from <winsock.h> via systime.h.
|
|
|
4639 (HAVE_GETPAGESIZE): from Dan Holmsand, added.
|
|
|
4640 (getpagesize): from Dan Holmsand, added.
|
|
|
4641 Added #endif which was left dangling by Ben's mega patch; added
|
|
|
4642 comment to help prevent this in the future.
|
|
|
4643
|
|
|
4644 * sysdll.c: added #include <windows.h> for WIN32_NATIVE case.
|
|
|
4645
|
|
|
4646 2000-07-05 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
|
4647
|
|
|
4648 * console-msw.h (struct mswindows_device): Removed unnecessary
|
|
|
4649 cached device geometry values.
|
|
|
4650 Added update_tick and an accessor macro.
|
|
446
|
4651 (Lisp_Devmode): Added lrecord declaration.
|
|
442
|
4652 (struct msprinter_device): Contain devmode as a Lisp object.
|
|
|
4653 Added mswindows_get_selected_frame_hwnd();
|
|
|
4654
|
|
|
4655 * console.h (struct console_methods): Indentation nitpicking.
|
|
|
4656
|
|
|
4657 * device-msw.c (mswindows_init_device): Do not initialize geometry
|
|
|
4658 cache. Initialize update tick.
|
|
|
4659 (mswindows_device_system_metrics): Ask the device for its geometry.
|
|
446
|
4660 (global_free_2_maybe):
|
|
|
4661 (devmode_to_hglobal):
|
|
|
4662 (handle_printer_changes):
|
|
|
4663 (ensure_not_printing):
|
|
|
4664 (print_dialog_worker):
|
|
|
4665 (Fmsprinter_print_setup_dialog):
|
|
|
4666 (Fmsprinter_print_dialog):
|
|
|
4667 (plist_get_margin):
|
|
|
4668 (plist_set_margin):
|
|
442
|
4669 (Fmsprinter_page_setup_dialog): Added functions.
|
|
446
|
4670 (sync_printer_with_devmode):
|
|
|
4671 (handle_devmode_changes):
|
|
|
4672 (Fmsprinter_get_settings):
|
|
|
4673 (Fmsprinter_select_settings):
|
|
442
|
4674 (Fmsprinter_apply_settings):
|
|
446
|
4675 (allocate_devmode):
|
|
|
4676 (Fmsprinter_settings_copy):
|
|
|
4677 (Fmsprinter_settings_despecialize):
|
|
|
4678 (print_devmode):
|
|
|
4679 (finalize_devmode):
|
|
|
4680 (equal_devmode):
|
|
442
|
4681 (hash_devmode): Added functions
|
|
|
4682 (syms_of_device_mswindows): Init devmode lrecord class.
|
|
|
4683
|
|
|
4684 * device.h: Added an exfun for find-device.
|
|
|
4685
|
|
|
4686 * event-msw.c (mswindows_wnd_proc): Do not update the cached
|
|
|
4687 geometry; although, recreate the device compatible DC.
|
|
|
4688
|
|
|
4689 * frame-msw.c (mswindows_get_selected_frame_hwnd): Added.
|
|
|
4690 (msprinter_init_frame_3):
|
|
446
|
4691 (msprinter_frame_property):
|
|
442
|
4692 (msprinter_internal_frame_property_p):
|
|
446
|
4693 (msprinter_frame_properties):
|
|
442
|
4694 (msprinter_set_frame_properties): Removed 'orientation and 'duplex
|
|
|
4695 print job properties (will move to device settings).
|
|
|
4696
|
|
|
4697 * lisp.h: Added symbols.
|
|
|
4698
|
|
|
4699 * general.c (syms_of_general): Declared them.
|
|
|
4700
|
|
|
4701 * hash.c (string_hash): Added.
|
|
|
4702
|
|
|
4703 * lrecord.h (lrecord_type): Added devmode lrecord type.
|
|
|
4704
|
|
|
4705 2000-07-02 Mike Sperber <mike@xemacs.org>
|
|
|
4706
|
|
|
4707 * s/freebsd.h (INTERRUPTIBLE_OPEN): open *is* interruptible on
|
|
|
4708 FreeBSD 4.0.
|
|
|
4709
|
|
|
4710 2000-06-07 MORIOKA Tomohiko <tomo@etl.go.jp>
|
|
|
4711
|
|
|
4712 * doprnt.c (emacs_doprnt_1): Fix problem with %0XXd for a negative
|
|
|
4713 integer.
|
|
|
4714
|
|
|
4715 2000-06-07 MORIOKA Tomohiko <tomo@urania.m17n.org>
|
|
|
4716
|
|
|
4717 * data.c (Fstring_to_number): Don't recognize floating point if
|
|
|
4718 base is not 10.
|
|
|
4719
|
|
|
4720 2000-06-22 Martin Buchholz <martin@xemacs.org>
|
|
|
4721
|
|
|
4722 * glyphs-widget.c (tab_control_query_geometry):
|
|
|
4723 (widget_query_geometry):
|
|
|
4724 (button_query_geometry):
|
|
|
4725 * glyphs.c (text_query_geometry):
|
|
|
4726 Enforce type correctness.
|
|
|
4727
|
|
|
4728 2000-06-18 Martin Buchholz <martin@xemacs.org>
|
|
|
4729
|
|
|
4730 * s/decosf4-0.h (_etext): Use portable _etext instead of etext.
|
|
|
4731 * s/decosf4-0.h (_edata): Use portable _edata instead of edata.
|
|
|
4732
|
|
|
4733 2000-06-17 Martin Buchholz <martin@xemacs.org>
|
|
|
4734
|
|
|
4735 * s/decosf4-0.h: Never #include "/usr/include/FOO.h" because this
|
|
|
4736 conflicts with gcc's fixincluded version of FOO.h.
|
|
|
4737
|
|
|
4738 * glyphs.h (image_instance_geometry): Remove trailing `,'
|
|
|
4739
|
|
|
4740 2000-06-08 Mike Alexander <mta@arbortext.com>
|
|
|
4741
|
|
|
4742 (MAX_SHOVE_BUFFER_SIZE): Change to 512 to match stream buffer size
|
|
|
4743 (shove_thread): Don't write the same output twice
|
|
|
4744 (make_ntpipe_output_stream): Increase priority of shove thread
|
|
|
4745 (ntpipe_shove_writer): Call SwitchToThread to give shove thread a
|
|
|
4746 chance to run
|
|
|
4747 (ntpipe_shove_closer): Don't delete the pipe until we're done with
|
|
|
4748 it.
|
|
|
4749
|
|
|
4750 2000-06-12 Ben Wing <ben@xemacs.org>
|
|
|
4751
|
|
|
4752 * s\mingw32.h (sigset):
|
|
|
4753 * s\windowsnt.h (sigset):
|
|
|
4754 rename msw_ to mswindows_ for consistency with general convention.
|
|
|
4755
|
|
|
4756 2000-06-12 Ben Wing <ben@xemacs.org>
|
|
|
4757
|
|
|
4758 * console-msw.c:
|
|
|
4759 * console-msw.c (mswindows_get_console_hwnd):
|
|
|
4760 * console-msw.c (mswindows_ensure_console_allocated):
|
|
|
4761 * console-msw.c (mswindows_hide_console):
|
|
|
4762 * console-msw.c (mswindows_show_console):
|
|
|
4763 * console-msw.c (mswindows_ensure_console_buffered):
|
|
|
4764 * console-msw.c (mswindows_output_console_string):
|
|
|
4765 * console-msw.c (mswindows_windows9x_p):
|
|
|
4766 * console-msw.h:
|
|
|
4767 * device-msw.c (mswindows_get_workspace_coords):
|
|
|
4768 * device-msw.c (mswindows_device_system_metrics):
|
|
|
4769 * dialog-msw.c (mswindows_popup_dialog_box):
|
|
|
4770 * event-msw.c (mswindows_wnd_proc):
|
|
|
4771 * frame-msw.c (mswindows_size_frame_internal):
|
|
|
4772 * menubar-msw.c (mswindows_translate_menu_or_dialog_item):
|
|
|
4773 * menubar-msw.c (displayable_menu_item):
|
|
|
4774 * menubar-msw.c (mswindows_char_is_accelerator):
|
|
|
4775 * nt.c:
|
|
|
4776 * nt.c (mswindows_sigset):
|
|
|
4777 * nt.c (mswindows_sigrelse):
|
|
|
4778 * nt.c (mswindows_sigpause):
|
|
|
4779 * nt.c (mswindows_raise):
|
|
|
4780 * nt.c (timer_proc):
|
|
|
4781 * ntproc.c:
|
|
|
4782 * ntproc.c (find_child_console):
|
|
|
4783 * ntproc.c (sys_kill):
|
|
|
4784 * print.c:
|
|
|
4785 * print.c (std_handle_out_external):
|
|
|
4786 * process-nt.c (find_child_console):
|
|
|
4787 * process-nt.c (send_signal_the_95_way):
|
|
|
4788 * process-nt.c (ensure_console_window_exists):
|
|
|
4789 * process-nt.c (nt_create_process):
|
|
|
4790 * syssignal.h:
|
|
|
4791 rename msw_ to mswindows_ for consistency with general convention.
|
|
|
4792
|
|
|
4793 * emacs.c:
|
|
|
4794 * dumper.c:
|
|
|
4795 include nt.h, not syswindows.h.
|
|
|
4796
|
|
|
4797 * nt.c (mswindows_fstat):
|
|
|
4798 * nt.c (mswindows_stat):
|
|
|
4799 prefix mswindows_ instead of attempting to directly override the
|
|
|
4800 library functions. fix declarations.
|
|
446
|
4801
|
|
442
|
4802 * nt.h:
|
|
|
4803 include syswindows.h. move some sysdep.h stuff here.
|
|
446
|
4804
|
|
442
|
4805 * ntheap.h:
|
|
|
4806 include syswindows.h, not <windows.h>.
|
|
|
4807
|
|
|
4808 * ntplay.c:
|
|
|
4809 clean up headers.
|
|
446
|
4810
|
|
442
|
4811 * sysdep.c:
|
|
|
4812 clean up headers.
|
|
446
|
4813
|
|
442
|
4814 * sysdep.c (sys_fstat):
|
|
|
4815 * sysdep.c (sys_stat):
|
|
|
4816 call mswindows versions when appropriate.
|
|
446
|
4817
|
|
442
|
4818 * sysdep.h:
|
|
|
4819 move mswin decls to nt.h.
|
|
446
|
4820
|
|
442
|
4821 * syswindows.h:
|
|
|
4822 add long comment describing appropriate use of the various windows
|
|
|
4823 headers.
|
|
|
4824
|
|
|
4825 2000-06-11 Ben Wing <ben@xemacs.org>
|
|
|
4826
|
|
|
4827 * device-x.c: Correct doc string for sixth arg of x-get-resource.
|
|
|
4828
|
|
|
4829 2000-06-10 Ben Wing <ben@xemacs.org>
|
|
|
4830
|
|
|
4831 * Makefile.in.in (release):
|
|
|
4832 Correction to make sure xemacs.exe always dumped when correct.
|
|
446
|
4833
|
|
442
|
4834 * alloca.c:
|
|
|
4835 * balloon_help.c:
|
|
|
4836 [[[[3]]]]: Conditionalize on actual problem, not WINDOWSNT.
|
|
446
|
4837
|
|
442
|
4838 * buffer.c (set_buffer_internal):
|
|
|
4839 [[[[2]]]]: Remove HAVE_FEP code.
|
|
|
4840
|
|
|
4841 * buffer.c (init_initial_directory):
|
|
|
4842 [3].
|
|
446
|
4843
|
|
442
|
4844 * bytecode.c:
|
|
|
4845 [[[[4]]]]: limits.h standardly included in lisp.h; remove from
|
|
|
4846 individual files.
|
|
446
|
4847
|
|
442
|
4848 * callproc.c:
|
|
|
4849 * callproc.c (call_process_cleanup):
|
|
|
4850 * callproc.c (Fold_call_process_internal):
|
|
|
4851 * callproc.c (child_setup):
|
|
|
4852 * callproc.c (getenv_internal):
|
|
|
4853 * callproc.c (init_callproc):
|
|
|
4854 * callproc.c (vars_of_callproc):
|
|
|
4855 [[[[1]]]]: WINDOWSNT -> WIN32_NATIVE.
|
|
|
4856 __CYGWIN32__ -> CYGWIN.
|
|
|
4857 DOS_NT -> WIN32_NATIVE.
|
|
|
4858 Remove MSDOS support/references, converting to WIN32_NATIVE
|
|
|
4859 where correct.
|
|
|
4860 __MINGW32__ -> MINGW.
|
|
|
4861 Fix windows.h includes.
|
|
|
4862 Remove bogus HAVE_NTGUI.
|
|
|
4863
|
|
|
4864 * config.h.in:
|
|
|
4865 [2].
|
|
446
|
4866
|
|
442
|
4867 * console-msw.c:
|
|
|
4868 mswindows_message_outputted added for use in allowing startup
|
|
|
4869 errors on the console to be seen.
|
|
446
|
4870
|
|
442
|
4871 * console-msw.c (msw_ensure_console_allocated):
|
|
|
4872 * console-msw.c (msw_output_console_string):
|
|
|
4873 * console-msw.c (DHEADER):
|
|
|
4874 * console-msw.c (DOPAQUE_DATA):
|
|
|
4875 * console-msw.c (DEVENT):
|
|
|
4876 * console-msw.c (DCONS):
|
|
|
4877 * console-msw.c (DCONSCDR):
|
|
|
4878 * console-msw.c (DSTRING):
|
|
|
4879 * console-msw.c (DVECTOR):
|
|
|
4880 * console-msw.c (DSYMBOL):
|
|
|
4881 * console-msw.c (DSYMNAME):
|
|
|
4882 Fix warnings.
|
|
446
|
4883
|
|
442
|
4884 * console-stream.c (stream_init_console):
|
|
|
4885 Fix text/binary problems.
|
|
446
|
4886
|
|
442
|
4887 * device-msw.c:
|
|
|
4888 * device-msw.c (mswindows_finish_init_device):
|
|
|
4889 * device-msw.c (mswindows_delete_device):
|
|
|
4890 [1].
|
|
446
|
4891
|
|
442
|
4892 * device.c (handle_asynch_device_change):
|
|
|
4893 [3].
|
|
446
|
4894
|
|
442
|
4895 * dgif_lib.c:
|
|
|
4896 * dgif_lib.c (DGifOpenFileName):
|
|
|
4897 * dgif_lib.c (DGifOpenFileHandle):
|
|
|
4898 * dgif_lib.c (DGifGetLine):
|
|
|
4899 * dgif_lib.c (DGifGetPixel):
|
|
|
4900 Added config.h/lisp.h, fix up includes.
|
|
|
4901 [1].
|
|
446
|
4902
|
|
442
|
4903 * dired-msw.c:
|
|
|
4904 [4].
|
|
446
|
4905
|
|
442
|
4906 * dired.c:
|
|
|
4907 * dired.c (file_name_completion):
|
|
|
4908 * dired.c (Ffile_attributes):
|
|
|
4909 * dired.c (syms_of_dired):
|
|
|
4910 [1].
|
|
446
|
4911
|
|
442
|
4912 * dumper.c:
|
|
|
4913 * dumper.c (pdump_file_unmap):
|
|
|
4914 * dumper.c (pdump_load):
|
|
|
4915 [1].
|
|
446
|
4916
|
|
442
|
4917 * editfns.c:
|
|
|
4918 * editfns.c (Ftemp_directory):
|
|
|
4919 * editfns.c (user_login_name):
|
|
|
4920 * editfns.c (Fuser_real_login_name):
|
|
|
4921 * editfns.c (get_home_directory):
|
|
|
4922 [1].
|
|
446
|
4923
|
|
442
|
4924 * elhash.c (finish_marking_weak_hash_tables):
|
|
|
4925 [[[[5]]]]: Fix GCC warnings.
|
|
446
|
4926
|
|
442
|
4927 * emacs.c:
|
|
|
4928 * emacs.c (mswindows_handle_hardware_exceptions):
|
|
|
4929 * emacs.c (make_arg_list_1):
|
|
|
4930 * emacs.c (main_1):
|
|
|
4931 * emacs.c (Fkill_emacs):
|
|
|
4932 * emacs.c (Fdump_emacs):
|
|
|
4933 [1].
|
|
|
4934 Fix problems with nested crashes, add long comment.
|
|
446
|
4935
|
|
442
|
4936 * event-Xt.c (init_event_Xt_late):
|
|
|
4937 [1].
|
|
446
|
4938
|
|
442
|
4939 * event-msw.c:
|
|
|
4940 * event-msw.c (mswindows_dde_callback):
|
|
|
4941 * event-msw.c (mswindows_handle_sticky_modifiers):
|
|
|
4942 * event-msw.c (mswindows_wnd_proc):
|
|
|
4943 [1].
|
|
|
4944 [5].
|
|
446
|
4945
|
|
442
|
4946 * events.c (character_to_event):
|
|
|
4947 [1].
|
|
446
|
4948
|
|
442
|
4949 * fileio.c:
|
|
|
4950 * fileio.c (Ffile_name_directory):
|
|
|
4951 * fileio.c (Ffile_name_nondirectory):
|
|
|
4952 * fileio.c (directory_file_name):
|
|
|
4953 * fileio.c (Fexpand_file_name):
|
|
|
4954 * fileio.c (Fsubstitute_in_file_name):
|
|
|
4955 * fileio.c (Ffile_name_absolute_p):
|
|
|
4956 * fileio.c (check_executable):
|
|
|
4957 * fileio.c (Ffile_readable_p):
|
|
|
4958 * fileio.c (Ffile_accessible_directory_p):
|
|
|
4959 * fileio.c (Ffile_modes):
|
|
|
4960 * fileio.c (Funix_sync):
|
|
|
4961 * fileio.c (vars_of_fileio):
|
|
|
4962 [1]. [4].
|
|
|
4963
|
|
|
4964 [[[[7]]]]: Move CORRECT_DIR_SEPS to s\windowsnt.h.
|
|
446
|
4965
|
|
442
|
4966 Expand getdefdir defn.
|
|
|
4967 Fix bogus rename() comment.
|
|
|
4968
|
|
|
4969 [[[[6]]]]: Fix Windows includes w.r.t. removed nt\inc. Attempt
|
|
|
4970 to use standard XEmacs include files, e.g. sysfile.h, rather
|
|
|
4971 than system-specific includes.
|
|
446
|
4972
|
|
442
|
4973 * fns.c:
|
|
|
4974 * fns.c (Fsubseq):
|
|
|
4975 [5]. [6].
|
|
446
|
4976
|
|
442
|
4977 * frame.c (vars_of_frame):
|
|
|
4978 [1].
|
|
446
|
4979
|
|
442
|
4980 * getloadavg.c:
|
|
|
4981 * getloadavg.c (getloadavg):
|
|
|
4982 [1]. [6].
|
|
|
4983 #ifdef XEMACS not defined on Cygwin. Remove this; no need for it.
|
|
|
4984 (We don't use it elsewhere in the code; just add a comment.)
|
|
446
|
4985
|
|
442
|
4986 * gif_io.c:
|
|
|
4987 [6].
|
|
|
4988 Add config.h.
|
|
446
|
4989
|
|
442
|
4990 * glyphs-msw.c:
|
|
|
4991 * glyphs-msw.c (mswindows_resource_instantiate):
|
|
|
4992 [1].
|
|
446
|
4993
|
|
442
|
4994 * glyphs-x.c (x_native_layout_instantiate):
|
|
|
4995 [5].
|
|
446
|
4996
|
|
442
|
4997 * gui-msw.c (Fmswindows_shell_execute):
|
|
|
4998 [1].
|
|
446
|
4999
|
|
442
|
5000 * insdel.c:
|
|
|
5001 [4].
|
|
446
|
5002
|
|
442
|
5003 * lisp.h:
|
|
|
5004 [4]. [5].
|
|
446
|
5005
|
|
442
|
5006 * lread.c (locate_file_in_directory_mapper):
|
|
|
5007 [1].
|
|
446
|
5008
|
|
442
|
5009 * lstream.c:
|
|
|
5010 [4].
|
|
446
|
5011
|
|
442
|
5012 * mem-limits.h:
|
|
|
5013 * mem-limits.h (get_lim_data):
|
|
|
5014 [1].
|
|
446
|
5015
|
|
442
|
5016 * menubar-msw.c:
|
|
|
5017 [4].
|
|
446
|
5018
|
|
442
|
5019 * ndir.h:
|
|
|
5020 [1].
|
|
446
|
5021
|
|
442
|
5022 * nt.c:
|
|
|
5023 * nt.c (getwd):
|
|
|
5024 * nt.c (closedir):
|
|
|
5025 * nt.c (rva_to_section):
|
|
|
5026 * nt.c (mswindows_executable_type):
|
|
|
5027 [1]. [6].
|
|
|
5028 Fix closedir() defn.
|
|
446
|
5029
|
|
442
|
5030 * nt.h:
|
|
|
5031 [[[[8]]]]: *_OK defs moved to sysfile.h.
|
|
446
|
5032
|
|
442
|
5033 * ntproc.c:
|
|
|
5034 [6]. [7].
|
|
446
|
5035
|
|
442
|
5036 * objects-x.c:
|
|
|
5037 [4].
|
|
446
|
5038
|
|
442
|
5039 * print.c:
|
|
|
5040 * print.c (std_handle_out_external):
|
|
|
5041 [1]. [4].
|
|
446
|
5042
|
|
442
|
5043 * process-nt.c:
|
|
|
5044 * process-nt.c (nt_create_process):
|
|
|
5045 [6].
|
|
|
5046 try to fix process quoting somewhat.
|
|
446
|
5047
|
|
442
|
5048 * process-unix.c (unix_create_process):
|
|
|
5049 [1].
|
|
446
|
5050
|
|
442
|
5051 * process.c:
|
|
|
5052 * process.c (vars_of_process):
|
|
|
5053 Add Vnull_device.
|
|
446
|
5054
|
|
442
|
5055 * process.h:
|
|
|
5056 [1].
|
|
446
|
5057
|
|
442
|
5058 * realpath.c:
|
|
|
5059 * realpath.c (xrealpath):
|
|
|
5060 [1].
|
|
446
|
5061
|
|
442
|
5062 * redisplay-tty.c (init_tty_for_redisplay):
|
|
|
5063 [3].
|
|
446
|
5064
|
|
442
|
5065 * redisplay.c:
|
|
|
5066 [4]. [6].
|
|
446
|
5067
|
|
442
|
5068 * scrollbar-msw.c:
|
|
|
5069 [4].
|
|
446
|
5070
|
|
442
|
5071 * sheap.c:
|
|
|
5072 * sheap.c (more_static_core):
|
|
|
5073 * sheap.c (report_sheap_usage):
|
|
|
5074 [5]. [6].
|
|
446
|
5075
|
|
442
|
5076 * signal.c:
|
|
|
5077 * signal.c (alarm_signal):
|
|
446
|
5078 [1]. [6].
|
|
|
5079
|
|
442
|
5080 * sound.c:
|
|
|
5081 [6].
|
|
446
|
5082
|
|
442
|
5083 * strftime.c:
|
|
|
5084 * strftime.c (zone_name):
|
|
|
5085 [1]. [5].
|
|
446
|
5086
|
|
442
|
5087 * symsinit.h (init_sunpro):
|
|
|
5088 [1].
|
|
446
|
5089
|
|
442
|
5090 * syscommctrl.h:
|
|
|
5091 commctrl.h not in Cygwin b20.1.
|
|
446
|
5092
|
|
442
|
5093 * sysdep.c:
|
|
|
5094 * sysdep.c (endif):
|
|
|
5095 * sysdep.c (sys_subshell):
|
|
|
5096 * sysdep.c (init_baud_rate):
|
|
|
5097 * sysdep.c (emacs_get_tty):
|
|
|
5098 * sysdep.c (emacs_set_tty):
|
|
|
5099 * sysdep.c (tty_init_sys_modes_on_device):
|
|
|
5100 * sysdep.c (init_system_name):
|
|
|
5101 * sysdep.c (sys_open):
|
|
|
5102 * sysdep.c (interruptible_open):
|
|
|
5103 * sysdep.c (sys_fopen):
|
|
|
5104 * sysdep.c (sys_mkdir):
|
|
|
5105 * sysdep.c (sys_rename):
|
|
|
5106 * sysdep.c (get_process_times_1):
|
|
|
5107 [1]. [6].
|
|
446
|
5108
|
|
442
|
5109 * sysdep.h:
|
|
|
5110 [1].
|
|
446
|
5111
|
|
442
|
5112 * sysdir.h:
|
|
|
5113 * sysdir.h (DIRENTRY_NONEMPTY):
|
|
|
5114 [1]. [6].
|
|
446
|
5115
|
|
442
|
5116 * sysdll.c (dll_init):
|
|
|
5117 * sysdll.h:
|
|
|
5118 [1].
|
|
446
|
5119
|
|
442
|
5120 * sysfile.h:
|
|
|
5121 [1]. [6]. [8].
|
|
|
5122 added text/binary defs.
|
|
446
|
5123
|
|
442
|
5124 * sysfloat.h:
|
|
|
5125 [1].
|
|
446
|
5126
|
|
442
|
5127 * sysproc.h:
|
|
|
5128 * sysproc.h (EDESTADDRREQ):
|
|
|
5129 * sysproc.h (poll_fds_for_input):
|
|
|
5130 [1]. [6].
|
|
446
|
5131
|
|
442
|
5132 * syspwd.h:
|
|
|
5133 [6].
|
|
446
|
5134
|
|
442
|
5135 * syssignal.h:
|
|
|
5136 [1].
|
|
446
|
5137
|
|
442
|
5138 * systime.h:
|
|
|
5139 [1]. [6].
|
|
446
|
5140
|
|
442
|
5141 * systty.h:
|
|
|
5142 [1].
|
|
446
|
5143
|
|
442
|
5144 * syswindows.h:
|
|
|
5145 [1].
|
|
|
5146 Always define WIN32_LEAN_AND_MEAN.
|
|
446
|
5147
|
|
442
|
5148 * unexcw.c (unexec):
|
|
|
5149 [5].
|
|
446
|
5150
|
|
442
|
5151 * unexec.c:
|
|
|
5152 * unexec.c (copy_text_and_data):
|
|
|
5153 * unexec.c (adjust_lnnoptrs):
|
|
|
5154 [1].
|
|
446
|
5155
|
|
442
|
5156 * unexnt.c:
|
|
|
5157 * unexnt.c (_start):
|
|
|
5158 [1].
|
|
446
|
5159
|
|
442
|
5160 2000-06-07 Ben Wing <ben@xemacs.org>
|
|
|
5161
|
|
|
5162 * mule-mcpath.c, mule-mcpath.h: Removed. Old, crufty code that
|
|
|
5163 was used only as a model. We've long since extracted any useful
|
|
|
5164 logic or code out of this. (I just did an exhaustive search.)
|
|
|
5165
|
|
|
5166 * s\msdos.h: Removed.
|
|
|
5167
|
|
|
5168 * s\windows95.h: Removed.
|
|
|
5169
|
|
|
5170 2000-06-10 Ben Wing <ben@xemacs.org>
|
|
|
5171
|
|
|
5172 * s\cygwin32.h:
|
|
|
5173 [1]. [5].
|
|
|
5174 Don't use extern with fun defs.
|
|
446
|
5175
|
|
442
|
5176 * s\mingw32.h:
|
|
|
5177 [1]. [7].
|
|
|
5178 Remove nt\inc include.
|
|
|
5179 Remove getdisk, getdefdir. (The former is unused, the latter
|
|
|
5180 expanded in fileio.h.)
|
|
446
|
5181
|
|
442
|
5182 * s\windowsnt.h:
|
|
|
5183 * s\windowsnt.h (WIN32_NATIVE):
|
|
|
5184 * s\windowsnt.h (HAVE_STRCASECMP):
|
|
|
5185 [1]. [7].
|
|
|
5186 Add long comment about preprocessor changes.
|
|
|
5187 Remove getdisk, getdefdir. (The former is unused, the latter
|
|
|
5188 expanded in fileio.h.)
|
|
|
5189
|
|
|
5190 2000-06-10 Ben Wing <ben@xemacs.org>
|
|
|
5191
|
|
|
5192 * m\arm.h:
|
|
|
5193 * m\delta.h:
|
|
|
5194 * m\intel386.h:
|
|
|
5195 * m\sequent.h:
|
|
|
5196 * m\template.h:
|
|
|
5197 * m\windowsnt.h:
|
|
|
5198 [1].
|
|
|
5199 Remove bogus/unused NO_SOCK_SIGIO.
|
|
446
|
5200
|
|
442
|
5201 2000-06-08 Hrvoje Niksic <hniksic@iskon.hr>
|
|
|
5202
|
|
|
5203 * lisp.h (set_string_char): Call set_string_byte with a Bufbyte,
|
|
|
5204 not an Emchar.
|
|
|
5205
|
|
|
5206 2000-06-04 Mike Sperber <mike@xemacs.org>
|
|
|
5207
|
|
|
5208 * casetab.c (set_case_table): For `set-standard-case-table',
|
|
|
5209 actually deposit the new case tables where the rest of XEmacs can
|
|
|
5210 see them.
|
|
|
5211
|
|
|
5212 2000-06-05 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
5213
|
|
|
5214 * data.c (Faset): Don't cast XCHAR() to unsigned char.
|
|
|
5215
|
|
|
5216 2000-06-05 Ben Wing <ben@xemacs.org>
|
|
|
5217
|
|
|
5218 * callproc.c (child_setup): Don't do close_load_descs() under
|
|
|
5219 MS Windows. Put in a comment explaining why.
|
|
|
5220
|
|
|
5221 2000-05-28 Adrian Aichner <aichner@ecf.teradyne.com>
|
|
|
5222
|
|
|
5223 * process-nt.c: Reverting patch "Fixing nt_create_process for MKS
|
|
|
5224 Toolkit shell" which breaks `kill-compilation' on Windows NT
|
|
|
5225 native, retaining STDERR handling improvements.
|
|
|
5226
|
|
|
5227 2000-06-01 Andreas Jaeger <aj@suse.de>
|
|
|
5228
|
|
|
5229 * s/s390.h: Support for S390, based on a patch by Martin
|
|
|
5230 Schwidefsky <schwidefsky@de.ibm.com>.
|
|
|
5231
|
|
|
5232 2000-05-30 Andy Piper <andy@xemacs.org>
|
|
|
5233
|
|
446
|
5234 * window.c (allocate_window):
|
|
|
5235 (make_dummy_parent):
|
|
442
|
5236 (Fset_window_configuration): use new hashtable type.
|
|
|
5237
|
|
446
|
5238 * glyphs.h (IMAGE_UNSPECIFIED_GEOMETRY):
|
|
|
5239 (struct image_instantiator_methods):
|
|
442
|
5240 (struct Lisp_Image_Instance): make instance geometry signed.
|
|
|
5241
|
|
446
|
5242 * glyphs.c (instantiate_image_instantiator):
|
|
|
5243 (image_instance_query_geometry):
|
|
|
5244 (image_instance_layout):
|
|
|
5245 (image_instance_layout):
|
|
|
5246 (query_string_geometry):
|
|
|
5247 (text_query_geometry):
|
|
|
5248 (image_instantiate):
|
|
|
5249 (image_instantiate):
|
|
|
5250 (cache_subwindow_instance_in_frame_maybe):
|
|
442
|
5251 (subwindow_query_geometry): make instance geometry signed.
|
|
|
5252
|
|
446
|
5253 * glyphs-widget.c (widget_query_geometry):
|
|
|
5254 (widget_layout):
|
|
|
5255 (button_query_geometry):
|
|
|
5256 (tree_view_query_geometry):
|
|
|
5257 (tab_control_query_geometry):
|
|
|
5258 (layout_query_geometry):
|
|
|
5259 (layout_layout):
|
|
442
|
5260 (native_layout_layout): make instance geometry signed.
|
|
|
5261
|
|
|
5262 2000-05-29 Olivier Galibert <galibert@pobox.com>
|
|
|
5263
|
|
|
5264 * lisp.h: Add Qfull_assoc symbol and WEAK_LIST_FULL_ASSOC
|
|
|
5265 constant.
|
|
|
5266
|
|
|
5267 * general.c (syms_of_general): Add Qfull_assoc symbol.
|
|
|
5268
|
|
|
5269 * data.c (finish_marking_weak_lists): Mark full-assoc lists
|
|
|
5270 correctly.
|
|
|
5271 (decode_weak_list_type): Decode full-assoc type.
|
|
|
5272 (encode_weak_list_type): Encode full-assoc type.
|
|
|
5273 (Fmake_weak_list): Update doc string.
|
|
|
5274
|
|
|
5275 2000-05-30 Andy Piper <andy@xemacs.org>
|
|
|
5276
|
|
|
5277 * elhash.h (hash_table_weakness): new KEY_VALUE weak hashtable.
|
|
|
5278
|
|
|
5279 * elhash.c (print_hash_table): new KEY_VALUE weak hashtable.
|
|
|
5280 (decode_hash_table_weakness): ditto.
|
|
|
5281 (Fhash_table_weakness): ditto.
|
|
|
5282 (Fhash_table_type): ditto.
|
|
|
5283 (finish_marking_weak_hash_tables): ditto.
|
|
|
5284 (hash_table_weakness_validate): ditto.
|
|
|
5285 (syms_of_elhash): ditto.
|
|
|
5286
|
|
|
5287 2000-05-28 Martin Buchholz <martin@xemacs.org>
|
|
|
5288
|
|
|
5289 * XEmacs 21.2.34 is released.
|
|
|
5290
|
|
|
5291 2000-05-22 Jan Vroonhof <vroonhof@math.ethz.ch>
|
|
|
5292
|
|
|
5293 * redisplay.c (VERTICAL_CLIP): No longer reset when updating line
|
|
|
5294 start cache.
|
|
|
5295 (updating_line_start_cache): Gone.
|
|
|
5296 (regenerate_window): Replace resetting of VERTICAL_CLIP by
|
|
|
5297 generic code to force a minimum of 1 line laid out in the
|
|
|
5298 CMOTION_DISP case.
|
|
|
5299
|
|
|
5300 2000-05-22 Jan Vroonhof <vroonhof@math.ethz.ch>
|
|
|
5301
|
|
|
5302 * glyphs.c (instantiate_image_instantiator): Check for initialized
|
|
|
5303 height & width no longer special cases IMAGE_NOTHING.
|
|
|
5304 (nothing_instantiate): Set height and width of instance.
|
|
|
5305
|
|
|
5306 2000-05-24 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
5307
|
|
|
5308 * unexelf.c (unexec): Search for ".data" section.
|
|
|
5309 Initialize new_data2_offset from old_data_index.
|
|
|
5310 Remove redundant check for ElfW.
|
|
|
5311
|
|
|
5312 2000-05-23 Andy Piper <andy@xemacs.org>
|
|
|
5313
|
|
|
5314 * glyphs.c (get_image_instantiator_governing_domain): allow more
|
|
|
5315 specific domains as the governing domain rather than expecting an
|
|
|
5316 exact match. This fixes problems with layouts.
|
|
|
5317
|
|
|
5318 2000-05-22 Andy Piper <andy@xemacs.org>
|
|
|
5319
|
|
|
5320 * redisplay-output.c (compare_runes): check for non-images
|
|
|
5321
|
|
|
5322 * glyphs.c (set_glyph_dirty_p): ditto.
|
|
|
5323 (update_glyph_cachel_data): ditto.
|
|
|
5324
|
|
|
5325 * glyphs-widget.c (layout_post_instantiate): ditto.
|
|
|
5326 (layout_post_instantiate): ditto.
|
|
|
5327
|
|
|
5328 * event-msw.c (mswindows_wnd_proc): warning removal.
|
|
|
5329
|
|
|
5330 2000-05-12 Craig Lanning <CraigL@DyCon.com>
|
|
|
5331
|
|
|
5332 * s\mingw32.h: Added #undef for CLASH_DETECTION.
|
|
|
5333
|
|
|
5334 * syswindows.h: Moved PBS_SMOOTH definition to syscommctrl.h.
|
|
|
5335
|
|
|
5336 * syscommctrl.h (PBS_SMOOTH): Moved from syswindows.h.
|
|
|
5337
|
|
|
5338 * nt.c (rva_to_section): mingw32 needs rva_to_section.
|
|
|
5339 (mswindows_executable_type): mingw32 now has enough headers for
|
|
|
5340 this to work.
|
|
|
5341
|
|
|
5342 2000-05-20 Andy Piper <andy@xemacs.org>
|
|
|
5343
|
|
|
5344 * console-msw.c (mswindows_output_last_error): ; -> ,
|
|
|
5345
|
|
|
5346 2000-05-12 Andy Piper <andy@xemacs.org>
|
|
|
5347
|
|
|
5348 * console-msw.c (FROB): compare ints with ints.
|
|
|
5349
|
|
|
5350 2000-05-11 Andy Piper <andy@xemacs.org>
|
|
|
5351
|
|
|
5352 * glyphs-x.c (x_finalize_image_instance): make minimal build
|
|
|
5353 happy.
|
|
|
5354
|
|
|
5355 2000-05-20 Ben Wing <ben@xemacs.org>
|
|
|
5356
|
|
|
5357 * event-Xt.c:
|
|
|
5358 * event-Xt.c (vars_of_event_Xt):
|
|
|
5359 move modifier-keys-are-sticky to event-stream.c.
|
|
446
|
5360
|
|
442
|
5361 * event-msw.c:
|
|
|
5362 * event-msw.c (mswindows_enqueue_mouse_button_event):
|
|
|
5363 * event-msw.c (key_needs_default_processing_p):
|
|
|
5364 * event-msw.c (XEMSW_LCONTROL):
|
|
|
5365 * event-msw.c (mswindows_handle_sticky_modifiers):
|
|
|
5366 * event-msw.c (FROB):
|
|
|
5367 * event-msw.c (clear_sticky_modifiers):
|
|
|
5368 * event-msw.c (output_modifier_keyboard_state):
|
|
|
5369 * event-msw.c (output_alt_keyboard_state):
|
|
|
5370 * event-msw.c (mswindows_wnd_proc):
|
|
|
5371 * event-msw.c (mswindows_modifier_state):
|
|
|
5372 * event-msw.c (emacs_mswindows_handle_magic_event):
|
|
|
5373 implement sticky modifiers.
|
|
446
|
5374
|
|
442
|
5375 * event-stream.c:
|
|
|
5376 * event-stream.c (vars_of_event_stream):
|
|
|
5377 move modifier-keys-are-sticky here.
|
|
|
5378
|
|
|
5379 * lisp.h:
|
|
|
5380 add CHECK_FUNCTION.
|
|
446
|
5381
|
|
442
|
5382 * rangetab.c:
|
|
|
5383 implement map-range-table.
|
|
|
5384
|
|
|
5385
|
|
|
5386 2000-05-17 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
5387
|
|
|
5388 * redisplay-tty.c (reset_tty_modes):
|
|
|
5389 (tty_redisplay_shutdown): Adjust argument type to
|
|
|
5390 tty_frame_output_end.
|
|
|
5391
|
|
|
5392 2000-05-11 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
5393
|
|
|
5394 * eval.c (Fbacktrace): Don't output a line with only right
|
|
|
5395 parenthesis.
|
|
|
5396
|
|
|
5397 2000-05-17 Kenji Itoh <keit@tpj.co.jp>
|
|
|
5398
|
|
|
5399 * postgresql.c (Fpq_connect_poll): Replace `PS' with `polling_status'.
|
|
|
5400 (Fpq_reset_poll): Ditto.
|
|
|
5401
|
|
|
5402 2000-05-16 Katsumi Yamaoka <yamaoka@jpl.org>
|
|
|
5403
|
|
|
5404 * redisplay-tty.c: Replace tty_output_end with tty_frame_output_end.
|
|
|
5405
|
|
|
5406 2000-05-16 Ben Wing <ben@xemacs.org>
|
|
|
5407
|
|
|
5408 * buffer.c:
|
|
|
5409 * buffer.c (dfc_convert_to/from_internal_format):
|
|
|
5410 * buffer.c (reinit_vars_of_buffer):
|
|
|
5411 Fix conversion functions to allow reentrancy.
|
|
446
|
5412
|
|
442
|
5413 * console-msw.c:
|
|
|
5414 * console-msw.c (mswindows_output_last_error):
|
|
|
5415 New fun, generally useful -- output a human-readable
|
|
|
5416 version of GetLastError() on the console.
|
|
446
|
5417
|
|
442
|
5418 * console-msw.h:
|
|
|
5419 * console-msw.h (struct mswindows_frame):
|
|
|
5420 Changes for DeferWindowPos. Declare mswindows_output_last_error().
|
|
446
|
5421
|
|
442
|
5422 * console-stream.c (stream_output_begin):
|
|
|
5423 * console-stream.c (stream_output_end):
|
|
|
5424 * console-stream.c (stream_output_vertical_divider):
|
|
|
5425 * console-stream.c (stream_clear_region):
|
|
|
5426 * console-stream.c (stream_flash):
|
|
|
5427 * console-stream.c (console_type_create_stream):
|
|
|
5428 Delete blank stream methods, not needed.
|
|
446
|
5429
|
|
442
|
5430 * console.h (struct console_methods):
|
|
|
5431 Split begin/end methods into window and frame.
|
|
446
|
5432
|
|
442
|
5433 * event-msw.c:
|
|
|
5434 * event-msw.c (mswindows_handle_paint):
|
|
|
5435 * event-msw.c (output_alt_keyboard_state):
|
|
|
5436 * event-msw.c (mswindows_wnd_proc):
|
|
|
5437 * event-msw.c (vars_of_event_mswindows):
|
|
|
5438 Comment about problems with ignored-expose.
|
|
|
5439 Define mswindows-debug-events; not really implemented.
|
|
446
|
5440
|
|
442
|
5441 * frame-msw.c (mswindows_init_frame_1):
|
|
|
5442 random cleanups.
|
|
446
|
5443
|
|
442
|
5444 * glyphs-msw.c:
|
|
|
5445 * glyphs-msw.c (begin_defer_window_pos):
|
|
|
5446 * glyphs-msw.c (mswindows_unmap_subwindow):
|
|
|
5447 * glyphs-msw.c (mswindows_map_subwindow):
|
|
|
5448 * glyphs-msw.c (mswindows_resize_subwindow):
|
|
|
5449 Use DeferWindowPos to reduce flashing when mapping/unmapping.
|
|
446
|
5450
|
|
442
|
5451 * glyphs.c (make_image_instance_1):
|
|
|
5452 Fix crash.
|
|
446
|
5453
|
|
442
|
5454 * gutter.c (Fredisplay_gutter_area):
|
|
|
5455 Use new begin/end methods.
|
|
446
|
5456
|
|
442
|
5457 * lisp.h (Dynarr_new2):
|
|
|
5458 New creation fun.
|
|
446
|
5459
|
|
442
|
5460 * redisplay-msw.c:
|
|
|
5461 * redisplay-msw.c (mswindows_frame_output_begin):
|
|
|
5462 * redisplay-msw.c (mswindows_frame_output_end):
|
|
|
5463 * redisplay-msw.c (console_type_create_redisplay_mswindows):
|
|
|
5464 New begin/end methods -- handle DeferWindowPos.
|
|
446
|
5465
|
|
442
|
5466 * redisplay-output.c (redisplay_move_cursor):
|
|
|
5467 * redisplay-output.c (redraw_cursor_in_window):
|
|
|
5468 * redisplay-output.c (redisplay_update_line):
|
|
|
5469 * redisplay-output.c (redisplay_output_window):
|
|
|
5470 New begin/end methods.
|
|
|
5471
|
|
|
5472 * redisplay-tty.c:
|
|
|
5473 * redisplay-tty.c (tty_frame_output_begin):
|
|
|
5474 * redisplay-tty.c (tty_frame_output_end):
|
|
|
5475 * redisplay-tty.c (console_type_create_redisplay_tty):
|
|
|
5476 New begin/end methods.
|
|
|
5477
|
|
|
5478 * redisplay-x.c:
|
|
|
5479 * redisplay-x.c (x_window_output_begin):
|
|
|
5480 * redisplay-x.c (x_window_output_end):
|
|
|
5481 * redisplay-x.c (console_type_create_redisplay_x):
|
|
|
5482 New begin/end methods.
|
|
|
5483
|
|
|
5484 * redisplay.c (redisplay_frame):
|
|
|
5485 * redisplay.c (Fredisplay_echo_area):
|
|
|
5486 New begin/end methods.
|
|
|
5487 use MAYBE_DEVMETH for clear_frame; it may not exist.
|
|
|
5488
|
|
|
5489 * window.h (WINDOW_XFRAME):
|
|
|
5490 WINDOW_XFOO macros -- get locale and decode struct pointer.
|
|
|
5491
|
|
|
5492
|
|
|
5493 2000-05-12 Ben Wing <ben@xemacs.org>
|
|
|
5494
|
|
|
5495 * emacs.c:
|
|
|
5496 * emacs.c (ensure_no_quitting_from_now_on):
|
|
|
5497 * emacs.c (fatal_error_signal):
|
|
|
5498 * emacs.c (mswindows_handle_hardware_exceptions):
|
|
|
5499 * emacs.c (main):
|
|
|
5500 * emacs.c (Fkill_emacs):
|
|
|
5501 * emacs.c (shut_down_emacs):
|
|
|
5502 * emacs.c (assert_failed):
|
|
|
5503 various improvements in fatal error handling.
|
|
446
|
5504
|
|
442
|
5505 * eval.c:
|
|
|
5506 move preparing_for_armageddon to emacs.c.
|
|
446
|
5507
|
|
442
|
5508 * lisp.h:
|
|
|
5509 declare fatal_error_in_progress.
|
|
446
|
5510
|
|
442
|
5511 * print.c:
|
|
|
5512 * print.c (std_handle_out_external):
|
|
|
5513 * print.c (std_handle_out_va):
|
|
|
5514 * print.c (stderr_out):
|
|
|
5515 * print.c (stdout_out):
|
|
|
5516 use console under mswin when no standard output.
|
|
|
5517 don't do code conversion during fatal error.
|
|
446
|
5518
|
|
442
|
5519 * scrollbar.c (Fscrollbar_page_up):
|
|
|
5520 * scrollbar.c (Fscrollbar_page_down):
|
|
|
5521 fix missing else. reindent.
|
|
|
5522
|
|
|
5523 2000-05-11 Jan Vroonhof <vroonhof@math.ethz.ch>
|
|
|
5524
|
|
446
|
5525 Emergency fix.
|
|
|
5526
|
|
|
5527 * glyphs.h (GLYPH_CACHEL_DESCENT):
|
|
|
5528 (GLYPH_CACHEL_DESCENT):
|
|
|
5529 (GLYPH_CACHEL_DESCENT):
|
|
442
|
5530 * glyphs.h (GLYPH_CACHEL_ASCENT): Match parameters to variables
|
|
|
5531 used in case these are inline functions.
|
|
|
5532 Use more absurd values to error check.
|
|
|
5533
|
|
|
5534 include window.h for error check functions.
|
|
|
5535
|
|
|
5536 2000-05-11 Ben Wing <ben@xemacs.org>
|
|
|
5537
|
|
|
5538 * cmdloop.c (Freally_early_error_handler):
|
|
|
5539 Display message box under windows; otherwise, message will disappear
|
|
|
5540 before it can be viewed.
|
|
|
5541
|
|
|
5542 * console-msw.c:
|
|
|
5543 * console-msw.c (Fmswindows_message_box):
|
|
|
5544 * console-msw.c (FROB):
|
|
|
5545 * console-msw.c (syms_of_console_mswindows):
|
|
|
5546 Define new fun `mswindows-message-box'.
|
|
|
5547 #### I will merge this into `popup-dialog-box'; just give me
|
|
|
5548 a bit of time.
|
|
446
|
5549
|
|
442
|
5550 * general.c:
|
|
|
5551 * general.c (syms_of_general):
|
|
|
5552 Some new symbols used in `mswindows-message-box'.
|
|
446
|
5553
|
|
442
|
5554 * glyphs.c:
|
|
|
5555 * glyphs.c (Fset_image_instance_property):
|
|
|
5556 put warning in this fun.
|
|
446
|
5557
|
|
442
|
5558 * glyphs.h:
|
|
|
5559 * glyphs.h (GLYPH_CACHEL_WIDTH):
|
|
|
5560 * glyphs.h (GLYPH_CACHEL_ASCENT):
|
|
|
5561 * glyphs.h (GLYPH_CACHEL):
|
|
|
5562 * glyphs.h (GLYPH_CACHEL_GLYPH):
|
|
|
5563 define error-checking versions to try to catch a bug i've seen --
|
|
|
5564 redisplay gets in an infinite loop because the glyph width of the
|
|
|
5565 continuation glyph is 65535.
|
|
446
|
5566
|
|
442
|
5567 * lisp.h:
|
|
|
5568 Extern message-box stuff.
|
|
|
5569
|
|
|
5570 * window.c (allocate_window):
|
|
|
5571 * window.c (make_dummy_parent):
|
|
|
5572 * window.c (Fset_window_configuration):
|
|
|
5573 Use EQUAL not EQ for subwindow caches to make them work a bit
|
|
|
5574 better. (Something is still very broken.)
|
|
446
|
5575
|
|
442
|
5576
|
|
|
5577 2000-05-11 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
5578
|
|
|
5579 * glyphs.c (image_instantiate): Suppress gcc warnings.
|
|
|
5580 (Fmake_image_instance): Fix doc string.
|
|
|
5581 * specifier.c (Fmake_specifier): Ditto.
|
|
|
5582
|
|
|
5583 2000-05-02 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
5584
|
|
|
5585 * paths.h.in (PATH_LOCK): Removed.
|
|
|
5586 * config.h.in (LOCKDIR_USER_DEFINED): Removed.
|
|
|
5587 * emacs.c (complex_vars_of_emacs): Remove configure-lock-directory.
|
|
|
5588
|
|
|
5589 2000-05-08 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
5590
|
|
|
5591 * fns.c (Ffeaturep): Update e-mail address in doc-string.
|
|
|
5592 Document (featurep '(and xemacs 21.02)).
|
|
|
5593
|
|
|
5594 2000-05-09 Ben Wing <ben@xemacs.org>
|
|
|
5595
|
|
|
5596 * buffer.c (complex_vars_of_buffer):
|
|
|
5597 update modeline-format doc.
|
|
446
|
5598
|
|
442
|
5599 * device.h:
|
|
|
5600 comment about how DFW_DEVICE should be merged with DOMAIN_DEVICE.
|
|
446
|
5601
|
|
442
|
5602 * emacs.c:
|
|
|
5603 timeline of all released versions of Emacs, for use in creating
|
|
|
5604 authorship comments and in synching up.
|
|
446
|
5605
|
|
442
|
5606 * glyphs-widget.c (image_instantiator_buttons):
|
|
|
5607 * glyphs-widget.c (image_instantiator_edit_fields):
|
|
|
5608 * glyphs-widget.c (image_instantiator_combo_box):
|
|
|
5609 * glyphs-widget.c (image_instantiator_scrollbar):
|
|
|
5610 * glyphs-widget.c (image_instantiator_progress_guage):
|
|
|
5611 * glyphs-widget.c (image_instantiator_tree_view):
|
|
|
5612 * glyphs-widget.c (image_instantiator_tab_control):
|
|
|
5613 * glyphs-widget.c (image_instantiator_labels):
|
|
|
5614 * glyphs-widget.c (image_instantiator_layout):
|
|
|
5615 * glyphs-widget.c (image_instantiator_native_layout):
|
|
|
5616 rename decode_domain method to governing_domain.
|
|
446
|
5617
|
|
442
|
5618 * glyphs.c:
|
|
|
5619 * glyphs.c (Fvalid_image_instantiator_format_p): doc update.
|
|
|
5620 * glyphs.c (add_entry_to_device_ii_format_list):
|
|
|
5621 make sure we don't put an entry more than once into the list.
|
|
|
5622 * glyphs.c (check_instance_cache_mapper):
|
|
|
5623 *************************************************************
|
|
|
5624 allow for nil. THIS SHOULD FIX A REAL CRASH THAT MANY PEOPLE
|
|
|
5625 HAVE BEEN GETTING.
|
|
|
5626 *************************************************************
|
|
|
5627 * glyphs.c (get_image_instantiator_governing_domain):
|
|
|
5628 clean up, expand on new concept of governing domain.
|
|
|
5629 * glyphs.c (instantiate_image_instantiator):
|
|
|
5630 * glyphs.c (allocate_image_instance):
|
|
|
5631 use governing_domain instead of cache_domain in naming.
|
|
|
5632 * glyphs.c (Fvalid_image_instance_type_p): fix docs.
|
|
|
5633 * glyphs.c (make_image_instance_1):
|
|
|
5634 * glyphs.c (Fmake_image_instance):
|
|
|
5635 allow for any domain (not just device), and process the
|
|
|
5636 governing domain correctly. very big doc fix.
|
|
|
5637 * glyphs.c (Fimage_instance_domain):
|
|
|
5638 new primitive, to retrieve the governing domain of an image instance.
|
|
|
5639 * glyphs.c (image_instantiate):
|
|
|
5640 use new governing_domain stuff. this fixes a crash you could get
|
|
|
5641 by instantiating certain widget glyphs in frame locales. (should
|
|
|
5642 signal an error instead of crashing.)
|
|
|
5643 * glyphs.c (Fimage_specifier_p): move doc to make-image-specifier.
|
|
|
5644 * glyphs.c (Fglyphp): clean up doc.
|
|
|
5645 * glyphs.c (subwindow_governing_domain): renamed from *_decode_domain.
|
|
|
5646 * glyphs.c (syms_of_glyphs):
|
|
|
5647 declare Fimage_instance_domain, remove unused Qlayout_image_instance_p.
|
|
|
5648 * glyphs.c (image_instantiator_format_create): add some comments about
|
|
|
5649 bogus code.
|
|
|
5650 * glyphs.c (specifier_vars_of_glyphs): totally rewrite the doc string
|
|
|
5651 for current-display-table. (Apparently Hrjove implemented in 1998 a
|
|
|
5652 design I wrote up in 1996, but didn't update the doc string.)
|
|
446
|
5653
|
|
442
|
5654 * glyphs.h: clean up a doc string.
|
|
|
5655 * glyphs.h (governing_domain):
|
|
|
5656 * glyphs.h (struct image_instantiator_methods):
|
|
|
5657 changes for governing_domain stuff.
|
|
446
|
5658
|
|
442
|
5659 * gutter.c:
|
|
|
5660 * gutter.c (Fgutter_specifier_p):
|
|
|
5661 * gutter.c (Fgutter_size_specifier_p):
|
|
|
5662 * gutter.c (Fgutter_visible_specifier_p):
|
|
|
5663 * objects.c:
|
|
|
5664 * objects.c (Fcolor_specifier_p):
|
|
|
5665 * objects.c (Ffont_specifier_p):
|
|
|
5666 * objects.c (Fface_boolean_specifier_p):
|
|
|
5667 doc strings moved to make-*-specifier.
|
|
446
|
5668
|
|
442
|
5669 * redisplay.c (add_disp_table_entry_runes_1):
|
|
|
5670 * redisplay.c (generate_fstring_runes):
|
|
|
5671 * redisplay.c (screen):
|
|
|
5672 add random comments and doc strings.
|
|
446
|
5673
|
|
442
|
5674 * specifier.c:
|
|
|
5675 * specifier.c (Fmake_specifier):
|
|
|
5676 major overhaul of this doc string.
|
|
446
|
5677
|
|
442
|
5678 * specifier.c (Fvalid_specifier_domain_p):
|
|
|
5679 comment about the bogosity of image instances being domains.
|
|
|
5680 * specifier.c (decode_domain):
|
|
|
5681 now non-static, used in glyphs.c.
|
|
|
5682 * specifier.c (specifier_instance):
|
|
|
5683 comment about the bogosity of image instances being domains.
|
|
|
5684 * specifier.c (Fgeneric_specifier_p):
|
|
|
5685 move doc string to make-generic-specifier.
|
|
|
5686 * specifier.c (VALID_SINGLE_DISPTABLE_INSTANTIATOR_P):
|
|
|
5687 rebackslashify.
|
|
446
|
5688
|
|
442
|
5689 * specifier.h:
|
|
|
5690 * specifier.h (DOMAIN_FRAME):
|
|
|
5691 * specifier.h (DOMAIN_LIVE_P):
|
|
|
5692 * specifier.h (DOMAIN_XDEVICE):
|
|
|
5693 rebackslashify.
|
|
|
5694 add comments about problems with these macros.
|
|
|
5695 prototype for decode_domain.
|
|
446
|
5696
|
|
442
|
5697 * toolbar.c:
|
|
|
5698 * toolbar.c (Ftoolbar_specifier_p):
|
|
|
5699 move doc string to `make-toolbar-specifier'.
|
|
446
|
5700
|
|
442
|
5701 * window.c (window_unmap_subwindows_cache_mapper):
|
|
|
5702 *************************************************************
|
|
|
5703 allow for nil. THIS SHOULD FIX A REAL CRASH THAT MANY PEOPLE
|
|
|
5704 HAVE BEEN GETTING.
|
|
|
5705 *************************************************************
|
|
|
5706
|
|
|
5707 2000-05-09 Andy Piper <andy@xemacs.org>
|
|
|
5708
|
|
|
5709 * glyphs.h: declare reset_frame_subwindow_instance_cache.
|
|
|
5710
|
|
|
5711 * window.c (Fset_window_configuration): reset the frame subwindow
|
|
|
5712 cache and re-initialize the window subwindow caches.
|
|
|
5713
|
|
|
5714 * glyphs.c (reset_frame_subwindow_instance_cache): new function.
|
|
|
5715
|
|
|
5716 2000-05-09 Ben Wing <ben@xemacs.org>
|
|
|
5717
|
|
|
5718 * ntheap.c (recreate_heap): Changed unknown (VC6 only?) SIZE_T to
|
|
|
5719 DWORD.
|
|
|
5720
|
|
|
5721 2000-04-26 Mike Woolley <mike@bulsara.com>
|
|
|
5722
|
|
|
5723 * ntheap.c: Changed recreate_heap to limit the amount reserved
|
|
|
5724 for the heap to that which is actually available. Also now
|
|
|
5725 displays a message box (with some dignostics) in the event that
|
|
|
5726 it still can't start.
|
|
|
5727
|
|
|
5728 2000-05-07 Jan Vroonhof <vroonhof@math.ethz.ch>
|
|
|
5729
|
|
|
5730 * callproc.c (Fold_call_process_internal): GCPRO path
|
|
|
5731
|
|
|
5732 2000-05-08 Jan Vroonhof <jan@xemacs.org>
|
|
|
5733
|
|
|
5734 Patch by Bill Perry.
|
|
446
|
5735
|
|
|
5736 * scrollbar.c (Fscrollbar_page_up): Conditionalize on type of call
|
|
442
|
5737 back data instead of #ifdef.
|
|
|
5738 (Fscrollbar_page_down): ditto.
|
|
|
5739
|
|
|
5740 2000-05-07 Ben Wing <ben@xemacs.org>
|
|
|
5741
|
|
|
5742 * buffer.h:
|
|
|
5743 Kludge for defining Qmswindows_tstr.
|
|
446
|
5744
|
|
442
|
5745 * nt.c:
|
|
|
5746 * nt.c (open_input_file):
|
|
|
5747 * nt.c (open_output_file):
|
|
|
5748 * nt.c (rva_to_section):
|
|
|
5749 * nt.c (mswindows_executable_type):
|
|
|
5750 Move all memory-mapped-file routines here (some were in unexnt.c,
|
|
|
5751 which is bad because they are used by process-nt.c, and unexnt
|
|
|
5752 won't be around when portable dumping). Synched the above routines
|
|
|
5753 with FSF 20.6.
|
|
446
|
5754
|
|
442
|
5755 * nt.h:
|
|
|
5756 Removed ifdef'd out bogus code.
|
|
|
5757 Fixed some prototypes.
|
|
446
|
5758
|
|
442
|
5759 * nt.h (file_data):
|
|
|
5760 * nt.h (OFFSET_TO_RVA):
|
|
|
5761 * nt.h (RVA_TO_OFFSET):
|
|
|
5762 * nt.h (RVA_TO_PTR):
|
|
|
5763 Moved the memory-mapped-file structures, macros and prototypes
|
|
|
5764 here, to parallel nt.c. ntheap.h should really be removed
|
|
|
5765 entirely, and it's a non-portable-dumper specific file.
|
|
446
|
5766
|
|
442
|
5767 * ntheap.h (round_to_next):
|
|
|
5768 Moved the memory-mapped-file structures, macros and prototypes
|
|
|
5769 to nt.h.
|
|
|
5770
|
|
|
5771 * ntproc.c (compare_env):
|
|
|
5772 Moved rva_to_section and mswindows_executable_type to nt.c.
|
|
|
5773 Moved compare_env to process-nt.c.
|
|
|
5774 ntproc.c will die, one day.
|
|
|
5775
|
|
|
5776 * ntproc.c (sys_spawnve):
|
|
|
5777 Account for win32_ -> mswindows_.
|
|
|
5778
|
|
|
5779 * process-nt.c:
|
|
|
5780 * process-nt.c (struct nt_process_data):
|
|
|
5781 * process-nt.c (ensure_console_window_exists):
|
|
|
5782 * process-nt.c (compare_env):
|
|
|
5783 * process-nt.c (nt_create_process):
|
|
|
5784 * process-nt.c (nt_kill_process_by_pid):
|
|
|
5785 * process-nt.c (syms_of_process_nt):
|
|
|
5786 * process-nt.c (vars_of_process_nt):
|
|
|
5787 Introduce variable `mswindows-quote-process-args', from FSF 20.6.
|
|
|
5788 Copy argument quoting code from FSF 20.6 (with appropriate Mule-ization
|
|
|
5789 changes). Eliminate our old `nt-quote-process-args' mechanism.
|
|
|
5790 Synch up nt_create_process with FSF 20.6 sys_spawnve.
|
|
|
5791 Move compare_env here from ntproc.c.
|
|
446
|
5792
|
|
442
|
5793 * process.c (Fprocess_send_region):
|
|
|
5794 Takes an optional fourth argument, BUFFER, which should fix some
|
|
|
5795 problems with call-process.
|
|
446
|
5796
|
|
442
|
5797 * syscommctrl.h:
|
|
|
5798 Move ICC_BAR_CLASSES here from syswindows.h, to avoid a warning.
|
|
446
|
5799
|
|
442
|
5800 * syswindows.h:
|
|
|
5801 Move ICC_BAR_CLASSES to syscommctrl.h.
|
|
|
5802 Add preliminary macros for MSWindows/Mule. More to come.
|
|
|
5803
|
|
|
5804 * unexnt.c:
|
|
|
5805 * unexnt.c (unexec):
|
|
|
5806 open_output_file moved to nt.c.
|
|
|
5807
|
|
|
5808
|
|
|
5809 2000-05-05 Andy Piper <andy@xemacs.org>
|
|
|
5810
|
|
|
5811 * window.c (window_unmap_subwindows_cache_mapper): remove the dead
|
|
|
5812 instance from the frame cache also since GC may catch up too late
|
|
|
5813 to make frame deletion sane.
|
|
|
5814
|
|
|
5815 2000-05-04 Andy Piper <andy@xemacs.org>
|
|
|
5816
|
|
|
5817 * glyphs-x.c (x_widget_instantiate): gcpro widget callbacks.
|
|
|
5818 (x_finalize_image_instance): ungcpro on deletion.
|
|
|
5819
|
|
|
5820 * glyphs.c (image_instantiator_format_create): give pointers a
|
|
|
5821 query geometry method so that the geometry is at least set.
|
|
|
5822
|
|
|
5823 * glyphs-x.c (image_instantiator_format_create_glyphs_x): only
|
|
|
5824 initialize layouts if using widgets.
|
|
|
5825
|
|
|
5826 2000-05-03 Andy Piper <andy@xemacs.org>
|
|
|
5827
|
|
|
5828 * nt.c: remove bogus reference to sysmmsystem.h
|
|
|
5829
|
|
|
5830 * gui-x.c (popup_selection_callback): fix no selection abort.
|
|
|
5831
|
|
|
5832 2000-05-02 Andy Piper <andy@xemacs.org>
|
|
|
5833
|
|
|
5834 * glyphs-msw.c (mswindows_update_widget): cope with nil text.
|
|
|
5835 (mswindows_widget_instantiate): ditto.
|
|
|
5836
|
|
|
5837 * glyphs-widget.c (initialize_widget_image_instance): initialize
|
|
|
5838 children correctly.
|
|
|
5839 (widget_instantiate): cope with children and items in the same
|
|
|
5840 instance.
|
|
|
5841
|
|
|
5842 * glyphs.c (mark_image_instance): cope with children as a first
|
|
|
5843 class member.
|
|
|
5844 (image_instance_equal): ditto.
|
|
|
5845 (image_instance_hash): ditto.
|
|
|
5846 (image_instance_changed): ditto.
|
|
|
5847
|
|
|
5848 2000-04-30 Andy Piper <andy@xemacs.org>
|
|
|
5849
|
|
|
5850 * glyphs.c (subwindow_query_geometry): new function. Return some
|
|
|
5851 defaults.
|
|
|
5852 (subwindow_instantiate): don't assign dimensions if none have been
|
|
|
5853 given.
|
|
|
5854 (image_instantiator_format_create): add subwindow_query_geometry.
|
|
|
5855 (print_image_instance): cope with layouts as widgets.
|
|
|
5856
|
|
|
5857 2000-04-29 Andy Piper <andy@xemacs.org>
|
|
|
5858
|
|
|
5859 * frame.c (delete_frame_internal): call
|
|
|
5860 free_frame_subwindow_instance_cache so that all subwindows are
|
|
|
5861 finalized before their parent.
|
|
|
5862 (mark_frame): remove subwindow_cachels.
|
|
|
5863 (Fmake_frame): remove subwindow_cachel manipulation.
|
|
|
5864 (allocate_frame_core): subwindow_instance_cache is a weak list.
|
|
|
5865 (delete_frame_internal): set subwindow_instance_cache to nil.
|
|
|
5866
|
|
|
5867 * glyphs-msw.c (mswindows_finalize_image_instance): make double
|
|
|
5868 finalization safe.
|
|
|
5869 (mswindows_finalize_image_instance): use the device
|
|
|
5870 not the domain as the domain may have died already.
|
|
|
5871
|
|
|
5872 * glyphs-x.c (x_finalize_image_instance): ditto.
|
|
|
5873 (x_subwindow_instantiate): remove SUBWINDOW_WIDTH &
|
|
|
5874 HEIGHT.
|
|
|
5875
|
|
|
5876 * redisplay-output.c (redisplay_unmap_subwindows): update for
|
|
|
5877 subwindow instance cache as a weak list.
|
|
|
5878 (redisplay_unmap_subwindows_maybe): ditto.
|
|
|
5879 (redisplay_unmap_subwindows_except_us): ditto.
|
|
|
5880
|
|
|
5881 * glyphs.c (unmap_subwindow): error checking will check the domain
|
|
|
5882 so don't deal with it here. Don't use cachels anymore.
|
|
|
5883 (map_subwindow): ditto.
|
|
|
5884 (update_subwindow_cachel_data): remove old accessor names.
|
|
|
5885 (subwindow_instantiate): remove SUBWINDOW_WIDTH & HEIGHT.
|
|
|
5886 (Fresize_subwindow): don't update cachel.
|
|
|
5887 (mark_subwindow_cachels):
|
|
|
5888 (update_subwindow_cachel_data):
|
|
|
5889 (add_subwindow_cachel):
|
|
|
5890 (get_subwindow_cachel_index):
|
|
|
5891 (update_subwindow_cachel):
|
|
|
5892 (reset_subwindow_cachels):
|
|
|
5893 (mark_subwindow_cachels_as_not_updated): deleted.
|
|
|
5894 (cache_subwindow_instance_in_frame_maybe): new function. Add a
|
|
|
5895 subwindow instance to the frame cache.
|
|
|
5896 (find_matching_subwindow): update for subwindow instance cache as
|
|
|
5897 a weak list.
|
|
|
5898 (update_widget_instances): ditto.
|
|
|
5899 (image_instance_type_to_mask):inlined.
|
|
|
5900 (free_frame_subwindow_instance_cache): new function. finalize all
|
|
|
5901 subwindows that are instantiated.
|
|
|
5902
|
|
|
5903 * glyphs.h (struct Lisp_Image_Instance): add display_data instead
|
|
|
5904 of cachel information.
|
|
|
5905 (IMAGE_INSTANCE_DISPLAY_X):
|
|
|
5906 (IMAGE_INSTANCE_DISPLAY_Y):
|
|
|
5907 (IMAGE_INSTANCE_DISPLAY_WIDTH):
|
|
|
5908 (IMAGE_INSTANCE_DISPLAY_HEIGHT):
|
|
|
5909 (XIMAGE_INSTANCE_DISPLAY_X):
|
|
|
5910 (XIMAGE_INSTANCE_DISPLAY_Y):
|
|
|
5911 (XIMAGE_INSTANCE_DISPLAY_WIDTH):
|
|
446
|
5912 (XIMAGE_INSTANCE_DISPLAY_HEIGHT): new accessors.
|
|
442
|
5913 remove subwindow_cachel structure and function references.
|
|
|
5914 (image_instance_type_to_mask): inline from glyphs.c
|
|
|
5915
|
|
|
5916 * redisplay.c (redisplay_frame): remove subwindow_cachel
|
|
|
5917 references.
|
|
|
5918
|
|
|
5919 * frame.h (struct frame): remove subwindow_cachels.
|
|
|
5920 (FRAME_SUBWINDOW_CACHE): access subwindow_instance_cache.
|
|
|
5921
|
|
|
5922 * frameslots.h: add subwindow_instance_cache.
|
|
|
5923
|
|
|
5924 * window.c (replace_window): check subwindow cache of replacement.
|
|
|
5925 (window_unmap_subwindows_cache_mapper):
|
|
|
5926 (window_unmap_subwindows): new functions. Unmap all subwindows
|
|
|
5927 cached on this window.
|
|
|
5928 (mark_window_as_deleted): unmap all subwindows.
|
|
|
5929
|
|
|
5930 2000-04-27 Andy Piper <andy@xemacs.org>
|
|
|
5931
|
|
|
5932 * glyphs.h (IIFORMAT_METH_OR_GIVEN): cope with null meths.
|
|
|
5933
|
|
|
5934 * glyphs-widget.c (widget_layout): return something.
|
|
|
5935 (layout_layout): return something. Fail if not initialized.
|
|
|
5936 (layout_query_geometry): ditto.
|
|
|
5937 (image_instantiator_native_layout): new function. Initialized the
|
|
|
5938 native layout type.
|
|
|
5939 (widget_instantiate): don't do layout stuff here.
|
|
|
5940
|
|
|
5941 * glyphs.c (instantiate_image_instantiator): reorded calling or
|
|
|
5942 instantiate and post_instantiate with layout in between.
|
|
|
5943 (image_instance_layout): be more selective about deciding whether
|
|
|
5944 the layout has been done or not.
|
|
|
5945
|
|
|
5946 * glyphs.h (struct image_instantiator_methods): return a value
|
|
|
5947 from layout_method.
|
|
|
5948
|
|
|
5949 2000-04-26 Andy Piper <andy@xemacs.org>
|
|
|
5950
|
|
|
5951 * glyphs.c (allocate_image_instance): make initial width and
|
|
|
5952 height unspecified. Set initialized to 0.
|
|
|
5953
|
|
|
5954 * syscommctrl.h new file. Encapsulates commctrl.h.
|
|
|
5955
|
|
|
5956 * syswindows.h new file. Encapsulates windows.h.
|
|
|
5957
|
|
|
5958 * ntplay.c: use new syswindows.h and syscommctrl.h header.
|
|
|
5959 * nt.c: ditto.
|
|
|
5960 * console-msw.h: ditto.
|
|
446
|
5961
|
|
442
|
5962 * redisplay-tty.c (tty_output_display_block): remove layout references.
|
|
|
5963
|
|
|
5964 * glyphs-msw.c (mswindows_widget_instantiate): use the domain
|
|
|
5965 window handle rather than just the frame.
|
|
|
5966
|
|
|
5967 * glyphs.c (mark_image_instance): remove layout references.
|
|
|
5968 (print_image_instance): ditto.
|
|
|
5969 (image_instance_equal): ditto.
|
|
|
5970 (image_instance_hash): ditto.
|
|
|
5971 (decode_image_instance_type): ditto.
|
|
|
5972 (encode_image_instance_type): ditto.
|
|
|
5973 (image_instantiate): ditto.
|
|
|
5974 (allocate_glyph): ditto.
|
|
|
5975 (Fimage_instance_height): ditto.
|
|
|
5976 (Fimage_instance_width): ditto.
|
|
|
5977 (update_subwindow): ditto.
|
|
|
5978
|
|
|
5979 * redisplay-x.c (x_output_display_block): recode for layouts as
|
|
|
5980 widgets.
|
|
|
5981
|
|
|
5982 * redisplay-output.c (redisplay_output_layout): recode for layouts
|
|
|
5983 as widgets.
|
|
|
5984 (compare_runes): remove layout references.
|
|
|
5985
|
|
|
5986 * redisplay-msw.c (mswindows_output_display_block): recode for
|
|
|
5987 layouts as widgets.
|
|
|
5988
|
|
|
5989 * glyphs-widget.c (image_instantiator_layout): remove
|
|
|
5990 layout_possible_dest_types.
|
|
|
5991 (layout_possible_dest_types): deleted.
|
|
|
5992
|
|
|
5993 * glyphs.h (image_instance_type): remove layout references.
|
|
|
5994 (struct Lisp_Image_Instance): ditto. Add initialized flag.
|
|
|
5995 (IMAGE_INSTANCE_INITIALIZED): new accessor.
|
|
|
5996 (XIMAGE_INSTANCE_INITIALIZED): ditto.
|
|
446
|
5997
|
|
442
|
5998 2000-04-25 Andy Piper <andy@xemacs.org>
|
|
|
5999
|
|
|
6000 * glyphs-widget.c (image_instantiator_buttons):
|
|
|
6001 (image_instantiator_edit_fields):
|
|
|
6002 (image_instantiator_combo_box):
|
|
|
6003 (image_instantiator_scrollbar):
|
|
|
6004 (image_instantiator_progress_guage):
|
|
|
6005 (image_instantiator_tree_view):
|
|
|
6006 (image_instantiator_tab_control):
|
|
|
6007 (image_instantiator_labels):
|
|
|
6008 (image_instantiator_layout): call default post_instantiate method.
|
|
|
6009 (widget_post_instantiate): new function. Simply lays out the
|
|
|
6010 widgets.
|
|
|
6011
|
|
|
6012 * glyphs.h (struct image_instantiator_methods): add
|
|
|
6013 post_instantiate method.
|
|
|
6014
|
|
|
6015 * glyphs.c (instantiate_image_instantiator): add post_instantiate
|
|
|
6016 method calls.
|
|
|
6017
|
|
|
6018 2000-04-23 Andy Piper <andy@xemacs.org>
|
|
|
6019
|
|
|
6020 * glyphs.h (struct image_instantiator_methods): add
|
|
|
6021 decode_domain_method.
|
|
|
6022 (struct Lisp_Image_Instance): remove subwindow frame - it can be
|
|
|
6023 derived from the domain.
|
|
|
6024 (IMAGE_INSTANCE_FRAME): new accessor.
|
|
|
6025 (XIMAGE_INSTANCE_FRAME): ditto.
|
|
|
6026
|
|
|
6027 * glyphs.c (print_image_instance): use IMAGE_INSTANCE_FRAME
|
|
|
6028 instead of _SUBWINDOW_FRAME.
|
|
|
6029 (finalize_image_instance): ditto.
|
|
|
6030 (Fimage_instance_foreground): ditto.
|
|
|
6031 (Fimage_instance_background): ditto.
|
|
|
6032 (image_instantiate): ditto.
|
|
|
6033 (update_subwindow_cachel): ditto.
|
|
|
6034 (update_subwindow): ditto.
|
|
|
6035 (unmap_subwindow): ditto.
|
|
|
6036 (map_subwindow): ditto
|
|
|
6037 (subwindow_instantiate): ditto.
|
|
|
6038 * glyphs-msw.c (mswindows_update_widget): ditto.
|
|
|
6039 (mswindows_progress_gauge_instantiate): ditto.
|
|
|
6040 (mswindows_tab_control_update): ditto.
|
|
|
6041 * glyphs-x.c (x_update_widget): ditto.
|
|
|
6042 (x_widget_instantiate): ditto.
|
|
|
6043 (x_tab_control_instantiate): ditto.
|
|
|
6044 (x_tab_control_update): ditto.
|
|
|
6045 * event-msw.c (mswindows_wnd_proc): ditto
|
|
|
6046
|
|
|
6047 * glyphs-widget.c (image_instantiator_layout): use
|
|
|
6048 subwindow_decode_domain.
|
|
|
6049 (image_instantiator_buttons): ditto.
|
|
|
6050 (image_instantiator_edit_fields): ditto.
|
|
|
6051 (image_instantiator_combo_box): ditto.
|
|
|
6052 (image_instantiator_scrollbar): ditto.
|
|
|
6053 (image_instantiator_progress_guage): ditto.
|
|
|
6054 (image_instantiator_tree_view): ditto.
|
|
|
6055 (image_instantiator_tab_control): ditto.
|
|
|
6056 (image_instantiator_labels): ditto.
|
|
|
6057 (image_instantiator_layout): ditto.
|
|
|
6058
|
|
|
6059 * glyphs.c: add instance error checking to many functions.
|
|
|
6060 (instantiate_image_instantiator): decode device from cache_domain.
|
|
|
6061 (image_instantiate): partially rewrite by using
|
|
|
6062 decode_image_instantiator_domain to determine what domain the
|
|
|
6063 instance needs to be cached in.
|
|
|
6064 (decode_image_instantiator_domain): new function. Determine what
|
|
|
6065 domain the image needs to be cached in.
|
|
|
6066 (check_window_subwindow_cache): new error checking function.
|
|
|
6067 (check_instance_cache_mapper): ditto.
|
|
|
6068 (check_image_instance_structure): ditto.
|
|
|
6069 (subwindow_decode_domain): new function. Encodes a window as a
|
|
|
6070 subwindow's cache domain.
|
|
|
6071 (image_instantiator_format_create): use it for text and
|
|
|
6072 subwindows.
|
|
|
6073
|
|
|
6074 2000-04-21 Andy Piper <andy@xemacs.org>
|
|
|
6075
|
|
|
6076 * glyphs.c (image_instance_device): new function.
|
|
|
6077 (image_instance_frame): new function.
|
|
|
6078 (image_instance_window): new function.
|
|
|
6079 (image_instance_live_p): new function.
|
|
|
6080
|
|
|
6081 * window.c (mark_window_as_deleted): reset the subwindow_instance_
|
|
|
6082 cache to nil.
|
|
|
6083
|
|
|
6084 * glyphs.h (struct Lisp_Image_Instance): device->domain.
|
|
|
6085 (IMAGE_INSTANCE_DOMAIN): new accessor.
|
|
|
6086 (XIMAGE_INSTANCE_DOMAIN): ditto.
|
|
|
6087
|
|
|
6088 * glyphs-x.c (x_finalize_image_instance): device->domain.
|
|
|
6089
|
|
|
6090 * glyphs-msw.c (init_image_instance_geometry): device->domain.
|
|
|
6091 (mswindows_finalize_image_instance): ditto.
|
|
|
6092
|
|
|
6093 * glyphs-eimage.c (jpeg_instantiate): device->domain.
|
|
|
6094 (gif_instantiate): ditto.
|
|
|
6095 (png_instantiate): ditto.
|
|
|
6096 (tiff_instantiate): ditto.
|
|
|
6097
|
|
|
6098 * glyphs.c (instantiate_image_instantiator): use domain rather
|
|
|
6099 than device.
|
|
|
6100 (mark_image_instance): device -> domain.
|
|
|
6101 (print_image_instance): ditto.
|
|
|
6102 (finalize_image_instance): ditto.
|
|
|
6103 (image_instance_equal): ditto.
|
|
|
6104 (allocate_image_instance): ditto.
|
|
|
6105 (Fcolorize_image_instance): ditto.
|
|
|
6106 (query_string_geometry): ditto.
|
|
|
6107 (image_instantiate): ditto
|
|
|
6108 (query_string_font): ditto.
|
|
|
6109 (image_instantiate): ditto.
|
|
|
6110 (update_subwindow): ditto.
|
|
|
6111 (unmap_subwindow): ditto.
|
|
|
6112 (map_subwindow): ditto.
|
|
|
6113 (subwindow_instantiate): ditto.
|
|
|
6114
|
|
|
6115 * specifier.h (DOMAIN_DEVICE): new, semantically correct, decoder.
|
|
|
6116 (DOMAIN_FRAME): ditto.
|
|
|
6117 (DOMAIN_WINDOW): ditto.
|
|
|
6118 (DOMAIN_LIVE_P): ditto.
|
|
|
6119 (XDOMAIN_DEVICE): ditto.
|
|
|
6120 (XDOMAIN_FRAME): ditto.
|
|
|
6121 (XDOMAIN_WINDOW): ditto.
|
|
|
6122
|
|
|
6123 * specifier.c (Fvalid_specifier_domain_p): add image instances as
|
|
|
6124 a valid specifier domain.
|
|
|
6125
|
|
|
6126 2000-04-19 Andy Piper <andy@xemacs.org>
|
|
|
6127
|
|
|
6128 * glyphs-widget.c (syms_of_glyphs_widget): remove
|
|
|
6129 widget-callback-current-channel.
|
|
|
6130 (vars_of_glyphs_widget): ditto.
|
|
|
6131 * glyphs.h: ditto
|
|
|
6132
|
|
|
6133 * gui.c (get_gui_callback): revert to previous behaviour.
|
|
|
6134
|
|
|
6135 2000-04-18 Andy Piper <andy@xemacs.org>
|
|
|
6136
|
|
|
6137 * glyphs.h (struct Lisp_Image_Instance): add margin_width.
|
|
|
6138 (IMAGE_INSTANCE_MARGIN_WIDTH): new.
|
|
|
6139 (XIMAGE_INSTANCE_MARGIN_WIDTH): new.
|
|
|
6140
|
|
|
6141 * glyphs.c (image_instance_equal): add margin_width.
|
|
|
6142 (image_instance_hash): ditto.
|
|
|
6143
|
|
|
6144 * glyphs-widget.c (widget_instantiate): deal with margin-width.
|
|
|
6145 (layout_query_geometry): ditto.
|
|
|
6146 (layout_layout): ditto.
|
|
|
6147 (syms_of_glyphs_widget): add margin-width.
|
|
|
6148 (image_instantiator_layout): allow margin-width.
|
|
|
6149
|
|
|
6150 * glyphs.c (update_widget_instances): make a normal function.
|
|
|
6151 (syms_of_glyphs): remove Qupdate_widget_instances.
|
|
|
6152 * glyphs.h: ditto.
|
|
|
6153
|
|
|
6154 * gui-x.c (popup_selection_callback): use enqueue_magic_eval_event
|
|
|
6155 so that we don't corrupt ideas about the last event or
|
|
|
6156 command. Remove widget-callback-current-channel fiddling.
|
|
|
6157 * gui-msw.c (mswindows_handle_gui_wm_command): ditto.
|
|
|
6158
|
|
|
6159 2000-05-01 Martin Buchholz <martin@xemacs.org>
|
|
|
6160
|
|
|
6161 * XEmacs 21.2.33 is released.
|
|
|
6162
|
|
|
6163 2000-05-01 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
6164
|
|
|
6165 * make-src-depend: Allow dots in header file name.
|
|
|
6166
|
|
|
6167 2000-05-01 Yoshiki Hayashi <yoshiki@xmacs.org>
|
|
|
6168
|
|
|
6169 * mule-charset.h (struct charset_lookup): Add
|
|
|
6170 next_allocated_1_byte_leading_byte and
|
|
|
6171 next_allocated_2_byte_leading_byte.
|
|
|
6172 * mule-charset.c: Move above two variables so that those values
|
|
|
6173 will be dumped.
|
|
|
6174
|
|
|
6175 2000-04-26 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
6176
|
|
|
6177 * insdel.c (find_charsets_in_bufbyte_string): Add Vcharset_ascii
|
|
|
6178 when string length is zero.
|
|
|
6179 (find_charsets_in_emchar_string): Ditto.
|
|
|
6180
|
|
|
6181 2000-04-29 Bjrn Torkelsson <torkel@hpc2n.umu.se>
|
|
|
6182
|
|
|
6183 * lisp.h: extern Qdialog and Qmenubar.
|
|
|
6184
|
|
|
6185 * gui-x.c: added events.h.
|
|
|
6186 also fixed typo which made the file uncompilable.
|
|
|
6187
|
|
|
6188 * general.c: Added Qmenubar and Qdialog
|
|
|
6189
|
|
|
6190 2000-04-28 Ben Wing <ben@xemacs.org>
|
|
|
6191
|
|
|
6192 * frame-msw.c (mswindows_init_frame_1):
|
|
|
6193 * frame-msw.c (mswindows_mark_frame):
|
|
|
6194 * event-msw.c (mswindows_enqueue_dispatch_event):
|
|
|
6195 * console-msw.h:
|
|
|
6196 * console-msw.h (struct mswindows_frame):
|
|
|
6197 * console-msw.h (FRAME_MSWINDOWS_WIDGET_HASH_TABLE1):
|
|
|
6198 there are now three hash tables for callbacks.
|
|
|
6199 mswindows_enqueue_dispatch_event is no longer static.
|
|
446
|
6200
|
|
442
|
6201 * dialog-x.c (maybe_run_dbox_text_callback):
|
|
|
6202 * dialog-x.c (dbox_descriptor_to_widget_value):
|
|
|
6203 switch to new cons3 form for callbacks.
|
|
446
|
6204
|
|
442
|
6205 * glyphs-msw.c (mswindows_register_gui_item):
|
|
|
6206 * glyphs-msw.c (mswindows_widget_instantiate):
|
|
|
6207 * glyphs-msw.c (add_tree_item):
|
|
|
6208 * glyphs-msw.c (add_tab_item):
|
|
|
6209 new image instance parameter, so it can be passed to callback-ex.
|
|
|
6210 respect :callback-ex as well as :callback.
|
|
446
|
6211
|
|
442
|
6212 * glyphs-widget.c (VALID_GUI_KEYWORDS):
|
|
|
6213 add :callback-ex.
|
|
446
|
6214
|
|
442
|
6215 * glyphs.c (print_image_instance):
|
|
|
6216 prettify, e.g. now prints widget type.
|
|
446
|
6217
|
|
442
|
6218 * gui-x.h:
|
|
|
6219 certain funs have new image instance parameter.
|
|
446
|
6220
|
|
442
|
6221 * gui.c:
|
|
|
6222 * gui.c (get_gui_callback):
|
|
|
6223 * gui.c (gui_item_add_keyval_pair):
|
|
|
6224 * gui.c (gui_item_init):
|
|
|
6225 * gui.c (gui_add_item_keywords_to_plist):
|
|
|
6226 * gui.c (mark_gui_item):
|
|
|
6227 * gui.c (gui_item_hash):
|
|
|
6228 * gui.c (gui_item_equal):
|
|
|
6229 * gui.c (copy_gui_item):
|
|
|
6230 * gui.c (syms_of_gui):
|
|
|
6231 recognize callback-ex in a number of places.
|
|
|
6232 also, fix the annoying "can't get out of yes-no dialog" bug.
|
|
446
|
6233
|
|
442
|
6234 * gui.h:
|
|
|
6235 * gui.h (struct Lisp_Gui_Item):
|
|
|
6236 recognize callback-ex in a number of places.
|
|
|
6237
|
|
|
6238 * menubar-x.c (menu_item_descriptor_to_widget_value_1):
|
|
|
6239 new parameter in button_item_to_widget_value.
|
|
446
|
6240
|
|
442
|
6241 * glyphs-x.c (x_update_widget):
|
|
|
6242 * glyphs-x.c (x_button_instantiate):
|
|
|
6243 * glyphs-x.c (x_button_update):
|
|
|
6244 * glyphs-x.c (x_progress_gauge_instantiate):
|
|
|
6245 * glyphs-x.c (x_edit_field_instantiate):
|
|
|
6246 * glyphs-x.c (x_combo_box_instantiate):
|
|
|
6247 * glyphs-x.c (x_tab_control_instantiate):
|
|
|
6248 * glyphs-x.c (x_label_instantiate):
|
|
|
6249 new image instance parameter in various places.
|
|
446
|
6250
|
|
442
|
6251 * event-Xt.c:
|
|
|
6252 * event-Xt.c (enqueue_Xt_dispatch_event):
|
|
|
6253 this fun gets exported.
|
|
446
|
6254
|
|
442
|
6255 * gui-msw.c:
|
|
|
6256 * gui-msw.c (mswindows_handle_gui_wm_command):
|
|
|
6257 handle both :callback and :callback-ex, and generate our own
|
|
|
6258 event because it's one of the callback-ex arguments.
|
|
446
|
6259
|
|
442
|
6260 * gui-x.c:
|
|
|
6261 * gui-x.c (popup_selection_callback):
|
|
|
6262 handle both :callback and :callback-ex, and generate our own
|
|
|
6263 event because it's one of the callback-ex arguments.
|
|
|
6264 * gui-x.c (button_item_to_widget_value):
|
|
|
6265 * gui-x.c (gui_items_to_widget_values_1):
|
|
|
6266 * gui-x.c (gui_item_children_to_widget_values):
|
|
|
6267 * gui-x.c (gui_items_to_widget_values):
|
|
|
6268 new image instance parameter in various places.
|
|
|
6269
|
|
|
6270 * fns.c (Freplace_list):
|
|
|
6271 fix small typo in doc string.
|
|
446
|
6272
|
|
442
|
6273 * lisp.h:
|
|
|
6274 declare enqueue_Xt_dispatch_event.
|
|
|
6275
|
|
|
6276 2000-04-28 Ben Wing <ben@xemacs.org>
|
|
|
6277
|
|
|
6278 * buffer.c:
|
|
|
6279 * buffer.c (Frecord_buffer):
|
|
|
6280 * buffer.c (syms_of_buffer):
|
|
|
6281 delete record-buffer-hook.
|
|
446
|
6282
|
|
442
|
6283 * fns.c:
|
|
|
6284 * fns.c (Freplace_list):
|
|
|
6285 * fns.c (syms_of_fns):
|
|
|
6286 new primitive replace-list.
|
|
446
|
6287
|
|
442
|
6288 * frameslots.h:
|
|
|
6289 slot for old buffer-alist.
|
|
446
|
6290
|
|
442
|
6291 * lisp.h:
|
|
|
6292 exfun replace-list.
|
|
446
|
6293
|
|
442
|
6294 * redisplay.c:
|
|
|
6295 * redisplay.c (redisplay_frame):
|
|
|
6296 * redisplay.c (syms_of_redisplay):
|
|
|
6297 * redisplay.c (vars_of_redisplay):
|
|
|
6298 new hook buffer-list-changed-hook.
|
|
|
6299 call it.
|
|
|
6300
|
|
|
6301 2000-04-27 Ben Wing <ben@xemacs.org>
|
|
|
6302
|
|
|
6303 * extents.h: extern in_modeline_generation.
|
|
|
6304
|
|
|
6305 * redisplay.c (generate_formatted_string_db): set
|
|
|
6306 in_modeline_generation.
|
|
|
6307
|
|
|
6308 * extents.c (extent_changed_for_redisplay): don't mark redisplay
|
|
|
6309 flags if in modeline generation. otherwise frame-modified-tick
|
|
|
6310 is ticked far too often.
|
|
|
6311 Declare in_modeline_generation.
|
|
|
6312
|
|
|
6313 2000-04-26 Ben Wing <ben@xemacs.org>
|
|
|
6314
|
|
|
6315 * emacs.c (vars_of_emacs): document quick-build "error-checking"
|
|
|
6316 option.
|
|
|
6317 (vars_of_emacs): add quick-build as an error-checking option.
|
|
|
6318 A bit kludgy, but there doesn't seem much point in creating
|
|
|
6319 a real var for this.
|
|
|
6320
|
|
|
6321 * config.h.in: put in an entry for QUICK_BUILD; remove NO_DOC_FILE.
|
|
|
6322
|
|
|
6323 2000-04-14 IKEYAMA Tomonori <tomonori@suiyokai.org>
|
|
|
6324
|
|
|
6325 * redisplay.h (struct display_line): Add a new variable,
|
|
|
6326 line_continuation.
|
|
|
6327
|
|
|
6328 * redisplay.c (create_text_block): Set dl->line_continuation if
|
|
|
6329 the line continues.
|
|
|
6330 (create_string_text_block): Ditto.
|
|
|
6331 (regenerate_window_incrementally): Use line_continuation instead
|
|
|
6332 of searching continuation glyph.
|
|
|
6333 (add_margin_runes): Call add_glyph_rune.
|
|
|
6334 (add_glyph_rune): Handle margin glyph.
|
|
|
6335
|
|
|
6336 2000-04-20 Martin Buchholz <martin@xemacs.org>
|
|
|
6337
|
|
446
|
6338 * filelock.c (fill_in_lock_file_name):
|
|
442
|
6339 ANSIfy.
|
|
|
6340 Check for IS_ANY_SEP instead of '/'.
|
|
446
|
6341 (lock_file_1):
|
|
442
|
6342 Avoid generating gratuitous garbage. Call user_login_name() directly.
|
|
|
6343 Never check errno without first seeing that system call failed.
|
|
|
6344 (unlock_file): Add GCPRO.
|
|
|
6345 (Flock_buffer): Fix docstring.
|
|
|
6346 (Ffile_locked_p): Fix docstring. Add GCPRO.
|
|
|
6347
|
|
|
6348 2000-04-19 Martin Buchholz <martin@xemacs.org>
|
|
|
6349
|
|
446
|
6350 * sysdep.c (get_pty_max_bytes):
|
|
442
|
6351 Fix hangs on DEC OSF 4.0 when (process-send-string) sends
|
|
|
6352 strings longer than 252 bytes.
|
|
|
6353
|
|
|
6354 * md5.c: Unconditionally include ANSI header <limits.h>
|
|
|
6355
|
|
446
|
6356 * glyphs-x.c (convert_EImage_to_XImage):
|
|
|
6357 * lisp-union.h (union Lisp_Object):
|
|
442
|
6358 Use consistently the syntax #ifdef FEATURE, not #if FEATURE.
|
|
|
6359
|
|
|
6360 2000-04-13 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
6361
|
|
|
6362 * filelock.c (current_lock_owner): Remove unused variable o, p.
|
|
|
6363
|
|
|
6364 2000-04-17 Norbert Koch <n.koch@eai-delta.de>
|
|
|
6365
|
|
|
6366 * callint.c: Remove multiply defined symbol Qlet
|
|
|
6367 (syms_of_callint): ditto.
|
|
|
6368
|
|
|
6369 2000-04-14 Andy Piper <andy@xemacs.org>
|
|
|
6370
|
|
|
6371 * general.c (syms_of_general): add last-command, this-command, let
|
|
|
6372 and funcall.
|
|
|
6373
|
|
|
6374 * lisp.h: declare various symbols.
|
|
|
6375
|
|
|
6376 * glyphs.h: declare Qwidget_callback_current_channel;
|
|
|
6377
|
|
|
6378 * glyphs-widget.c (syms_of_glyphs_widget): add
|
|
|
6379 Qgui_callback_current_channel.
|
|
|
6380 (vars_of_glyphs_widget): add Vgui_callback_current_channel.
|
|
|
6381
|
|
|
6382 * gui-msw.c (mswindows_handle_gui_wm_command): bind
|
|
|
6383 widget-callback-current-channel when invoking the interactive
|
|
|
6384 arg. Also bind last-command and next-command when invoking the
|
|
|
6385 widget updates.
|
|
|
6386 * gui-x.c (popup_selection_callback): ditto.
|
|
|
6387
|
|
|
6388 * gui.c (get_gui_callback): massage args so that we are always
|
|
|
6389 calling eval. This allows us to add our own variable bindings
|
|
|
6390 outside.
|
|
|
6391
|
|
|
6392 * glyphs-x.c (x_button_instantiate): use
|
|
|
6393 gui_items_to_widget_values since this is GC safe.
|
|
|
6394 (x_progress_gauge_instantiate): ditto.
|
|
|
6395 (x_edit_field_instantiate): ditto.
|
|
|
6396 (x_label_instantiate): ditto.
|
|
|
6397
|
|
|
6398 * event-Xt.c (emacs_Xt_handle_magic_event): remove old printfs.
|
|
|
6399 (emacs_Xt_event_widget_focus_out): new function
|
|
|
6400 (emacs_Xt_event_widget_focus_in): new function. Set the keyboard
|
|
|
6401 focus.
|
|
|
6402 (emacs_Xt_event_add_widget_actions): new function. add focus
|
|
|
6403 functions as actions.
|
|
|
6404 (init_event_Xt_late): use it.
|
|
|
6405
|
|
|
6406 2000-04-14 Hrvoje Niksic <hniksic@iskon.hr>
|
|
|
6407
|
|
|
6408 * event-stream.c (Fdispatch_event): Doc fix.
|
|
|
6409
|
|
|
6410 2000-03-29 SL Baur <steve@musashimaru.m17n.org>
|
|
|
6411
|
|
|
6412 * postgresql.c: Remove all references to PQsetenv*.
|
|
|
6413
|
|
|
6414 * postgresql.h: Remove references to PGsetenvHandler object.
|
|
|
6415 * lrecord.h (lrecord_type): Ditto.
|
|
|
6416
|
|
|
6417 2000-04-11 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
|
6418
|
|
|
6419 * glyphs-msw.h (struct mswindows_image_instance_data): Added
|
|
|
6420 real_heigh and real_width members, and accessor macros for these.
|
|
|
6421
|
|
|
6422 * glyphs-msw.c (init_image_instance_geometry): New function.
|
|
|
6423 (init_image_instance_from_dibitmap): Use it.
|
|
|
6424 (mswindows_resource_instantiate): Use it.
|
|
|
6425 (init_image_instance_from_xbm_inline): Use it.
|
|
|
6426 (mswindows_initialize_image_instance_mask): Use real bitmap
|
|
|
6427 geometry.
|
|
|
6428 (mswindows_create_resized_bitmap): Ditto.
|
|
|
6429 (mswindows_create_resized_mask): Ditto.
|
|
446
|
6430
|
|
442
|
6431 * redisplay-msw.c (mswindows_output_dibitmap): Stretch real mask
|
|
|
6432 and bitmap to their surface size.
|
|
|
6433
|
|
|
6434 2000-04-11 Jan Vroonhof <jan@xemacs.org>
|
|
|
6435
|
|
|
6436 * process-unix.c (unix_send_process): Guard against process MIA
|
|
|
6437 after Faccept_process_output.
|
|
|
6438
|
|
|
6439 2000-04-11 Ben Wing <ben@xemacs.org>
|
|
|
6440
|
|
|
6441 * eval.c (unbind_to_hairy): fix brokenness introduced by
|
|
|
6442 nanosecond speed improvements.
|
|
|
6443
|
|
|
6444 2000-04-07 Raymond Toy <toy@rtp.ericsson.se>
|
|
|
6445
|
|
|
6446 * sunplay.c (init_device): To play sounds correctly, the device
|
|
|
6447 apparently needs to be initialized at least once by XEmacs. Make
|
|
|
6448 it so.
|
|
|
6449
|
|
|
6450 2000-04-10 IKEYAMA Tomonori <tomonori@suiyokai.org>
|
|
|
6451
|
|
|
6452 * redisplay.c (add_margin_runes): Add text image glyph
|
|
|
6453 handling.
|
|
|
6454
|
|
|
6455 2000-04-06 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
6456
|
|
|
6457 * lisp.h (DOESNT_RETURN): Don't declare as volatile when
|
|
|
6458 gcc is newer than 2.5.
|
|
|
6459
|
|
|
6460 2000-04-06 Colin Rafferty <colin@xemacs.org>
|
|
|
6461
|
|
|
6462 * lisp.h (FLEXIBLE_ARRAY_STRUCT_SIZEOF): Created.
|
|
446
|
6463
|
|
442
|
6464 * fns.c (size_bit_vector):
|
|
|
6465 * alloc.c (size_vector):
|
|
|
6466 (make_vector_internal):
|
|
|
6467 (make_bit_vector_internal):
|
|
|
6468 (sweep_bit_vectors_1):
|
|
|
6469 Replace calls to offsetof with FLEXIBLE_ARRAY_STRUCT_SIZEOF macro.
|
|
|
6470
|
|
|
6471 2000-04-06 Andy Piper <andy@xemacs.org>
|
|
|
6472
|
|
|
6473 * gmalloc.c (malloc): undo previous change.
|
|
|
6474 (malloc): ditto.
|
|
|
6475 (free): ditto.
|
|
|
6476 (realloc): ditto.
|
|
|
6477
|
|
|
6478 2000-04-06 IKEYAMA Tomonori <tomonori@suiyokai.org>
|
|
|
6479
|
|
|
6480 * line-number.c (buffer_line_number): Revert to former version.
|
|
|
6481
|
|
|
6482 2000-04-06 Andy Piper <andy@xemacs.org>
|
|
|
6483
|
|
|
6484 * gmalloc.c (malloc): add error checking.
|
|
|
6485 (malloc): ditto.
|
|
|
6486 (free): ditto.
|
|
|
6487 (realloc): ditto.
|
|
|
6488
|
|
|
6489 * dialog-x.c (dbox_descriptor_to_widget_value): add extra
|
|
|
6490 button_item_to_widget_value arg.
|
|
|
6491
|
|
|
6492 * glyphs-x.c (x_button_instantiate): add extra
|
|
|
6493 button_item_to_widget_value arg.
|
|
|
6494 (x_progress_gauge_instantiate): ditto.
|
|
|
6495 (x_edit_field_instantiate): ditto.
|
|
|
6496 (x_label_instantiate): ditto.
|
|
|
6497
|
|
|
6498 * gui-x.c (gui_items_to_widget_values_1): add extra
|
|
|
6499 button_item_to_widget_value arg.
|
|
|
6500 (button_item_to_widget_value): add extra menu_item_p arg.
|
|
|
6501
|
|
|
6502 * gui-x.h: change signature of button_item_to_widget_value.
|
|
|
6503
|
|
|
6504 * menubar-x.c (menu_item_descriptor_to_widget_value_1): add extra
|
|
|
6505 button_item_to_widget_value arg.
|
|
|
6506
|
|
|
6507 2000-04-03 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
6508
|
|
|
6509 * buffer.h (struct buffer): auto_save_modified should be long.
|
|
|
6510
|
|
|
6511 2000-04-05 Andy Piper <andy@xemacs.org>
|
|
|
6512
|
|
|
6513 * glyphs-widget.c (widget_instantiate): pixwidth != pixheight
|
|
|
6514 type.
|
|
|
6515 (button_query_geometry): give a little more room so that athena
|
|
|
6516 buttons fit.
|
|
|
6517
|
|
|
6518 2000-04-05 Andy Piper <andy@xemacs.org>
|
|
|
6519
|
|
|
6520 * faces.c (complex_vars_of_faces): The widget face should inherit
|
|
|
6521 the font of the gui-element face.
|
|
|
6522
|
|
|
6523 2000-04-04 Andy Piper <andy@xemacs.org>
|
|
|
6524
|
|
|
6525 * glyphs-x.c (x_button_update): new function. unconditionally
|
|
|
6526 update a button's state when the instance is dirty.
|
|
|
6527 (image_instantiator_format_create_glyphs_x): add x_button_update.
|
|
|
6528 (x_widget_instantiate): remove old resize cruft.
|
|
|
6529
|
|
|
6530 2000-04-02 Andy Piper <andy@xemacs.org>
|
|
|
6531
|
|
|
6532 * frame.c (change_frame_size_1): The introduction of gutters means
|
|
|
6533 that we need to allow 0 as a potential frame dimension.
|
|
|
6534
|
|
|
6535 2000-04-02 IKEYAMA Tomonori <tomonori@suiyokai.org>
|
|
|
6536
|
|
|
6537 * redisplay.c (add_glyph_rune): Don't set 0 to bufpos for text
|
|
|
6538 image glyph if allow_cursor.
|
|
|
6539 (add_hscroll_rune): Don't allow cursor to border glyph.
|
|
|
6540 (create_text_block): Ditto.
|
|
|
6541
|
|
|
6542 * redisplay-output.c (redisplay_move_cursor): Do nothing even if
|
|
|
6543 text not in buffer.
|
|
|
6544 (redisplay_output_layout): Call ensure_face_cachel_complete for
|
|
|
6545 text image glyph.
|
|
|
6546
|
|
|
6547
|
|
|
6548 2000-03-16 IKEYAMA Tomonori <tomonori@suiyokai.org>
|
|
|
6549
|
|
|
6550 * redisplay.c (add_glyph_rune): Adding text image as text runes.
|
|
|
6551
|
|
|
6552 * redisplay-output.c (redisplay_move_cursor): NO_CURSOR if text
|
|
|
6553 not in buffer
|
|
|
6554
|
|
|
6555 * redisplay-tty.c (tty_output_display_block): Delete the routine
|
|
|
6556 for text image glyph
|
|
|
6557 * redisplay-x.c (x_output_display_block): ditto
|
|
|
6558 * redisplay-msw.c (mswindows_output_display_block): ditto
|
|
|
6559
|
|
|
6560 2000-02-02 Mike Alexander <mta@arbortext.com>
|
|
|
6561
|
|
|
6562 Note: Some of these were committed by accident as part of other
|
|
|
6563 patches.
|
|
446
|
6564
|
|
442
|
6565 * regex.c (regex_compile): Avoid compiler warnings.
|
|
|
6566
|
|
|
6567 * ntproc.c (sys_spawnve): Avoid compiler warnings.
|
|
|
6568
|
|
|
6569 * nt.h: Declare term_ntproc correctly.
|
|
|
6570
|
|
|
6571 * nt.c: Remove incorrect declaration of get_home_directory which
|
|
|
6572 is declared correctly in lisp.h.
|
|
|
6573
|
|
|
6574 * keymap.c (get_keyelt): Avoid compiler warnings.
|
|
|
6575 (raw_lookup_key_mapper): Avoid compiler warnings.
|
|
|
6576
|
|
|
6577 * gutter.c (gutter_was_visible): Add return statement to avoid warning.
|
|
|
6578
|
|
|
6579 * glyphs-eimage.c (png_instantiate): Avoid compiler warnings.
|
|
|
6580
|
|
|
6581 * filemode.c (mode_string): Avoid compiler warnings.
|
|
|
6582
|
|
|
6583 * file-coding.c (Fcoding_system_aliasee): Add return statement to
|
|
|
6584 avoid warning.
|
|
|
6585
|
|
|
6586 * events-mod.h: Undef some things that winuser.h defines differently.
|
|
|
6587
|
|
|
6588 * data.c (Faset): Avoid compiler warnings.
|
|
|
6589
|
|
|
6590 * alloc.c (Fmake_byte_code): Avoid compiler warnings.
|
|
|
6591
|
|
|
6592 2000-03-03 Jan Vroonhof <vroonhof@math.ethz.ch>
|
|
|
6593
|
|
|
6594 * sound.c (Fplay_sound_file): Wrap ESD in start/stop_interrupts.
|
|
|
6595 Fall through to simple beep on error.
|
|
|
6596 Replace "extern" by real header file.
|
|
|
6597
|
|
|
6598 * linuxplay.c: Use nativesound.h
|
|
|
6599 (play_sound_data): Return error code. Be less verbose on error.
|
|
|
6600
|
|
|
6601 * sunplay.c: Use nativesound.h
|
|
|
6602 (play_sound_data): Return error code. Be less verbose on error.
|
|
|
6603
|
|
|
6604 * ntplay.c: Use nativesound.h
|
|
|
6605 (play_sound_data): Return fake error code
|
|
|
6606
|
|
|
6607 * sgiplay.c: Use nativesound.h
|
|
|
6608 (play_sound_data): Return error code
|
|
|
6609
|
|
|
6610 * hpplay.c: Use nativesound.h, partially implement
|
|
|
6611 new error code. Break compilation until finished.
|
|
|
6612 (play_sound_data): error code.
|
|
|
6613
|
|
446
|
6614 * nativesound.h (play_sound_file):
|
|
442
|
6615 (play_sound_data): Prototype in new header.
|
|
|
6616
|
|
|
6617 2000-03-31 Andy Piper <andy@xemacs.org>
|
|
|
6618
|
|
|
6619 * glyphs-widget.c: (button_query_geometry): new function. Adjust
|
|
|
6620 for toggle and radio buttons.
|
|
|
6621 (image_instantiator_buttons): use it.
|
|
|
6622
|
|
|
6623 2000-03-03 Jan Vroonhof <vroonhof@math.ethz.ch>
|
|
|
6624
|
|
446
|
6625 * scrollbar-x.c (x_update_vertical_scrollbar_callback):
|
|
442
|
6626 (x_update_horizontal_scrollbar_callback): Return if no mirror was
|
|
|
6627 found. Scrollbar event probably belonged to some old config.
|
|
|
6628
|
|
|
6629 2000-03-31 Andy Piper <andy@xemacs.org>
|
|
|
6630
|
|
|
6631 * glyphs-widget.c (widget_instantiate): use LAYOUT_VERTICAL rather
|
|
|
6632 than 1.
|
|
|
6633 (initialize_widget_image_instance): default layout to
|
|
|
6634 LAYOUT_HORIZONTAL rather than 0.
|
|
|
6635 (widget_instantiate): reverse the item list at the end rather than
|
|
|
6636 every iteration.
|
|
|
6637 (layout_layout): re-code for the border text at the front of the
|
|
|
6638 item list rather than at the end.
|
|
|
6639 (layout_query_geometry): ditto. Pick up fixed and dynamic sizes
|
|
|
6640 provided by the user.
|
|
|
6641 (widget_query_geometry): comment.
|
|
|
6642
|
|
|
6643 2000-03-30 Andy Piper <andy@xemacs.org>
|
|
|
6644
|
|
|
6645 * glyphs-widget.c (image_instantiator_layout): allow standard
|
|
|
6646 widget keywords in layouts.
|
|
|
6647
|
|
|
6648 * gutter.c (output_gutter): cope with nil gutter contents.
|
|
|
6649
|
|
|
6650 * frame.c (Fset_frame_properties): add gutter docs.
|
|
|
6651
|
|
|
6652 2000-03-29 Andy Piper <andy@xemacs.org>
|
|
|
6653
|
|
|
6654 * toolbar-msw.c (TBSTYLE_FLAT): add.
|
|
|
6655 (mswindows_output_toolbar): minor fiddling.
|
|
|
6656
|
|
|
6657 2000-03-29 Andy Piper <andy@xemacs.org>
|
|
|
6658
|
|
|
6659 * gutter.c (output_gutter): force gutter size recalculation if
|
|
|
6660 what we are trying to display won't fit.
|
|
|
6661 (update_gutter_geometry): new function. A per-gutter version of
|
|
|
6662 update_frame_gutter_geometry.
|
|
|
6663 (update_frame_gutter_geometry): use it.
|
|
|
6664 (redraw_exposed_gutter): add extra debugging output.
|
|
|
6665
|
|
|
6666 2000-03-28 Mike Alexander <mta@arbortext.com>
|
|
|
6667
|
|
|
6668 * dumper.c: Declare pdump_hFile and pdump_hMap (Windows only)
|
|
|
6669 (pdump_file_unmap): Implement it on Windows
|
|
|
6670 (pdump_file_get): Save alocated handles for pdump_file_unmap
|
|
|
6671
|
|
|
6672 2000-03-28 Andy Piper <andy@xemacs.org>
|
|
|
6673
|
|
|
6674 * gui.c (get_gui_callback): treat Quit specially.
|
|
|
6675
|
|
|
6676 2000-03-27 Andy Piper <andy@xemacs.org>
|
|
|
6677
|
|
|
6678 * glyphs.c (image_instantiate): be careful to check in the same
|
|
|
6679 way we assigned.
|
|
|
6680
|
|
|
6681 2000-03-27 Didier Verna <didier@xemacs.org>
|
|
|
6682
|
|
|
6683 * config.h.in: define the proper SMART_INCLUDE macro.
|
|
|
6684 handle renaming of `foo_h_path' to `foo_h_file'.
|
|
|
6685
|
|
|
6686 * database.c: ditto.
|
|
|
6687
|
|
|
6688 * emacs.c: ditto.
|
|
|
6689
|
|
|
6690 * linuxplay.c: ditto.
|
|
|
6691
|
|
|
6692 * terminfo.c: ditto.
|
|
|
6693
|
|
|
6694 * tooltalk.h: ditto.
|
|
|
6695
|
|
|
6696 2000-03-27 Andy Piper <andy@xemacs.org>
|
|
|
6697
|
|
|
6698 * glyphs-msw.c (mswindows_update_widget): make sure the widget
|
|
|
6699 gets updated whenever the face might have changed.
|
|
|
6700
|
|
|
6701 2000-03-26 Mike Alexander <mta@arbortext.com>
|
|
|
6702
|
|
|
6703 * dumper.c (pdump_resource_free): Fix the comment.
|
|
|
6704
|
|
|
6705 2000-03-21 Olivier Galibert <galibert@pobox.com>
|
|
|
6706
|
|
|
6707 * input-method-xlib.c (XIM_init_frame): Remove painful warning.
|
|
|
6708
|
|
|
6709 2000-03-22 Mike Alexander <mta@arbortext.com>
|
|
|
6710
|
|
|
6711 * dumper.c: Include Windows headers on Windows
|
|
|
6712 (pdump_resource_free): Add a body to the function
|
|
|
6713 (pdump_load): exe_name -> exe_path and add some comments.
|
|
|
6714
|
|
|
6715 2000-03-25 Mike Alexander <mta@arbortext.com>
|
|
|
6716
|
|
|
6717 * gui.c (copy_gui_item_tree): Return a value in all cases
|
|
|
6718
|
|
|
6719 2000-03-21 Didier Verna <didier@xemacs.org>
|
|
|
6720
|
|
|
6721 * config.h.in: move INCLUDE_GLUE_1 and INCLUDE_GLUE_2 here from
|
|
|
6722 lwlib/config.h.in.
|
|
|
6723 (SMART_INCLUDE): new macro.
|
|
|
6724 (POSTGRES_INCLUDE): new macro to include postgresql headers from
|
|
|
6725 the proper location.
|
|
|
6726
|
|
|
6727 * postgresql.c: use it.
|
|
|
6728
|
|
|
6729 * inline.c: ditto.
|
|
|
6730
|
|
|
6731 2000-03-24 Andy Piper <andy@xemacs.org>
|
|
|
6732
|
|
|
6733 * gutter.c (redraw_exposed_gutters): must be "in display" when we
|
|
|
6734 do this.
|
|
|
6735
|
|
|
6736 2000-03-24 Andy Piper <andy@xemacs.org>
|
|
|
6737
|
|
|
6738 * redisplay-output.c (compare_runes): use image_instance_changed
|
|
|
6739 to detect changes. Do not depend on glyphs_changed, only depend on
|
|
|
6740 dirtiness.
|
|
|
6741 (redisplay_output_layout): add debug messages.
|
|
|
6742 (compare_runes): ditto.
|
|
|
6743
|
|
|
6744 * glyphs.h: declare new functions.
|
|
|
6745 (struct Lisp_Image_Instance): remove percent and associated
|
|
|
6746 accessors.
|
|
|
6747
|
|
|
6748 * gui.h: declare new copying functions.
|
|
|
6749
|
|
|
6750 * gui.c (copy_gui_item_tree): new function.
|
|
|
6751 (copy_gui_item): new function.
|
|
|
6752 (gui_item_id_hash): revert to standard hash.
|
|
|
6753 (gui_item_hash): ditto.
|
|
|
6754 (gui_item_hash_internal): deleted.
|
|
|
6755 (mark_gui_item): mark value.
|
|
|
6756 (gui_item_add_keyval_pair): add value.
|
|
|
6757 (gui_item_init): ditto.
|
|
|
6758 (gui_add_item_keywords_to_plist): ditto.
|
|
|
6759 (gui_item_equal): ditto.
|
|
|
6760 (syms_of_gui): add Q_value.
|
|
|
6761
|
|
|
6762 * glyphs-x.c (x_progress_gauge_update): use pending items and
|
|
|
6763 value for setting the state.
|
|
|
6764 (x_update_widget): don't set items from pending here.
|
|
|
6765
|
|
|
6766 * glyphs-widget.c (update_widget): update items here.
|
|
|
6767 (progress_gauge_set_property): use items for storing value. Put
|
|
|
6768 new value in pending items.
|
|
|
6769
|
|
|
6770 * glyphs-msw.c (mswindows_progress_gauge_update): use pending
|
|
|
6771 items for new value. Convert percent -> value.
|
|
|
6772 (mswindows_tab_control_update): don't update items here.
|
|
|
6773
|
|
|
6774 * glyphs.c (Fupdate_widget_instances): use image_instance_changed.
|
|
|
6775 (update_subwindow): ditto.
|
|
|
6776 (image_instance_changed): new function. Compare hash values and
|
|
|
6777 past and present widget items.
|
|
|
6778 (image_instantiate): We more careful about where we instantiate
|
|
|
6779 things.
|
|
|
6780 (image_instantiate): add error checking.
|
|
|
6781
|
|
|
6782 * gutter.c (syms_of_gutter): use -hook.
|
|
|
6783
|
|
|
6784 2000-03-20 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
6785
|
|
|
6786 * console-tty.c (Fset_console_tty_input_coding_system): Use
|
|
|
6787 Qkeyboard.
|
|
|
6788 (Fset_console_tty_output_coding_system): Use Qterminal.
|
|
|
6789 (tty_init_console): Use Qkeyboard and Qterminal.
|
|
|
6790
|
|
|
6791 2000-03-21 Ben Wing <ben@xemacs.org>
|
|
|
6792
|
|
|
6793 * ntproc.c (create_child): remove bogus HAVE_NTGUI's.
|
|
|
6794 From Mike Alexander <mta@arbortext.com>.
|
|
|
6795
|
|
|
6796 2000-03-21 Ben Wing <ben@xemacs.org>
|
|
|
6797
|
|
|
6798 * event-msw.c (mswindows_need_event): Horrible kludge to fix
|
|
|
6799 process brokenness. Proper implementation to come.
|
|
|
6800 * callproc.c:
|
|
|
6801 Rename call-process-internal to old-call-process-internal.
|
|
|
6802 New impl. in process.el.
|
|
|
6803
|
|
|
6804 2000-03-21 Martin Buchholz <martin@xemacs.org>
|
|
|
6805
|
|
|
6806 * Makefile.in.in: Coalesce HAVE_NATIVE_SOUND code fragments.
|
|
|
6807
|
|
|
6808 2000-03-20 Andy Piper <andy@xemacs.org>
|
|
|
6809
|
|
|
6810 * glyphs.c (full_list_hash): make hashes of the same elements in
|
|
|
6811 different orders return different values.
|
|
|
6812
|
|
|
6813 2000-03-20 Martin Buchholz <martin@xemacs.org>
|
|
|
6814
|
|
|
6815 * XEmacs 21.2.32 is released.
|
|
|
6816
|
|
|
6817 2000-03-20 Martin Buchholz <martin@xemacs.org>
|
|
|
6818
|
|
|
6819 * buffer.h (DFC_ALLOCA_USE_CONVERTED_DATA):
|
|
|
6820 (DFC_MALLOC_USE_CONVERTED_DATA):
|
|
|
6821 Add aliasing-safe casts to allow use with char* or unsigned char*
|
|
|
6822 lvalues.
|
|
|
6823
|
|
|
6824 * eldap.c (Fldap_open):
|
|
|
6825 (Fldap_search_basic):
|
|
|
6826 (Fldap_add):
|
|
|
6827 (Fldap_modify):
|
|
|
6828 Make C++-compilable.
|
|
|
6829 Make sure GCPRO'ed variables are initialized.
|
|
|
6830 Use temp variables to avoid repeated calls to Flength.
|
|
|
6831
|
|
|
6832 2000-03-16 Martin Buchholz <martin@xemacs.org>
|
|
|
6833
|
|
|
6834 * sysfile.h:
|
|
|
6835 Make sure PATH_MAX is always defined.
|
|
|
6836 Include limits.h for PATH_MAX.
|
|
|
6837 Deprecate use of MAXPATHLEN.
|
|
|
6838
|
|
|
6839 2000-03-10 Martin Buchholz <martin@xemacs.org>
|
|
|
6840
|
|
|
6841 * emacs.c: Add reinit_vars_of_fileio.
|
|
|
6842 * symsinit.h: Add reinit_vars_of_fileio.
|
|
|
6843 * fileio.c (reinit_vars_of_fileio): New.
|
|
|
6844 * fileio.c (Fmake_temp_name):
|
|
|
6845 Initialize temp_name random number from microseconds to make
|
|
|
6846 collisions even less likely. Initialize always at process startup
|
|
|
6847 time. (make-temp-name) used to return the same file name twice in
|
|
|
6848 a row when PDUMP.
|
|
|
6849 Random stylistic fiddling.
|
|
|
6850 Comment fixes.
|
|
|
6851
|
|
|
6852 2000-03-20 Andy Piper <andy@xemacs.org>
|
|
|
6853
|
|
|
6854 * glyphs.c (image_instantiate): allow text glyphs to be
|
|
|
6855 instantiated in the minibuffer window.
|
|
|
6856
|
|
|
6857 2000-03-19 Andy Piper <andy@xemacs.org>
|
|
|
6858
|
|
|
6859 * glyphs.c (image_instance_hash): be careful about which items we
|
|
|
6860 hash on.
|
|
|
6861
|
|
|
6862 * glyphs-widget.c (tab_control_set_property): record into pending
|
|
|
6863 items rather than the actual items.
|
|
|
6864
|
|
|
6865 * glyphs-x.c (x_update_widget): use pending items to update with.
|
|
|
6866
|
|
|
6867 * glyphs-msw.c (mswindows_tab_control_update): use pending items
|
|
|
6868 to update with.
|
|
|
6869
|
|
|
6870 * glyphs.c (mark_image_instance): mark pending items.
|
|
|
6871
|
|
|
6872 * window.c (Fset_window_configuration): record the buffer.
|
|
|
6873 (Fselect_window): totally revert previous change which breaks many
|
|
|
6874 things.
|
|
|
6875
|
|
|
6876 2000-03-18 Andy Piper <andy@xemacs.org>
|
|
|
6877
|
|
|
6878 * glyphs-msw.c (mswindows_tab_control_update): force selected
|
|
|
6879 item.
|
|
|
6880
|
|
|
6881 * glyphs.c (image_instantiate): don't allow the minibuffer as a
|
|
|
6882 window domain cache, otherwise we get inconsistencies at
|
|
|
6883 startup. There is something fishy at startup which can lead to the
|
|
|
6884 minibuffer being the selected window when the gutter content is
|
|
|
6885 instantiated.
|
|
|
6886
|
|
|
6887 * gui.c (parse_gui_item_tree_list): add probably unnecessary
|
|
|
6888 gcpros.
|
|
|
6889 (parse_gui_item_tree_children): ditto.
|
|
|
6890 (parse_gui_item_tree_item): ditto.
|
|
|
6891
|
|
|
6892 * glyphs.c (Fupdate_widget_instances): return something.
|
|
|
6893
|
|
|
6894 2000-03-18 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
6895
|
|
|
6896 * window.c (Fselect_window): Undo 2000-03-17 change.
|
|
|
6897
|
|
|
6898 2000-03-17 SL Baur <steve@musashimaru.m17n.org>
|
|
|
6899
|
|
|
6900 * postgresql.c (Fpq_setenv): Remove this turkey when linking
|
|
|
6901 against v7.0 libraries. Insta-coredump city until the postgres
|
|
|
6902 folks fix it.
|
|
|
6903
|
|
|
6904 2000-03-17 Andy Piper <andy@xemacs.org>
|
|
|
6905
|
|
|
6906 * faces.c (complex_vars_of_faces): don't give the widget face an
|
|
|
6907 inherited background pixmap.
|
|
|
6908
|
|
|
6909 * glyphs-msw.c (mswindows_tab_control_instantiate): select the
|
|
|
6910 selected item.
|
|
|
6911
|
|
|
6912 * event-stream.c (Fdispatch_non_command_events): return something.
|
|
|
6913
|
|
|
6914 * gutter.c (output_gutter): use widget face.
|
|
|
6915 (clear_gutter): ditto.
|
|
|
6916
|
|
|
6917 * NEWS: adjust again.
|
|
|
6918
|
|
|
6919 * window.c (Fselect_window): make sure this runs to completion to
|
|
|
6920 avoid oddities with Fset_window_configuration.
|
|
|
6921 (Fcurrent_window_configuration): in general do not save the
|
|
|
6922 minibuffer as the selected window.
|
|
|
6923
|
|
|
6924 * glyphs.h (IMAGE_INSTANCE_HASH_DEPTH): increase.
|
|
|
6925
|
|
|
6926 2000-03-16 Olivier Galibert <galibert@pobox.com>
|
|
|
6927
|
|
|
6928 * emacs.c (Frunning_temacs_p): Revert previous patch.
|
|
|
6929 (main_1): Reinitialize running_temacs_argc if pdump_load succeeds.
|
|
|
6930
|
|
|
6931 2000-03-16 Andy Piper <andy@xemacs.org>
|
|
|
6932
|
|
|
6933 * glyphs-x.c (x_tab_control_update): if no widget values then
|
|
|
6934 return.
|
|
|
6935
|
|
|
6936 * NEWS: update for new features.
|
|
|
6937
|
|
|
6938 * event-Xt.c (emacs_Xt_force_event_pending): new function. Post a
|
|
|
6939 synthetic event to the native system.
|
|
|
6940 (reinit_vars_of_event_Xt): set force_event_pending to
|
|
|
6941 emacs_Xt_force_event_pending.
|
|
|
6942
|
|
|
6943 * events.h (struct event_stream): add force_event_pending.
|
|
|
6944
|
|
|
6945 * specifier.c (recompute_one_cached_specifier_in_window): add
|
|
|
6946 comment.
|
|
|
6947
|
|
|
6948 * redisplay.c (redisplay_frame): don't call
|
|
|
6949 update_frame_subwindows. Reset subwindow cachels when
|
|
|
6950 subwindows_changed, removing this was an optimization too far.
|
|
|
6951
|
|
|
6952 * redisplay-output.c (compare_runes): reorganize so that we catch
|
|
|
6953 glyph changes when we want them. Set optimize_output when this
|
|
|
6954 would help layouts.
|
|
|
6955 (redisplay_output_layout): remove frame_really_changed, use
|
|
|
6956 optimize_output instead.
|
|
|
6957
|
|
|
6958 * redisplay-msw.c (mswindows_output_display_block): reset
|
|
|
6959 optimize_output after outputting a glyph.
|
|
|
6960 * redisplay-x.c (x_output_display_block): ditto.
|
|
|
6961 * redisplay-tty.c (tty_output_display_block): ditto.
|
|
|
6962
|
|
|
6963 * gutter.c: (specifier_vars_of_gutter): use new spec changed
|
|
|
6964 functions.
|
|
|
6965 (gutter_specs_changed): do specific gutter positions.
|
|
|
6966 (top_gutter_specs_changed): new function. Only update the
|
|
|
6967 specified gutter specs.
|
|
|
6968 (bottom_gutter_specs_changed): ditto.
|
|
|
6969 (left_gutter_specs_changed): ditto.
|
|
|
6970 (right_gutter_specs_changed): ditto.
|
|
|
6971
|
|
|
6972 * gui.c (gui_item_hash_internal): new function, does a real hash.
|
|
|
6973 (gui_item_id_hash): use it.
|
|
|
6974 (gui_item_hash): hash the eval'ed gui_item.
|
|
|
6975
|
|
|
6976 * gui-x.c (popup_selection_callback): send an eval event to call
|
|
|
6977 Fupdate_widget_instances.
|
|
|
6978
|
|
|
6979 * gui-msw.c (mswindows_handle_gui_wm_command): send an eval event
|
|
|
6980 to call Fupdate_widget_instances.
|
|
|
6981
|
|
|
6982 * glyphs.h (struct Lisp_Image_Instance): add optimize_output flag.
|
|
|
6983 (IMAGE_INSTANCE_OPTIMIZE_OUTPUT): access it.
|
|
|
6984
|
|
|
6985 * glyphs.c: (update_frame_subwindows): deleted.
|
|
|
6986 (Fupdate_widget_instances): new function for updating the dirty
|
|
|
6987 state of widgets that might have changed.
|
|
|
6988 (syms_of_glyphs): add Qupdate_widget_instances.
|
|
|
6989 (full_list_hash): hash a list completely.
|
|
|
6990 (image_instance_hash): use it for items and properties.
|
|
|
6991
|
|
|
6992 * frame-msw.c (mswindows_size_frame_internal): remove unused
|
|
|
6993 variable.
|
|
|
6994
|
|
|
6995 * faces.h (struct face_cachel): fix comment.
|
|
|
6996
|
|
|
6997 * event-stream.c (Fdispatch_non_command_events): new
|
|
|
6998 function. Process non-command events, forcing an event cycle
|
|
|
6999 beforehand.
|
|
|
7000 (syms_of_event_stream): declare.
|
|
|
7001 (event_stream_force_event_pending): new function. Force an event
|
|
|
7002 on the native event queue so that an event cycle will occur next
|
|
|
7003 time we check.
|
|
|
7004
|
|
|
7005 * event-msw.c:
|
|
|
7006 (struct ntpipe_shove_stream):
|
|
|
7007 (mswindows_enqueue_dispatch_event):
|
|
|
7008 (mswindows_dequeue_dispatch_event):
|
|
|
7009 (mswindows_cancel_dispatch_event):
|
|
|
7010 (mswindows_pump_outstanding_events):
|
|
|
7011 (mswindows_drain_windows_queue):
|
|
|
7012 (mswindows_handle_paint):
|
|
|
7013 (mswindows_wnd_proc):
|
|
|
7014 (mswindows_key_to_emacs_keysym):
|
|
|
7015 (get_process_input_waitable):
|
|
|
7016 (emacs_mswindows_delete_stream_pair): re-indent file.
|
|
|
7017 (mswindows_need_event): do not process further fds if the windows
|
|
|
7018 fd is set, otherwise you get endless XM_BUMPQUEUE cycles. This
|
|
|
7019 fixes the 100% cpu problem.
|
|
|
7020 (reinit_vars_of_event_mswindows): set force_event_pending to 0.
|
|
|
7021
|
|
|
7022 2000-03-15 Olivier Galibert <galibert@pobox.com>
|
|
|
7023
|
|
|
7024 * alloc.h: New.
|
|
|
7025 * dumper.h: New.
|
|
|
7026 * dumper.c: New.
|
|
|
7027
|
|
|
7028 * emacs.c: Moved dump file searching to dumper.c.
|
|
|
7029 (Frunning_temacs_p): Fixed.
|
|
|
7030
|
|
|
7031 * alloc.c: Moved everything pdump-related to dumper.c. Removed
|
|
|
7032 last_lrecord_type_index_assigned.
|
|
|
7033
|
|
|
7034 2000-02-20 Olivier Galibert <galibert@pobox.com>
|
|
|
7035
|
|
|
7036 * symsinit.h: Added reinit parameter to init_console_stream
|
|
|
7037 declaration.
|
|
|
7038
|
|
|
7039 * lisp.h: Added file parameter to pdump_load declaration.
|
|
|
7040
|
|
|
7041 * emacs.c (main_1): Added -nd/--nodump-file and -sd/--show-dump-id
|
|
|
7042 support. Added dump file searching.
|
|
|
7043
|
|
|
7044 * config.h.in: Added EMACS_PROGNAME.
|
|
|
7045
|
|
|
7046 * console-stream.c (init_console_stream): Fix reinitialisation
|
|
|
7047 when running from temacs.
|
|
|
7048
|
|
|
7049 * alloc.c (pdump): Add id support.
|
|
|
7050 (pdump_load): Add file parameter and signature/id support.
|
|
|
7051
|
|
|
7052 * Makefile.in.in: Add full pdump support.
|
|
|
7053
|
|
|
7054 2000-03-15 SL Baur <steve@musashimaru.m17n.org>
|
|
|
7055
|
|
|
7056 * postgresql.c: Update documentation to reflect latest code
|
|
|
7057 status.
|
|
|
7058 (print_result): Show tuple counts in printed representation when
|
|
|
7059 appropriate.
|
|
|
7060 (Fpq_put_nbytes): MULE-ize.
|
|
|
7061 (Fpq_get_line_async): Ditto.
|
|
|
7062
|
|
|
7063 2000-03-14 SL Baur <steve@musashimaru.m17n.org>
|
|
|
7064
|
|
|
7065 * postgresql.c (Fpq_lo_import): Fix return value.
|
|
|
7066 Suggested by: Kenji Itoh <keit@tpj.co.jp>.
|
|
|
7067
|
|
|
7068 2000-03-13 Ben Wing <ben@xemacs.org>
|
|
|
7069
|
|
|
7070 * alloc.c (pdump_load):
|
|
|
7071 Fix compile warning under mswin.
|
|
|
7072
|
|
|
7073 2000-03-14 SL Baur <steve@musashimaru.m17n.org>
|
|
|
7074
|
|
|
7075 * postgresql.c: Mule-ization, bug fixes.
|
|
|
7076 Use PG_CODING to encapsulate coding system name changes.
|
|
|
7077 Backport a version of TO_EXTERNAL format for 21.1/InfoDock.
|
|
|
7078 (pg-coding-system): Create.
|
|
|
7079
|
|
|
7080 (Fpq_conn_defaults): Mule-ize.
|
|
|
7081 (Fpq_connectdb): Mule-ize & bug fix.
|
|
|
7082 (Fpq_connect_start): Mule-ize.
|
|
|
7083 (Fpq_set_client_encoding): Mule-ize.
|
|
|
7084 (Fpq_finish): Document `DEAD' connection status.
|
|
|
7085 (Fpq_clear): Ditto.
|
|
|
7086 (Fpq_pgconn): Mule-ize.
|
|
|
7087 (Fpq_exec): Mule-ize & bug fix.
|
|
|
7088 (Fpq_send_query): Ditto.
|
|
|
7089 (Fpq_get_result): Ditto.
|
|
|
7090 (Fpq_res_status): Mule-ize.
|
|
|
7091 (Fpq_result_error_message): Mule-ize.
|
|
|
7092 (Fpq_ntuples): fix comments.
|
|
|
7093 (Fpq_fname): Mule-ize.
|
|
|
7094 (Fpq_fnumber): Mule-ize.
|
|
|
7095 (Fpq_ftype): fix comments.
|
|
|
7096 (Fpq_get_value): Mule-ize.
|
|
|
7097 (Fpq_cmd_status): Ditto.
|
|
|
7098 (Fpq_cmd_tuples): Ditto.
|
|
|
7099 (Fpq_oid_value): Ditto.
|
|
|
7100 (Fpq_notifies): Ditto.
|
|
|
7101 (Fpq_lo_import): Ditto.
|
|
|
7102 (Fpq_lo_export): Ditto.
|
|
|
7103 (Fpq_get_line): Ditto.
|
|
|
7104 (Fpq_put_line): Mule-ize and bug fix.
|
|
|
7105 (syms_of_postgresql): Fix ifdef'ing, add pg-coding-system.
|
|
|
7106
|
|
|
7107 2000-03-10 SL Baur <steve@musashimaru.m17n.org>
|
|
|
7108
|
|
|
7109 * postgresql.c (vars_of_postgresql): Mule-ize.
|
|
|
7110 (Fpq_conn_defaults): Ditto.
|
|
|
7111
|
|
|
7112 2000-03-12 Ben Wing <ben@xemacs.org>
|
|
|
7113
|
|
|
7114 * alloc.c (Fmake_byte_code):
|
|
|
7115 * alloc.c (debug_string_purity_print):
|
|
|
7116 * alloc.c (pdump_backtrace):
|
|
|
7117 * alloc.c (pdump_get_indirect_count):
|
|
|
7118 * alloc.c (pdump_register_sub):
|
|
|
7119 * alloc.c (pdump_register_object):
|
|
|
7120 * alloc.c (pdump_register_struct):
|
|
|
7121 * alloc.c (pdump_dump_data):
|
|
|
7122 * alloc.c (pdump_reloc_one):
|
|
|
7123 Minor cleanups.
|
|
|
7124
|
|
|
7125 * console-msw.c:
|
|
|
7126 * console-msw.c (GetConsoleHwnd):
|
|
|
7127 * console-msw.c (msw_hide_console):
|
|
|
7128 * console-msw.c (msw_show_console):
|
|
|
7129 * console-msw.c (msw_ensure_console_buffered):
|
|
|
7130 * console-msw.c (msw_output_console_string):
|
|
|
7131 * console-msw.c (console_type_create_mswindows):
|
|
|
7132
|
|
|
7133 a) Added functions to manipulate the console window for use with
|
|
|
7134 shell support.
|
|
|
7135
|
|
|
7136 b) Added support for writing text to the console, which is now
|
|
|
7137 used under Windows when xemacs is not being run non-interactively,
|
|
|
7138 to write text that would otherwise be destined for stdout because
|
|
|
7139 under these circumstances, text written to stdout tends to
|
|
|
7140 disappear and not be seen.
|
|
|
7141
|
|
|
7142 * console-msw.h:
|
|
|
7143 * event-Xt.c:
|
|
|
7144 * event-Xt.c (x_event_to_emacs_event):
|
|
|
7145 * event-Xt.c (describe_event_window):
|
|
|
7146 * events-mod.h (XEMACS_MOD_CONTROL):
|
|
|
7147 * events.c:
|
|
|
7148 * events.c (Fmake_event):
|
|
|
7149 * events.c (character_to_event):
|
|
|
7150 * events.c (event_to_character):
|
|
|
7151 * events.c (format_event_object):
|
|
|
7152 * events.c (Fevent_modifiers):
|
|
|
7153 * events.h:
|
|
|
7154 * events.h (struct key_data):
|
|
|
7155 * events.h (struct button_data):
|
|
|
7156 * events.h (struct misc_user_data):
|
|
|
7157 * frame-x.c (Fcde_start_drag_internal):
|
|
|
7158 * frame-x.c (Foffix_start_drag_internal):
|
|
|
7159 * gpmevent.c (Freceive_gpm_event):
|
|
|
7160 * keymap.c:
|
|
|
7161 * keymap.c (bucky_sym_to_bucky_bit):
|
|
|
7162 * keymap.c (control_meta_superify):
|
|
|
7163 * keymap.c (make_key_description):
|
|
|
7164 * keymap.c (keymap_lookup_directly):
|
|
|
7165 * keymap.c (create_bucky_submap):
|
|
|
7166 * keymap.c (keymap_store):
|
|
|
7167 * keymap.c (define_key_check_and_coerce_keysym):
|
|
|
7168 * keymap.c (define_key_parser):
|
|
|
7169 * keymap.c (define_key_alternate_name):
|
|
|
7170 * keymap.c (Fdefine_key):
|
|
|
7171 * keymap.c (raw_lookup_key_mapper):
|
|
|
7172 * keymap.c (struct map_keymap_unsorted_closure):
|
|
|
7173 * keymap.c (map_keymap_unsorted_mapper):
|
|
|
7174 * keymap.c (map_keymap_sort_predicate):
|
|
|
7175 * keymap.c (map_keymap_sorted):
|
|
|
7176 * keymap.c (accessible_keymaps_mapper_1):
|
|
|
7177 * keymap.c (where_is_recursive_mapper):
|
|
|
7178 * keymap.c (describe_map_mapper):
|
|
|
7179 * keymap.c (describe_map_sort_predicate):
|
|
|
7180 * keymap.c (describe_map):
|
|
|
7181 * keymap.c (complex_vars_of_keymap):
|
|
|
7182 And a number of other files, the key modifier preprocessor
|
|
|
7183 constants that xemacs uses have names that conflict with constants
|
|
|
7184 defined under MS Windows for other purposes, so they were renamed
|
|
|
7185 to begin with the prefix XEMACS_. The variables that hold such
|
|
|
7186 modifiers were changed to consistently be of type int to fix
|
|
|
7187 various compile warnings.
|
|
|
7188
|
|
|
7189 * console.c (complex_vars_of_console):
|
|
|
7190 * device.c:
|
|
|
7191 * device-msw.c:
|
|
|
7192 * device-msw.c (mswindows_finish_init_device):
|
|
|
7193 * device-msw.c (msw_get_workspace_coords):
|
|
|
7194 * device-msw.c (mswindows_device_system_metrics):
|
|
|
7195 and various other files, added support for a new
|
|
|
7196 device property called offset-workspace which returns the position
|
|
|
7197 of the upper left corner of the workspace area and goes along with
|
|
|
7198 the existing size-workspace property.
|
|
|
7199
|
|
|
7200 * dialog-msw.c:
|
|
|
7201 * dialog-msw.c (push_bufbyte_string_as_unicode):
|
|
|
7202 * dialog-msw.c (mswindows_popup_dialog_box):
|
|
|
7203 Added support for XEmacs-style accelerator specifications in
|
|
|
7204 button text. Note: I didn't add support for this under X Windows,
|
|
|
7205 and somebody needs to do this.
|
|
|
7206
|
|
|
7207 * dialog.c:
|
|
|
7208 * dialog.c (Fpopup_dialog_box):
|
|
|
7209 Documented the support for accelerators that was just mentioned.
|
|
|
7210
|
|
|
7211 editfns.c (get_home_directory): Changed behavior under Windows
|
|
|
7212 when HOME not defined; former behavior was irretrievably broken.
|
|
|
7213
|
|
|
7214 * emacs.c:
|
|
|
7215 * emacs.c (main_1):
|
|
|
7216 * emacs.c (main):
|
|
|
7217 * minibuf.c (clear_echo_area_internal):
|
|
|
7218 * minibuf.c (echo_area_append):
|
|
|
7219 * print.c:
|
|
|
7220 * print.c (std_handle_out_external):
|
|
|
7221 * print.c (std_handle_out_va):
|
|
|
7222 * print.c (fatal):
|
|
|
7223 * print.c (write_string_to_stdio_stream):
|
|
|
7224 * print.c (output_string):
|
|
|
7225 * print.c (debug_print):
|
|
|
7226 * print.c (debug_backtrace):
|
|
|
7227 * print.c (debug_short_backtrace):
|
|
|
7228 Cleaned up the code that prints text to stdout so that this can be
|
|
|
7229 changed to output into a console window instead under MS Windows,
|
|
|
7230 as described above.
|
|
|
7231
|
|
|
7232 * eval.c:
|
|
|
7233 * eval.c (DEFEND_AGAINST_THROW_RECURSION):
|
|
|
7234 * eval.c (internal_catch):
|
|
|
7235 * eval.c (unwind_to_catch):
|
|
|
7236 * eval.c (throw_or_bomb_out):
|
|
|
7237 * eval.c (condition_case_1):
|
|
|
7238 * eval.c (signal_1):
|
|
|
7239 * eval.c (check_error_state_sanity):
|
|
|
7240 * eval.c (call_with_suspended_errors_1):
|
|
|
7241 * eval.c (call_with_suspended_errors):
|
|
|
7242 * eval.c (reinit_vars_of_eval):
|
|
|
7243 Added code to catch throw loops and check for a pesky bug that may
|
|
|
7244 be gone now.
|
|
|
7245
|
|
|
7246 * event-msw.c:
|
|
|
7247 * event-msw.c (key_needs_default_processing_p):
|
|
|
7248 * event-msw.c (mswindows_wnd_proc):
|
|
|
7249 * event-msw.c (mswindows_modifier_state):
|
|
|
7250 * event-msw.c (emacs_mswindows_quit_p):
|
|
|
7251 * event-msw.c (vars_of_event_mswindows):
|
|
|
7252 a) Added support for using the alt key to select menu items as is
|
|
|
7253 standard under MS Windows. This is controlled using the variable
|
|
|
7254 menu-accelerator-enabled, just like under X Windows. There is an
|
|
|
7255 option on the options menu to turn this support on. I really
|
|
|
7256 think that it should be on by default under Windows, but I'm not
|
|
|
7257 going to make this change yet.
|
|
|
7258
|
|
|
7259 b) Added support for dynamic display size changes under Windows.
|
|
|
7260
|
|
|
7261 * event-stream.c:
|
|
|
7262 * event-stream.c (maybe_echo_keys):
|
|
|
7263 * event-stream.c (Fnext_event):
|
|
|
7264 * event-stream.c (command_builder_find_leaf):
|
|
|
7265 * event-stream.c (lookup_command_event):
|
|
|
7266 * event-stream.c (execute_command_event):
|
|
|
7267 * event-stream.c (pre_command_hook):
|
|
|
7268 * event-stream.c (post_command_hook):
|
|
|
7269 * event-stream.c (syms_of_event_stream):
|
|
|
7270 * event-stream.c (vars_of_event_stream):
|
|
|
7271 * event-stream.c (complex_vars_of_event_stream):
|
|
|
7272 * events.h (struct command_builder):
|
|
|
7273
|
|
|
7274 a) Tried to clean up a little bit the horribly written x-specific
|
|
|
7275 accelerator code that crept into this file. I moved this code
|
|
|
7276 into menubar-x.c where it belongs. I also needed to move the
|
|
|
7277 command builder structure into the file events.h because it is
|
|
|
7278 accessed directly by this accelerator code. What I didn't do, but
|
|
|
7279 which should be done at some point, is to properly abstract this
|
|
|
7280 code using device methods instead of the kludgy way that it
|
|
|
7281 currently hooks into the event code.
|
|
|
7282
|
|
|
7283 b) Added the lisp variables this-command-properties and
|
|
|
7284 last-command- properties, which should be used to synchronize two
|
|
|
7285 adjacent commands in preference to playing games with the variable
|
|
|
7286 this-command, which is typically what happens.
|
|
|
7287
|
|
|
7288 c) Added some slightly nasty code to hook into the lisp support
|
|
|
7289 for shifted- motion-key selection. This is actually necessary for
|
|
|
7290 somewhat complicated reasons, which are described in
|
|
|
7291 simple.el. (NB: I think the proper thing would be to have the code
|
|
|
7292 that calls the pre and post command hooks also call out to generic
|
|
|
7293 lisp functions in simple.el, where all built-in stuff could be
|
|
|
7294 added. I will think about this more.)
|
|
|
7295
|
|
|
7296 * event-unixoid.c (poll_fds_for_input):
|
|
|
7297 * lread.c (readchar):
|
|
|
7298 * redisplay-tty.c (tty_clear_frame):
|
|
|
7299 * redisplay-x.c (x_get_gc):
|
|
|
7300 * signal.c (interrupt_signal):
|
|
|
7301 And a whole bunch of other files: fixed up places that printed
|
|
|
7302 directly to stderr to instead call the function stderr_out so that
|
|
|
7303 the changes I made under Windows work correctly.
|
|
|
7304
|
|
|
7305 * filemode.c (mode_string):
|
|
|
7306 Warning fixes.
|
|
|
7307
|
|
|
7308 * frame-msw.c:
|
|
|
7309 * frame-msw.c (mswindows_size_frame_internal):
|
|
|
7310 Fixed the computation of frame size and position to keep the frame
|
|
|
7311 within the workspace area, rather than within the physical
|
|
|
7312 dimensions of the screen, so that the frame doesn't overlap window
|
|
|
7313 manager decorations, such as the start menu and toolbar, typically
|
|
|
7314 at the bottom of the screen.
|
|
|
7315
|
|
|
7316 * frame.c (vars_of_frame):
|
|
|
7317 Changed the default frame title format under MS Windows to consist
|
|
|
7318 of buffername-XEmacs, which is standard under MS Windows. I think
|
|
|
7319 it might be a good idea to change this everywhere because I think
|
|
|
7320 it is superior to the current frame title format, but this is the
|
|
|
7321 kind of change that is likely to cause some people to get annoyed,
|
|
|
7322 so I'm not making it.
|
|
|
7323
|
|
|
7324 * glyphs-eimage.c (png_instantiate): Fixed some compile warnings.
|
|
|
7325
|
|
|
7326 * gui-msw.c (mswindows_handle_gui_wm_command):
|
|
|
7327 Fixed compile warnings.
|
|
|
7328
|
|
|
7329 * gui-x.c:
|
|
|
7330 * gui-x.c (strdup_and_add_accel):
|
|
|
7331 * gui-x.c (button_item_to_widget_value):
|
|
|
7332 * gui-x.h:
|
|
|
7333 Added code to automatically put an accelerator onto the beginning
|
|
|
7334 of menu items that don't have one as is now the standard, and is
|
|
|
7335 described more later. Also fixed things so that the menu item
|
|
|
7336 name can be an evaluated expression, again a new standard.
|
|
|
7337
|
|
|
7338 * gui.c:
|
|
|
7339 * gui.c (gui_item_add_keyval_pair):
|
|
|
7340 * gui.c (make_gui_item_from_keywords_internal):
|
|
|
7341 * gui.c (gui_add_item_keywords_to_plist):
|
|
|
7342 * gui.c (gui_item_accelerator):
|
|
|
7343 * gui.c (gui_name_accelerator):
|
|
|
7344 * gui.c (gui_item_included_p):
|
|
|
7345 * gui.c (gui_item_display_flush_left):
|
|
|
7346 * gui.c (gui_item_display_flush_right):
|
|
|
7347 * gui.c (parse_gui_item_tree_item):
|
|
|
7348 * gui.c (parse_gui_item_tree_children):
|
|
|
7349 * gui.c (parse_gui_item_tree_list):
|
|
|
7350 Mule-ized. Cleanup. GCPRO addition.
|
|
|
7351
|
|
|
7352 * line-number.c (buffer_line_number):
|
|
|
7353 * lisp.h:
|
|
|
7354 * lisp.h (EMACS_INT_MAX):
|
|
|
7355 Added the manifest constant EMACS_INT_MIN corresponding to the
|
|
|
7356 existing constant EMACS_INT_MAX. This is partially to fix compile
|
|
|
7357 warnings under Windows, and partly for cleanliness.
|
|
|
7358
|
|
|
7359 * menubar-msw.c:
|
|
|
7360 * menubar-msw.c (REPLACE_ME_WITH_GLOBAL_VARIABLE_WHICH_CONTROLS_RIGHT_FLUSH):
|
|
|
7361 * menubar-msw.c (msw_translate_menu_or_dialog_item):
|
|
|
7362 * menubar-msw.c (displayable_menu_item):
|
|
|
7363 * menubar-msw.c (populate_menu_add_item):
|
|
|
7364 * menubar-msw.c (populate_or_checksum_helper):
|
|
|
7365 * menubar-msw.c (populate_menu):
|
|
|
7366 * menubar-msw.c (update_frame_menubar_maybe):
|
|
|
7367 * menubar-msw.c (prune_menubar):
|
|
|
7368 * menubar-msw.c (msw_char_is_accelerator):
|
|
|
7369 * menubar-msw.c (unsafe_handle_wm_initmenu_1):
|
|
|
7370 * menubar-msw.c (mswindows_handle_wm_command):
|
|
|
7371 * menubar-msw.c (mswindows_handle_wm_initmenupopup):
|
|
|
7372 * menubar-msw.c (mswindows_handle_wm_initmenu):
|
|
|
7373 * menubar-msw.c (mswindows_update_frame_menubars):
|
|
|
7374 * menubar-msw.c (mswindows_free_frame_menubars):
|
|
|
7375 * menubar-msw.c (mswindows_popup_menu):
|
|
|
7376 Fixed a bug in handling accelerators where an extra character
|
|
|
7377 would be displayed in the menu item. Also generalized the
|
|
|
7378 function displayable_menu_item because it is now used by the
|
|
|
7379 dialog box code as well. And finally, added code in the functions
|
|
|
7380 that create the menubar to extract a list of accelerators for the
|
|
|
7381 top level menubar, which is used in the event code to determine
|
|
|
7382 whether a particular alt-key combination should be used to invoke
|
|
|
7383 a menu item, or should be passed through to access the standard
|
|
|
7384 XEmacs keymap binding for this key combination.
|
|
|
7385
|
|
|
7386 Much needed GCPROing.
|
|
|
7387
|
|
|
7388 * menubar-x.c:
|
|
|
7389 * menubar-x.c (menu_item_descriptor_to_widget_value_1):
|
|
|
7390 * menubar-x.c (menu_item_descriptor_to_widget_value):
|
|
|
7391 * menubar-x.c (restore_in_menu_callback):
|
|
|
7392 * menubar-x.c (x_popup_menu):
|
|
|
7393 * menubar-x.c (menu_move_up):
|
|
|
7394 * menubar-x.c (menu_move_down):
|
|
|
7395 * menubar-x.c (menu_move_left):
|
|
|
7396 * menubar-x.c (menu_move_right):
|
|
|
7397 * menubar-x.c (menu_select_item):
|
|
|
7398 * menubar-x.c (command_builder_operate_menu_accelerator):
|
|
|
7399 * menubar-x.c (menu_accelerator_junk_on_error):
|
|
|
7400 * menubar-x.c (command_builder_find_menu_accelerator):
|
|
|
7401 * menubar-x.c (Faccelerate_menu):
|
|
|
7402 * menubar.h:
|
|
|
7403 Moved a whole bunch of code here that was previously in
|
|
|
7404 event-stream.c as described above. There is also code connected
|
|
|
7405 to the new standard of adding an accelerator to the beginning of
|
|
|
7406 menu items that don't have one as described above and below.
|
|
|
7407
|
|
|
7408 * menubar.c:
|
|
|
7409 * menubar.c (menu_parse_submenu_keywords):
|
|
|
7410 * menubar.c (Fmenu_find_real_submenu):
|
|
|
7411 * menubar.c (Fnormalize_menu_item_name):
|
|
|
7412 * menubar.c (syms_of_menubar):
|
|
|
7413 * menubar.c (vars_of_menubar):
|
|
|
7414 * menubar.c (complex_vars_of_menubar):
|
|
|
7415
|
|
|
7416 a) Cleaned up a bunch of documentation and improved it.
|
|
|
7417
|
|
|
7418 b) XEmacs now automatically adds an accelerator onto the beginning
|
|
|
7419 of any menu items that don't have one. I did this because there
|
|
|
7420 will inevitably be some menu items on the main menubar that don't
|
|
|
7421 have accelerators on them because the package that adds that
|
|
|
7422 particular menu item hasn't yet been fixed up to have accelerators
|
|
|
7423 in them and it looked rather strange to have some items with and
|
|
|
7424 some items without accelerators, especially since even in items
|
|
|
7425 without accelerators, you can, at least under windows, still
|
|
|
7426 access the item through an accelerator corresponding to the first
|
|
|
7427 character in the item's name. If people don't like this behavior,
|
|
|
7428 I can add a variable to turn it off optionally, but I'm not sure
|
|
|
7429 this is a good idea because we really do need to have accelerators
|
|
|
7430 on all of the menu items, and if a package doesn't like the
|
|
|
7431 accelerators being put on the first character, then it should put
|
|
|
7432 the accelerators where they belong.
|
|
|
7433
|
|
|
7434 c) I made a behavior change, which is that the descriptor that
|
|
|
7435 specifies the text of the menu item, which formerly was just a
|
|
|
7436 string, can now also be an evaluated expression. This makes this
|
|
|
7437 descriptor parallel with all of the others, which could also be
|
|
|
7438 evaluated expressions. This also obviates the need for the
|
|
|
7439 keyword :label, which was previously listed in the documentation
|
|
|
7440 as unimplemented, and which was for the same purpose.
|
|
|
7441
|
|
|
7442 d) GCPROing.
|
|
|
7443
|
|
|
7444 * ntproc.c:
|
|
|
7445 * ntproc.c (new_child):
|
|
|
7446 * ntproc.c (sys_spawnve):
|
|
|
7447 * ntproc.c (find_child_console):
|
|
|
7448 * ntproc.c (sys_kill):
|
|
|
7449 Fixed compile warnings. By the way, this file should really go
|
|
|
7450 away entirely, and this will happen as soon as Kirill makes his
|
|
|
7451 final round of process cleanups, which affect the function
|
|
|
7452 call-process.
|
|
|
7453
|
|
|
7454 * process-nt.c:
|
|
|
7455 * process-nt.c (struct nt_process_data):
|
|
|
7456 * process-nt.c (find_process_from_pid):
|
|
|
7457 * process-nt.c (send_signal_the_nt_way):
|
|
|
7458 * process-nt.c (enable_child_signals):
|
|
|
7459 * process-nt.c (find_child_console):
|
|
|
7460 * process-nt.c (send_signal_the_95_way):
|
|
|
7461 * process-nt.c (nt_finalize_process_data):
|
|
|
7462 * process-nt.c (ensure_console_window_exists):
|
|
|
7463 * process-nt.c (nt_create_process):
|
|
|
7464 * process-nt.c (nt_kill_child_process):
|
|
|
7465 * process-nt.c (nt_kill_process_by_pid):
|
|
|
7466 * process-nt.c (nt_open_network_stream):
|
|
|
7467 * process-nt.c (vars_of_process_nt):
|
|
|
7468 Copied over code from Emacs 20.5 to correctly send signals to sub-
|
|
|
7469 processes under Windows 95. Also added code to automatically
|
|
|
7470 create and hide console window when a sub-process is created under
|
|
|
7471 Windows 95, which obviates the need for the separate runemacs.exe
|
|
|
7472 executable, and finally implemented some variables that were
|
|
|
7473 implemented in Emacs 20.5, but previously not in XEmacs. These
|
|
|
7474 include mswindows- start-process-share-console and
|
|
|
7475 mswindows-start-process-inherit-error-mode. (Both of these only
|
|
|
7476 apply to Windows 95.)
|
|
|
7477
|
|
|
7478 * regex.c (regex_compile): Fixed a compile warning.
|
|
|
7479
|
|
|
7480 * select-msw.c:
|
|
|
7481 * select-msw.c (mswindows_own_selection):
|
|
|
7482 * select-msw.c (mswindows_get_foreign_selection):
|
|
|
7483 * select-msw.c (mswindows_disown_selection):
|
|
|
7484 * select-msw.c (console_type_create_select_mswindows):
|
|
|
7485 * select-msw.c (syms_of_select_mswindows):
|
|
|
7486 Cleaned up the file and implemented the device method
|
|
|
7487 selection_exists_p, which had accidentally been left out. Also
|
|
|
7488 removed four lisp functions that were remnants from before the
|
|
|
7489 time when the selection code was properly device abstracted.
|
|
|
7490 These functions are no longer needed because there are generic
|
|
|
7491 equivalents, and because they were added recently and don't exist
|
|
|
7492 in FSF Emacs, I don't think there's any problem with just deleting
|
|
|
7493 them.
|
|
|
7494
|
|
|
7495 * sysdep.c:
|
|
|
7496 * sysdep.c (sys_subshell):
|
|
|
7497 Fixed a compile warning, although in this case there's probably
|
|
|
7498 something wrong with this code, and it ought to be looked into
|
|
|
7499 more thoroughly by somebody who understands it.
|
|
|
7500
|
|
|
7501 * window.c:
|
|
|
7502 * window.c (Fwindow_text_area_height):
|
|
|
7503 * window.c (Fwindow_width):
|
|
|
7504 * window.c (Fwindow_full_width):
|
|
|
7505 * window.c (Fwindow_pixel_width):
|
|
|
7506 * window.c (debug_print_window):
|
|
|
7507 * window.c (syms_of_window):
|
|
|
7508 Added functions window-text-area-height and window-full-width,
|
|
|
7509 which are functions for returning various width and height
|
|
|
7510 characteristics of a window. (One of these functions is necessary
|
|
|
7511 for making the file dialog box work correctly, and the other one
|
|
|
7512 was added for completeness.) Also added a table to the
|
|
|
7513 documentation for window-height which describes the entire scheme
|
|
|
7514 for accessing width and height characteristics of a window.
|
|
|
7515
|
|
|
7516 2000-03-12 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
|
7517
|
|
|
7518 * nt.c (fstat): Added a comment for another problem with
|
|
|
7519 non-encapsulated [f]stat(), reported by Adrian Aichner
|
|
|
7520 <aichner@ecf.teradyne.com>.
|
|
|
7521
|
|
|
7522 2000-03-11 Andy Piper <andy@xemacs.org>
|
|
|
7523
|
|
|
7524 * window.c (make_dummy_parent): initialize subwindow instance
|
|
|
7525 cache.
|
|
|
7526 (Fset_window_configuration): zero extent_modiff.
|
|
|
7527
|
|
|
7528 2000-03-10 Andy Piper <andy@xemacs.org>
|
|
|
7529
|
|
|
7530 * redisplay.c (Fredraw_frame): reset the changed_set flags so that
|
|
|
7531 more changes can be triggered.
|
|
|
7532 (Fredisplay_frame): ditto.
|
|
|
7533 (Fredraw_device): ditto.
|
|
|
7534 (Fredisplay_device): ditto.
|
|
|
7535 (redisplay_frame): make non-static.
|
|
|
7536 (redisplay_frame): call update_frame_gutter_geometry outside of
|
|
|
7537 display proper.
|
|
|
7538
|
|
|
7539 * gutter.h: declare update_frame_gutter_geometry.
|
|
|
7540
|
|
|
7541 * redisplay.h: declare redisplay_frame.
|
|
|
7542
|
|
|
7543 * gutter.c (update_frame_gutter_geometry): move geometry changes
|
|
|
7544 in update_frame_gutters here. Geometry changes can only occur
|
|
|
7545 outside of redisplay.
|
|
|
7546 (update_frame_gutters): remove geometry change code.
|
|
|
7547 (Fredisplay_gutter_area): make sure that we are in display when we
|
|
|
7548 update and that we have flushed any size changes.
|
|
|
7549
|
|
|
7550 2000-03-11 Andy Piper <andy@xemacs.org>
|
|
|
7551
|
|
|
7552 * alloc.c (pdump_dump_data): remove i & count shadows.
|
|
|
7553
|
|
|
7554 2000-02-27 Mike Alexander <mta@arbortext.com>
|
|
|
7555
|
|
|
7556 * sysdep.h: Declare pdump_read_file
|
|
|
7557
|
|
|
7558 * sysdep.c (pdump_read_file): New function
|
|
|
7559
|
|
|
7560 * alloc.c (pdump_load): Call pdump_read_file to get the portable
|
|
|
7561 dump data
|
|
|
7562
|
|
|
7563 2000-03-10 SL Baur <steve@musashimaru.m17n.org>
|
|
|
7564
|
|
|
7565 * lrecord.h: add `lrecord_type_pgsetenv'.
|
|
|
7566
|
|
|
7567 2000-03-08 SL Baur <steve@musashimaru.m17n.org>
|
|
|
7568
|
|
|
7569 * symsinit.h: declare (vars|syms)_of* functions.
|
|
|
7570 * lrecord.h: add `lrecord_type_pgconn' and 'lrecord_type_pgresult'.
|
|
|
7571
|
|
|
7572 2000-03-06 SL Baur <steve@musashimaru.m17n.org>
|
|
|
7573
|
|
|
7574 * config.h.in: Add symbols HAVE_POSTGRESQL and HAVE_POSTGRESQLV7
|
|
|
7575
|
|
|
7576 * inline.c: Include postgresql.h lrecord stuffs to placate buggy
|
|
|
7577 GCCs.
|
|
|
7578
|
|
|
7579 * emacs.c (main_1): Call postgres initialization code.
|
|
|
7580
|
|
|
7581 * postgresql.h: New file. PostgreSQL RDBMS support.
|
|
|
7582 * postgresql.c: New file.
|
|
|
7583
|
|
|
7584 2000-03-08 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
7585
|
|
|
7586 * redisplay-output.c (redisplay_output_display_block): Disable
|
|
|
7587 redundant code.
|
|
|
7588
|
|
|
7589 2000-03-09 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
7590
|
|
|
7591 * mule-canna.c (Fcanna_henkan_region): Translate doc-string.
|
|
|
7592 (Fcanna_henkan_next): Ditto.
|
|
|
7593 (Fcanna_bunsetu_henkou): Ditto.
|
|
|
7594 (Fcanna_henkan_kakutei): Ditto.
|
|
|
7595 (Fcanna_henkan_end): Ditto.
|
|
|
7596 (Fcanna_henkan_quit): Ditto.
|
|
|
7597 (Fcanna_henkan_next): Set retun value correctly.
|
|
|
7598 (c2mu): Use unsigned char instead of signed char.
|
|
|
7599
|
|
|
7600 2000-03-09 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
7601
|
|
|
7602 * emacs.c (main_1): Always call syms_of_gui.
|
|
|
7603 * inline.c: include gui.h
|
|
|
7604
|
|
|
7605 2000-03-09 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
7606
|
|
|
7607 * redisplay.c (Vvisible_bell): Renamed from visible_bell and
|
|
|
7608 converted to Lisp_Object.
|
|
|
7609 (Qtop_bottom): New variable.
|
|
|
7610 (syms_of_redisplay): Initialize it.
|
|
|
7611 * redisplay.h (Vvisible_bell): Ditto.
|
|
|
7612 * sound.c (ding): Ditto and check if Vvisible_bell is nil.
|
|
|
7613 * redisplay-x.c (x_flash): When Vvisible_bell is top-bottom,
|
|
|
7614 only flash top and bottom.
|
|
|
7615
|
|
|
7616 2000-03-08 Andy Piper <andy@xemacs.org>
|
|
|
7617
|
|
|
7618 * buffer.c (Frename_buffer): record new buffer name the right way.
|
|
|
7619
|
|
|
7620 2000-03-08 Andy Piper <andy@xemacs.org>
|
|
|
7621
|
|
|
7622 * glyphs.c (update_subwindow): increase hash depth so that widget
|
|
|
7623 items get picked up properly.
|
|
|
7624
|
|
|
7625 * redisplay-output.c (compare_runes): increase hash depth so that
|
|
|
7626 widget items get picked up properly.
|
|
|
7627
|
|
|
7628 2000-03-08 Andy Piper <andy@xemacs.org>
|
|
|
7629
|
|
|
7630 * gutter.c (output_gutter): add some debug.
|
|
|
7631
|
|
|
7632 * glyphs.h (struct Lisp_Image_Instance): add display_hash.
|
|
|
7633 (IMAGE_INSTANCE_DISPLAY_HASH): new macro.
|
|
|
7634 (XIMAGE_INSTANCE_DISPLAY_HASH): ditto.
|
|
|
7635
|
|
|
7636 * redisplay-output.c (compare_runes): use display_hash to
|
|
|
7637 determine if glyphs really are not the same.
|
|
|
7638
|
|
|
7639 * glyphs.c (update_subwindow): check display_hash to see if
|
|
|
7640 anything really needs to be updated. If not then do
|
|
|
7641 nothing. Record the display_hash after updating.
|
|
|
7642 (image_instance_equal): compare the image_instance face also.
|
|
|
7643
|
|
|
7644 2000-03-07 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
7645
|
|
|
7646 * redisplay.h: Fix comment style.
|
|
|
7647
|
|
|
7648 2000-03-08 Jonathan Harris <jhar@tardis.ed.ac.uk>
|
|
|
7649
|
|
|
7650 * consle-msw.h (struct mswindows_frame):
|
|
|
7651 Added new member paint_pending to indicate whether a WM_PAINT
|
|
|
7652 magic event has been queued for this frame.
|
|
|
7653
|
|
|
7654 * event-msw.c (mswindows_drain_windows_queue):
|
|
|
7655 Don't queue a WM_PAINT magic event if one is already queued.
|
|
|
7656 (emacs_mswindows_handle_magic_event): clear paint_pending flag.
|
|
|
7657
|
|
|
7658 * frame-msw.c (mswindows_init_frame_1): initialise paint_pending flag.
|
|
|
7659
|
|
|
7660 2000-03-07 Didier Verna <didier@xemacs.org>
|
|
|
7661
|
|
|
7662 * dired.c: #include `regex.h' after `sysfile.h'.
|
|
|
7663
|
|
|
7664 2000-03-06 Martin Buchholz <martin@xemacs.org>
|
|
|
7665
|
|
|
7666 * sound.c (init_nas_sound): Fix compiler warning.
|
|
|
7667
|
|
|
7668 * alloc.c (ALIASING_VOIDPP_DEREFERENCE): New.
|
|
|
7669 (FREE_STRUCT_P):
|
|
|
7670 (MARK_STRUCT_AS_FREE):
|
|
|
7671 (MARK_STRUCT_AS_NOT_FREE):
|
|
|
7672 Make `gcc -fstrict-aliasing' work properly.
|
|
|
7673
|
|
|
7674 2000-03-07 Jonathan Harris <jhar@tardis.ed.ac.uk>
|
|
|
7675
|
|
|
7676 * device-msw.c (mswindows_finish_init_device): Call CoInitialize().
|
|
|
7677 (mswindows_delete_device): Call CoUnnitialize().
|
|
|
7678
|
|
|
7679 * event-msw.c (mswindows_wnd_proc): WM_DROPFILES: Decode Shortcuts.
|
|
|
7680
|
|
|
7681 2000-02-25 <CraigL@DyCon.com>
|
|
|
7682
|
|
|
7683 * process-nt.c: MinGW now has <shellapi.h>, but still needs
|
|
|
7684 <errno.h>.
|
|
|
7685
|
|
|
7686 * sysdep.c: This extern declaration for environ prevents MinGW
|
|
|
7687 from finding the variable in CRTDLL.DLL.
|
|
|
7688
|
|
|
7689 * s\mingw32.h (PBS_SMOOTH): Removed, now defined in cygwin's
|
|
|
7690 windows headers.
|
|
|
7691 (SHGFI_EXETYPE): ..
|
|
|
7692 (WM_MOUSEWHEEL): ..
|
|
|
7693 (_WIN32_IE): Added, needed to get the TCS_BOTTOM and TCS_VERTICAL
|
|
|
7694 definitions.
|
|
|
7695 (MMRESULT): Removed, now defined in cygwin's windows headers.
|
|
|
7696 (TIMECAPS): ..
|
|
|
7697 (uid_t,gid_t,pid_t,ssize_t): ..
|
|
|
7698 (_timeb): Removed, MinGW defines both _timeb and timeb.
|
|
|
7699 (HAVE_H_ERRNO): Added.
|
|
|
7700 (HAVE_TZNAME): Added, configure is not detecting this.
|
|
|
7701
|
|
|
7702 2000-02-03 IKEYAMA Tomonori <tomonori@suiyokai.org>
|
|
|
7703
|
|
|
7704 * chartab.h (XCHAR_TABLE_VALUE_UNSAFE): New macro.
|
|
|
7705 * syntax.c (syntax_match): Use it.
|
|
|
7706
|
|
|
7707 * cmds.c: Import auto-fill-chars from FSF Emacs.
|
|
|
7708 (Vauto_fill_chars): New variables.
|
|
|
7709 (internal_self_insert): Check Vauto_fill_chars.
|
|
|
7710 (vars_of_cmds):
|
|
|
7711 Declare auto-fill-chars as a Lisp variable and initialize it.
|
|
|
7712
|
|
|
7713 2000-03-05 Jonathan Harris <jhar@tardis.ed.ac.uk>
|
|
|
7714
|
|
|
7715 * fileio.c (Fmake_symbolic_link):
|
|
|
7716 (Ffile_symlink_p):
|
|
|
7717 Run handlers even if local machine doesn't have symlinks.
|
|
|
7718
|
|
|
7719 2000-03-05 Jonathan Harris <jhar@tardis.ed.ac.uk>
|
|
|
7720
|
|
|
7721 * event-msw.c (mswindows_drain_windows_queue):
|
|
|
7722 Don't generate paint magic events for non-XEmacs frames.
|
|
|
7723
|
|
|
7724 2000-03-05 Andy Piper <andy@xemacs.org>
|
|
|
7725
|
|
|
7726 * redisplay.c (redisplay_frame): generate_displayable_area and
|
|
|
7727 friends assumes that we are not in GC, we therefore have to make
|
|
|
7728 sure that this doesn't happen.
|
|
|
7729
|
|
|
7730 * gutter.c (calculate_gutter_size): generate_displayable_area
|
|
|
7731 assumes that we are not in GC, we therefore have to make sure that
|
|
|
7732 this doesn't happen.
|
|
|
7733
|
|
|
7734 2000-03-05 Martin Buchholz <martin@xemacs.org>
|
|
|
7735
|
|
|
7736 * opaque.c (DEFINE_LRECORD_IMPLEMENTATION): opaque_ptr ==> opaque-ptr
|
|
|
7737
|
|
|
7738 2000-03-03 Jan Vroonhof <vroonhof@math.ethz.ch>
|
|
|
7739
|
|
|
7740 * redisplay.c (regenerate_window): Make sure we set a sane value
|
|
|
7741 for end_pos even if we jump out of the loop.
|
|
|
7742 (regenerate_window): Answer Ben's question :-).
|
|
|
7743 (start_end_of_last_line): Add may_error argument.
|
|
|
7744 (start_of_last_line):
|
|
|
7745 (end_of_last_line): Pass may_error = 0.
|
|
|
7746 (end_of_last_line_may_error): New function.
|
|
|
7747 (pixel_to_glyph_translation): Use it, so we don't crash in
|
|
|
7748 event_to_glyph.
|
|
|
7749
|
|
|
7750 2000-03-04 Andy Piper <andy@xemacs.org>
|
|
|
7751
|
|
|
7752 * window.h (struct window): add gutter_extent_modiff.
|
|
|
7753
|
|
|
7754 * window.c (allocate_window): zero out gutter_extent_modiff.
|
|
|
7755
|
|
|
7756 * redisplay.h: declare sync_display_line_structs.
|
|
|
7757
|
|
|
7758 * redisplay.c (add_glyph_rune): add a better comment.
|
|
|
7759
|
|
|
7760 * redisplay-output.c (sync_display_line_structs): made non-static.
|
|
|
7761 (compare_runes): remove unneccesary glyph cachel access.
|
|
|
7762
|
|
|
7763 * gutter.h: declare gutter_extent_signal_changed_region_maybe.
|
|
|
7764
|
|
|
7765 * gutter.c (output_gutter): don't output the gutter if extent
|
|
|
7766 changes only involve extents in buffers. use 4 sets of display
|
|
|
7767 lines.
|
|
|
7768 (gutter_extent_signal_changed_region_maybe): new function. Mark
|
|
|
7769 extents in gutters as changed.
|
|
|
7770 (update_frame_gutters): use 4 sets of display lines.
|
|
|
7771 (reset_gutter_display_lines): ditto.
|
|
|
7772 (free_frame_gutters): ditto.
|
|
|
7773 (redraw_exposed_gutter): force output of gutters.
|
|
|
7774
|
|
|
7775 * frame.h (struct frame): add 4 sets of gutter display lines.
|
|
|
7776
|
|
|
7777 * extents.c: (extent_changed_for_redisplay): signal changes to
|
|
|
7778 extents in strings in the gutter as well as extents in buffers.
|
|
|
7779
|
|
|
7780 2000-03-02 Andy Piper <andy@xemacs.org>
|
|
|
7781
|
|
|
7782 * gutter.c (specifier_vars_of_gutter): cosmetic changes.
|
|
|
7783
|
|
|
7784 * frame.c (Fmake_frame): make sure the gutters get initialized
|
|
|
7785 after the frame is visible.
|
|
|
7786 (set_frame_selected_window): re-arrange compilation macros a
|
|
|
7787 little.
|
|
|
7788 (change_frame_size_1): mark gutters changed.
|
|
|
7789
|
|
|
7790 * device.c (Fset_device_class): mark gutters changed.
|
|
|
7791
|
|
|
7792 2000-03-01 Andy Piper <andy@xemacs.org>
|
|
|
7793
|
|
|
7794 * window.c (window_top_frame_gutter_height): deleted.
|
|
|
7795 (window_bottom_frame_gutter_height): ditto.
|
|
|
7796 (window_left_frame_gutter_height): ditto.
|
|
|
7797 (window_right_frame_gutter_height): ditto.
|
|
|
7798 (window_top_gutter_height): don't use them.
|
|
|
7799 (window_bottom_gutter_height): ditto.
|
|
|
7800 (window_left_gutter_width): ditto.
|
|
|
7801 (window_right_gutter_width): ditto.
|
|
|
7802 (Fsplit_window): ditto.
|
|
|
7803 (Fwindow_pixel_edges): don't use border dimensions here.
|
|
|
7804
|
|
|
7805 * scrollbar.c (update_scrollbar_instance): don't take gutters into account.
|
|
|
7806 (update_scrollbar_instance): ditto.
|
|
|
7807
|
|
|
7808 * redisplay.c (generate_modeline): don't take gutters into account.
|
|
|
7809 (generate_modeline): ditto.
|
|
|
7810 (redisplay_frame): small gutter display optimization.
|
|
|
7811
|
|
|
7812 * redisplay-x.c (x_output_vertical_divider): don't take gutters into account.
|
|
|
7813
|
|
|
7814 * redisplay-msw.c (mswindows_output_vertical_divider): don't take
|
|
|
7815 gutters into account.
|
|
|
7816
|
|
|
7817 * gutter.h (WINDOW_REAL_*_GUTTER_BOUNDS): remove bogus checks
|
|
|
7818 for window position and type.
|
|
|
7819
|
|
|
7820 * gutter.c (get_gutter_coords): fix for frame gutters.
|
|
|
7821 (update_frame_gutters): update frame geometry if the gutters have
|
|
|
7822 changed.
|
|
|
7823 (init_frame_gutters): record current gutter geometries.
|
|
|
7824
|
|
|
7825 * glyphs-msw.c (mswindows_subwindow_instantiate): remove unused
|
|
|
7826 var.
|
|
|
7827 (mswindows_widget_instantiate): ditto.
|
|
|
7828
|
|
|
7829 * frame.h (struct frame): add current_gutter_bounds.
|
|
|
7830
|
|
|
7831 * frame.c (change_frame_size_1): position window and minibuffer
|
|
|
7832 appropriately taking into account the frame gutters.
|
|
|
7833
|
|
|
7834 * frame-x.c: (x_initialize_frame_size): take into account the
|
|
|
7835 frame gutters.
|
|
|
7836
|
|
|
7837 2000-02-29 Stephen J. Turnbull <stephen@xemacs.org>
|
|
|
7838
|
|
|
7839 * emacs.c (data-directory): Xref `locate-data-file' in docstring.
|
|
|
7840
|
|
|
7841 2000-02-29 Stephen J. Turnbull <stephen@xemacs.org>
|
|
|
7842
|
|
|
7843 * alloc.c (dumpopaquevec): Increase dimension for --with-canna.
|
|
|
7844
|
|
|
7845 1999-12-30 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp>
|
|
|
7846
|
|
|
7847 * file-coding.c (reset_decoding_stream): Clear previous
|
|
|
7848 detection state when autodetect.
|
|
|
7849
|
|
|
7850 2000-02-29 Didier Verna <didier@xemacs.org>
|
|
|
7851
|
|
|
7852 * extents.c (set_extent_glyph_1): don't require extents to be
|
|
|
7853 attached.
|
|
|
7854
|
|
|
7855 2000-02-27 Andy Piper <andy@xemacs.org>
|
|
|
7856
|
|
|
7857 * gutter.c (Fset_default_gutter_position): don't default left and
|
|
|
7858 right gutter visibility to t.
|
|
|
7859 (Fset_default_gutter_position): run
|
|
|
7860 default-gutter-position-changed-hook.
|
|
|
7861 (syms_of_gutter): add default-gutter-position-changed-hook.
|
|
|
7862
|
|
|
7863 2000-02-26 Andy Piper <andy@xemacs.org>
|
|
|
7864
|
|
|
7865 * specifier.c (Fmake_specifier): add gutter references.
|
|
|
7866
|
|
|
7867 * gutter.h (RAW_WINDOW_GUTTER): new macro.
|
|
|
7868
|
|
|
7869 * lisp.h: declare Fvalid_plist_p.
|
|
|
7870
|
|
|
7871 * gutter.c (gutter_geometry_changed_in_window): mark the modeline
|
|
|
7872 as changed.
|
|
|
7873 (default_gutter_visible_p_changed_in_window): invalidate gutter as
|
|
|
7874 well as its visibility so that it gets reconstructed.
|
|
|
7875 (construct_window_gutter_spec): new function. Construct a string
|
|
|
7876 to be displayed in the gutter from a plist of strings. Take care
|
|
|
7877 to only use elements that are declared as visible.
|
|
|
7878 (calculate_gutter_size): use RAW_WINDOW_GUTTER instead of
|
|
|
7879 WINDOW_GUTTER.
|
|
|
7880 (gutter_validate): allow plists of strings in the specifier.
|
|
|
7881 (gutter_specs_changed): construct the real_gutter from the gutter
|
|
|
7882 specs using construct_window_gutter_spec.
|
|
|
7883 (gutter_visible_validate): gutter-visible is a new specifier type.
|
|
|
7884 (Fgutter_visible_specifier_p): new function for the new specifier.
|
|
|
7885 (syms_of_gutter): declare gutter-visible and
|
|
|
7886 Fgutter_visible_specifier_p.
|
|
|
7887 (specifier_type_create_gutter): intitalize new gutter-visible
|
|
|
7888 specifier.
|
|
|
7889 (reinit_specifier_type_create_gutter): ditto.
|
|
|
7890 (specifier_vars_of_gutter): use new specifier type for gutter
|
|
|
7891 visibility.
|
|
|
7892 (init_frame_gutters): construct real_gutter correctly.
|
|
|
7893 (Fgutter_specifier_p): beef up documentation.
|
|
|
7894 (Fgutter_size_specifier_p): ditto.
|
|
|
7895
|
|
|
7896 * winslots.h: add real_gutter slots.
|
|
|
7897
|
|
|
7898 2000-02-25 Andy Piper <andy@xemacs.org>
|
|
|
7899
|
|
|
7900 * device-msw.c: Be kind to older cygwin versions. From Raymond
|
|
|
7901 Toy <toy@rtp.ericsson.se>.
|
|
|
7902
|
|
|
7903 * gui-msw.c (Fmswindows_shell_execute): Remove things unknown to
|
|
|
7904 earlier cygwins. From Raymond Toy <toy@rtp.ericsson.se>.
|
|
|
7905
|
|
|
7906 2000-02-25 Martin Buchholz <martin@xemacs.org>
|
|
|
7907
|
|
|
7908 * elhash.c (MARK_OBJ): Practice macro hygiene.
|
|
|
7909
|
|
|
7910 2000-02-24 Martin Buchholz <martin@xemacs.org>
|
|
|
7911
|
|
|
7912 * miscplay.c: s/__inline__/inline/g;
|
|
|
7913 * glyphs-msw.c (set_mono_pixel): INLINE ==> static inline
|
|
|
7914 (get_device_compdc): INLINE ==> static inline
|
|
|
7915 * *.[ch]: Change INLINE to INLINE_HEADER globally.
|
|
|
7916 find -name '*.h' | \
|
|
|
7917 xargs global-replace \
|
|
|
7918 's/(^|(?<=[^A-Za-z0-9_]))INLINE((?=[^A-Za-z0-9_])|$)/INLINE_HEADER/g'
|
|
|
7919
|
|
|
7920 2000-02-25 Andy Piper <andy@xemacs.org>
|
|
|
7921
|
|
|
7922 * window.c (window_top_frame_gutter_height): new function.
|
|
|
7923 (window_top_window_gutter_height): ditto.
|
|
|
7924 (window_top_gutter_height): use them.
|
|
|
7925 (window_bottom_frame_gutter_height): new function.
|
|
|
7926 (window_bottom_window_gutter_height): ditto.
|
|
|
7927 (window_bottom_gutter_height): use them.
|
|
|
7928 (window_left_window_gutter_width): new function.
|
|
|
7929 (window_left_frame_gutter_width): ditto.
|
|
|
7930 (window_left_gutter_width): use them.
|
|
|
7931 (window_right_window_gutter_width): new function.
|
|
|
7932 (window_right_frame_gutter_width): ditto.
|
|
|
7933 (window_right_gutter_width): use them.
|
|
|
7934 (window_pixel_height): new function. calulate window pixel height
|
|
|
7935 with frame gutter involvement.
|
|
|
7936 (Fsplit_window): calculate new sizes taking frame gutters into
|
|
|
7937 account.
|
|
|
7938 (window_char_height_to_pixel_height): don't include frame gutters.
|
|
|
7939 (window_char_height): use window_pixel_height.
|
|
|
7940 (window_pixheight): rename from window_pixel_height.
|
|
|
7941 (change_window_height): use it.
|
|
|
7942 (window_pixel_height_to_char_height): don't include frame gutters.
|
|
|
7943 (window_char_width_to_pixel_width): ditto.
|
|
|
7944
|
|
|
7945 2000-02-25 Andy Piper <andy@xemacs.org>
|
|
|
7946
|
|
|
7947 * glyphs.h (IMAGE_INSTANCE_FACE): glyph might be nil, don't crash
|
|
|
7948 if it is.
|
|
|
7949
|
|
|
7950 2000-02-24 Martin Buchholz <martin@xemacs.org>
|
|
|
7951
|
|
|
7952 * alloc.c (staticpro):
|
|
|
7953 (staticpro_nodump):
|
|
|
7954 (dumpstruct):
|
|
|
7955 (dumpopaque):
|
|
|
7956 (pdump_wire):
|
|
|
7957 (pdump_wire_list):
|
|
|
7958 (compact_string_chars):
|
|
|
7959 (pdump_dump_wired):
|
|
|
7960 Convert: if (foo) abort(); ==> assert (! foo);
|
|
|
7961
|
|
|
7962 * eldap.c (Fldap_search_basic):
|
|
|
7963 (Fldap_add):
|
|
|
7964 (Fldap_modify):
|
|
|
7965 (Fldap_delete):
|
|
|
7966 Fix compiler warnings, and possible crashes if (random) return
|
|
|
7967 value were to be used.
|
|
|
7968
|
|
|
7969 2000-02-21 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
|
7970
|
|
|
7971 * device-msw.c: Workaround ResetDC failure.
|
|
|
7972
|
|
|
7973 * frame-msw.c (msprinter_init_frame_3): Added an assertion before
|
|
|
7974 applying a devmode.
|
|
|
7975
|
|
|
7976 * redisplay-msw.c (get_frame_dc): Added start_page_p.
|
|
|
7977 (mswindows_text_width): Do not start printer page.
|
|
|
7978
|
|
|
7979 * console-msw.h (CHECK_MSGDI_DEVICE): Added this and friends.
|
|
|
7980
|
|
|
7981 * glyphs-msw.c: Added image methods to msprinter console and
|
|
|
7982 msprinter-specific image instantiation.
|
|
|
7983
|
|
|
7984 2000-02-20 Mike Alexander <mta@arbortext.com>
|
|
|
7985
|
|
|
7986 * select-msw.c (Fmswindows_set_clipboard): GC protect more things
|
|
|
7987 to avoid crashes when selection-sets-clipboard is on
|
|
|
7988 (mswindows_own_selection): ditto
|
|
|
7989
|
|
|
7990 2000-02-19 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
|
7991
|
|
|
7992 * glyphs-msw.c:
|
|
|
7993 * redisplay-msw.c (get_frame_dc):
|
|
|
7994 (get_frame_compdc):
|
|
|
7995 * console-msw.h:
|
|
|
7996 * device-msw.c (mswindows_init_device):
|
|
|
7997 (mswindows_delete_device):
|
|
|
7998 (msprinter_init_device):
|
|
|
7999 (msprinter_delete_device):
|
|
|
8000 * frame-msw.c (mswindows_init_frame_1):
|
|
|
8001 (mswindows_delete_frame):
|
|
|
8002 (msprinter_init_frame_3):
|
|
|
8003 (msprinter_delete_frame): Move compatible DC to device object from
|
|
|
8004 frame object, for both mswindows and msprinter. Only one at a time
|
|
|
8005 is needed, it is a real waste to have one per frame!
|
|
|
8006
|
|
|
8007 2000-02-23 Andy Piper <andy@xemacs.org>
|
|
|
8008
|
|
|
8009 * glyphs.c: add dynamic width and height elements.
|
|
|
8010 (image_instance_equal): ditto.
|
|
|
8011
|
|
|
8012 * glyphs-widget.c (widget_query_geometry): calculate width and
|
|
|
8013 height dynamically if required.
|
|
|
8014 (initialize_widget_image_instance): initialize dynamic dimensions.
|
|
|
8015 (widget_instantiate): pick-up dynamic dimensions.
|
|
|
8016
|
|
|
8017 * glyphs.h (struct Lisp_Image_Instance): add width and height for
|
|
|
8018 dynamic determination. Add appropriate macros.
|
|
|
8019
|
|
|
8020 * gutter.h (WINDOW_GUTTER_BORDER_WIDTH): make non-integer
|
|
|
8021 dimensions safe.
|
|
|
8022 (WINDOW_GUTTER_SIZE): ditto.
|
|
|
8023 (WINDOW_GUTTER_SIZE_INTERNAL): ditto.
|
|
|
8024
|
|
|
8025 * redisplay-msw.c (get_frame_compdc): gcc can't cope with this
|
|
|
8026 inline.
|
|
|
8027 (get_frame_dc): ditto.
|
|
|
8028
|
|
|
8029 * redisplay.h (GLOBAL_RESET_CHANGED_FLAGS): don't reset faces
|
|
|
8030 here.
|
|
|
8031
|
|
|
8032 2000-02-23 Martin Buchholz <martin@xemacs.org>
|
|
|
8033
|
|
|
8034 * XEmacs 21.2.31 is released.
|
|
|
8035
|
|
|
8036 2000-02-22 Ben Wing <ben@xemacs.org>
|
|
|
8037
|
|
|
8038 * ntheap.c (allocate_heap): Make sure `ptr' is initialized.
|
|
|
8039
|
|
|
8040 2000-02-22 Andy Piper <andy@xemacs.org>
|
|
|
8041
|
|
|
8042 * glyphs-x.c (x_widget_instantiate): don't explicitly resize here.
|
|
|
8043
|
|
|
8044 2000-02-21 Mike Sperber <mike@xemacs.org>
|
|
|
8045
|
|
|
8046 * .dbxrc:
|
|
|
8047 * .gdbinit:
|
|
|
8048 * Makefile.in.in: Remove obsolete EMACSBOOTSTRAP... environment
|
|
|
8049 variables.
|
|
|
8050
|
|
|
8051 2000-02-21 Mike Sperber <mike@xemacs.org>
|
|
|
8052
|
|
|
8053 * s/aix4.h: Declare getaddrinfo broken for AIX 4, which it is.
|
|
|
8054
|
|
|
8055 2000-02-21 Martin Buchholz <martin@xemacs.org>
|
|
|
8056
|
|
|
8057 * XEmacs 21.2.30 is released.
|
|
|
8058
|
|
|
8059 2000-02-20 Martin Buchholz <martin@xemacs.org>
|
|
|
8060
|
|
|
8061 Performance hacking.
|
|
|
8062 * *.c (syms_of_*):
|
|
|
8063 Add INIT_LRECORD_IMPLEMENTATION macros, paired with
|
|
|
8064 DEFINE_LRECORD_IMPLEMENTATION macros in the same file.
|
|
|
8065 * emacs.c (main_1):
|
|
|
8066 * lisp.h (DEFUN):
|
|
|
8067 * console.c (DEFVAR_CONSOLE_LOCAL_1):
|
|
|
8068 * buffer.c (DEFVAR_BUFFER_LOCAL_1):
|
|
|
8069 * symeval.h (DEFVAR_SYMVAL_FWD):
|
|
|
8070 * symbols.c (guts_of_unbound_marker):
|
|
|
8071 Make all c_readonly objects also lisp_readonly and marked for life.
|
|
|
8072 * lrecord.h (struct lrecord_implementation):
|
|
|
8073 Document flags better.
|
|
|
8074 * lrecord.h (DEFINE_LRECORD_SEQUENCE_IMPLEMENTATION_WITH_PROPS):
|
|
|
8075 * lrecord.h (DECLARE_LRECORD):
|
|
|
8076 * lrecord.h (XSETRECORD):
|
|
|
8077 * lrecord.h (RECORDP):
|
|
|
8078 * lrecord.h (RECORD_TYPEP):
|
|
|
8079 * lrecord.h (RECORD_MARKER): New.
|
|
|
8080 * lrecord.h (error_check_*):
|
|
|
8081 * lrecord.h (CONCHECK_NONRECORD):
|
|
|
8082 * lrecord.h (MAKE_LRECORD_IMPLEMENTATION):
|
|
|
8083 * lrecord.h (INIT_LRECORD_IMPLEMENTATION): New.
|
|
|
8084 * lrecord.h (set_lheader_implementation):
|
|
|
8085 * lrecord.h (enum lrecord_type): New.
|
|
|
8086 * symeval.h (SYMBOL_VALUE_MAGIC_P):
|
|
|
8087 * alloc.c (disksave_object_finalization_1):
|
|
|
8088 * alloc.c (mark_object):
|
|
|
8089 * alloc.c (lrecord_type_index):
|
|
|
8090 * alloc.c (tick_lcrecord_stats):
|
|
|
8091 * alloc.c (Fgarbage_collect):
|
|
|
8092 * alloc.c (init_alloc_once_early):
|
|
|
8093 * alloc.c (pdump_load):
|
|
|
8094 * alloc.c (GC_CHECK_LHEADER_INVARIANTS): New.
|
|
|
8095 * alloc.c (lrecord_type_index): Delete.
|
|
|
8096 Make lisp object type indexes be constant.
|
|
|
8097 Makes (byte-compile) 5% faster.
|
|
|
8098 Put all marker functions into their own array.
|
|
|
8099 Makes (garbage-collect) 5% faster.
|
|
|
8100 Optimize SYMBOL_VALUE_MAGIC_P.
|
|
|
8101 Makes (byte-compile) 2-3% faster.
|
|
|
8102 * config.h.in (gc_checking_assert): New.
|
|
|
8103 * alloc.c: Use gc_checking_assert().
|
|
|
8104 * .dbxrc: Make compatible with new object type implementation.
|
|
|
8105 * .gdbinit: Make compatible with new object type implementation.
|
|
|
8106 * alloc.c: Delete all symbols defined only for debugging, such as
|
|
|
8107 Lisp_Type_Vector and lrecord_charset.
|
|
|
8108
|
|
|
8109 2000-02-21 Andy Piper <andy@xemacs.org>
|
|
|
8110
|
|
|
8111 * gui-msw.c (Fmswindows_shell_execute): fix file location
|
|
|
8112 problems.
|
|
|
8113
|
|
|
8114 * buffer.c (Fkill_buffer): remove buffer from alist buffer
|
|
|
8115 unshowing so that set_window_buffer doesn't undo
|
|
|
8116 kill_buffer_hook's hard work.
|
|
|
8117
|
|
|
8118 * glyphs-widget.c (tab_control_query_geometry): don't count the
|
|
|
8119 first item when calculating geometry.
|
|
|
8120
|
|
|
8121 * glyphs.c (map_subwindow): remove redundant code.
|
|
|
8122 (update_frame_subwindows): be more circumspect about when to
|
|
|
8123 update subwindows.
|
|
|
8124
|
|
|
8125 * glyphs-x.c (x_update_widget): Properly fix sizing bug. Fix bug
|
|
|
8126 when items haven't changed. Update faces if faces have changed as
|
|
|
8127 well as just the widget face.
|
|
|
8128 (x_tab_control_update): Update faces if faces have changed as well
|
|
|
8129 as just the widget face.
|
|
|
8130
|
|
|
8131 2000-02-21 Jonathan Harris <jhar@tardis.ed.ac.uk>
|
|
|
8132
|
|
|
8133 * device-msw.c: (mswindows_delete_device): Remove redundant DDE
|
|
|
8134 registration.
|
|
|
8135 (build_syscolor_string): Use mswindows_color_to_string to try to
|
|
|
8136 get a named color.
|
|
|
8137 (mswindows_device_system_metrics): Reverse the foreground and
|
|
|
8138 background colors so that they match the documentation.
|
|
|
8139
|
|
|
8140 * objects-msw.c: (mswindows_X_color_map): tweak some values so
|
|
|
8141 they match the default Windows palette.
|
|
|
8142 (mswindows_color_to_string): New function.
|
|
|
8143
|
|
|
8144 2000-02-21 Jonathan Harris <jhar@tardis.ed.ac.uk>
|
|
|
8145
|
|
|
8146 * s/windowsnt.h: Only use __declspec(noreturn) with MSVC>=6.
|
|
|
8147
|
|
|
8148 2000-02-18 Olivier Galibert <galibert@pobox.com>
|
|
|
8149
|
|
|
8150 * m/*, s/*: Removed obsolete DATA_SEG_BITS, PURE_SEG_BITS,
|
|
|
8151 WORD_MACHINE, SIGN_EXTEND_CHAR and EXPLICIT_SIGN_EXTEND.
|
|
|
8152
|
|
|
8153 * symbols.c (init_symbols_once_early): Removed obsolete
|
|
|
8154 DATA_SEG_BITS related kludge.
|
|
|
8155 (defvar_magic): Ditto.
|
|
|
8156
|
|
|
8157 * malloc.c: Removed obsolete DATA_SEG_BITS
|
|
|
8158 * ralloc.c: Ditto.
|
|
|
8159 * mem-limits.h: Ditto.
|
|
|
8160
|
|
|
8161 * Makefile.in.in: Removed obsolete HAVE_SHM
|
|
|
8162 * emacs.c: Ditto.
|
|
|
8163
|
|
|
8164 2000-02-13 Jonathan Harris <jhar@tardis.ed.ac.uk>
|
|
|
8165
|
|
|
8166 * device-msw.c (mswindows_delete_device): Free DDE string
|
|
|
8167 handles.
|
|
|
8168
|
|
|
8169 2000-02-16 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
|
8170
|
|
|
8171 * keymap.c (get_keyelt):
|
|
|
8172 * unexnt.c (unexec):
|
|
|
8173 * vm-limit.c (memory_warnings):
|
|
|
8174 * ntheap.c (recreate_heap):
|
|
|
8175 * ntheap.h (UNINIT_PTR):
|
|
|
8176 * select-msw.c (Fmswindows_get_clipboard):
|
|
|
8177 (Fmswindows_set_clipboard):
|
|
|
8178 * objects-msw.h (MSWINDOWS_BAD_HFONT):
|
|
|
8179 * objects-msw.c:
|
|
|
8180 * menubar-msw.c (displayable_menu_item):
|
|
|
8181 * glyphs-msw.c:
|
|
|
8182 * glyphs-msw.h (IMAGE_INSTANCE_MSWINDOWS_MASK):
|
|
|
8183 * sysdep.c (sys_subshell):
|
|
|
8184 * process-nt.c (nt_create_process):
|
|
|
8185 * nt.c (normalize_filename):
|
|
|
8186 (dostounix_filename):
|
|
|
8187 (unixtodos_filename):
|
|
|
8188 * ntproc.c (win32_executable_type):
|
|
|
8189 * ntplay.c (play_sound_data_1):
|
|
|
8190 (play_sound_file):
|
|
|
8191 * editfns.c (get_home_directory):
|
|
|
8192 * event-msw.c (struct winsock_stream):
|
|
|
8193 (mswindows_dde_callback):
|
|
|
8194 * device-msw.c (msprinter_init_device):
|
|
|
8195 (msprinter_get_devmode_copy): Frobbed syntax frivolities.
|
|
|
8196
|
|
|
8197 * toolbar-msw.c (mswindows_free_frame_toolbars): Paramters to
|
|
|
8198 mswindows_clear_toolbar were swapped!
|
|
|
8199
|
|
|
8200 * objects-msw.c:(colormap_t):
|
|
|
8201 (fontmap_t):
|
|
|
8202 * emacs.c (struct standard_args): Fixed const jumble.
|
|
|
8203
|
|
|
8204 * glyphs-widget.c (update_widget): Fixed comparison notation.
|
|
|
8205
|
|
|
8206 * event-msw.c (mswindows_dde_callback): Removed extraneous ';'.
|
|
|
8207
|
|
|
8208 * s\windowsnt.h (DOESNT_RETURN): Defined to support the MSVC
|
|
|
8209 __declspec(noreturn) syntax.
|
|
|
8210
|
|
|
8211 2000-02-19 Martin Buchholz <martin@xemacs.org>
|
|
|
8212
|
|
|
8213 * eldap.c (Fldap_open):
|
|
|
8214 (Fldap_search_basic):
|
|
|
8215 (Fldap_add):
|
|
|
8216 (Fldap_modify):
|
|
|
8217 Use new coding system conversion macros.
|
|
|
8218
|
|
|
8219 2000-01-06 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp>
|
|
|
8220
|
|
|
8221 * console-tty.c (tty_init_console): Change MULE to FILE_CODING.
|
|
|
8222
|
|
|
8223 1999-11-27 Oscar Figueiredo <Oscar.Figueiredo@di.epfl.ch>
|
|
|
8224
|
|
|
8225 * eldap.h (Fldap_search) Renamed from Fldap_search_internal:
|
|
|
8226 (Fldap_add, Fldap_modify, Fldap_delete): New functions
|
|
|
8227
|
|
|
8228 * eldap.c (Qadd, Qreplace): New constant symbols
|
|
|
8229 (Fldap_open): Use the LDAP_OPT_RESTART option to avoid
|
|
|
8230 interruptions by XEmacs signals
|
|
|
8231 Remove unnecessary calls to slow_down_interrupts and
|
|
|
8232 speed_up_interrupts
|
|
|
8233 (Fldap_search_basic): Renamed from Fldap_search_internal
|
|
|
8234 Added new optional parameter VERBOSE that triggers the
|
|
|
8235 display of progress messages
|
|
|
8236 Remove unnecessary calls to slow_down_interrupts and
|
|
|
8237 speed_up_interrupts
|
|
|
8238 LDAP result code analysis rewritten
|
|
|
8239 (Fldap_add, Fldap_modify, Fldap_delete): New functions
|
|
|
8240 (syms_of_eldap): Define the new symbols and functions
|
|
|
8241
|
|
|
8242
|
|
|
8243 2000-02-17 Martin Buchholz <martin@xemacs.org>
|
|
|
8244
|
|
|
8245 * realpath.c: Determine PATH_MAX maximally portably.
|
|
|
8246
|
|
|
8247 * insdel.c (bytecount_to_charcount): Optimize.
|
|
|
8248 The function used to be optimized for entirely ASCII sequences.
|
|
|
8249 Now it is optimized for successive characters from the same
|
|
|
8250 charset. This also wins big for _mostly_ ASCII sequences.
|
|
|
8251
|
|
|
8252 * fileio.c (Ffile_truename): convert return from realpath() using
|
|
|
8253 Qfile_name, not Qbinary. Fixes obvious bug with non-ASCII symlinks.
|
|
|
8254 - Rewrite GCPROing slightly.
|
|
|
8255
|
|
|
8256 * sysdep.c (sys_open): Do filename conversion, like all other
|
|
|
8257 sys_* functions. Fixes bug:
|
|
|
8258 (let ((file-name-coding-system 'iso-8859-2))
|
|
|
8259 (write-region x y latin2-name))
|
|
|
8260 ==> writes filename using internal encoding.
|
|
|
8261
|
|
|
8262 2000-02-18 Martin Buchholz <martin@xemacs.org>
|
|
|
8263
|
|
|
8264 * buffer.c (DEFVAR_BUFFER_LOCAL_1): Turn on c_readonly. Always const.
|
|
|
8265 * console.c (DEFVAR_CONSOLE_LOCAL_1): Turn on c_readonly. Always const.
|
|
|
8266 * symeval.h (DEFVAR_SYMVAL_FWD): Turn on c_readonly. Always const.
|
|
|
8267 * eval.c (lrecord_subr): Remove this_one_is_unmarkable.
|
|
|
8268 * symbols.c (lrecord_symbol_value_forward): Remove this_one_is_unmarkable.
|
|
|
8269 * symbols.c (guts_of_unbound_marker): Turn on c_readonly.
|
|
|
8270 * lrecord.h (UNMARKABLE_LRECORD_HEADER_P): Delete.
|
|
|
8271 (CONST_IF_NOT_DEBUG): Delete.
|
|
|
8272 * alloc.c (this_one_is_unmarkable): Delete.
|
|
|
8273 (mark_object): Don't check for this_one_is_unmarkable. Use the
|
|
|
8274 c_readonly flag instead.
|
|
|
8275 * lisp.h (DEFUN): Define a Lisp_Subr as c_readonly.
|
|
|
8276
|
|
|
8277 2000-02-18 Jonathan Harris <jhar@tardis.ed.ac.uk>
|
|
|
8278
|
|
|
8279 * event-msw.c (mswindows_drain_windows_queue):
|
|
|
8280 (emacs_mswindows_handle_magic_event): Remove attempt to optimise
|
|
|
8281 away redundant repaint events.
|
|
|
8282
|
|
|
8283 2000-02-17 Andy Piper <andy@xemacs.org>
|
|
|
8284
|
|
|
8285 * redisplay.h: declare mark_redisplay_structs.
|
|
|
8286
|
|
|
8287 * redisplay.c (redisplay_window):
|
|
|
8288 (redisplay_frame): don't check subwindows_state_changed.
|
|
|
8289 (mark_redisplay): mark gutters here.
|
|
|
8290
|
|
|
8291 * glyphs.c: (instantiate_image_instantiator): always layout if we
|
|
|
8292 haven't done so already.
|
|
|
8293 (allocate_image_instance): don't mark as dirty.
|
|
|
8294 (update_subwindow): bind inhibit_quit.
|
|
|
8295
|
|
|
8296 * gutter.c (mark_gutters): new function.
|
|
|
8297
|
|
|
8298 * glyphs-x.c (x_update_widget): Always resize to get round a
|
|
|
8299 widget bug.
|
|
|
8300
|
|
|
8301 * glyphs-msw.c (mswindows_tab_control_update): remove `;' that was
|
|
|
8302 breaking absolutely everything.
|
|
|
8303
|
|
|
8304 * gutter.h: declare mark_gutters.
|
|
|
8305
|
|
|
8306 2000-02-16 Martin Buchholz <martin@xemacs.org>
|
|
|
8307
|
|
|
8308 * XEmacs 21.2.29 is released.
|
|
|
8309
|
|
|
8310 2000-02-15 Olivier Galibert <galibert@pobox.com>
|
|
|
8311
|
|
|
8312 * fns.c (size_bit_vector): Fix computation of the size.
|
|
|
8313
|
|
|
8314 2000-02-15 Martin Buchholz <martin@xemacs.org>
|
|
|
8315
|
|
|
8316 * *.[ch]: Change CONST to const globally.
|
|
|
8317 find -name '*.[ch]' | \
|
|
|
8318 xargs global-replace \
|
|
|
8319 's/(^|(?<=[^A-Za-z0-9_]))CONST((?=[^A-Za-z0-9_])|$)/const/g'
|
|
|
8320 - Remove vestigial references to CONST_IS_LOSING
|
|
|
8321
|
|
|
8322 2000-02-13 Jonathan Harris <jhar@tardis.ed.ac.uk>
|
|
|
8323
|
|
|
8324 * event-msw.c (mswindows_drain_windows_queue): Remove hack to
|
|
|
8325 bailout early on quit. Enqueue WM_PAINT events as XEmacs magic
|
|
|
8326 events instead of dispatching them directly.
|
|
|
8327 (mswindows_handle_paint): New function to do repainting.
|
|
|
8328 (mswindows_wnd_proc):
|
|
|
8329 (emacs_mswindows_handle_magic_event): Call above function.
|
|
|
8330
|
|
|
8331 2000-02-13 Jonathan Harris <jhar@tardis.ed.ac.uk>
|
|
|
8332
|
|
|
8333 * objects-msw.c (mswindows_create_font_variant): Return the new
|
|
|
8334 font handle.
|
|
|
8335 (initialize_font_instance): Get font metrics from the underlined
|
|
|
8336 variant of the font to cope with the case where the underlined
|
|
|
8337 font has a bigger descent.
|
|
|
8338
|
|
|
8339 2000-02-08 Daiki Ueno <ueno@ueda.info.waseda.ac.jp>
|
|
|
8340
|
|
|
8341 * gui.c (gui_item_accelerator): Return the first underlined
|
|
|
8342 character in item name.
|
|
|
8343
|
|
|
8344 2000-02-11 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
|
8345
|
|
|
8346 * lisp.h: Added Qprinter.
|
|
|
8347
|
|
|
8348 * general.c (syms_of_general): Initialized it.
|
|
|
8349
|
|
|
8350 * redisplay-msw.c (get_frame_dc): Conditionally start a new page.
|
|
|
8351 (get_frame_dc):
|
|
|
8352 (get_frame_compdc): Made inline.
|
|
|
8353
|
|
|
8354 * console.h (struct console_methods): Added eject_page method.
|
|
|
8355
|
|
|
8356 * frame.h: Added FRAME_DISPLAY_P and friends.
|
|
|
8357 Aligned backslahes in many macros in more readable fashion.
|
|
|
8358 Added page_number to struct frame, and an accessor macro
|
|
|
8359 for it.
|
|
|
8360
|
|
|
8361 * defice.h: Added DEVICE_DISPLAY_P and friends.
|
|
|
8362
|
|
|
8363 * device.c (Fdevice_printer_p): Used these.
|
|
|
8364
|
|
|
8365 * frame.c (allocate_frame_core): Initialize page number.
|
|
|
8366 (Fprint_job_page_number):
|
|
|
8367 (Fprint_job_eject_page): Implemented.
|
|
|
8368
|
|
|
8369 * frame-msw.c (msprinter_eject_page): Added method.
|
|
|
8370 (msprinter_start_page): Added.
|
|
|
8371
|
|
|
8372 * window.c (Fwindow_truncated_p): Fixed docstring.
|
|
|
8373 (Fwindow_last_line_visible_height): Implemented.
|
|
|
8374
|
|
|
8375 2000-02-09 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
8376
|
|
|
8377 * frame.c (change_frame_size_1): Undo 2000-02-03 change.
|
|
|
8378
|
|
|
8379 1999-12-20 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp>
|
|
|
8380
|
|
|
8381 * syntax.c (scan_words): Always advance at least one character.
|
|
|
8382
|
|
|
8383 2000-02-13 Andy Piper <andy@xemacs.org>
|
|
|
8384
|
|
|
8385 * redisplay.c (add_glyph_rune): call get_glyph_cachel_index here
|
|
|
8386 to make sure the glyph is in the cachels.
|
|
|
8387
|
|
|
8388 * glyphs.h (struct Lisp_Image_Instance): make layout_changed a
|
|
|
8389 global image instance flag.
|
|
|
8390 (IMAGE_INSTANCE_NEEDS_LAYOUT): new macro.
|
|
|
8391 (XIMAGE_INSTANCE_NEEDS_LAYOUT): ditto.
|
|
|
8392
|
|
|
8393 * glyphs.c (allocate_image_instance): set dirty bits correctly.
|
|
|
8394 (Fset_image_instance_property): mark layout as changed.
|
|
|
8395 (invalidate_glyph_geometry_maybe): mark layout as changed.
|
|
|
8396 (glyph_width): use new NEEDS_LAYOUT macro.
|
|
|
8397 (glyph_ascent): ditto.
|
|
|
8398 (glyph_descent): ditto.
|
|
|
8399 (glyph_height): ditto.
|
|
|
8400 (image_instance_layout): mark layout as clean after laying out.
|
|
|
8401 (update_subwindow): don't mark layout as clean here.
|
|
|
8402
|
|
|
8403 * glyphs-x.h (IMAGE_INSTANCE_X_WIDGET_ID): undo C++ changes, they
|
|
|
8404 should no longer be needed.
|
|
|
8405
|
|
|
8406 * glyphs-x.c (x_update_widget): sanitize asserts.
|
|
|
8407 (x_finalize_image_instance): sanitize assignment to widgets.
|
|
|
8408
|
|
|
8409 * glyphs-widget.c (widget_instantiate): don't need to clear the
|
|
|
8410 layout flag here.
|
|
|
8411
|
|
|
8412 2000-02-13 Martin Buchholz <martin@xemacs.org>
|
|
|
8413
|
|
|
8414 * sysdep.c (getcwd): Use standard prototype.
|
|
|
8415 * sysdep.h (getcwd): Use standard prototype.
|
|
|
8416
|
|
|
8417 * fns.c (Fsubseq): Change parameters to more natural ANSI Lisp
|
|
|
8418 (sequence, start, end).
|
|
|
8419 Remove redundant type checking.
|
|
|
8420 (Fmapconcat): Remove useless GCPRO, a wrong-headed attempt (in
|
|
|
8421 view of `caller-protects') to avoid a crash where the real fix was
|
|
|
8422 found elsewhere.
|
|
|
8423
|
|
|
8424 2000-02-12 Martin Buchholz <martin@xemacs.org>
|
|
|
8425
|
|
|
8426 * glyphs-x.c (x_finalize_image_instance): Compile error fixes.
|
|
|
8427
|
|
|
8428 * s/sol2.h: Remove feature macro initialization.
|
|
|
8429
|
|
|
8430 * alloc.c (alloc_lcrecord): Add more type checking assertions.
|
|
|
8431 (vector_hash): New. Code from internal_hash.
|
|
|
8432 * lrecord.h:
|
|
|
8433 Fix up allocation subsystem comments.
|
|
|
8434
|
|
|
8435 * config.h.in: Add __EXTENSIONS__ for Solaris.
|
|
|
8436
|
|
|
8437 * systime.h (EMACS_GETTIMEOFDAY): New.
|
|
|
8438 (EMACS_GET_TIME): Use EMACS_GETTIMEOFDAY.
|
|
|
8439 Remove Solaris-specific code.
|
|
|
8440 Use void* for the (ignored) second arg for gettimeofday().
|
|
|
8441
|
|
|
8442 * elhash.c (hash_table_hash): Implement it, finally.
|
|
|
8443 * elhash.c: Use hashcode_t.
|
|
|
8444
|
|
|
8445 * linuxplay.c (sighandler): Fix prototypes to use SIGTYPE.
|
|
|
8446 * sunplay.c (sighandler): Fix prototype to use SIGTYPE.
|
|
|
8447
|
|
|
8448 * lisp.h (STRETCHY_STRUCT_SIZEOF): Delete.
|
|
|
8449 * fns.c (size_bit_vector):
|
|
|
8450 * alloc.c (size_vector):
|
|
|
8451 (make_vector_internal):
|
|
|
8452 (make_bit_vector_internal):
|
|
|
8453 (sweep_bit_vectors_1):
|
|
|
8454 Replace calls to STRETCHY_STRUCT_SIZEOF with offsetof expression.
|
|
|
8455
|
|
|
8456 2000-02-10 Martin Buchholz <martin@xemacs.org>
|
|
|
8457
|
|
|
8458 * s/aix4.h: #define MAP_FAILED if sys/mman.h didn't.
|
|
|
8459 Include strings.h to avoid warnings for bzero and strcasecmp.
|
|
|
8460
|
|
|
8461 2000-02-10 Olivier Galibert <galibert@pobox.com>
|
|
|
8462
|
|
|
8463 * alloc.c: Move STRETCHY_STRUCT_SIZEOF from here...
|
|
|
8464 * lisp.h (STRETCHY_STRUCT_SIZEOF): ...to here
|
|
|
8465
|
|
|
8466 * fns.c (size_bit_vector): New. Declare bit vectors as a
|
|
|
8467 sequence.
|
|
|
8468
|
|
|
8469 2000-02-10 Olivier Galibert <galibert@pobox.com>
|
|
|
8470
|
|
|
8471 * symeval.h (struct symbol_value_magic): Remove "next" kludge and
|
|
|
8472 use a value field instead.
|
|
|
8473 (symbol_value_forward_forward): Use value field.
|
|
|
8474 (DEFVAR_SYMVAL_FWD): Use value field.
|
|
|
8475 (DEFVAR_SYMVAL_FWD_INT): Added. Dumps the int with dumpopaque.
|
|
|
8476 (DEFVAR_INT): Use DEFVAR_SYMVAL_FWD_INT.
|
|
|
8477 (DEFVAR_CONST_INT): Ditto.
|
|
|
8478 (DEFVAR_BOOL): Ditto.
|
|
|
8479 (DEFVAR_CONST_BOOL): Ditto.
|
|
|
8480 (DEFVAR_INT_MAGIC): Ditto.
|
|
|
8481 (DEFVAR_BOOL_MAGIC): Ditto.
|
|
|
8482
|
|
|
8483 * symbols.c (guts_of_unbound_marker): Use value field.
|
|
|
8484 * console.c (DEFVAR_CONSOLE_LOCAL_1): Ditto.
|
|
|
8485 * buffer.c (DEFVAR_BUFFER_LOCAL_1): Ditto.
|
|
|
8486
|
|
|
8487 * lisp.h: Declare dumpopaque and noninteractive1.
|
|
|
8488
|
|
|
8489 * alloc.c (dumpopaque): Added.
|
|
|
8490 (pdump_dump_opaquevec): Added.
|
|
|
8491 (pdump): Call pdump_dump_opaquevec to dump opaque data.
|
|
|
8492 (pdump_load): Reload opaque data. Sync noninteractive1 with
|
|
|
8493 noninteractive.
|
|
|
8494
|
|
|
8495 2000-02-10 Andy Piper <andy@xemacs.org>
|
|
|
8496
|
|
|
8497 * glyphs.c (image_instance_layout): if the size changes, mark it
|
|
|
8498 as such.
|
|
|
8499
|
|
|
8500 * redisplay-output.c (redisplay_output_layout): Update the
|
|
|
8501 subwindow here.
|
|
|
8502 (redisplay_output_subwindow): ditto.
|
|
|
8503
|
|
|
8504 * glyphs.c (update_subwindow): make sure we reset flags for
|
|
|
8505 layouts as well as everything else.
|
|
|
8506
|
|
|
8507 * glyphs-widget.c (layout_layout): don't need to set the instances
|
|
|
8508 dimensions here.
|
|
|
8509
|
|
|
8510 2000-02-09 Martin Buchholz <martin@xemacs.org>
|
|
|
8511
|
|
|
8512 * device-x.c (x_init_device): Wrap calls to dll_* in HAVE_SHLIB,
|
|
|
8513 not HAVE_DLOPEN, which is a lower-level thing.
|
|
|
8514
|
|
|
8515 * .cvsignore: Ignore gmon.out
|
|
|
8516
|
|
|
8517 2000-02-09 Hamish Macdonald <hamishm@lucent.com>
|
|
|
8518
|
|
|
8519 * .cvsignore: Ignore portable dumper xemacs.dmp file
|
|
|
8520
|
|
|
8521 2000-02-09 Andy Piper <andy@xemacs.org>
|
|
|
8522
|
|
|
8523 * redisplay-output.c (redisplay_output_layout): be more clever
|
|
|
8524 about when we output based on the changed flags.
|
|
|
8525
|
|
|
8526 * glyphs.h (struct image_instantiator_methods): add update_method.
|
|
|
8527 (struct Lisp_Image_Instance): add changed flags. Declare new
|
|
|
8528 macros for manipulating them.
|
|
|
8529
|
|
|
8530 * glyphs.c (allocate_image_instance): renamed glyph -> parent.
|
|
|
8531 (image_instance_parent_glyph): find an image_instance's parent
|
|
|
8532 glyph or image_instance.
|
|
|
8533 (image_instance_layout): mark the size as changed.
|
|
|
8534 (set_image_instance_dirty_p): new function. mark an image
|
|
|
8535 instance, plus all of its parents, as dirty.
|
|
|
8536 (Fset_image_instance_property): use it.
|
|
|
8537 (Fglyph_animated_timeout_handler): use it.
|
|
|
8538 (update_subwindow): call update_widget and device methods for
|
|
|
8539 update_subwindow. Mark all changed flags as clean.
|
|
|
8540 (Fresize_subwindow): mark size as changed.
|
|
|
8541
|
|
|
8542 * glyphs-x.c (x_finalize_image_instance): try and detect gc
|
|
|
8543 failures.
|
|
|
8544 (x_update_subwindow): only resize subwindows here.
|
|
|
8545 (x_update_widget): new function. Update all changed properties of
|
|
|
8546 a widget.
|
|
|
8547 (x_resize_subwindow): deleted.
|
|
|
8548 (x_widget_set_property): deleted.
|
|
|
8549 (x_progress_gauge_set_property): deleted.
|
|
|
8550 (x_progress_gauge_update): new function. Implement recorded
|
|
|
8551 changes.
|
|
|
8552 (x_tab_control_update): ditto.
|
|
|
8553 (x_tab_control_set_property): deleted.
|
|
|
8554 (console_type_create_glyphs_x): declare new functions.
|
|
|
8555 (image_instantiator_format_create_glyphs_x): ditto.
|
|
|
8556
|
|
|
8557 * glyphs-widget.c (widget_set_property): mark text changed.
|
|
|
8558 (update_widget): new function. Update properties of a widget.
|
|
|
8559 (widget_instantiate): for layouts make sure we set their
|
|
|
8560 children's parent correctly.
|
|
|
8561 (tab_control_set_property): new function. Record changes that will
|
|
|
8562 take place under redisplay's control.
|
|
|
8563 (progress_gauge_set_property): ditto.
|
|
|
8564 (image_instantiator_progress_guage): declare new functions.
|
|
|
8565 (image_instantiator_tab_control): ditto.
|
|
|
8566
|
|
|
8567 * glyphs-msw.c (mswindows_update_subwindow): just do resizing here
|
|
|
8568 now.
|
|
|
8569 (mswindows_update_widget): new function. Update all properties on
|
|
|
8570 a widget that have changed.
|
|
|
8571 (mswindows_button_update): new function. Update a button's set
|
|
|
8572 state.
|
|
|
8573 (mswindows_tab_control_update): new function. Update the items in
|
|
|
8574 a tab.
|
|
|
8575 (mswindows_tab_control_set_property): deleted.
|
|
|
8576 (mswindows_progress_gauge_update): new function. Update the
|
|
|
8577 progress gauge's progress.
|
|
|
8578 (mswindows_widget_set_property): deleted. This is all done
|
|
|
8579 asynchronously now.
|
|
|
8580 (mswindows_progress_gauge_set_property): ditto.
|
|
|
8581 (console_type_create_glyphs_mswindows): declare new methods.
|
|
|
8582 (image_instantiator_format_create_glyphs_mswindows): ditto.
|
|
|
8583
|
|
|
8584 * frame-msw.c (msprinter_init_frame_1): Remove unused variables.
|
|
|
8585 (msprinter_set_frame_properties): ditto.
|
|
|
8586
|
|
|
8587 * console.h (struct console_methods): Add update_widget_method.
|
|
|
8588
|
|
|
8589 2000-02-09 Andy Piper <andy@xemacs.org>
|
|
|
8590
|
|
|
8591 * gui-msw.c (Fmswindows_shell_execute): Make
|
|
|
8592 mswindows-shell-execute industrial strength.
|
|
|
8593
|
|
|
8594 2000-02-08 Martin Buchholz <martin@xemacs.org>
|
|
|
8595
|
|
|
8596 * lrecord.h: Make macro argument `props' match member function `plist'.
|
|
|
8597 * fns.c (Fget):
|
|
|
8598 * fns.c (Fput):
|
|
|
8599 * fns.c (Fremprop):
|
|
|
8600 * fns.c (Fobject_plist):
|
|
|
8601 * alloc.c:
|
|
|
8602 * symbols.c:
|
|
|
8603 Object property list frobbing cleanup.
|
|
|
8604 - Allow any lisp object (compared with `eq'), not just symbols, as
|
|
|
8605 keys in object plists.
|
|
|
8606 - Move symbol plist frobbing into symbols.c, where it belongs.
|
|
|
8607 - Move string plist frobbing into alloc.c, where it belongs.
|
|
|
8608 - Everything's an lrecord now, so no need to test for symbolp, etc.
|
|
|
8609 - Fix up doc strings to refer to PROPERTY, not PROPNAME.
|
|
|
8610
|
|
|
8611 * extents.c: Reorder code to remove declarations.
|
|
|
8612
|
|
|
8613 * frame.h (store_in_alist): Remove useless declaration.
|
|
|
8614
|
|
|
8615 2000-02-07 Martin Buchholz <martin@xemacs.org>
|
|
|
8616
|
|
|
8617 * event-Xt.c (x_has_keysym): Use XConvertCase only if available.
|
|
|
8618 * config.h.in: Add HAVE_XCONVERTCASE.
|
|
|
8619
|
|
|
8620 2000-02-07 Andy Piper <andy@xemacs.org>
|
|
|
8621
|
|
|
8622 * glyphs.c (image_instance_layout): undo 2000-01-29 change since
|
|
|
8623 it breaks many things.
|
|
|
8624
|
|
|
8625 2000-02-07 Jan Vroonhof <vroonhof@math.ethz.ch>
|
|
|
8626
|
|
|
8627 * src/syntax.h (SYNTAX_START_P): Check whether the two chars
|
|
|
8628 actually can start a common comment type.
|
|
|
8629 * src/syntax.h (SYNTAX_END_P): ditto for end.
|
|
|
8630
|
|
440
|
8631 2000-02-07 Martin Buchholz <martin@xemacs.org>
|
|
|
8632
|
|
|
8633 * XEmacs 21.2.28 is released.
|
|
|
8634
|
|
|
8635 2000-02-06 Martin Buchholz <martin@xemacs.org>
|
|
|
8636
|
|
|
8637 * event-Xt.c (x_keysym_to_character): New.
|
|
|
8638 (maybe_define_x_key_as_self_inserting_character): New.
|
|
|
8639 (x_has_keysym): New.
|
|
|
8640 Auto-define all keys on the keyboard as self-insert-key.
|
|
|
8641
|
|
|
8642 2000-02-02 Martin Buchholz <martin@xemacs.org>
|
|
|
8643
|
|
|
8644 * menubar.c (vars_of_menubar): A small code simplification.
|
|
|
8645
|
|
|
8646 * minibuf.c (echo_area_append): Workaround egcs-20000131 c++ compiler bug
|
|
|
8647
|
|
442
|
8648 * ExternalShell.c:
|
|
|
8649 * ExternalClient.c:
|
|
|
8650 * EmacsShell-sub.c:
|
|
|
8651 * EmacsManager.c:
|
|
|
8652 * EmacsFrame.c:
|
|
440
|
8653 Use consistent style for specifying X resources.
|
|
|
8654
|
|
|
8655 * symbols.c (Fset): Further implement SYMVAL_LISP_MAGIC.
|
|
|
8656 This makes (dontusethis-set-symbol-value-handler) actually usable.
|
|
|
8657
|
|
|
8658 * lrecord.h (lrecord_decription_type):
|
|
442
|
8659 * alloc.c (pdump_register_sub):
|
|
|
8660 (pdump_dump_data):
|
|
|
8661 (pdump_reloc_one):
|
|
440
|
8662 Add XD_LISP_OBJECT_ARRAY to describe multiple Lisp_Objects.
|
|
|
8663 Comply with XEmacs coding style.
|
|
|
8664 All lrecord descriptions updated to use XD_LISP_OBJECT with 2
|
|
|
8665 args, and XD_LISP_OBJECT_ARRAY with 3 args.
|
|
|
8666
|
|
442
|
8667 * keymap.c (Faccessible_keymaps):
|
|
440
|
8668 Make (accessible-keymaps map "\C-h") do the Right Thing.
|
|
|
8669 Make (accessible-keymaps map []) do the Right Thing.
|
|
|
8670 Make (accessible-keymaps map "") do the Right Thing.
|
|
|
8671 (check_keymap_definition_loop): New function.
|
|
|
8672 (keymap_store_internal): Keep luser from shooting self in foot,
|
|
|
8673 via (define-key ctl-x-4-map "p" global-map).
|
|
|
8674 Remove fullness slot from struct Lisp_Keymap, since hash tables
|
|
|
8675 are now reliable.
|
|
|
8676 (print_keymap): Remove 'Yuck' factor by simply printing "size %d".
|
|
|
8677
|
|
|
8678 2000-01-30 Martin Buchholz <martin@xemacs.org>
|
|
|
8679
|
|
|
8680 * redisplay.c (init_redisplay): Fix small memory leak.
|
|
442
|
8681 * elhash.h:
|
|
|
8682 * elhash.c (pdump_reorganize_hash_table):
|
|
440
|
8683 Rename from reorganize_hash_table. Change prototype.
|
|
|
8684 Reuse the original memory for hentries. Save 100k.
|
|
|
8685 * alloc.c (PDUMP_READ): new macro.
|
|
|
8686 * alloc.c (pdump_load): Replace LISP_TO_VOID with higher-level macros.
|
|
|
8687 * alloc.c: No need to #ifndef before #undef.
|
|
|
8688
|
|
|
8689 * print.c: Allow debug_print() to print readably by modifying
|
|
|
8690 debug_print_readably. Use consistent variable names.
|
|
|
8691
|
|
|
8692 * .dbxrc: Try to get things to work even if stopped in a function
|
|
|
8693 without source available by explicitly specifying source files.
|
|
|
8694 2000-02-03 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
|
8695
|
|
|
8696 * unexnt.c (_start): Removed bogus code which caused loading heap
|
|
|
8697 from differrent executable file.
|
|
|
8698 Removed bogus assignment to _fmode, which caused inconsistencies.
|
|
|
8699
|
|
|
8700 2000-02-03 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
|
8701
|
|
|
8702 * s\windowsnt.h: Removed lots of #if 0 blocks of Emacs heritage.
|
|
|
8703 Have spawnve encapsulation regard DONT_ENCAPSULATE.
|
|
|
8704 Do not preliminary `#define signal sigset'.
|
|
|
8705
|
|
|
8706 * systime.h: Do not prototype environ on windows nt and cygwin,
|
|
|
8707 this conflicts with system header.
|
|
|
8708
|
|
|
8709 * syssignal.h: Use correct define for WINDOWSNT
|
|
|
8710
|
|
|
8711 * sysdep.h: Do not prototype environ on windows nt, this conflicts
|
|
|
8712 with system header.
|
|
|
8713
|
|
|
8714 * sysdep.c (near start of file): Fixed commentary and rearranged
|
|
|
8715 ifdefs in readable order.
|
|
|
8716 (NEED_STARTS): Do not force NEED_STARTS when PDUMPing.
|
|
|
8717 (start_of_text):
|
|
442
|
8718 (end_of_text):
|
|
440
|
8719 (end_of_data): Do not compile in if using PDUMP.
|
|
|
8720
|
|
442
|
8721 * symsinit.h: Prototyped vars_of_nt().
|
|
440
|
8722
|
|
|
8723 * ntproc.c (windows9x_p): Added, instead of os_subtype.
|
|
|
8724 (find_child_console): Use it.
|
|
|
8725 (sys_kill): Use it.
|
|
|
8726
|
|
|
8727 * ntheap.h: Do not extern os_subtype.
|
|
|
8728
|
|
|
8729 * ntheap.c (cache_system_info): Do not cache unneeded:
|
|
|
8730 nt_major_version, nt_minor_version and os_subtype.
|
|
|
8731 (recreate_heap): Do not compile in when PDUMPing.
|
|
|
8732
|
|
|
8733 * nt.c (geteuid and friends): Use the new varibale
|
|
|
8734 nt_fake_unix_uid, instead of hashing fake uid out of NT RID.
|
|
|
8735 (init_user_info): Removed the above mentioned hackery.
|
|
|
8736 (fstat, stat): Do not compile in if using MSVC 5.0 and above -
|
|
|
8737 stat has been fixed in the C runtime.
|
|
|
8738 (vars_of_nt): Added, defined the nt_fake_unix_uid variable there.
|
|
442
|
8739
|
|
440
|
8740 * file-coding.c (struct file_coding_dump): Do not define
|
|
|
8741 ucs_to_mule_table in the struct if not MULE.
|
|
|
8742 (struct struct lrecord_description fcd_description_1): Do not dump
|
|
|
8743 the above.
|
|
|
8744
|
|
|
8745 * emacs.c (main_1): Call vars_of_nt().
|
|
|
8746 (right before Fdump_emacs_data): Don't need lastfile if using both
|
|
|
8747 portabe dumper and system malloc.
|
|
|
8748
|
|
|
8749 * alloc.c (Fmemory_limit): Conditionalized out.
|
|
|
8750 (pdump): Use OPEN_BINARY for the portable dump file.
|
|
|
8751 (pdump_load): Ditto.
|
|
|
8752
|
|
|
8753 2000-02-02 Mike Alexander <mta@arbortext.com>
|
|
|
8754
|
|
|
8755 * nt.c (convert_time): Set tm_isdst before calling mktime and
|
|
|
8756 avoid calling it at all if the compiler supports 64 bit integers.
|
|
|
8757 Also initialize utc_base_ft before using it.
|
|
|
8758
|
|
|
8759 2000-02-03 Daiki Ueno <ueno@ueda.info.waseda.ac.jp>
|
|
|
8760
|
|
|
8761 * frame.c (change_frame_size_1): Take f->internal_border_width
|
|
|
8762 into consideration when calculating the width of the frame.
|
|
|
8763
|
|
|
8764 2000-02-01 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
|
8765
|
|
|
8766 * window.c (frame_min_height):
|
|
|
8767 (frame_size_valid_p):
|
|
|
8768 (frame_pixsize_valid_p): Added.
|
|
|
8769 (check_frame_size): Generalized.
|
|
|
8770
|
|
|
8771 * window.h: Prototyped the above.
|
|
|
8772
|
|
|
8773 * lisp.h:
|
|
|
8774 * general.c: Added Qbottom_margin, Qduplex, Qlandscape,
|
|
|
8775 Qleft_margin, Qorientation, Qportrait, Qright_margin, Qtop_margin.
|
|
|
8776 Deleted Vwin32_* and Vbinary_process_* unused variables.
|
|
|
8777
|
|
|
8778 * device-msw.c (msprinter_init_device): Do not get printer font
|
|
|
8779 list; Added DEVMODE functions.
|
|
|
8780
|
|
|
8781 * frame-msw.c: Added lots of printer code.
|
|
|
8782
|
|
|
8783 * faces.c: Moved 'left-margin and 'right-margin defsymbols to
|
|
|
8784 general.c.
|
|
|
8785
|
|
442
|
8786 * console-msw.h: Added more msprinter device private slots.
|
|
440
|
8787
|
|
|
8788 2000-02-01 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
|
8789
|
|
|
8790 * event-msw.c (key_needs_default_processing_p): Added.
|
|
|
8791 (mswindows_wnd_proc, WM_KEYUP, KEYDOWN): Call it.
|
|
|
8792
|
|
|
8793 2000-01-29 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
|
8794
|
|
|
8795 * glyphs.c (image_instance_layout): Mark image instance as clean
|
|
|
8796 after layout.
|
|
|
8797 (glyph_dirty_p): Removed redundant function.
|
|
|
8798 (invalidate_glyph_geometry_maybe): Added.
|
|
|
8799 (update_glyph_cachel_data): Call it.
|
|
|
8800
|
|
|
8801 * glyphs.h: Prototyped it.
|
|
|
8802
|
|
|
8803 * redisplay.c (add_glyph_rune): Call it.
|
|
444
|
8804 (redisplay_window): Reset glyphs cachels when frame faces have
|
|
440
|
8805 changed, thus forcing recomputation of built-in border glyphs.
|
|
|
8806
|
|
|
8807 2000-01-30 Martin Buchholz <martin@xemacs.org>
|
|
|
8808
|
|
|
8809 * Makefile.in.in: Make portable dumper and purify play well together.
|
|
|
8810 Add imperfect, but better than nothing, support for pdump.
|
|
|
8811 Remove xemacs.dmp when temacs is re-generated.
|
|
|
8812 Don't ignore errors when dumping xemacs.
|
|
|
8813
|
|
|
8814 * symbols.c (maybe_call_magic_handler): Remove one magic number.
|
|
|
8815
|
|
|
8816 2000-01-28 Andy Piper <andy@xemacs.org>
|
|
|
8817
|
|
|
8818 * frame.c (allocate_frame_core): Use new Fset_window_buffer signature.
|
|
|
8819 (setup_normal_frame): ditto.
|
|
|
8820 (setup_frame_without_minibuffer): ditto.
|
|
|
8821 (setup_minibuffer_frame): ditto.
|
|
|
8822 (delete_frame_internal): ditto.
|
|
|
8823 (Fmake_frame_invisible): ditto.
|
|
|
8824 (Ficonify_frame): ditto.
|
|
|
8825
|
|
|
8826 * window.h: change Fset_window_buffer signature.
|
|
|
8827
|
|
|
8828 * window.c (Fsplit_window): Use new Fset_window_buffer signature.
|
|
|
8829 (Fset_window_buffer): allow recording of buffer if the window is
|
|
|
8830 the selected window.
|
|
|
8831 (window_loop): Use new Fset_window signature.
|
|
|
8832
|
|
|
8833 2000-01-23 Daniel Pittman <daniel@danann.net>
|
|
|
8834
|
|
|
8835 * config.h.in: Added template for `HAVE_ATHENA_3D'
|
|
|
8836
|
|
|
8837 2000-01-29 Andy Piper <andy@xemacs.org>
|
|
|
8838
|
|
|
8839 * glyphs-x.c (x_resize_subwindow): Try and catch bogus resizes.
|
|
|
8840
|
|
|
8841 * gutter.c (output_gutter): Don't output if the window isn't live.
|
|
|
8842
|
|
|
8843 2000-01-28 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
|
8844
|
|
|
8845 * glyphs-msw.c (mswindows_unmap_subwindow): Fix of corrupted patch
|
|
|
8846 of 01/12/00: Moved SetFocus back here where it belongs.
|
|
|
8847
|
|
|
8848 2000-01-23 Andy Piper <andy@xemacs.org>
|
|
|
8849
|
|
|
8850 * s/cygwin32.h: declare printer things.
|
|
|
8851
|
|
|
8852 2000-01-26 Andy Piper <andy@xemacs.org>
|
|
|
8853
|
|
|
8854 * select.c (Fown_selection_internal): GCPRO bug fix from Mike
|
|
|
8855 Alexander.
|
|
|
8856
|
|
|
8857 2000-01-24 Andy Piper <andy@xemacs.org>
|
|
|
8858
|
|
|
8859 * glyphs-msw.c (mswindows_locate_pixmap_file): Expand filename.
|
|
|
8860 (mswindows_button_instantiate): Make sure glyph is a pixmap.
|
|
|
8861
|
|
|
8862 * glyphs-widget.c (widget_instantiate): Avoid shadows.
|
|
|
8863
|
|
|
8864 * frame-msw.c (msprinter_init_frame_3): Nuke warning.
|
|
|
8865
|
|
|
8866 * glyphs-msw.c: (mswindows_string_to_color): remove declaration.
|
|
|
8867
|
|
|
8868 * redisplay-msw.c (mswindows_output_cursor): Avoid shadows.
|
|
|
8869 (mswindows_output_display_block): Avoid local shadows.
|
|
|
8870
|
|
|
8871 * event-msw.c (mswindows_enqueue_magic_event): Avoid shadows.
|
|
|
8872 (mswindows_enqueue_mouse_button_event): ditto.
|
|
|
8873 (mswindows_handle_gui_wm_command): remove declaration.
|
|
|
8874
|
|
|
8875 * console-msw.c (mswindows_canonicalize_console_connection): Avoid
|
|
|
8876 warnings.
|
|
|
8877
|
|
|
8878 * console-msw.h: Avoid shadows.
|
|
|
8879 (mswindows_get_toolbar_button_text):
|
|
|
8880 (emacs_mswindows_create_stream_pair):
|
|
|
8881 (emacs_mswindows_delete_stream_pair):
|
|
|
8882 (mswindows_handle_toolbar_wm_command): declare.
|
|
|
8883
|
|
|
8884 * device-msw.c (build_syscolor_string): Avoid shadows.
|
|
|
8885
|
|
|
8886 2000-01-23 Andy Piper <andy@xemacs.org>
|
|
|
8887
|
|
|
8888 * glyphs-widget.c (widget_instantiate): reverse the items for
|
|
|
8889 layouts so that children are in the expected order.
|
|
|
8890
|
|
|
8891 2000-01-28 Martin Buchholz <martin@xemacs.org>
|
|
|
8892
|
|
|
8893 * ralloc.c: safe_bcopy ==> memmove
|
|
|
8894 * gmalloc.c: Remove MEMMOVE_MISSING conditional code.
|
|
|
8895 * s/msdos.h: Remove BCOPY macros.
|
|
|
8896 * insdel.c (gap_right): Remove BCOPY conditional code.
|
|
|
8897 * insdel.c (gap_left): Remove BCOPY conditional code.
|
|
|
8898 XEmacs demands a working ANSI C compiler - hence memmove.
|
|
|
8899
|
|
|
8900 * regex.c (regex_compile): Remove accidental use of trigraphs.
|
|
|
8901
|
|
|
8902 2000-01-27 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
|
8903
|
|
|
8904 * event-msw.c (mswindows_enqueue_misc_user_event): Initialize
|
|
|
8905 event timestamp.
|
|
|
8906
|
|
|
8907 2000-01-26 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
|
8908
|
|
|
8909 * event-msw.c (mswindows_drain_windows_queue): Added the
|
|
|
8910 parameter.
|
|
|
8911 (mswindows_need_event): Commented the call to
|
|
|
8912 mswindows_drain_windows_queue().
|
|
|
8913 (emacs_mswindows_quit_p): Lookup the windows for keyboard messages
|
|
|
8914 only.
|
|
|
8915
|
|
|
8916 * console-msw.h: Moved a few function prototypes here from
|
|
442
|
8917 event-msw.c.
|
|
440
|
8918
|
|
|
8919 * gui-msw.c (mswindows_handle_gui_wm_command): Changed the ID
|
|
|
8920 parameter from unsigned short to unsigned long.
|
|
|
8921 (Fmswindows_shell_execute): Added return value.
|
|
|
8922
|
|
|
8923 2000-01-27 URA Hiroshi <ura@hiru.aoba.yokohama.jp>
|
|
|
8924
|
|
442
|
8925 * sysdep.c (init_system_name):
|
|
|
8926 process-unix.c (unix_canonicalized_host_name):
|
|
440
|
8927 Don't call freeaddrinfo() if getaddrinfo() fails.
|
|
|
8928
|
|
|
8929 * process-unix.c (unix_open_unix_network_stream):
|
|
|
8930 Moved the code to get a port # into address loop.
|
|
|
8931
|
|
|
8932 2000-01-27 Martin Buchholz <martin@xemacs.org>
|
|
|
8933
|
|
442
|
8934 * buffer.c (reinit_vars_of_buffer):
|
|
440
|
8935 The right place to initialize conversion_in_dynarr and
|
|
|
8936 conversion_out_dynarr.
|
|
|
8937
|
|
|
8938 * alloc.c (pdump): Use the real open() till sys_open() is functional.
|
|
|
8939
|
|
|
8940 * process-unix.c (unix_canonicalize_host_name): Muleize.
|
|
|
8941 (unix_open_network_stream): Muleize.
|
|
|
8942
|
|
|
8943 * buffer.h: Fix up prototypes for ralloc.c functions.
|
|
|
8944
|
|
|
8945 2000-01-27 URA Hiroshi <ura@hiru.aoba.yokohama.jp>
|
|
|
8946 * config.h.in: added HAVE_GETADDRINFO and HAVE_GETNAMEINFO
|
|
|
8947 * sysdep.c: In init_system_name(), add code to use getaddrinfo()
|
|
|
8948 instead of gethostbyname()
|
|
|
8949 * process-unix.c: In unix_canonicalize_host_name() and
|
|
|
8950 unix_open_network_stream(), add code to use getaddrinfo()
|
|
|
8951 instead of gethostbyname().
|
|
|
8952
|
|
|
8953 2000-01-27 Daniel Pittman <daniel@danann.net>
|
|
|
8954
|
|
|
8955 * device-x.c (x_init_device): Warn at run-time if using Athena 3d
|
|
|
8956 libs when built with flat Athena.
|
|
|
8957
|
|
|
8958 2000-01-27 Martin Buchholz <martin@xemacs.org>
|
|
|
8959
|
|
|
8960 * ralloc.c: Replace SIZE (conflicts with Windows headers) with size_t.
|
|
|
8961 Use coding standards for function prototypes.
|
|
|
8962
|
|
|
8963 2000-01-25 Martin Buchholz <martin@xemacs.org>
|
|
|
8964
|
|
|
8965 * dialog-msw.c (push_lisp_string_as_unicode):
|
|
|
8966 * doc.c (unparesseuxify_doc_string):
|
|
|
8967 * dired.c (Fuser_name_completion_1):
|
|
|
8968 * dired.c (Fuser_name_all_completions):
|
|
|
8969 * dired.c (free_user_cache):
|
|
|
8970 * dired.c (user_name_completion):
|
|
|
8971 * console-x.c (get_display_arg_connection):
|
|
|
8972 * minibuf.c (clear_echo_area_internal):
|
|
|
8973 * minibuf.c (echo_area_append):
|
|
|
8974 * eldap.c (Fldap_open):
|
|
|
8975 * eldap.c (Fldap_search_internal):
|
|
|
8976 * frame-x.c (x_set_frame_text_value):
|
|
|
8977 * frame-x.c (x_set_frame_properties):
|
|
|
8978 * frame-x.c (x_create_widgets):
|
|
|
8979 * redisplay-tty.c (term_get_fkeys_1):
|
|
|
8980 * objects-x.c (x_parse_nearest_color):
|
|
|
8981 * objects-x.c (x_valid_color_name_p):
|
|
|
8982 * objects-x.c (x_initialize_font_instance):
|
|
|
8983 * objects-x.c (x_list_fonts):
|
|
|
8984 * objects-x.c (x_find_charset_font):
|
|
|
8985 * tooltalk.c (Fadd_tooltalk_message_arg):
|
|
|
8986 * tooltalk.c (Fadd_tooltalk_pattern_attribute):
|
|
|
8987 * tooltalk.c (Fadd_tooltalk_pattern_arg):
|
|
|
8988 * process-unix.c (unix_create_process):
|
|
|
8989 * ntproc.c (sys_spawnve):
|
|
|
8990 * sound.c (Fplay_sound_file):
|
|
|
8991 * sound.c (Fplay_sound):
|
|
|
8992 * buffer.c (init_initial_directory):
|
|
|
8993 * buffer.c (init_buffer):
|
|
|
8994 * editfns.c (init_editfns):
|
|
|
8995 * editfns.c (Ftemp_directory):
|
|
|
8996 * editfns.c (Fuser_full_name):
|
|
|
8997 * editfns.c (uncache_home_directory):
|
|
|
8998 * editfns.c (get_home_directory):
|
|
|
8999 * editfns.c (Fuser_home_directory):
|
|
|
9000 * editfns.c (Fformat_time_string):
|
|
|
9001 * editfns.c (Fcurrent_time_string):
|
|
|
9002 * gui-x.c (button_item_to_widget_value):
|
|
|
9003 * database.c (Fopen_database):
|
|
|
9004 * event-Xt.c (x_to_emacs_keysym):
|
|
|
9005 * event-Xt.c (x_event_to_emacs_event):
|
|
|
9006 * event-Xt.c (describe_event_window):
|
|
|
9007 * event-msw.c (mswindows_wnd_proc):
|
|
|
9008 * glyphs-eimage.c (jpeg_instantiate):
|
|
|
9009 * glyphs-eimage.c (gif_instantiate):
|
|
|
9010 * glyphs-eimage.c (png_instantiate):
|
|
|
9011 * glyphs-eimage.c (tiff_instantiate):
|
|
|
9012 * glyphs-x.c (xbm_instantiate_1):
|
|
|
9013 * glyphs-x.c (x_xbm_instantiate):
|
|
|
9014 * glyphs-x.c (x_xface_instantiate):
|
|
|
9015 * glyphs-x.c (autodetect_instantiate):
|
|
|
9016 * glyphs-x.c (cursor_font_instantiate):
|
|
|
9017 * glyphs-x.c (x_widget_instantiate):
|
|
|
9018 * glyphs-x.c (x_widget_set_property):
|
|
|
9019 * glyphs-x.c (x_widget_property):
|
|
|
9020 * glyphs-x.c (BUILD_GLYPH_INST):
|
|
|
9021 * print.c (write_string_to_stdio_stream):
|
|
|
9022 * print.c (output_string):
|
|
|
9023 * print.c (Falternate_debugging_output):
|
|
|
9024 * print.c (Fexternal_debugging_output):
|
|
|
9025 * glyphs-msw.c (extract_xpm_color_names):
|
|
|
9026 * glyphs-msw.c (mswindows_xpm_instantiate):
|
|
|
9027 * glyphs-msw.c (bmp_instantiate):
|
|
|
9028 * glyphs-msw.c (resource_name_to_resource):
|
|
|
9029 * glyphs-msw.c (mswindows_resource_instantiate):
|
|
|
9030 * glyphs-msw.c (xbm_instantiate_1):
|
|
|
9031 * glyphs-msw.c (mswindows_xbm_instantiate):
|
|
|
9032 * glyphs-msw.c (mswindows_xface_instantiate):
|
|
|
9033 * glyphs-msw.c (mswindows_widget_instantiate):
|
|
|
9034 * glyphs-msw.c (add_tree_item):
|
|
|
9035 * glyphs-msw.c (add_tab_item):
|
|
|
9036 * glyphs-msw.c (mswindows_combo_box_instantiate):
|
|
|
9037 * glyphs-msw.c (mswindows_widget_property):
|
|
|
9038 * glyphs-msw.c (mswindows_combo_box_property):
|
|
|
9039 * glyphs-msw.c (mswindows_widget_set_property):
|
|
|
9040 * console.c (stuff_buffered_input):
|
|
|
9041 * objects-msw.c (mswindows_initialize_color_instance):
|
|
|
9042 * objects-msw.c (mswindows_valid_color_name_p):
|
|
|
9043 * objects-msw.c (mswindows_list_fonts):
|
|
|
9044 * objects-msw.c (mswindows_font_instance_truename):
|
|
|
9045 * bytecode.c (optimize_compiled_function):
|
|
|
9046 * select-x.c (symbol_to_x_atom):
|
|
|
9047 * select-x.c (x_atom_to_symbol):
|
|
|
9048 * select-x.c (hack_motif_clipboard_selection):
|
|
|
9049 * select-x.c (selection_data_to_lisp_data):
|
|
|
9050 * select-x.c (lisp_data_to_selection_data):
|
|
|
9051 * select-x.c (Fx_get_cutbuffer_internal):
|
|
|
9052 * select-x.c (Fx_store_cutbuffer_internal):
|
|
|
9053 * buffer.h (TO_EXTERNAL_FORMAT): New function.
|
|
|
9054 * buffer.h (TO_INTERNAL_FORMAT): New function.
|
|
|
9055 * emacs.c (make_arg_list_1):
|
|
|
9056 * emacs.c (make_argc_argv):
|
|
|
9057 * emacs.c (main_1):
|
|
|
9058 * emacs.c (Fdump_emacs):
|
|
|
9059 * emacs.c (split_string_by_emchar_1):
|
|
|
9060 * file-coding.h:
|
|
|
9061 * lisp.h:
|
|
|
9062 * lstream.h:
|
|
|
9063 * symsinit.h:
|
|
|
9064 * device-x.c (x_init_device):
|
|
|
9065 * device-x.c (Fx_valid_keysym_name_p):
|
|
|
9066 * device-x.c (Fx_get_font_path):
|
|
|
9067 * device-x.c (Fx_set_font_path):
|
|
|
9068 * glyphs.c (bitmap_to_lisp_data):
|
|
|
9069 * glyphs.c (pixmap_to_lisp_data):
|
|
|
9070 * alloc.c (make_ext_string): Use coding system arguments. Update
|
|
|
9071 all callers.
|
|
|
9072 * alloc.c (build_string):
|
|
|
9073 * callproc.c (child_setup):
|
|
|
9074 * callproc.c (init_callproc):
|
|
|
9075 * fileio.c (lisp_strerror):
|
|
|
9076 * fileio.c (directory_file_name):
|
|
|
9077 * fileio.c (Fexpand_file_name):
|
|
|
9078 * fileio.c (Ffile_truename):
|
|
|
9079 * fileio.c (Fsysnetunam):
|
|
|
9080 * fileio.c (Fdo_auto_save):
|
|
|
9081 * sysdep.c (sys_readdir):
|
|
|
9082 * tests.c: New file. Allow adding C tests.
|
|
|
9083 Replace GET_* macros with a more comprehensible and flexible
|
|
|
9084 interface, TO_INTERNAL_FORMAT() and TO_EXTERNAL_FORMAT().
|
|
|
9085 Modify all calls.
|
|
|
9086 Any coding system can be used to do format conversion.
|
|
|
9087 Eliminate enum external_data_format.
|
|
|
9088 Eliminate convert_to_external_format.
|
|
|
9089 Eliminate convert_to_internal_format.
|
|
|
9090 Make sure file-name, keyboard, terminal, and ctext are always
|
|
|
9091 defined as coding systems or aliases. Make
|
|
|
9092 file-name-coding-system, terminal-coding-system, and
|
|
|
9093 keyboard-coding-system magical variables that are equivalent to
|
|
|
9094 defining the corresponding coding system aliases.
|
|
442
|
9095
|
|
440
|
9096 * file-coding.c (Fcoding_system_canonical_name_p): New function.
|
|
|
9097 * file-coding.c (Fcoding_system_alias_p): New function.
|
|
|
9098 * file-coding.c (Fcoding_system_aliasee): New function.
|
|
|
9099 * file-coding.c (append_suffix_to_symbol): New function.
|
|
|
9100 * file-coding.c (dangling_coding_system_alias_p): New function.
|
|
|
9101 * file-coding.c (Ffind_coding_system):
|
|
|
9102 * file-coding.c (Fcopy_coding_system):
|
|
|
9103 * file-coding.c (encode_coding_no_conversion):
|
|
|
9104 * file-coding.c (syms_of_file_coding):
|
|
|
9105 * file-coding.c (vars_of_file_coding):
|
|
|
9106 Rewrite coding system alias code.
|
|
|
9107 Allow nested aliases, like symbolic links.
|
|
|
9108 Allow redefinition of coding system aliases.
|
|
|
9109 Prevent existence of dangling coding system aliases.
|
|
|
9110
|
|
|
9111 * dired.c (Fuser_name_completion_1):
|
|
|
9112 * dired.c (Fuser_name_all_completions):
|
|
|
9113 A crash would happen if user did QUIT in the middle of building
|
|
|
9114 user_name_cache. Remove redundant code in mainline and unwind_protect.
|
|
|
9115
|
|
|
9116 * lisp.h:
|
|
|
9117 * dynarr.c (Dynarr_min_size): Make static. Increase value to 8.
|
|
|
9118
|
|
|
9119 * lstream.c (make_fixed_buffer_input_stream): Take a void *, not
|
|
|
9120 an unsigned char *. Update all callers.
|
|
|
9121
|
|
|
9122 2000-01-26 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
|
9123
|
|
|
9124 * callproc.c (Fcall_process_internal): Ignore Vbinary-process_output.
|
|
|
9125
|
|
|
9126 2000-01-25 Martin Buchholz <martin@xemacs.org>
|
|
|
9127
|
|
|
9128 * elhash.c (hentry_description): Use more portable definition.
|
|
|
9129 (resize_hash_table): Initialize new hentries using
|
|
|
9130 xnew_array_and_zero, thereby simplifying the code.
|
|
|
9131
|
|
|
9132 * mule-charset.c (make_charset): Make sure entire object is
|
|
442
|
9133 initialized, to avoid Purify warnings.
|
|
440
|
9134
|
|
|
9135 * alloc.c (resize_string): Fix unlikely crash with big strings.
|
|
|
9136
|
|
|
9137 2000-01-24 Martin Buchholz <martin@xemacs.org>
|
|
|
9138
|
|
442
|
9139 * realpath.c (xrealpath):
|
|
440
|
9140 Don't call getwd().
|
|
|
9141
|
|
|
9142 2000-01-25 Martin Buchholz <martin@xemacs.org>
|
|
|
9143
|
|
|
9144 * lread.c (read_bit_vector): Fix memory leak reading literal bit vectors.
|
|
|
9145
|
|
|
9146 1999-12-28 Max Matveev <max@melbourne.sgi.com>
|
|
|
9147
|
|
|
9148 * unexelfsgi.c (unexec): Change the way we decide which segment
|
|
|
9149 should be extended.
|
|
|
9150
|
|
|
9151 Assumption that .bss section should be outside the PT_LOADable
|
|
|
9152 segment. On IRIX with version 6.2 and above, .bss (or .sbss, if
|
|
|
9153 it's present) is inside the 'data' segment. This would fail the
|
|
|
9154 test which was used to find a segment to grow and cover new
|
|
|
9155 heap. Instead of this assumption, I created another one - on IRIX
|
|
|
9156 the segment to grow should start below .bss and it's address
|
|
|
9157 should extent above the end of .bss. Once this segment is
|
|
|
9158 identified, it's grown to accommodate the new heap and new
|
|
|
9159 zero-length .bss section is added at the end of .data2.
|
|
|
9160
|
|
|
9161 2000-01-25 Martin Buchholz <martin@xemacs.org>
|
|
|
9162
|
|
|
9163 * eval.c (Feval): Wrong number of arguments should use original
|
|
|
9164 function, not the indirect_function version of it.
|
|
|
9165
|
|
|
9166 2000-01-24 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
9167
|
|
|
9168 * glyphs-x.c (x_button_instantiate): Don't add image if
|
|
|
9169 it is not a pixmap.
|
|
|
9170 (x_locate_pixmap_file): Call Fexpand_file_name when file name
|
|
|
9171 is relative.
|
|
|
9172
|
|
|
9173 2000-01-21 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
|
9174
|
|
|
9175 * symeval.h (DEFVAR_LISP_MAGIC): Remove semicolon after macro
|
|
|
9176 declaration.
|
|
|
9177 (DEFVAR_INT_MAGIC): Ditto.
|
|
|
9178 (DEFVAR_BOOL_MAGIC): Ditto.
|
|
|
9179 * glyphs.h: Reindent backslash.
|
|
|
9180
|
|
|
9181 2000-01-24 Martin Buchholz <martin@xemacs.org>
|
|
|
9182
|
|
442
|
9183 * glyphs-widget.c (layout_query_geometry):
|
|
440
|
9184 (layout_layout): Use correct types for gheight, gwidth.
|
|
|
9185
|
|
|
9186 2000-01-24 Martin Buchholz <martin@xemacs.org>
|
|
|
9187
|
|
|
9188 * EmacsManager.c (QueryGeometry): Purified.
|
|
|
9189
|
|
|
9190 2000-01-23 Martin Buchholz <martin@xemacs.org>
|
|
|
9191
|
|
442
|
9192 * alloc.c (make_float): Make sure entire object is initialized, to
|
|
440
|
9193 avoid Purify warnings.
|
|
|
9194 (pdump_register_sub): Remove useless assignment.
|
|
|
9195 (pdump): Use xmalloc, not malloc.
|
|
|
9196 (pdump_load): Use xmalloc, not malloc.
|
|
|
9197
|
|
|
9198 2000-01-23 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
|
9199
|
|
442
|
9200 * callproc.c:
|
|
|
9201 * dired-msw.c:
|
|
|
9202 * fileio.c:
|
|
|
9203 * process-nt.c:
|
|
|
9204 * redisplay-msw.c:
|
|
440
|
9205 * sysdep.c: Removed redundant #include <windows.h>
|
|
|
9206
|
|
|
9207 2000-01-22 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
|
9208
|
|
|
9209 * frame.c (delete_frame_internal): Do not delete device when its
|
|
|
9210 implementation so declares.
|
|
|
9211 (delete_frame_internal): Set device selected frame to nil when
|
|
442
|
9212 last frame goes away.
|
|
440
|
9213
|
|
|
9214 * device-msw.c (msprinter_device_system_metrics): Implemented.
|
|
|
9215 (mswindows_device_system_metrics): Added 'device-dpi property.
|
|
|
9216
|
|
|
9217 * device.c: (Fdevice_printer_p): Added.
|
|
|
9218 Added 'offset-workspace device metric.
|
|
|
9219
|
|
|
9220 * console.h (device_metrics): Declared DM_offset_workspace.
|
|
|
9221
|
|
|
9222 2000-01-23 Martin Buchholz <martin@xemacs.org>
|
|
|
9223
|
|
|
9224 * fileio.c (Ffile_truename): Remove pointless and confusing
|
|
|
9225 initialization of elen.
|
|
|
9226
|
|
|
9227 * glyphs-widget.c: Compiler warning fixes.
|
|
|
9228
|
|
|
9229 2000-01-23 Gunnar Evermann <ge204@eng.cam.ac.uk>
|
|
|
9230
|
|
|
9231 * process.h (PROCESS_LIVE_P): Modify to take a Lisp_Process
|
|
|
9232 instead of a Lisp_Object as argument to make it consistent with
|
|
|
9233 the other LIVE_P macros.
|
|
|
9234 (CHECK_LIVE_PROCESS): New macro.
|
|
|
9235
|
|
|
9236 * process.c: Declare Qprocess_live_p.
|
|
|
9237 (Fprocess_live_p): New function.
|
|
|
9238 (create_process): Use PROCESS_LIVE_P.
|
|
|
9239 (read_process_output): Ditto.
|
|
|
9240 (set_process_filter): Ditto.
|
|
|
9241 (Fdelete_process): Ditto.
|
|
|
9242 (kill_buffer_processes): Ditto
|
|
|
9243 (process_send_signal): Use CHECK_LIVE_PROCESS.
|
|
|
9244 (Fprocess_input_coding_system): Check whether process is still
|
|
|
9245 alive (fix PR#1061).
|
|
|
9246 (Fprocess_output_coding_system): Ditto.
|
|
|
9247 (Fprocess_coding_system): Ditto.
|
|
|
9248 (Fset_process_input_coding_system): Ditto.
|
|
|
9249 (Fset_process_output_coding_system): Ditto.
|
|
|
9250
|
|
|
9251 2000-01-23 Andy Piper <andy@xemacs.org>
|
|
|
9252
|
|
|
9253 * glyphs.h (struct Lisp_Image_Instance): change format by unifying
|
|
|
9254 layout and widget.
|
|
|
9255
|
|
|
9256 * glyphs.c (mark_image_instance): take into account changed
|
|
|
9257 image_instance format.
|
|
|
9258 (image_instance_equal): ditto.
|
|
|
9259 (image_instance_hash): ditto.
|
|
|
9260
|
|
|
9261 * glyphs-widget.c (widget_instantiate): Incorporate layout
|
|
|
9262 instantiation here. Delay layout of the layout until later.
|
|
|
9263 (layout_instantiate): deleted.
|
|
|
9264 (layout_query_geometry): new function. get the geometry of a
|
|
|
9265 layout.
|
|
|
9266 (layout_layout): layout a layout dynamically.
|
|
|
9267 (image_instantiator_widget): New function - splitting up
|
|
|
9268 image_instantiator_format_create_glyphs_widget for netwinder
|
|
|
9269 compilation.
|
|
|
9270 (image_instantiator_buttons):
|
|
|
9271 (image_instantiator_edit_fields):
|
|
|
9272 (image_instantiator_combo_box):
|
|
|
9273 (image_instantiator_scrollbar):
|
|
|
9274 (image_instantiator_progress_guage):
|
|
|
9275 (image_instantiator_tree_view):
|
|
|
9276 (image_instantiator_tab_control):
|
|
|
9277 (image_instantiator_labels):
|
|
|
9278 (image_instantiator_layout): ditto.
|
|
442
|
9279 (image_instantiator_format_create_glyphs_widget): Call preceding
|
|
440
|
9280 functions.
|
|
|
9281
|
|
|
9282 2000-01-22 Martin Buchholz <martin@xemacs.org>
|
|
|
9283
|
|
|
9284 * process.c (Fset_process_coding_system):
|
|
442
|
9285 * device-x.c (Fx_keysym_hash_table):
|
|
440
|
9286 Docstring fixes.
|
|
|
9287
|
|
|
9288 * lstream.c (Lstream_write): Return documented value, not 0.
|
|
|
9289
|
|
442
|
9290 * fileio.c (directory_file_name):
|
|
|
9291 (Fsubstitute_in_file_name):
|
|
|
9292 (Fsubstitute_insert_file_contents_internal):
|
|
440
|
9293 (Fwrite_region_internal):
|
|
|
9294 * emacs.c:
|
|
|
9295 * sysdep.c:
|
|
442
|
9296 * getloadavg.c:
|
|
440
|
9297 * systty.h:
|
|
|
9298 Remove vestigial APOLLO-conditional code.
|
|
|
9299
|
|
|
9300 2000-01-21 Martin Buchholz <martin@xemacs.org>
|
|
|
9301
|
|
|
9302 * getpagesize.h: Add guard macros.
|
|
|
9303 * libsst.h: Add guard macros.
|
|
|
9304 * libst.h: Add guard macros.
|
|
|
9305 * line-number.h: Add guard macros.
|
|
|
9306 * ndir.h: Add guard macros.
|
|
|
9307 * sysfloat.h: Add guard macros.
|
|
|
9308 * sysfile.h: Add guard macros.
|
|
|
9309 * sysproc.h: Add guard macros.
|
|
|
9310 * syswait.h: Add guard macros.
|
|
|
9311 * xintrinsic.h: Add guard macros.
|
|
|
9312 * xintrinsicp.h: Add guard macros.
|
|
|
9313 * xmmanager.h: Add guard macros.
|
|
|
9314 * xmmanagerp.h: Add guard macros.
|
|
|
9315 * xmprimitive.h: Add guard macros.
|
|
|
9316 * xmu.h: Add guard macros.
|
|
|
9317 * gpmevent.h: Add copyright statement. Add guard macros.
|
|
|
9318 * miscplay.h: Add guard macros.
|
|
|
9319 * *.h: Use consistent C-standards-approved guard macro names.
|
|
|
9320
|
|
442
|
9321 * opaque.c (make_opaque): Switch parameter order.
|
|
440
|
9322 * opaque.h (make_opaque): Switch parameter order.
|
|
|
9323 Update all callers.
|
|
|
9324 * buffer.h (MAKE_MIRROR_TRT_TABLE): Use symbolic constant OPAQUE_CLEAR.
|
|
|
9325
|
|
|
9326 * config.h.in (type_checking_assert): Added.
|
|
|
9327 (bufpos_checking_assert): Added.
|
|
|
9328
|
|
|
9329 2000-01-21 Martin Buchholz <martin@xemacs.org>
|
|
|
9330
|
|
|
9331 * alloc.c: Harmless pdump changes.
|
|
|
9332 - Use countof().
|
|
|
9333 - spell alignment correctly.
|
|
|
9334 * sysdep.c: Use countof()
|
|
|
9335
|
|
|
9336 2000-01-20 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
|
9337
|
|
|
9338 * console.c (create_console): Use CONMETH_OR_GIVEN when calling
|
|
|
9339 initially_selected_for_input() console method, default to 0.
|
|
|
9340 (semi_canonicalize_console_connection): Try to delegate to
|
|
|
9341 canonicalize_console_connection if no such console method.
|
|
|
9342 (canonicalize_console_connection): Vice versa.
|
|
|
9343 (print_console): Do not print nil connection.
|
|
|
9344
|
|
|
9345 * console.h (XDEVIMPF_IS_A_PRINTER): Added.
|
|
|
9346 (XDEVIMPF_NO_AUTO_REDISPLAY): Added.
|
|
|
9347 (XDEVIMPF_FRAMELESS_OK): Added.
|
|
|
9348 (CONSOLE_INHERITS_METHOD): Added.
|
|
|
9349
|
|
|
9350 * console-msw.c (mswindows_canonicalize_console_connection):
|
|
|
9351 Added.
|
|
|
9352 (mswindows_canonicalize_device_connection): Added.
|
|
|
9353
|
|
|
9354 * console-msw.h (struct msprinter_device): Added this struct and
|
|
|
9355 accessor macros.
|
|
|
9356 (mswindows_device): Made fontlist a lisp object.
|
|
|
9357
|
|
|
9358 * device.c (semi_canonicalize_device_connection): Try to delegate
|
|
|
9359 to canonicalize_device_connection if no such console method.
|
|
|
9360 (canonicalize_device_connection): Vice versa.
|
|
|
9361 (print_device): Do not print nil connection.
|
|
|
9362
|
|
|
9363 * device-msw.c (mswindows_init_device): Call InitCommonControls
|
|
|
9364 when have widgets.
|
|
|
9365 (mswindows_delete_device): Removed fontlist deallocation.
|
|
|
9366 (mswindows_mark_device): Added.
|
|
|
9367
|
|
|
9368 * events.c (event_equal): Added abort() at unreached code.
|
|
|
9369 (event_hash): Ditto.
|
|
|
9370
|
|
|
9371 * faces.c (complex_vars_of_faces): Added Qmsprinter to the list of
|
|
|
9372 fallback tags of Windows devices.
|
|
|
9373
|
|
|
9374 * general.c (syms_of_general): Initialized Qmsprinter.
|
|
|
9375
|
|
|
9376 * gutter.c (complex_vars_of_gutters): Added Qmsprinter to the list
|
|
|
9377 of fallback tags of Windows devices.
|
|
|
9378
|
|
|
9379 * lisp.h: Declared Qmsprinter.
|
|
|
9380
|
|
|
9381 * objects-msw.c (font_enum_callback_2): Rewrote to build lisp list
|
|
|
9382 of strings.
|
|
|
9383 (mswindows_list_fonts): Ditto.
|
|
|
9384 (mswindows_enumerate_fonts): Removed dependency on XDEVICE, so
|
|
|
9385 that it can be used by both mswindows and msprinter devices.
|
|
|
9386 (initialize_font_instance): Added.
|
|
|
9387 (mswindows_initialize_font_instance): Use it.
|
|
|
9388 (msprinter_initialize_font_instance): Added.
|
|
|
9389
|
|
|
9390 * redisplay.c (redisplay_device): Added the parameter AUTOMATIC
|
|
|
9391 and implementation flags check.
|
|
|
9392 (redisplay_without_hooks): Changed the call to the above.
|
|
|
9393 (Fredraw_device): Ditto.
|
|
|
9394 (Fredisplay_device): Ditto.
|
|
|
9395
|
|
|
9396 * redisplay-msw.c (get_frame_dc): Implemented.
|
|
|
9397 (get_frame_compdc): Implemented.
|
|
|
9398 (many functions): Use the two functions above to get device
|
|
|
9399 contexts, ether for a window or a printer.
|
|
|
9400
|
|
|
9401 2000-01-21 Olivier Galibert <galibert@pobox.com>
|
|
|
9402
|
|
|
9403 * symbols.c (reinit_symbols_once_early): Put Qzero/Qnull_pointer
|
|
|
9404 initialization here.
|
|
|
9405 (init_symbols_once_early): Call it.
|
|
|
9406 * emacs.c (main_1): Call it.
|
|
|
9407 * symsinit.h: Declare it.
|
|
|
9408
|
|
|
9409 2000-01-19 Olivier Galibert <galibert@pobox.com>
|
|
|
9410
|
|
|
9411 * alloc.c: Use a lrecord_header * in the backtrace instead of a
|
|
|
9412 Lisp_Object.
|
|
|
9413 (pdump_backtrace): Ditto.
|
|
|
9414 (pdump_register_object): Ditto. Cleanup use of the pointers.
|
|
|
9415 (pdump_get_entry): Abort if trying to register a null pointer.
|
|
|
9416 (pdump_dump_data): Cleanup types when relocating.
|
|
|
9417 (pdump_dump_staticvec): Cleanup types w.r.t the reloc table.
|
|
|
9418 (pdump_dump_rtables): Remove bad casts.
|
|
|
9419 (pdump_load): Cleanup relocation w.r.t union type. Use a
|
|
|
9420 Lisp_Object instead of a EMACS_INT for the hashtable
|
|
|
9421 reorganization.
|
|
|
9422
|
|
|
9423 2000-01-20 Martin Buchholz <martin@xemacs.org>
|
|
|
9424
|
|
|
9425 * emacs.c (main_1): Rearrange morass of #ifdef's for correctness.
|
|
|
9426
|
|
|
9427 * callproc.c (call_process_cleanup): Isolate WINDOWSNT code for clarity.
|
|
|
9428
|
|
|
9429 * EmacsManager.c (GeometryManager): Avoid use of CPP for clarity.
|
|
|
9430
|
|
|
9431 * *.[ch]: global-replace 's/_of_xselect/_of_select_x/g' *.[ch]
|
|
|
9432
|
|
|
9433 2000-01-17 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
|
9434
|
|
|
9435 * faces.h (FACE_STRIKETHRU_P): Added.
|
|
|
9436
|
|
|
9437 * glyphs-msw.c (mswindows_widget_hfont): Implemented, to take care
|
|
|
9438 of font variants.
|
|
|
9439
|
|
|
9440 * redisplay-msw.c (mswindows_apply_face_effects): Deleted.
|
|
|
9441 (mswindows_set_dc_font): New function, aware of font variants,
|
|
|
9442 separated from mswindows_update_dc.
|
|
|
9443
|
|
|
9444 * objects-msw.h (struct mswindows_font_instance_data): Added
|
|
|
9445 definition.
|
|
|
9446
|
|
|
9447 * objects-msw.c (mswindows_finalize_font_instance): Delete all
|
|
|
9448 cached fonts and the data structure.
|
|
|
9449 (mswindows_initialize_font_instance): Added creation of font data
|
|
|
9450 structure.
|
|
|
9451 (mswindows_print_font_instance): Print at least something.
|
|
|
9452 (mswindows_create_font_variant): Implemented.
|
|
|
9453 (mswindows_get_hfont): Implemented.
|
|
|
9454
|
|
|
9455 2000-01-13 Fabrice Popineau <Fabrice.Popineau@supelec.fr>
|
|
|
9456
|
|
|
9457 * dired-msw.c: permute "sysdir.h" with "sysfile.h" because of
|
|
|
9458 prototyping problem with msvc.
|
|
|
9459
|
|
|
9460 * emacs.c (main_1): added syms_of_gui_mswindows() call
|
|
|
9461
|
|
|
9462 * gui-msw.c: added "mswindows-shell-execute" lisp subr and
|
|
|
9463 syms_of_gui_mswindows() function
|
|
|
9464
|
|
|
9465 * symsinit.h: added the prototype for syms_of_gui_mswindows()
|
|
|
9466
|
|
438
|
9467 2000-01-18 Martin Buchholz <martin@xemacs.org>
|
|
434
|
9468
|
|
438
|
9469 * XEmacs 21.2.27 is released.
|
|
432
|
9470
|
|
438
|
9471 2000-01-18 Martin Buchholz <martin@xemacs.org>
|
|
430
|
9472
|
|
438
|
9473 * glyphs-eimage.c (struct tiff_error_struct):
|
|
|
9474 (tiff_error_func):
|
|
|
9475 (tiff_warning_func):
|
|
|
9476 #if HAVE_VSNPRINTF ==> #ifdef HAVE_VSNPRINTF
|
|
428
|
9477
|
|
438
|
9478 * unexmips.c:
|
|
|
9479 * unexhp9k3.c:
|
|
|
9480 * unexfreebsd.c:
|
|
|
9481 * unexec.c: Remove vestigial Lucid C code.
|
|
|
9482 * unexalpha.c:
|
|
|
9483 * unexaix.c:
|
|
|
9484 * termcap.c:
|
|
|
9485 * libsst.c: Ansify.
|
|
|
9486 Remove declarations of errno and strerror().
|
|
428
|
9487
|
|
438
|
9488 * eval.c (Fbacktrace): Small Purify-cation. Fix docstring.
|
|
428
|
9489
|
|
438
|
9490 * .dbxrc (run-temacs): Use the horrible ${1+"$@"} instead of "$@".
|
|
428
|
9491
|
|
438
|
9492 2000-01-16 Martin Buchholz <martin@xemacs.org>
|
|
428
|
9493
|
|
438
|
9494 * mule-charset.c (Fchar_octet): Resurrect from earlier in 1999.
|
|
|
9495 Optimize.
|
|
428
|
9496
|
|
438
|
9497 2000-01-14 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp>
|
|
428
|
9498
|
|
438
|
9499 * md5.c:
|
|
|
9500 * file-coding.c:
|
|
428
|
9501 * file-coding.h:
|
|
438
|
9502 Change enum eol_type to eol_type_t.
|
|
428
|
9503
|
|
438
|
9504 2000-01-17 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp>
|
|
428
|
9505
|
|
438
|
9506 * gui.c (get_gui_callback): Check cons before accessing car.
|
|
428
|
9507
|
|
438
|
9508 2000-01-17 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp>
|
|
428
|
9509
|
|
438
|
9510 * specifier.h (XSPECIFIER_TYPE): Add error checking version.
|
|
|
9511 (XSETSPECIFIER_TYPE): Ditto.
|
|
428
|
9512
|
|
438
|
9513 2000-01-17 Didier Verna <didier@xemacs.org>
|
|
428
|
9514
|
|
438
|
9515 * redisplay.c (generate_fstring_runes): compute string size in
|
|
|
9516 characters, not bytes.
|
|
428
|
9517
|
|
438
|
9518 2000-01-09 Hrvoje Niksic <hniksic@iskon.hr>
|
|
428
|
9519
|
|
438
|
9520 * window.c (Fwindow_minibuffer_p): Make WINDOW optional.
|
|
428
|
9521
|
|
438
|
9522 2000-01-14 Hrvoje Niksic <hniksic@iskon.hr>
|
|
428
|
9523
|
|
438
|
9524 * print.c (print_error_message): Call print_prepare().
|
|
428
|
9525
|
|
438
|
9526 2000-01-14 Martin Buchholz <martin@xemacs.org>
|
|
428
|
9527
|
|
438
|
9528 * .dbxrc: Renamed from dbxrc.
|
|
428
|
9529
|
|
438
|
9530 * events.c (event_to_character):
|
|
|
9531 Use `assert (foo)' instead of `if (!foo) abort()'
|
|
428
|
9532
|
|
438
|
9533 * .gdbinit (xtype): Add documentation.
|
|
|
9534 * .gdbinit (check-temacs): New function.
|
|
|
9535 * .gdbinit (check-xemacs): New function.
|
|
|
9536 * dbxrc (check-xemacs): New function.
|
|
|
9537 * dbxrc (check-xemacs): New function.
|
|
428
|
9538
|
|
438
|
9539 2000-01-14 Andy Piper <andy@xemacs.org>
|
|
428
|
9540
|
|
438
|
9541 * glyphs-widget.c (widget_query_geometry): Make sure that we
|
|
|
9542 calculate default dimensions correctly.
|
|
428
|
9543
|
|
438
|
9544 2000-01-13 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
428
|
9545
|
|
438
|
9546 * symsinit.h: Added prototype for reinit_vars_of_frame_mswindows.
|
|
428
|
9547
|
|
438
|
9548 * event-msw.c (vars_of_event_mswindows): Fixed a mistyped
|
|
|
9549 pdump_wire'd variable.
|
|
428
|
9550
|
|
438
|
9551 * emacs.c: (main_1): Conditionalized calls to
|
|
|
9552 reinit_vars_of_scrollbar_x and reinit_vars_of_module.
|
|
428
|
9553
|
|
438
|
9554 2000-01-13 Martin Buchholz <martin@xemacs.org>
|
|
428
|
9555
|
|
438
|
9556 * window.c (Fset_window_configuration):
|
|
|
9557 * sysdep.c (_start):
|
|
|
9558 * input-method-motif.c (res):
|
|
|
9559 * event-Xt.c (Xt_process_to_emacs_event):
|
|
|
9560 Simple compiler warning fixes.
|
|
428
|
9561
|
|
438
|
9562 * bytecode.c (funcall_compiled_function): Use the original
|
|
|
9563 function symbol on the backtrace list in preference to the
|
|
|
9564 compiled_function object in error messages.
|
|
428
|
9565
|
|
438
|
9566 2000-01-13 Andy Piper <andy@xemacs.org>
|
|
428
|
9567
|
|
438
|
9568 * glyphs-x.c (update_widget_face): Make sure we update the widget
|
|
|
9569 background as well as foreground.
|
|
428
|
9570
|
|
438
|
9571 2000-01-13 Andy Piper <andy@xemacs.org>
|
|
428
|
9572
|
|
438
|
9573 * glyphs.h (struct Lisp_Image_Instance): Move justify and orient
|
|
|
9574 fields to subwindow.
|
|
|
9575 (IMAGE_INSTANCE_SUBWINDOW_JUSTIFY): new macro.
|
|
|
9576 (XIMAGE_INSTANCE_SUBWINDOW_JUSTIFY): ditto.
|
|
|
9577 (IMAGE_INSTANCE_SUBWINDOW_ORIENT): ditto.
|
|
|
9578 (XIMAGE_INSTANCE_SUBWINDOW_ORIENT): ditto.
|
|
428
|
9579
|
|
438
|
9580 * glyphs-widget.c (check_valid_tab_orientation): new function.
|
|
|
9581 (initialize_widget_image_instance): zero orientation and
|
|
|
9582 justification.
|
|
|
9583 (widget_instantiate): pick up orientation.
|
|
|
9584 (tab_control_query_geometry): return appropriate values for
|
|
|
9585 vertical tabs.
|
|
428
|
9586
|
|
438
|
9587 * glyphs-msw.c: (mswindows_tab_control_instantiate): assign
|
|
|
9588 appropriate creation flags for left, right and bottom tabs.
|
|
428
|
9589
|
|
438
|
9590 * s/cygwin32.h: add tab definitions.
|
|
428
|
9591
|
|
438
|
9592 2000-01-12 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
428
|
9593
|
|
438
|
9594 * glyphs-msw.c (mswindows_unmap_subwindow): Set focus back to the
|
|
|
9595 frame upon hiding a subwindow.
|
|
|
9596 (mswindows_button_instantiate): Changed the push button style to
|
|
|
9597 BS_PUSHBUTTON.
|
|
|
9598 (mswindows_button_instantiate): Removed button BS_NOTIFY
|
|
|
9599 style.
|
|
|
9600 (mswindows_button_instantiate): Removed redundant check for
|
|
|
9601 a disabled gui item.
|
|
|
9602 (mswindows_button_instantiate): Made use of WS_TABSTOP
|
|
|
9603 consistent: "operable" controls (edit, button, tree, scroll) have
|
|
|
9604 this style, "display-only" ones (static, progress gauge) do
|
|
|
9605 not. This style is currently ignored by XEmacs though. Also,
|
|
|
9606 removed the WS_EX_CONTROLPARENT style - it is not for children,
|
|
|
9607 it is for their parents!
|
|
|
9608 (mswindows_edit_field_instantiate): Ditto.
|
|
|
9609 (mswindows_progress_gauge_instantiate): Ditto.
|
|
|
9610 (mswindows_tree_view_instantiate): Ditto.
|
|
|
9611 (mswindows_tab_control_instantiate): Ditto.
|
|
|
9612 (mswindows_scrollbar_instantiate): Ditto.
|
|
|
9613 (mswindows_combo_box_instantiate): Ditto.
|
|
|
9614 (mswindows_widget_instantiate): Added the WS_EX_CONTROLPARENT
|
|
|
9615 style to the "clip" window.
|
|
|
9616 (mswindows_button_instantiate): Removed compilation warning by
|
|
|
9617 equally typing terms of the ?: operator.
|
|
428
|
9618
|
|
438
|
9619 2000-01-12 Didier Verna <didier@xemacs.org>
|
|
428
|
9620
|
|
438
|
9621 * redisplay.c (generate_fstring_runes): new parameter holding the
|
|
|
9622 last modeline-format extent.
|
|
|
9623 (add_glyph_to_fstring_db_runes): new parameter holding the glyph
|
|
|
9624 extent, fill the glyph block with it.
|
|
|
9625 (generate_fstring_runes): handle these parameters.
|
|
|
9626 (generate_formatted_string_db): ditto.
|
|
428
|
9627
|
|
438
|
9628 * keymap.c (get_relevant_keymaps): retreive the keymaps from the
|
|
|
9629 glyphs'extents in the modeline.
|
|
428
|
9630
|
|
438
|
9631 1999-01-11 Mike Woolley <mike@bulsara.com>
|
|
428
|
9632
|
|
438
|
9633 * ntheap.c: Reduced the reserved heap space from 1Gb down to
|
|
|
9634 256Mb, as a workaround for the non-starting problem many people
|
|
|
9635 have experienced.
|
|
428
|
9636
|
|
438
|
9637 2000-01-06 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp>
|
|
428
|
9638
|
|
438
|
9639 * console-tty.c (Fset_console_tty_output_coding_system):
|
|
|
9640 Force redrawing tty frame.
|
|
428
|
9641
|
|
438
|
9642 2000-01-10 Didier Verna <didier@xemacs.org>
|
|
428
|
9643
|
|
438
|
9644 * redisplay.c (generate_fstring_runes): fix size computation bug.
|
|
428
|
9645
|
|
438
|
9646 2000-01-09 William M. Perry <wmperry@aventail.com>
|
|
428
|
9647
|
|
438
|
9648 * gpmevent.c: (gpm_next_event_cb): Don't return value from void function.
|
|
428
|
9649
|
|
438
|
9650 2000-01-09 Andy Piper <andy@xemacs.org>
|
|
428
|
9651
|
|
438
|
9652 * glyphs-msw.c: index -> i to avoid shadows.
|
|
|
9653 (xbm_create_bitmap_from_data): make static.
|
|
|
9654 (check_valid_string_or_int): deleted.
|
|
|
9655 (mswindows_control_wnd_proc): message -> msg to avoid shadows.
|
|
428
|
9656
|
|
438
|
9657 * glyphs-x.c (x_update_subwindow): remove unused args.
|
|
428
|
9658
|
|
438
|
9659 * glyphs.c (glyph_image_instance): return the thing. Don't set the
|
|
|
9660 back pointer - this is done in allocate_image_instance.
|
|
|
9661 (query_string_font): return Qnil to make the compiler happy.
|
|
|
9662 (unmap_subwindow): set to ~0 to make the compiler happy.
|
|
|
9663 (glyph_query_geometry): comment out until used.
|
|
|
9664 (glyph_layout): ditto.
|
|
428
|
9665
|
|
438
|
9666 2000-01-09 Hrvoje Niksic <hniksic@iskon.hr>
|
|
428
|
9667
|
|
438
|
9668 * insdel.c (signal_after_change): Remove extraneous unbind_to().
|