446
|
1 2000-12-05 Martin Buchholz <martin@xemacs.org>
|
|
2
|
|
3 * XEmacs 21.2.38 is released.
|
|
4
|
|
5 2000-12-05 Martin Buchholz <martin@xemacs.org>
|
|
6
|
|
7 * redisplay.c (bar-cursor): Make a user variable.
|
|
8
|
|
9 * symsinit.h: Add init_postgresql_from_environment.
|
|
10
|
|
11 2000-12-04 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
12
|
|
13 * regex.c: Convert to clean C.
|
|
14
|
|
15 2000-12-05 Dan Holmsand <dan@eyebee.com>
|
|
16
|
|
17 * realpath.c:
|
|
18 Don't #include sysfile.h. Revert to duplicating PATH_MAX
|
|
19 initialization.
|
|
20 (sys_readlink): renamed to system_readlink to avoid conflict with
|
|
21 the other sys_readlink.
|
|
22
|
|
23 2000-12-04 Hiroaki Abe <h-abe@pc.highway.ne.jp>
|
|
24
|
|
25 * dumper.c (pdump_file_get): Correct uses of pdump_fd.
|
|
26
|
|
27 2000-12-04 Stephen J. Turnbull <stephen@xemacs.org>
|
|
28
|
|
29 * postgresql.c (init_postgresql_from_environment): new function.
|
|
30 (vars_of_postgresql): Move code initializing Lisp variables out and
|
|
31 into init_postgresql_from_environment.
|
|
32 emacs.c (main_1): Call init_postgresql_from_environment if and only
|
|
33 if running a dumped XEmacs.
|
|
34
|
|
35 2000-08-31 Dan Holmsand <dan@eyebee.com>
|
|
36
|
|
37 * buffer.c: Make find-file-compare-truenames default to true on
|
|
38 windows.
|
|
39
|
|
40 * realpath.c (win32_abs_start):
|
|
41 (cygwin_readlink):
|
|
42 (win32_readlink): New functions.
|
|
43 (xrealpath): Return really real filenames on windows.
|
|
44
|
|
45 * fileio.c (Ffile_truename): Make file-truename work on windows.
|
|
46
|
|
47 2000-11-29 Didier Verna <didier@xemacs.org>
|
|
48
|
|
49 * faces.c (MAYBE_UNFROB_BACKGROUND_PIXMAP): new macro.
|
|
50 * faces.c (update_face_cachel_data): use it.
|
|
51 * faces.c (add_face_cachel): use it. Complete background pixmap
|
|
52 frobbing in face cache if `update_face_cachel_data' has not done so.
|
|
53
|
|
54 2000-11-29 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
55
|
|
56 * search.c (string_match_1): Don't set last_thing_searched
|
|
57 when search failed.
|
|
58
|
|
59 2000-11-27 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
60
|
|
61 * buffer.c: Include casetab.h
|
|
62 (common_init_complex_vars_of_buffer): Use new case-table object.
|
|
63 * buffer.h: Include casetab.h
|
|
64 * buffer.h (MAKE_TRT_TABLE): Use generic char-table.
|
|
65 (DOWNCASE_TABLE_OF): Ditto.
|
|
66 * bufslots.h: Remove char-tables and add case-table.
|
|
67 * casetab.c: Include casetab.h
|
|
68 (CASE_TABLE_P): Removed.
|
|
69 (mark_case_table): New function.
|
|
70 (allocate_case_table): New function.
|
|
71 (Fcase_table_p): Use new case-table.
|
|
72 (case_table_char): New function.
|
|
73 (Fget_case_table): Ditto.
|
|
74 (Fput_case_table): Ditto.
|
|
75 (Fput_case_table_pair): Ditto.
|
|
76 (Fcopy_case_table): Ditto.
|
|
77 (Fcurrent_case_table): Return case-table.
|
|
78 (Fstandard_case_table): Return case-table.
|
|
79 (Fset_case_table): Fix doc-string.
|
|
80 (set_case_table): Use case-table
|
|
81 (syms_of_casetab): DEFSUBR new functions.
|
|
82 (complex_vars_of_casetab): Set up standard case-table.
|
|
83 * casetab.h: New file.
|
|
84 * editfns.c: Include casetab.h
|
|
85 (Fcompare_buffer_substrings): Use case-table.
|
|
86 * inline.c: Include casetab.h
|
|
87 * lisp.h: Remove bogus extern.
|
|
88 * lrecord.h (lrecord_type): Add lrecord_type_case_table.
|
|
89 * search.c: Include casetab.h
|
|
90 (TRANSLATE_ASCII): Removed.
|
|
91 (TRANSLATE): Unconditionally translate character.
|
|
92 (looking_at_1): Use case-table.
|
|
93 (string_match_1): Ditto.
|
|
94 (fast_string_match): Ditto.
|
|
95 (search_command): Ditto.
|
|
96 (search_buffer): Separate boyer_moore. Check whether
|
|
97 boyer_moore is poosible.
|
|
98 (simple_search): New function.
|
|
99 (boyer_moore): Separated from search_buffer. Translate char.
|
|
100
|
|
101 2000-11-24 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
102
|
|
103 * regex.c (RE_TR_ASCII): Removed.
|
|
104 (RE_TRANSLATE): Unconditionally use TRT_TABLE.
|
|
105 (PATFETCH): Call PATFETCH_RAW.
|
|
106 (PATFETCH_RAW): Fetch Emchar.
|
|
107 (PATUNFETCH): Decrement charptr.
|
|
108 (GET_BUFFER_SPACE): Rename b to buf_end.
|
|
109 (BUF_PUSH): Ditto.
|
|
110 (BUF_PUSH_2): Ditto.
|
|
111 (BUF_PUSH_3): Ditto.
|
|
112 (EXTEND_BUFFER): Ditto.
|
|
113 (SET_LIST_BIT): Ditto.
|
|
114 (regex_compile): Ditto. Translate non ASCII char.
|
|
115 (compile_range): Ditto.
|
|
116 (re_search_2): Ditto.
|
|
117 (re_match_2_internal): Compare Emchar.
|
|
118 (bcmp_translate): Ditto.
|
|
119
|
|
120 2000-11-29 Stephen J. Turnbull <turnbull@xemacs.org>
|
|
121
|
|
122 * lisp.h (basic char/int typedefs): comment improvement.
|
|
123
|
|
124 2000-11-24 Stephen J. Turnbull <turnbull@xemacs.org>
|
|
125
|
|
126 * emacs.c (main_1): unconditional pdump unstomping; don't save and
|
|
127 unstomp inhibit_site_lisp. Improve comments.
|
|
128
|
|
129 2000-11-22 Stephen J. Turnbull <turnbull@xemacs.org>
|
|
130
|
|
131 * mule-charset.c (Fcharset_property): improve type checking, comments.
|
|
132
|
|
133 2000-11-28 Andy Piper <andy@xemacs.org>
|
|
134
|
|
135 * redisplay-output.c (redisplay_output_subwindow): make sure we do
|
|
136 clipped display for windows in the gutter also.
|
|
137 (redisplay_display_boxes_in_window_p): change semantics of return
|
|
138 codes to be more intuitive.
|
|
139
|
|
140 * gutter.h: declare display_boxes_in_gutter_p.
|
|
141
|
|
142 * gutter.c (display_boxes_in_gutter_p): new function for
|
|
143 redisplay.
|
|
144
|
|
145 2000-11-22 Andy Piper <andy@xemacs.org>
|
|
146
|
|
147 * glyphs-x.c (image_instantiator_format_create_glyphs_x): change
|
|
148 autodetect domain.
|
|
149
|
|
150 2000-11-21 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
151
|
|
152 * callproc.c (Fold_call_process_internal):
|
|
153 * gpm.c (Freceive_gpm_event):
|
|
154 (tty_get_foreign_selection): Might be just warning supression.
|
|
155 * fileio.c (Fwrite_region_internal):
|
|
156 (Fset_visited_file_modtime):
|
|
157 * keymap.c (event_matches_key_specifier_p):
|
|
158 Initialize GCPROed variable.
|
|
159
|
|
160 * menubar-x.c (command_builder_find_menu_accelerator):
|
|
161 Initialize before use.
|
|
162
|
|
163 2000-11-23 Andy Piper <andy@xemacs.org>
|
|
164
|
|
165 * unexcw.c (unexec): make the resulting executable executable.
|
|
166
|
|
167 2000-11-21 Martin Buchholz <martin@xemacs.org>
|
|
168
|
|
169 * doc.c (get_doc_string):
|
|
170 Use size_t, not int, for result of XSTRING_LENGTH.
|
|
171
|
|
172 * cmds.c (Fdelete_char):
|
|
173 * cmds.c (Fpoint_at_eol):
|
|
174 * cmds.c (Fself_insert_command):
|
|
175 Use EMACS_INT, not int, for result of XINT.
|
|
176 Someday, someone will want to insert more than 2**31 identical characters.
|
|
177
|
|
178 * cmds.c (Fdelete_char):
|
|
179 * cmds.c (Fdelete_backward_char):
|
|
180 * syntax.c (Fforward_word):
|
|
181 * syntax.c (Fforward_comment):
|
|
182 Make COUNT argument optional, for consistency with forward-char et al.
|
|
183
|
|
184 2000-11-22 Martin Buchholz <martin@xemacs.org>
|
|
185
|
|
186 * lisp.h:
|
|
187 * print.c (long_to_string):
|
|
188 Return a useful value: the pointer at end of data written.
|
|
189
|
|
190 * doprnt.c:
|
|
191 Use `static const char * const' for constant strings.
|
|
192 (union printf_arg): Delete `i', `ui' members.
|
|
193 (get_doprnt_args):
|
|
194 (emacs_doprnt_1):
|
|
195 Fix LP64 platform bug: (format "%d" most-positive-fixnum) ==> "-1"
|
|
196 Do all printf-ing via the `l' specifier.
|
|
197 Use EMACS_INT instead of int.
|
|
198 Optimize.
|
|
199
|
|
200 2000-11-20 Didier Verna <didier@xemacs.org>
|
|
201
|
|
202 * faces.c (update_face_cachel_data): don't frob the background
|
|
203 pixmap when the window is being created. The face is needed but
|
|
204 does not exist yet.
|
|
205
|
|
206 2000-11-20 Andy Piper <andy@xemacs.org>
|
|
207
|
|
208 * unexcw.c (copy_executable_and_dump_data_section): Only do bss
|
|
209 messing with a debug environment.
|
|
210
|
|
211 2000-11-20 Martin Buchholz <martin@xemacs.org>
|
|
212
|
|
213 * emacs.c (__sti__iflPNGFile_c___): Pedantically correct prototype.
|
|
214
|
|
215 2000-11-20 Martin Buchholz <martin@xemacs.org>
|
|
216
|
|
217 * casetab.c (Fcase_table_p): Fix compile error and crash.
|
|
218
|
|
219 2000-11-18 Philip Aston <philipa@mail.com>
|
|
220
|
|
221 * s/cygwin32.h: Cygwin has SVR4-like pty support.
|
|
222
|
|
223 2000-11-18 Martin Buchholz <martin@xemacs.org>
|
|
224
|
|
225 * fileio.c (Fexpand_file_name): GCPRO bug! Protect `handler'.
|
|
226 * filelock.c (lock_file): GCPRO bug! Initialize all GCPROed vars!
|
|
227
|
|
228 2000-11-17 Martin Buchholz <martin@xemacs.org>
|
|
229
|
|
230 * config.h.in: Define HAVE_ELF_H if elf.h exists.
|
|
231 * unexelf.c: Use HAVE_ELF_H.
|
|
232 * unexelfsgi.c: Fix bug with dumped xemacs stdout/stderr not working.
|
|
233 I copied FSF Emacs 20.7 unexelf.c to unexelfsgi.c and ANSIfied it.
|
|
234 Max Matveev <makc@sgi.com> removed non-SGI-relevant parts and tested.
|
|
235 Greg Harrington <greg_harrington@hotmail.com> provided a machine
|
|
236 for testing.
|
|
237 So this is an unexelfsgi.c from a different line of development.
|
|
238
|
|
239 2000-11-16 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
240
|
|
241 * regex.c (RE_TR_ASCII): New function.
|
|
242 (RE_TRANSLATE): Call it.
|
|
243
|
|
244 2000-11-16 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
245
|
|
246 * buffer.h (TRT_TABLE_OF): Remove assert.
|
|
247 (IN_TRT_TABLE_DOMAIN): Removed.
|
|
248
|
|
249 2000-11-16 Gunnar Evermann <ge204@eng.cam.ac.uk>
|
|
250
|
|
251 * free-hook.c (log_gcpro):
|
|
252 (show_gcprohist): Add support for GCPRO5.
|
|
253
|
|
254 2000-11-08 Stephen J. Turnbull <stephen@xemacs.org>
|
|
255
|
|
256 * emacs.c (main_1): Improve -sd error message when --pdump=no.
|
|
257
|
|
258 2000-11-16 Olivier Galibert <galibert@xemacs.org>
|
|
259
|
|
260 * symeval.h: Declare flush_all_buffer_local_cache.
|
|
261
|
|
262 * symbols.c: Change XD_LO_RESET_NIL into XD_LISP_OBJECTs.
|
|
263 (flush_buffer_local_cache): Added.
|
|
264 (flush_all_buffer_local_cache): Added.
|
|
265
|
|
266 * lrecord.h: Remove unused XD_LO_RESET_NIL.
|
|
267
|
|
268 * dumper.c (pdump_register_sub): Remove unused XD_LO_RESET_NIL.
|
|
269 (pdump_dump_data): Ditto.
|
|
270 (pdump_reloc_one): Ditto.
|
|
271 (pdump): Remove unused pdump_qnil. Flush buffer local caches
|
|
272 before dumping.
|
|
273
|
|
274
|
|
275 2000-11-14 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
276
|
|
277 * buffer.c: Remove if 0'ed entry.
|
|
278 * buffer.h: Rewrite TRT to use char-table.
|
|
279 * bufslots.h: Remove mirror tables.
|
|
280 * casetab.c: Remove mirror tables.
|
|
281 (CASE_TABLE_P): New macro.
|
|
282 (Fcase_table_p): Element of a case table is string or char-table.
|
|
283 (make_mirror_trt_table): Removed.
|
|
284 (set_case_table): Setup char-table from strings for backward
|
|
285 compatibility.
|
|
286 * dired.c (Fdirectory_files):
|
|
287 * dired-msw.c: (mswindows_get_files):
|
|
288 * lisp.h: Change prototype of re_pattern_buffer.
|
|
289 * regex.c: (RE_TRANSLATE): New macro.
|
|
290 (TRANSLATE_P): Ditto.
|
|
291 Change translate to type RE_TRANSLATE_TYPE.
|
|
292 * regex.h: Define RE_TRANSLATE_TYPE
|
|
293 * search.c (TRANSLATE): New macro.
|
|
294 (TRANSLATE_ASCII): New macro.
|
|
295 Translate table is changed to Lisp_Object.
|
|
296 (signal_failure): Inhibit return.
|
|
297
|
|
298 2000-11-14 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
299
|
|
300 * device-msw.c:
|
|
301 * eldap.c:
|
|
302 * event-Xt.c:
|
|
303 * event-stream.c:
|
|
304 * print.c:
|
|
305 Do UNGCPRO before return.
|
|
306
|
444
|
307 2000-11-14 Martin Buchholz <martin@xemacs.org>
|
|
308
|
|
309 * XEmacs 21.2.37 is released.
|
|
310
|
|
311 2000-11-13 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
312
|
|
313 * fileio.c (Finsert_file_contents_internal): UNGCPRO before return.
|
|
314 Add comments about discarded return value.
|
|
315
|
|
316 2000-11-09 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
317
|
|
318 * callint.c:
|
|
319 * event-stream.c: Fix comments. Remove some #if 0'ed part.
|
|
320
|
|
321 2000-10-27 Andy Piper <andy@xemacs.org>
|
|
322
|
|
323 * gutter.c (Fset_default_gutter_position): default left and right
|
|
324 gutters to visible.
|
|
325 (calculate_gutter_size): calculate resonable heuristic for left
|
|
326 and right gutter sizes.
|
|
327 (specifier_vars_of_gutter): change left and right gutter sizes to
|
|
328 autodetect.
|
|
329 (calculate_gutter_size_from_display_lines): new function.
|
|
330 (output_gutter): check for resizing on left and right gutters.
|
|
331 (clear_gutter): don't special case top and left gutters.
|
|
332 (specifier_vars_of_gutter): use new signature for
|
|
333 set_specifier_caching.
|
|
334
|
|
335 * glyphs-x.c (x_redisplay_widget): spelling fix.
|
|
336 * glyphs.c (specifier_vars_of_glyphs):
|
|
337 * menubar.c (specifier_vars_of_menubar):
|
|
338 * redisplay.c (specifier_vars_of_redisplay):
|
|
339 * toolbar.c (specifier_vars_of_toolbar):
|
|
340 * window.c (specifier_vars_of_window):
|
|
341 * scrollbar.c (specifier_vars_of_scrollbar):
|
|
342 (complex_vars_of_scrollbar): use new signature for
|
|
343 set_specifier_caching.
|
|
344
|
|
345 * specifier.c (set_specifier_caching): include recompute flag.
|
|
346 (recompute_one_cached_specifier_in_window): always recompute if
|
|
347 flag set.
|
|
348 (recompute_one_cached_specifier_in_frame): ditto.
|
446
|
349
|
444
|
350 * specifier.h (struct specifier_caching): add recompute flag.
|
|
351
|
|
352 2000-10-24 Andy Piper <andy@xemacs.org>
|
|
353
|
|
354 * unexcw.c (copy_executable_and_dump_data_section): add new
|
|
355 BSS_PAD_SIZE so that we can re-instate a mini-bss. This keeps gdb
|
|
356 5.0 happy.
|
|
357
|
|
358 2000-11-06 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
359
|
|
360 * console-x.h (x_device): New member modifier_release_time.
|
|
361 * event-Xt.c (x_handle_sticky_modifiers):
|
|
362 Bound interval modifier keys are sticky.
|
|
363 * event-stream.c (Vmodifier_keys_sticky_time): New variable.
|
|
364 * events.h: extern it.
|
|
365
|
|
366 2000-11-06 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
367
|
|
368 * cmdloop.c (Fcommand_loop_1): Just add C-g to event queue.
|
|
369
|
|
370 2000-11-06 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
371
|
|
372 * event-stream.c (execute_command_event): Preserve current_events
|
|
373 and the like when event is misc-user-event.
|
|
374 Inhibit quit during the call to maybe_echo_keys.
|
|
375
|
|
376 2000-10-31 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
377
|
|
378 * filelock.c (lock_buffer): Cope with kill-buffer. Don't create a
|
|
379 symlink when buffer is killed.
|
|
380 (inhibit_clash_detection): New variable.
|
|
381
|
|
382 2000-10-30 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
383
|
|
384 * console.c (Fset_input_method): Trigger redisplay on tty.
|
|
385
|
|
386 2000-11-07 Martin Buchholz <martin@xemacs.org>
|
|
387
|
|
388 * process.c (Fprocess_status): Revert to previous behavior:
|
|
389 (process-status "nosuchprocess") ==> nil
|
|
390
|
|
391 2000-11-06 Martin Buchholz <martin@xemacs.org>
|
|
392
|
|
393 * mule-charset.h (CHARSET_BY_LEADING_BYTE):
|
|
394 Work around another GCC 2.95.2 optimizer bug.
|
|
395
|
|
396 2000-11-02 Martin Buchholz <martin@xemacs.org>
|
|
397
|
|
398 * process.c (Fget_process): Use LIST_LOOP_2.
|
|
399 (kill_buffer_processes): Use LIST_LOOP_2.
|
|
400
|
|
401 * minibuf.c (Fall_completions):
|
|
402 Delete old non-functional code for FSF fourth argument.
|
|
403
|
446
|
404 * frame.c (frame_matches_frame_spec):
|
444
|
405 Renamed from `frame_matches_frametype'. Update all callers.
|
446
|
406 (device_matches_device_spec):
|
444
|
407 Renamed from 'device_matches_console_spec'. Update all callers.
|
|
408
|
|
409 * doc.c (Fsubstitute_command_keys):
|
|
410 Remove buffer overflow crash. Small code cleanups.
|
|
411
|
|
412 * casetab.c (check_case_table): Simpler code.
|
|
413
|
|
414 * window.c (Freplace_buffer_in_windows):
|
446
|
415 Give this the same WHICH-FRAMES and WHICH-DEVICES parameters
|
444
|
416 (and similar implementation) as Fdelete_windows_on.
|
|
417 Update all callers.
|
|
418
|
|
419 * alloc.c (Fmake_list):
|
|
420 * alloc.c (make_vector):
|
|
421 * alloc.c (Fmake_vector):
|
|
422 * alloc.c (make_bit_vector):
|
|
423 * alloc.c (Fmake_bit_vector):
|
|
424 * alloc.c (Fbit_vector):
|
|
425 * alloc.c (Fmake_string):
|
|
426 * alloc.c (Fpurecopy):
|
|
427 * alloc.c (Fmemory_limit):
|
|
428 * buffer.c:
|
|
429 * buffer.c (Fget_buffer):
|
|
430 * buffer.c (Fkill_buffer):
|
|
431 * buffer.c (complex_vars_of_buffer):
|
|
432 * bytecode.c (Fcompiled_function_stack_depth):
|
|
433 * callint.c (Fprefix_numeric_value):
|
|
434 * event-stream.c:
|
|
435 * event-stream.c (Fread_key_sequence):
|
|
436 * casetab.c:
|
|
437 * casetab.c (Fcase_table_p):
|
|
438 * casetab.c (check_case_table):
|
|
439 * casetab.c (Fset_case_table):
|
|
440 * casetab.c (Fset_standard_case_table):
|
|
441 * chartab.c:
|
|
442 * chartab.c (Fchar_table_type):
|
|
443 * chartab.c (Freset_char_table):
|
|
444 * chartab.c (Fget_char_table):
|
|
445 * chartab.c (Fget_range_char_table):
|
|
446 * chartab.c (Fput_char_table):
|
|
447 * chartab.c (Fmap_char_table):
|
|
448 * chartab.c (Fcategory_table_p):
|
|
449 * chartab.c (Fcheck_category_at):
|
|
450 * chartab.c (Fchar_in_category_p):
|
|
451 * chartab.c (Fcategory_table):
|
|
452 * chartab.c (Fcopy_category_table):
|
|
453 * chartab.c (Fset_category_table):
|
|
454 * chartab.c (Fcategory_designator_p):
|
|
455 * chartab.c (Fcategory_table_value_p):
|
|
456 * cmds.c (Fdelete_char):
|
|
457 * cmds.c (Fdelete_backward_char):
|
|
458 * cmds.c (Fself_insert_command):
|
|
459 * cmds.c (Fself_insert_internal):
|
|
460 * console.c (Fvalid_console_type_p):
|
|
461 * console.c (Fcdfw_console):
|
|
462 * console.c (Fconsole_type):
|
|
463 * console.c (Fconsole_name):
|
|
464 * console.c (Fconsole_device_list):
|
|
465 * console.c (Fconsole_on_window_system_p):
|
|
466 * data.c:
|
|
467 * data.c (Feq):
|
|
468 * data.c (Fold_eq):
|
|
469 * data.c (Fsubr_interactive):
|
|
470 * data.c (Fchar_to_int):
|
|
471 * data.c (Fint_to_char):
|
|
472 * data.c (Fsetcar):
|
|
473 * data.c (Fsetcdr):
|
|
474 * data.c (Fnumber_to_string):
|
|
475 * data.c (Fstring_to_number):
|
|
476 * data.c (Frem):
|
|
477 * database.c (mark_database):
|
|
478 * database.c (finalize_database):
|
|
479 * database.c (Fdatabase_live_p):
|
|
480 * database.c (Fdatabasep):
|
|
481 * device-x.c (Fx_get_resource):
|
|
482 * device.c (Fdfw_device):
|
|
483 * dired.c:
|
|
484 * dired.c (Ffile_name_completion):
|
|
485 * dired.c (Ffile_name_all_completions):
|
|
486 * dired.c (Fuser_name_completion):
|
|
487 * dired.c (Fuser_name_completion_1):
|
|
488 * dired.c (Fuser_name_all_completions):
|
|
489 * doc.c (Fdocumentation):
|
|
490 * doc.c (Fdocumentation_property):
|
|
491 * doc.c (Fsubstitute_command_keys):
|
|
492 * editfns.c:
|
|
493 * editfns.c (Fchar_to_string):
|
|
494 * editfns.c (Fstring_to_char):
|
|
495 * editfns.c (Ftemp_directory):
|
|
496 * editfns.c (Finsert_char):
|
|
497 * editfns.c (Fbuffer_substring_no_properties):
|
|
498 * editfns.c (Fnarrow_to_region):
|
|
499 * editfns.c (Fchar_equal):
|
|
500 * editfns.c (Fchar_Equal):
|
|
501 * editfns.c (Ftranspose_regions):
|
|
502 * emacs.c (Fdump_emacs):
|
|
503 * eval.c (Fthrow):
|
|
504 * eval.c (Fcommand_execute):
|
|
505 * eval.c (Fautoload):
|
|
506 * eval.c (Fbacktrace):
|
|
507 * eval.c (Fbacktrace_frame):
|
|
508 * events.c:
|
|
509 * events.c (Fcopy_event):
|
|
510 * events.c (Fcharacter_to_event):
|
|
511 * events.c (Fevent_button):
|
|
512 * events.c (Fevent_process):
|
|
513 * extents.c:
|
|
514 * extents.c (Fnext_extent_change):
|
|
515 * extents.c (Fextent_property):
|
|
516 * faces.c (Ffacep):
|
|
517 * faces.c (Fmake_face):
|
|
518 * file-coding.c:
|
|
519 * file-coding.c (Fencode_shift_jis_char):
|
|
520 * file-coding.c (Fencode_big5_char):
|
|
521 * fileio.c (Ffile_name_directory):
|
|
522 * fileio.c (Ffile_name_nondirectory):
|
|
523 * fileio.c (Ffile_name_as_directory):
|
|
524 * fileio.c (Fdirectory_file_name):
|
|
525 * fileio.c (Ffile_truename):
|
|
526 * fileio.c (Fsubstitute_in_file_name):
|
|
527 * fileio.c (Ffile_modes):
|
|
528 * fileio.c (Fset_file_modes):
|
|
529 * fileio.c (Fset_default_file_modes):
|
|
530 * fileio.c (Fverify_visited_file_modtime):
|
|
531 * floatfns.c (Facos):
|
|
532 * floatfns.c (Fasin):
|
|
533 * floatfns.c (Fatan):
|
|
534 * floatfns.c (Fcos):
|
|
535 * floatfns.c (Fsin):
|
|
536 * floatfns.c (Ftan):
|
|
537 * floatfns.c (Fbessel_j0):
|
|
538 * floatfns.c (Fbessel_j1):
|
|
539 * floatfns.c (Fbessel_jn):
|
|
540 * floatfns.c (Fbessel_y0):
|
|
541 * floatfns.c (Fbessel_y1):
|
|
542 * floatfns.c (Fbessel_yn):
|
|
543 * floatfns.c (Ferf):
|
|
544 * floatfns.c (Ferfc):
|
|
545 * floatfns.c (Flog_gamma):
|
|
546 * floatfns.c (Fexp):
|
|
547 * floatfns.c (Fexpt):
|
|
548 * floatfns.c (Flog):
|
|
549 * floatfns.c (Flog10):
|
|
550 * floatfns.c (Fsqrt):
|
|
551 * floatfns.c (Fcube_root):
|
|
552 * floatfns.c (Facosh):
|
|
553 * floatfns.c (Fasinh):
|
|
554 * floatfns.c (Fatanh):
|
|
555 * floatfns.c (Fcosh):
|
|
556 * floatfns.c (Fsinh):
|
|
557 * floatfns.c (Ftanh):
|
|
558 * floatfns.c (Fabs):
|
|
559 * floatfns.c (Ffloat):
|
|
560 * floatfns.c (Flogb):
|
|
561 * floatfns.c (Fceiling):
|
|
562 * floatfns.c (Ffloor):
|
|
563 * floatfns.c (Fround):
|
|
564 * floatfns.c (Ftruncate):
|
|
565 * floatfns.c (Ffceiling):
|
|
566 * floatfns.c (Fffloor):
|
|
567 * floatfns.c (Ffround):
|
|
568 * floatfns.c (Fftruncate):
|
|
569 * fns.c (Fstring_equal):
|
|
570 * fns.c (Fstring_lessp):
|
|
571 * fns.c (concat2):
|
|
572 * fns.c (concat3):
|
|
573 * fns.c (vconcat2):
|
|
574 * fns.c (vconcat3):
|
|
575 * fns.c (Fsubstring):
|
|
576 * fns.c (Fassoc):
|
|
577 * fns.c (Fold_assoc):
|
|
578 * fns.c (assoc_no_quit):
|
|
579 * fns.c (Fassq):
|
|
580 * fns.c (Fold_assq):
|
|
581 * fns.c (assq_no_quit):
|
|
582 * fns.c (Frassoc):
|
|
583 * fns.c (Fold_rassoc):
|
|
584 * fns.c (Frassq):
|
|
585 * fns.c (Fold_rassq):
|
|
586 * fns.c (rassq_no_quit):
|
|
587 * fns.c (Fremassoc):
|
|
588 * fns.c (remassoc_no_quit):
|
|
589 * fns.c (Fremassq):
|
|
590 * fns.c (remassq_no_quit):
|
|
591 * fns.c (Fremrassoc):
|
|
592 * fns.c (Fremrassq):
|
|
593 * fns.c (remrassq_no_quit):
|
|
594 * fns.c (Fsort):
|
|
595 * fns.c (Fplist_get):
|
|
596 * fns.c (Fplist_put):
|
|
597 * fns.c (Fplist_remprop):
|
|
598 * fns.c (Fplist_member):
|
|
599 * fns.c (Flax_plist_get):
|
|
600 * fns.c (Flax_plist_put):
|
|
601 * fns.c (Flax_plist_remprop):
|
|
602 * fns.c (Flax_plist_member):
|
|
603 * fns.c (Fequal):
|
|
604 * fns.c (Fold_equal):
|
|
605 * fns.c (Frequire):
|
|
606 * fns.c (Fbase64_encode_region):
|
|
607 * fns.c (Fbase64_encode_string):
|
|
608 * fns.c (Fbase64_decode_region):
|
|
609 * frame.c:
|
|
610 * frame.c (frame_matches_frame_spec):
|
|
611 * frame.c (device_matches_device_spec):
|
|
612 * frame.c (next_frame):
|
|
613 * frame.c (previous_frame):
|
|
614 * frame.c (Fnext_frame):
|
|
615 * frame.c (Fprevious_frame):
|
|
616 * frame.c (Fframe_property):
|
|
617 * frame.c (Fset_frame_height):
|
|
618 * frame.c (Fset_frame_size):
|
|
619 * frame.h:
|
|
620 * glyphs.c:
|
|
621 * glyphs.c (if):
|
|
622 * glyphs.c (decode_error_behavior_flag):
|
|
623 * glyphs.c (Fmake_image_instance):
|
|
624 * indent.c (Findent_to):
|
|
625 * intl.c (Fignore_defer_gettext):
|
|
626 * keymap.c (Fkeymapp):
|
|
627 * keymap.c (Flookup_key):
|
|
628 * lread.c:
|
|
629 * lread.c (Fload_internal):
|
|
630 * lread.c (Feval_buffer):
|
|
631 * lread.c (Feval_region):
|
|
632 * macros.c (Fexecute_kbd_macro):
|
|
633 * marker.c (set_marker_internal):
|
|
634 * marker.c (Fset_marker):
|
|
635 * marker.c (set_marker_restricted):
|
|
636 * marker.c (Fcopy_marker):
|
|
637 * marker.c (noseeum_copy_marker):
|
|
638 * menubar.c:
|
|
639 * menubar.c (Fpopup_menu):
|
|
640 * minibuf.c:
|
|
641 * mule-charset.c (Fcharset_name):
|
|
642 * mule-charset.c (Fchar_charset):
|
|
643 * mule-charset.c (Fchar_octet):
|
|
644 * mule-charset.c (Fsplit_char):
|
|
645 * mule-wnnfns.c (Fwnn_open):
|
|
646 * mule-wnnfns.c (Fwnn_dict_comment):
|
|
647 * mule-wnnfns.c (Fwnn_quit_henkan):
|
|
648 * mule-wnnfns.c (Fwnn_word_toroku):
|
|
649 * mule-wnnfns.c (Fwnn_word_sakujo):
|
|
650 * mule-wnnfns.c (Fwnn_word_use):
|
|
651 * mule-wnnfns.c (Fwnn_hindo_set):
|
|
652 * objects.c:
|
|
653 * objects.c (Fmake_color_instance):
|
|
654 * objects.c (Fmake_font_instance):
|
|
655 * print.c (Fwrite_char):
|
|
656 * process.c:
|
|
657 * process.c (mark_process):
|
|
658 * process.c (print_process):
|
|
659 * process.c (get_process_from_usid):
|
|
660 * process.c (Fprocessp):
|
|
661 * process.c (Fprocess_live_p):
|
|
662 * process.c (Fget_process):
|
|
663 * process.c (Fget_buffer_process):
|
|
664 * process.c (get_process):
|
|
665 * process.c (Fprocess_id):
|
|
666 * process.c (Fprocess_name):
|
|
667 * process.c (Fprocess_command):
|
|
668 * process.c (init_process_io_handles):
|
|
669 * process.c (start_process_unwind):
|
|
670 * process.c (Fstart_process_internal):
|
|
671 * process.c (Fopen_multicast_group_internal):
|
|
672 * process.c (Fset_process_window_size):
|
|
673 * process.c (read_process_output):
|
|
674 * process.c (send_process):
|
|
675 * process.c (Fprocess_tty_name):
|
|
676 * process.c (Fset_process_buffer):
|
|
677 * process.c (Fprocess_buffer):
|
|
678 * process.c (Fprocess_mark):
|
|
679 * process.c (set_process_filter):
|
|
680 * process.c (Fset_process_filter):
|
|
681 * process.c (Fprocess_filter):
|
|
682 * process.c (Fprocess_send_region):
|
|
683 * process.c (Fprocess_send_string):
|
|
684 * process.c (exec_sentinel):
|
|
685 * process.c (Fset_process_sentinel):
|
|
686 * process.c (Fprocess_sentinel):
|
|
687 * process.c (status_notify):
|
|
688 * process.c (Fprocess_status):
|
|
689 * process.c (Fprocess_exit_status):
|
|
690 * process.c (process_send_signal):
|
|
691 * process.c (Fprocess_send_eof):
|
|
692 * process.c (deactivate_process):
|
|
693 * process.c (remove_process):
|
|
694 * process.c (Fdelete_process):
|
|
695 * process.c (kill_buffer_processes):
|
|
696 * process.c (Fprocess_kill_without_query):
|
|
697 * process.c (Fprocess_kill_without_query_p):
|
|
698 * rangetab.c:
|
|
699 * rangetab.c (Fget_range_table):
|
|
700 * rangetab.c (Fput_range_table):
|
|
701 * rangetab.c (Fremove_range_table):
|
|
702 * rangetab.c (Fclear_range_table):
|
|
703 * search.c:
|
|
704 * search.c (Fskip_chars_forward):
|
|
705 * search.c (Fskip_chars_backward):
|
|
706 * search.c (Fskip_syntax_forward):
|
|
707 * search.c (Fskip_syntax_backward):
|
|
708 * search.c (search_command):
|
|
709 * search.c (Freplace_match):
|
|
710 * search.c (Fregexp_quote):
|
|
711 * select.c (Fown_selection_internal):
|
|
712 * select.c (Fselection_owner_p):
|
|
713 * select.c (Fselection_exists_p):
|
|
714 * select.c (Fget_selection_internal):
|
|
715 * specifier.c:
|
|
716 * symbols.c:
|
|
717 * symbols.c (Fintern):
|
|
718 * symbols.c (Fintern_soft):
|
|
719 * symbols.c (Funintern):
|
|
720 * symbols.c (Fapropos_internal):
|
|
721 * symbols.c (Fset_default):
|
|
722 * syntax.c:
|
|
723 * syntax.c (Fsyntax_table_p):
|
|
724 * syntax.c (Fcopy_syntax_table):
|
|
725 * syntax.c (Fset_syntax_table):
|
|
726 * syntax.c (Fchar_syntax):
|
|
727 * syntax.c (syntax_match):
|
|
728 * syntax.c (Fmatching_paren):
|
|
729 * syntax.c (Fforward_word):
|
|
730 * syntax.c (scan_lists):
|
|
731 * syntax.c (Fscan_lists):
|
|
732 * syntax.c (Fscan_sexps):
|
|
733 * syntax.c (Fparse_partial_sexp):
|
|
734 * toolbar.c (Fcheck_toolbar_button_syntax):
|
|
735 * tooltalk.doc:
|
|
736 * window.c:
|
|
737 * window.c (Fwindowp):
|
|
738 * window.c (Fwindow_live_p):
|
|
739 * window.c (Fwindow_point):
|
|
740 * window.c (Fdelete_window):
|
|
741 * window.c (Fnext_window):
|
|
742 * window.c (Fprevious_window):
|
|
743 * window.c (Fother_window):
|
|
744 * window.c (window_loop):
|
|
745 * window.c (Fget_lru_window):
|
|
746 * window.c (Fsplit_window):
|
|
747 * window.c (Fenlarge_window):
|
|
748 * window.c (Fenlarge_window_pixels):
|
|
749 * window.c (Fshrink_window):
|
|
750 * window.c (Fshrink_window_pixels):
|
|
751 * window.c (change_window_height):
|
|
752 * window.c (Fwindow_configuration_p):
|
|
753 * window.c (Fcurrent_window_configuration):
|
|
754 * window.h:
|
|
755 * casefiddle.c (casify_object):
|
|
756 * casefiddle.c (Fupcase):
|
|
757 * casefiddle.c (Fdowncase):
|
|
758 * casefiddle.c (Fcapitalize):
|
|
759 * casefiddle.c (Fupcase_initials):
|
|
760 * casefiddle.c (casify_region_internal):
|
|
761 * casefiddle.c (casify_region):
|
|
762 * casefiddle.c (Fupcase_region):
|
|
763 * casefiddle.c (Fdowncase_region):
|
|
764 * casefiddle.c (Fcapitalize_region):
|
|
765 * casefiddle.c (Fupcase_initials_region):
|
|
766 * casefiddle.c (Fupcase_word):
|
|
767 * casefiddle.c (Fdowncase_word):
|
|
768 * casefiddle.c (Fcapitalize_word):
|
|
769 Docstring arglist/Texinfo fixes. See man/ChangeLog for details.
|
|
770 Replace 0 with '\0' when working with bytes.
|
|
771 Replace initial "(" with "\(" in docstrings.
|
|
772
|
|
773 2000-11-01 Martin Buchholz <martin@xemacs.org>
|
|
774
|
|
775 * config.h.in: Handle alloca with Compaq C on Alpha Linux.
|
|
776
|
|
777 * m/alpha.h: Let configure handle SYSTEM_MALLOC on Linux.
|
|
778
|
|
779 2000-10-31 Martin Buchholz <martin@xemacs.org>
|
|
780
|
|
781 * eldap.c (print_ldap): 64-bit cleaner. Fixes warning.
|
|
782
|
|
783 2000-10-30 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
784
|
|
785 * doprnt.c (emacs_do_prnt_1): Format (format "%01.2d" 10)
|
|
786 correctly.
|
|
787
|
|
788 2000-10-30 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
789
|
|
790 * fileio.c (Vauto_save_list_file_prefix): Moved from startup.el.
|
|
791 (inhibit_auto_save_session): New variable.
|
|
792 (vars_of_fileio): Declare and initialize them.
|
|
793 * fileio.c (Fdo_auto_save): Don't create session file if
|
|
794 Vinhibit_auto_save_session or Vauto_save_list_file_prefix is non-nil.
|
|
795
|
|
796 2000-10-31 Martin Buchholz <martin@xemacs.org>
|
|
797
|
|
798 * sgiplay.c (play_internal): C++ compilability.
|
|
799 * alloc.c (SWEEP_FIXED_TYPE_BLOCK): Remove unused var `SFTB_prev'.
|
446
|
800 * callproc.c (Fold_call_process_internal):
|
444
|
801 Remove unused vars `env', `first'.
|
446
|
802 * scrollbar.c (update_scrollbar_instance):
|
444
|
803 #### unused var `current_window'.
|
|
804 * redisplay-tty.c: Put currently unused vars insert_mode_on,
|
|
805 etc. within #ifdef NOT_YET.
|
|
806 * emacs.c: #### unused vars `initial_argc', `initial_argv'.
|
|
807 * dialog-x.c (dbox_descriptor_to_widget_value): ### unused var `title'.
|
446
|
808 * specifier.c (specifier_instance):
|
444
|
809 #### unused var `tag'.
|
|
810 Use WINDOW_BUFFER, FRAME_DEVICE instead of their expansion.
|
|
811
|
|
812 2000-10-27 Martin Buchholz <martin@xemacs.org>
|
|
813
|
|
814 * fns.c (Fbutlast):
|
|
815 * fns.c (list_sort):
|
|
816 * fns.c (Ffillarray):
|
|
817 * fns.c (bytecode_nconc2):
|
|
818 * fns.c (Fnconc):
|
|
819 * fns.c (mapcar1):
|
|
820 * fns.c (Fmapconcat):
|
|
821 Be pedantically 64-bit correct. For the time when someone will
|
|
822 want to have a list with length > 2**32.
|
|
823
|
|
824 * lisp.h (PRIVATE_EXTERNAL_LIST_LOOP_6):
|
|
825 Work around MIPSpro compiler bug.
|
|
826
|
|
827 * process-unix.c (unix_kill_child_process): Add snarky comment.
|
|
828 * process-unix.c (try_to_initialize_subtty): Oops, `=' ==> `=='
|
|
829
|
|
830 * config.h.in: Oops, _getpt ==> _getpty
|
|
831
|
|
832 2000-10-26 Martin Buchholz <martin@xemacs.org>
|
|
833
|
|
834 * config.h.in:
|
|
835 * regex.c:
|
|
836 Use void*, not char*, as return type of alloca().
|
|
837
|
|
838 * alloc.c (free_marker): Side effect inside assert expression!
|
|
839
|
|
840 2000-10-16 MIYASHITA Hisashi <himi@m17n.org>
|
|
841
|
|
842 * mule-charset.c (Fset_charset_ccl_program): To check
|
|
843 if the given ccl program is valid, use setup_ccl_program()
|
|
844 instead of CHECK_VECTOR().
|
|
845 (Fmake_charset): Likewise.
|
|
846
|
|
847 2000-10-20 Golubev I. N. <gin@mo.msk.ru>
|
|
848
|
|
849 * faces.c (get_extent_fragment_face_cache_index):
|
|
850 Fix cachel.merged_faces memory leak.
|
|
851
|
|
852 2000-10-14 MIYASHITA Hisashi <himi@m17n.org>
|
|
853
|
|
854 * mule-ccl.c (ccl_driver)<CCL_DECODE_SJIS>:
|
|
855 Reset MSB of octets obtained by DECODE_SJIS
|
|
856 because of the incompatibility with Emacs.
|
|
857 (ccl_driver)<CCL_ENCODE_SJIS>:
|
|
858 Set MSB of octets before passing them to
|
|
859 ENCODE_SJIS because of the incompatibility
|
|
860 with Emacs.
|
|
861
|
|
862 2000-10-18 Daiki Ueno <ueno@unixuser.org>
|
|
863
|
|
864 * lrecord.h (DECLARE_TYPECHECK_LRECORD): Abolish.
|
|
865 (DECLARE_LRECORD): Undo the last change.
|
|
866 (DECLARE_EXTERNAL_LRECORD): Expand typechecking stuff.
|
|
867
|
|
868 2000-10-17 Daiki Ueno <ueno@unixuser.org>
|
|
869
|
|
870 * lrecord.h (INIT_EXTERNAL_LRECORD_IMPLEMENTATION): Connect
|
|
871 the implementation to lrecord_implementations_table.
|
|
872
|
|
873 2000-10-14 Daiki Ueno <ueno@unixuser.org>
|
|
874
|
|
875 * lrecord.h (MAKE_EXTERNAL_LRECORD_IMPLEMENTATION): Don't set the
|
|
876 initial value of `lrecord_type_##c_name' and
|
|
877 `lrecord_##c_name.lrecord_type_index'; discard "const" qualifier.
|
|
878 (INIT_EXTERNAL_LRECORD_IMPLEMENTATION): New macro.
|
|
879 [ERROR_CHECK_TYPECHECK] (DECLARE_TYPECHECK_LRECORD): New macro.
|
|
880 [ERROR_CHECK_TYPECHECK] (DECLARE_LRECORD): Use it.
|
|
881 [ERROR_CHECK_TYPECHECK] (DECLARE_EXTERNAL_LRECORD): Use it.
|
|
882
|
|
883 2000-10-17 Martin Buchholz <martin@xemacs.org>
|
|
884
|
|
885 * miscplay.c (sndcnv8S_2mono):
|
446
|
886 (sndcnv2monounsigned):
|
|
887 (sndcnvULaw_2linear):
|
|
888 (sndcnv16swap):
|
444
|
889 Remove implementation-defined behavior.
|
|
890
|
|
891 2000-10-12 Martin Buchholz <martin@xemacs.org>
|
|
892
|
|
893 * input-method-xlib.c: Warning suppression.
|
|
894
|
|
895 2000-10-05 MIYASHITA Hisashi <himi@m17n.org>
|
|
896
|
|
897 * mule-ccl.c: Sync up with Emacs 21.0.90.
|
|
898 (ccl_driver)<CCL_TranslateCharacter>: Disabled.
|
|
899 Do nothing.
|
|
900 (ccl_driver)<CCL_TranslateCharacterConstTbl>:
|
|
901 Likewise.
|
|
902 (ccl_driver[WriteMultibyteChar2]): Bug fix.
|
|
903 Use MAX_LEADING_BYTE_OFFICIAL_2 instead of
|
|
904 MIN_LEADING_BYTE_OFFICIAL_2 to check whether the
|
|
905 leading char belongs to official 2-dimensional charset.
|
|
906 (CCL_WRITE_CHAR): When CCL_MODE_ENCODING,
|
|
907 write the given character as is. Otherwise,
|
|
908 if it is a multibyte char, convert it by
|
|
909 non_ascii_set_charptr_emchar, then write it.
|
|
910 (CCL_WRITE_STRING): Likewise.
|
|
911 (ccl_get_compiled_code): New function.
|
|
912 (setup_ccl_program): When ccl_prog is invalid,
|
|
913 return -1.
|
|
914 (Fregister_code_conversion_map): New function.
|
|
915 (syms_of_mule_ccl): defsubr Fregister_code_conversion_map.
|
|
916
|
|
917 * mule-ccl.h: Sync up with Emacs 21.0.90.
|
|
918 (Fregister_ccl_program): export it.
|
|
919
|
|
920 * redisplay-msw.c (separate_textual_runs):
|
|
921 If ccl program is not valid, don't do ccl conversion.
|
|
922
|
|
923 * redisplay-x.c (separate_textual_runs): Ditto.
|
|
924
|
|
925 * file-coding.c (Fmake_coding_system):
|
|
926 When type is ccl and value is vector, register it
|
|
927 with a proper symbol. And checks whether the
|
|
928 given ccl program is valid.
|
|
929 (mule_decode): When calling ccl_driver, if src indicates
|
|
930 NULL pointer, set an empty string instead.
|
|
931 (mule_encode): Likewise.
|
|
932
|
|
933 2000-10-11 Martin Buchholz <martin@xemacs.org>
|
|
934
|
|
935 The following large batch of changes gets us back to a state of
|
|
936 C++ compilability. Extbyte is now a char, which means that
|
|
937 Extbyte * and Bufbyte * cannot be freely interchanged - a win!
|
|
938
|
|
939 * tooltalk.c (Fset_tooltalk_message_attribute): Type correctness.
|
|
940
|
|
941 * sound.c (Fplay_sound): Type correctness.
|
|
942
|
|
943 * select-x.c (hack_motif_clipboard_selection): Type correctness.
|
|
944 (x_get_window_property): Type correctness.
|
|
945 (receive_incremental_selection): unsigned char ==> Extbyte
|
|
946 (selection_data_to_lisp_data): unsigned char ==> Extbyte
|
|
947 (Fx_get_cutbuffer_internal): unsigned char ==> Extbyte
|
|
948 (Fx_store_cutbuffer_internal): Type correctness.
|
|
949
|
|
950 * process-unix.c (try_to_initialize_subtty): Type correctness.
|
|
951
|
|
952 * objects-x.c (x_print_color_instance): Type correctness.
|
|
953 (x_print_font_instance): Type correctness.
|
|
954 (x_list_fonts): SExtbyte ==> Extbyte.
|
|
955 (valid_x_font_name_p): SExtbyte ==> Extbyte.
|
|
956 (x_find_charset_font): SExtbyte ==> Extbyte.
|
|
957 Use TO_INTERNAL_FORMAT. build_string ==> make_string.
|
|
958 (truename_via_XListFonts): SExtbyte ==> Extbyte.
|
|
959 (x_font_instance_properties): Use TO_INTERNAL_FORMAT.
|
|
960 Use bufbyte_strcmp.
|
|
961
|
|
962 * mule-charset.h (LEADING_BYTE_PREFIX_P): unsigned char ==> Bufbyte
|
|
963 (PRIVATE_LEADING_BYTE_PREFIX): Add paranoia cast.
|
|
964 (BYTE_ASCII_P): Use bit ops for char-signedness safety.
|
|
965 (BYTE_C0_P): Use bit ops for char-signedness safety.
|
|
966 (BYTE_C1_P): Use bit ops for char-signedness safety.
|
446
|
967 (CHARSET_BY_LEADING_BYTE):
|
|
968 (CHARSET_BY_ATTRIBUTES):
|
444
|
969 Always use inline function.
|
|
970 Use type_checking_assert.
|
|
971 Hide chlook.
|
|
972
|
|
973 * mule-charset.c (non_ascii_charptr_copy_char):
|
|
974 Modify to work with both ASCII and non-ASCII characters.
|
|
975 Improve docs and variable names.
|
|
976 Replace over-clever fall-through switch with a simple loop.
|
446
|
977 (Lstream_get_emchar_1):
|
444
|
978 Replace over-clever fall-through switch with a simple loop.
|
|
979
|
|
980 * menubar-x.c (menu_item_descriptor_to_widget_value_1):
|
|
981 Warning suppression.
|
|
982
|
|
983 * lstream.h (Lstream_get_emchar): BYTE_ASCII_P cannot be used on
|
|
984 the return value of Lstream_getc, which could be EOF as well.
|
|
985
|
|
986 * lstream.c (Lstream_raw_read): Now returns ssize_t, not int.
|
|
987
|
|
988 * lisp.h: Make Extbyte a char, not unsigned char, so that external
|
|
989 APIs can be used on Extbytes without casts. Risky!
|
|
990 (SExtbyte): Remove.
|
|
991 (UExtbyte): Remove.
|
|
992
|
|
993 * input-method-xlib.c (XIM_init_device):
|
|
994 Use Xlib.h instead of IntrinsicP.h.
|
|
995 Use HAVE_XREGISTERIMINSTANTIATECALLBACK instead of THIS_IS_X11R6,
|
|
996 which will break in X11R7.
|
|
997 Use XREGISTERIMINSTANTIATECALLBACK_NONSTANDARD_PROTOTYPE,
|
|
998 to call XRegisterIMInstantiateCallback with correct types.
|
|
999
|
|
1000 * gui-x.c (button_item_to_widget_value): Type correctness.
|
|
1001
|
|
1002 * glyphs.c (bitmap_to_lisp_data): Type correctness.
|
|
1003
|
|
1004 * glyphs-x.c (pixmap_from_xbm_inline): Type correctness.
|
|
1005 (xbm_instantiate_1): Type correctness.
|
|
1006 (BUILD_GLYPH_INST): Type correctness.
|
|
1007
|
|
1008 * fileio.c (Fsubstitute_in_file_name): Type correctness.
|
|
1009
|
|
1010 * file-coding.c:
|
|
1011 (decode_coding_sjis):
|
|
1012 (decode_coding_big5):
|
|
1013 (decode_coding_ucs4):
|
|
1014 (decode_coding_utf8):
|
|
1015 (decode_coding_iso2022):
|
|
1016 (decode_coding_no_conversion):
|
|
1017 Make all decoding functions take an Extbyte * arg.
|
|
1018 (encode_coding_sjis):
|
|
1019 (encode_coding_big5):
|
|
1020 (encode_coding_ucs4):
|
|
1021 (encode_coding_utf8):
|
|
1022 (encode_coding_iso2022):
|
|
1023 (encode_coding_no_conversion):
|
|
1024 Make all encoding functions take a Bufbyte * arg.
|
|
1025 Use size_t instead of unsigned int for memory sizes.
|
|
1026 Only cast to unsigned char whenever dereferencing Extbyte *.
|
|
1027
|
|
1028 * doc.c (unparesseuxify_doc_string): Type correctness.
|
|
1029
|
|
1030 * console-x.c (split_up_display_spec):
|
|
1031 Rewrite without using details of internal string representation.
|
|
1032 (x_semi_canonicalize_device_connection): Type correctness.
|
|
1033
|
|
1034 * config.h.in:
|
|
1035 (HAVE_XREGISTERIMINSTANTIATECALLBACK): New.
|
|
1036 (XREGISTERIMINSTANTIATECALLBACK_NONSTANDARD_PROTOTYPE): New.
|
|
1037 (HAVE_XFREE386): Removed.
|
|
1038
|
|
1039 * buffer.h (DEC_CHARPTR): `const' correctness.
|
|
1040 (bufbyte_strcmp): New.
|
|
1041 (bufbyte_memcmp): New.
|
|
1042
|
|
1043 * buffer.c (dfc_convert_to_internal_format): Extbyte ==> Bufbyte
|
|
1044
|
|
1045 * buffer.h (XCHAR_OR_CHAR_INT):
|
|
1046 Always use inline function.
|
|
1047 Remove redundant type checking assert() - XINT will abort quite nicely.
|
|
1048
|
|
1049 2000-10-03 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
1050
|
|
1051 * search.c (Freplace_match): Set newtext to an empty string.
|
|
1052
|
|
1053 2000-10-10 Martin Buchholz <martin@xemacs.org>
|
|
1054
|
|
1055 * s/decosf1-3.h: Remove #include of stropts.h
|
|
1056 * s/ptx.h: Remove #include of stropts.h
|
|
1057 * s/usg5-4.h: Remove #include of stropts.h
|
446
|
1058 * sysproc.h:
|
|
1059 * config.h.in:
|
444
|
1060 Use stropts.h, not sys/stropts.h.
|
|
1061 Use strtio.h, not sys/strtio.h.
|
|
1062
|
442
|
1063 2000-10-04 Martin Buchholz <martin@xemacs.org>
|
|
1064
|
|
1065 * XEmacs 21.2.36 is released.
|
|
1066
|
444
|
1067 2000-09-21 Andy Piper <andy@xemacs.org>
|
|
1068
|
|
1069 * glyphs-x.c (x_redisplay_widget): make sure non-structural
|
|
1070 changes still involve copying the widget tree.
|
|
1071 (update_widget_face): make sure a change is register in the widget
|
|
1072 tree. Call update_tab_widget_face appropriately.
|
|
1073 (update_tab_widget_face): ditto.
|
|
1074 (x_tab_control_redisplay): make sure non-structural changes still
|
|
1075 involve copying the widget tree.
|
|
1076
|
442
|
1077 2000-08-31 Daiki Ueno <ueno@unixuser.org>
|
|
1078
|
|
1079 * lread.c (locate_file): Check the path element is non-nil.
|
|
1080
|
|
1081 2000-10-02 Martin Buchholz <martin@xemacs.org>
|
|
1082
|
|
1083 * lisp.h: Warning suppression for SCO compilers.
|
|
1084
|
|
1085 * redisplay-tty.c (reset_tty_modes): Fix crash.
|
|
1086 E.g. from xemacs running on X: (delete-device (make-device 'tty nil))
|
|
1087
|
|
1088 2000-09-27 Martin Buchholz <martin@xemacs.org>
|
|
1089
|
|
1090 Big signal/process handling overhaul. Bugs fixed:
|
|
1091 M-x shell, type `sleep 10000', M-x comint-interrupt-subjob and
|
|
1092 M-x comint-kill-subjob should work for both values nil and t of
|
|
1093 process-connection-type. It was broken on most platforms.
|
|
1094 Testing on Irix and Cygwin still needed. Other plaforms tested.
|
|
1095 * sysdep.c: Move #include of stropts.h into sysproc.h. Use pid_t.
|
|
1096 * process-unix.c: Signal/Process handling overhaul.
|
|
1097 (pty_name): make 64 bytes, as `expect' does, for paranoia.
|
|
1098 (allocate_pty): Use all available modern methods of allocating
|
|
1099 ptys, falling back to old style BSD allocation as a last resort.
|
|
1100 Use allegedly more secure Unix98 pty allocation by default.
|
|
1101 (allocate_pty_the_old_fashioned_way): New. the last resort.
|
|
1102 (unix_create_process): Push ptem, ldterm, ttcompat where
|
|
1103 available. Autoconfiscate.
|
|
1104 (try_to_initialize_subtty): New.
|
|
1105 (unix_kill_child_process): Proper signal handling for ptys on most
|
|
1106 platforms, using special knowledge of AIX, BSD, etc...
|
|
1107 (unix_create_process): Always disconnect_controlling_terminal() for
|
|
1108 subprocesses, whether using ptys or not.
|
|
1109 * process.h: Remove old getpt-dependent PTY code.
|
|
1110 * process.c (Fprocess_send_signal): New, obvious generic function.
|
|
1111 (decode_signal): New.
|
|
1112 (Finterrupt_process):
|
|
1113 (Fkill_process):
|
|
1114 (Fquit_process):
|
|
1115 (Fstop_process):
|
|
1116 (Fcontinue_process):
|
|
1117 (Fsignal_process): Use decode_signal.
|
|
1118 (process_send_signal):
|
|
1119 Many docstring corrections.
|
|
1120 Allow any signal to be sent to a process object.
|
|
1121 * config.h.in: Add symbols for big signal/process overhaul.
|
|
1122 * syssignal.h (EMACS_KILLPG): Use HAVE_KILLPG. Use `pid', not `gid'.
|
|
1123 * sysproc.h: Include process-related headers, where available:
|
|
1124 sys/stropts.h sys/strtio.h pty.h libutil.h
|
|
1125 * s/irix4-0.h:
|
|
1126 * s/irix5-0.h:
|
|
1127 * s/cygwin32.h:
|
|
1128 * s/gnu.h:
|
|
1129 * s/linux.h:
|
|
1130 * s/hpux.h:
|
|
1131 * s/aix3-1.h:
|
|
1132 Remove old S&M pty stuff.
|
|
1133 * console-tty.c (tty_init_console): Use pid_t, not int, for pids.
|
|
1134 * systty.h: Simplify cpp hackery, improve comments.
|
|
1135 Favor BSD ioctl(TIOCGPGRP) over Posix tcgetpgrp().
|
|
1136
|
|
1137 * editfns.c (Fformat_time_string):
|
|
1138 Be a little more paranoid with the return value of ctime.
|
|
1139
|
|
1140 * fileio.c (check_executable):
|
|
1141 (check_writable):
|
|
1142 Use symbolic constants X_OK, W_OK.
|
|
1143
|
|
1144 * console-x.c (split_up_display_spec): Fix a warning.
|
|
1145
|
|
1146 2000-10-02 Martin Buchholz <martin@xemacs.org>
|
|
1147
|
|
1148 * gui-x.c (add_accel_and_to_external): strlen ==> XSTRING_LENGTH
|
|
1149 * ntproc.c (sys_spawnve): make_string ==> build_string
|
|
1150 Small clarity improvements.
|
|
1151
|
|
1152 2000-09-30 Martin Buchholz <martin@xemacs.org>
|
|
1153
|
|
1154 * events.c (WRONG_EVENT_TYPE_FOR_PROPERTY): Warning removal.
|
|
1155
|
|
1156 * s/windowsnt.h (HAVE_STRCASECMP): Remove.
|
|
1157
|
|
1158 * config.h.in (HAVE_STRCASECMP): Remove.
|
|
1159
|
|
1160 2000-09-29 Martin Buchholz <martin@xemacs.org>
|
|
1161
|
|
1162 * redisplay-output.c (redisplay_output_pixmap):
|
|
1163 Cleaner and possibly more 64-bit correct code.
|
|
1164
|
|
1165 2000-09-28 Stephen J. Turnbull <stephen@xemacs.org>
|
|
1166
|
|
1167 * dumper.c (pdump_load_finish): move restoration of
|
|
1168 `noninteractive1' to emacs.c (main_1).
|
|
1169 * emacs.c (main_1): protect LISP-visible command-line flags
|
|
1170 from pdump_load().
|
|
1171
|
|
1172 2000-09-26 Stephen J. Turnbull <stephen@xemacs.org>
|
|
1173
|
|
1174 * Makefile.in.in (versionclean): Use EXE_TARGET and
|
|
1175 DUMP_TARGET instead of literal program names.
|
|
1176
|
|
1177 2000-09-20 Martin Buchholz <martin@xemacs.org>
|
|
1178
|
|
1179 * Makefile.in.in: Recent purify's require absolute paths for cache-dir.
|
|
1180
|
|
1181 2000-09-19 Martin Buchholz <martin@xemacs.org>
|
|
1182
|
|
1183 * *: Spelling mega-patch
|
|
1184
|
|
1185 2000-09-19 Martin Buchholz <martin@xemacs.org>
|
|
1186
|
|
1187 * fns.c (bad_bad_turtle):
|
|
1188 Delete "Eek!" comment, since we fixed the bug to which it refers.
|
|
1189
|
|
1190 2000-09-16 Martin Buchholz <martin@xemacs.org>
|
|
1191
|
|
1192 * alloca.c: Replace REGISTER with register.
|
|
1193
|
|
1194 2000-09-16 Daiki Ueno <ueno@unixuser.org>
|
|
1195
|
|
1196 * file-coding.c (ucs_to_char): Use countof.
|
|
1197
|
|
1198 2000-09-16 Martin Buchholz <martin@xemacs.org>
|
|
1199
|
|
1200 * file-coding.c: (ucs_to_char):
|
|
1201 (complex_vars_of_file_coding):
|
|
1202 Use countof instead of sizeof.
|
|
1203 Use CHECK_NATNUM instead of CHECK_INT.
|
|
1204
|
|
1205 * sysdep.c (strcasecmp): Remove.
|
|
1206 * device-x.c (ascii_strcasecmp): New.
|
|
1207 * device-x.c (Fx_get_resource): Use ascii_strcasecmp.
|
|
1208 Avoid using non-standard non-portable strcasecmp.
|
|
1209
|
|
1210 2000-09-16 Martin Buchholz <martin@xemacs.org>
|
|
1211
|
|
1212 * Makefile.in.in (mostlyclean): remove reference to prefix-args.
|
|
1213 * font-lock.c: remove reference to emacsfns.h.
|
|
1214 * search.c: small doc improvement.
|
|
1215 * event-Xt.c: correct file names in comments.
|
|
1216 * console-x.h Correct file names in comments.
|
|
1217 * frame.c: Correct file names in comments.
|
|
1218 * event-stream.c: remove Energize from comments.
|
|
1219
|
|
1220 2000-09-15 Martin Buchholz <martin@xemacs.org>
|
|
1221
|
|
1222 * symeval.h (DEFERROR_STANDARD):
|
|
1223 (DEFERROR):
|
|
1224 (DEFSYMBOL):
|
|
1225 (DEFSYMBOL_NO_DUMP):
|
|
1226 (DEFSYMBOL_MULTIWORD_PREDICATE):
|
|
1227 (DEFSYMBOL_MULTIWORD_PREDICATE_NO_DUMP):
|
|
1228 (DEFKEYWORD):
|
|
1229 The construct &##name is not sensible C.
|
|
1230 Fixes compilation errors with Unixware native compiler.
|
|
1231
|
|
1232 2000-09-14 Martin Buchholz <martin@xemacs.org>
|
|
1233
|
|
1234 * frame.c (device_matches_console_spec): no longer takes a `frame' arg
|
|
1235 (next_frame_internal): Removed. We now just have next_frame.
|
|
1236 (next_frame):
|
|
1237 Write a simpler and cleaner one-pass algorithm.
|
|
1238 Remove called_from_delete_device arg and #ifdefed-out code.
|
|
1239 (previous_frame):
|
|
1240 Renamed from prev_frame. Update callers.
|
|
1241 Cleaned up to have an analogous implementation to next_frame.
|
|
1242 (other_visible_frames_internal): Remove the
|
|
1243 called_from_delete_device bogus arg, and hence, remove this
|
|
1244 function. Just use other_visible_frames().
|
|
1245
|
446
|
1246 * window.c (Fnext_window):
|
442
|
1247 Prettify docstring.
|
|
1248 Since next_frame() is guaranteed to return a frame, remove check
|
|
1249 for nil inserted in previous patch.
|
446
|
1250 (Fprevious_window):
|
|
1251 Prettify docstring.
|
442
|
1252 Make code look more like Fnext_window.
|
|
1253 (window_loop):
|
|
1254 Respect the `console' arg when iterating through windows.
|
|
1255 Fixes bug: (get-buffer-window buffer t device) not respecting
|
|
1256 the `device' arg.
|
|
1257 This function needs more work, as others have pointed out.
|
|
1258
|
|
1259 * frame.h: Rename prev_frame to previous_frame.
|
|
1260 device_matches_console_spec no longer takes a `frame' arg.
|
|
1261
|
|
1262 * s/gnu.h:
|
|
1263 * s/linux.h:
|
|
1264 * s/hpux.h:
|
|
1265 Use EMACS_BLOCK_SIGNAL instead of sigblock.
|
|
1266 From "Golubev I. N." <gin@mo.msk.ru>.
|
|
1267
|
|
1268 * make-src-depend: Fix typo.
|
|
1269
|
|
1270 2000-09-13 Martin Buchholz <martin@xemacs.org>
|
|
1271
|
|
1272 * window.c (Fnext_window):
|
|
1273 next_frame() might return nil, not a frame.
|
|
1274 Fixes this crash:
|
|
1275 (gdb) run -eval '(progn (make-device (quote x) "polgar:0") (next-window (minibuffer-window) t (quote visible) (second (device-list))))'
|
|
1276
|
|
1277 * frame.c (next_frame_internal):
|
|
1278 We've passed a frame if we've passed its device.
|
|
1279 Fixes this crash:
|
|
1280 (gdb) run -eval '(progn (make-frame nil (make-device (quote x) "polgar:0")) (next-window (minibuffer-window) t (quote visible) (second (device-list))))'
|
|
1281 Fatal error: assertion failed, file /project/xemacs/ws/dev/src/frame.h, line 245, RECORD_TYPEP (obj, lrecord_type_frame)
|
|
1282
|
|
1283 2000-09-11 Jonathan Harris <jhar@tardis.ed.ac.uk>
|
|
1284
|
|
1285 * menubar-msw.c (mswindows_translate_menu_or_dialog_item):
|
|
1286 Allow option to suppress accelerators in menu/dialog items.
|
|
1287 (populate_or_checksum_helper): Pass dialog title through above.
|
|
1288
|
|
1289 2000-09-10 Jonathan Harris <jhar@tardis.ed.ac.uk>
|
|
1290
|
|
1291 * event-msw.c (mswindows_key_to_emacs_keysym):
|
|
1292 Add "pause" key, fix "menu" key.
|
|
1293
|
|
1294 2000-09-09 Martin Buchholz <martin@xemacs.org>
|
|
1295
|
|
1296 * eval.c (reinit_vars_of_eval):
|
|
1297 Increase max_lisp_eval_depth to 1000,
|
|
1298 required for thai-xtis.el to byte-compile under some circumstances.
|
|
1299
|
|
1300 2000-09-04 Martin Buchholz <martin@xemacs.org>
|
|
1301
|
|
1302 * event-Xt.c (x_to_emacs_keysym): Increase size of `buffer' to 513.
|
|
1303 From Kenichi Handa.
|
|
1304
|
|
1305 2000-09-01 Martin Buchholz <martin@xemacs.org>
|
|
1306
|
|
1307 * make-src-depend: Make the generated Makefiles smaller.
|
|
1308
|
|
1309 * s/hpux.h (SETUP_SLAVE_PTY):
|
|
1310 Provide a %d in the format string for the errno argument.
|
|
1311
|
|
1312 * editfns.c (Ftemp_directory):
|
|
1313 Warning fix.
|
|
1314 Avoid buffer overrun on very long file name.
|
|
1315
|
446
|
1316 * input-method-xlib.c (XIM_init_device):
|
442
|
1317 6th parameter of XRegisterIMInstantiateCallback has different
|
|
1318 pointer types on different OSes, so simply cast to (void *).
|
|
1319
|
|
1320 * unexhp9k800.c: Warning fixes. Fiddly changes.
|
|
1321
|
|
1322 * sysdll.c (dll_open):
|
|
1323 shl_load will hang hard if passed a NULL filename.
|
|
1324 Simply return NULL for compatibility with dlopen.
|
|
1325 * sysdll.c: Conform to XEmacs coding standards.
|
|
1326
|
446
|
1327 * sysdep.c (get_pty_max_bytes):
|
442
|
1328 Support pty input lines longer than 512 bytes on HP-UX 10.20.
|
|
1329
|
|
1330 2000-08-31 Martin Buchholz <martin@xemacs.org>
|
|
1331
|
|
1332 * tooltalk.c: Add #include <syssignal.h>
|
|
1333
|
|
1334 2000-08-12 Alexandre Oliva <aoliva@redhat.com>
|
|
1335
|
|
1336 * s/hpux.h: Don't use undefined function sigunblock().
|
|
1337
|
|
1338 2000-08-31 Martin Buchholz <martin@xemacs.org>
|
|
1339
|
|
1340 * config.h.in: Add HAVE_BALLOON_HELP.
|
|
1341 * emacs.c: Use HAVE_BALLOON_HELP.
|
|
1342 * Makefile.in.in (x_objs):
|
|
1343 Make Balloon Help conditional on finding shape.h.
|
|
1344
|
|
1345 2000-08-23 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
1346
|
|
1347 * syntax.c (regex_emacs_buffer_p): New variable.
|
|
1348 * syntax.h (regex_emacs_buffer_p): extern.
|
|
1349 * search.c (looking_at_1):
|
|
1350 (string_match_1):
|
|
1351 (fast_string_match):
|
|
1352 (search_buffer): Set regex_emacs_buffer_p.
|
|
1353 * regex.c (re_match_2_internal): Reference regex_emacs_buffer_p
|
|
1354 when before_dot, at_dot, after_dot.
|
|
1355
|
|
1356 2000-08-23 Andy Piper <andy@xemacs.org>
|
|
1357
|
|
1358 * gui-x.c (popup_selection_callback): Only set action_occurred
|
|
1359 when we really have an image instance.
|
|
1360 * gui-msw.c (mswindows_handle_gui_wm_command): ditto.
|
|
1361
|
|
1362 2000-08-23 Andy Piper <andy@xemacs.org>
|
|
1363
|
|
1364 * gui-msw.c (mswindows_handle_gui_wm_command): set
|
|
1365 action_occurred.
|
|
1366 * gui-x.c (popup_selection_callback): ditto.
|
|
1367
|
|
1368 * glyphs.h (IMAGE_INSTANCE_WIDGET_ACTION_OCCURRED): new accessor.
|
|
1369 (XIMAGE_INSTANCE_WIDGET_ACTION_OCCURRED): ditto.
|
|
1370 (struct Lisp_Image_Instance): add action_occurred flag.
|
|
1371
|
|
1372 * glyphs.c (redisplay_subwindow): use action_occurred flag.
|
|
1373 (image_instance_changed): ditto.
|
|
1374 (reset_frame_subwindow_instance_cache): only unmap windows - do
|
|
1375 not remove them from the cache also.
|
|
1376
|
|
1377 * glyphs-widget.c (tab_control_update): better debug.
|
|
1378 (progress_gauge_update): ditto.
|
|
1379 (layout_update): ditto.
|
|
1380 (layout_instantiate): ditto.
|
|
1381 (tab_control_order_only_changed): cope with null pending items.
|
|
1382
|
|
1383 * glyphs-msw.c (mswindows_tab_control_redisplay): add better
|
|
1384 debug. Force selection of an item when an action occurred. Cope
|
|
1385 with null pending_items.
|
|
1386 (mswindows_progress_gauge_redisplay): better debug.
|
|
1387 * glyphs-x.c (x_tab_control_redisplay): ditto.
|
|
1388
|
|
1389 * redisplay.c (redisplay_frame): reset the frame cache if the
|
|
1390 frame is garbaged.
|
|
1391
|
|
1392 * window.c (Fset_window_configuration): potentially re-enable
|
|
1393 frame cache reset.
|
|
1394 (window_unmap_subwindows): need to finalize instances here since
|
|
1395 it is only used in mark_window_as_deleted.
|
|
1396
|
|
1397 2000-08-22 Stephen J. Turnbull <stephen@xemacs.org>
|
|
1398
|
|
1399 * nas.c (SndOpenDataForReading):
|
|
1400 nas.c (WaveOpenDataForReading):
|
|
1401 nas.c (readChunk): {BIG,LITTLE}_ENDIAN -> NAS_{BIG,LITTLE}_ENDIAN.
|
|
1402 Somehow escaped from the 2000-08-14 patch.
|
|
1403
|
|
1404 2000-08-14 Stephen J. Turnbull <stephen@xemacs.org>
|
|
1405
|
|
1406 * nas.c: Preprocessor trickery to use NAS_LITTLE_ENDIAN instead
|
|
1407 of LITTLE_ENDIAN (conflicts with glibc, at least) in NAS <= 1.2p5.
|
|
1408
|
|
1409 2000-08-21 Andy Piper <andy@xemacs.org>
|
|
1410
|
|
1411 * glyphs-x.c (x_map_subwindow): Minor optimization - only map the
|
|
1412 window if it is not already displayed.
|
|
1413
|
|
1414 * glyphs-msw.c (mswindows_map_subwindow): only map the window if
|
|
1415 it is not already displayed.
|
|
1416
|
|
1417 * window.c (Fset_window_configuration): don't reset the frame
|
|
1418 cache.
|
|
1419
|
|
1420 * glyphs.c (unmap_subwindow_instance_cache_mapper): only remove
|
|
1421 instances from the frame cache if we are actually finalizing them.
|
|
1422 (reset_frame_subwindow_instance_cache): reset frame cache only
|
|
1423 after unmapping everything.
|
|
1424 (map_subwindow): set displayed flag after mapping.
|
|
1425
|
|
1426 2000-08-21 Martin Buchholz <martin@xemacs.org>
|
|
1427
|
|
1428 * data.c (indirect_function):
|
|
1429 Rename ERRORP to non-misleading VOID_FUNCTION_ERRORP.
|
|
1430
|
446
|
1431 * eval.c (function_argcount):
|
442
|
1432 Use original function when signaling errors.
|
|
1433
|
|
1434 2000-08-18 Andy Piper <andy@xemacs.org>
|
|
1435
|
|
1436 * frame.c (delete_frame_internal): use new
|
|
1437 free_frame_subwindow_instances name.
|
|
1438
|
|
1439 * glyphs-msw.c (mswindows_tab_control_instantiate): verify index.
|
|
1440 (add_tab_item): make return type correct.
|
|
1441 (mswindows_tab_control_instantiate): assert index of tab.
|
|
1442 (mswindows_tab_control_redisplay): Re-code to use
|
|
1443 gui_item_equal_sans_selected and gui_item_list_find_selected.
|
|
1444
|
|
1445 * glyphs-widget.c (tab_control_update): Correct comment.
|
|
1446
|
|
1447 * window.c (window_unmap_subwindows): use new
|
|
1448 unmap_subwindow_instance_cache_mapper.
|
|
1449 (window_unmap_subwindows_cache_mapper): deleted.
|
|
1450 (Fset_window_configuration): comparisons should now be with
|
|
1451 EQ. Preserve the subwindow instance cache across configuration
|
|
1452 changes.
|
|
1453 (allocate_window): ditto.
|
|
1454 (make_dummy_parent): ditto.
|
|
1455
|
|
1456 * glyphs.c (free_frame_subwindow_instances): rename from
|
|
1457 free_frame_subwindow_instance_cache. finalize all instances rather
|
|
1458 than just those in the display cache.
|
|
1459 (finalize_all_subwindow_instances): walk windows unmapping and
|
|
1460 finalizing subwindows.
|
|
1461 (unmap_subwindow_instance_cache_mapper): moved from
|
|
1462 window.c. Allow finalization as well as unmapping.
|
|
1463
|
|
1464 * gui.c (gui_item_list_find_selected): new function.
|
|
1465
|
|
1466 * gui.h (gui_item_list_find_selected): declare.
|
|
1467
|
|
1468 * glyphs-x.c (x_tab_control_redisplay): pick tab
|
|
1469 explicitly. Re-code to use gui_item_equal_sans_selected and
|
|
1470 gui_item_list_find_selected.
|
|
1471
|
|
1472 * glyphs-x.h: add lwlib-utils.h
|
|
1473
|
|
1474 * buffer.c (Frecord_buffer): undo previous change.
|
|
1475
|
|
1476 2000-08-09 Vin Shelton <acs@xemacs.org>
|
|
1477
|
|
1478 * config.h.in, s/gnu.h, s/hpux.h, s/linux.h: Use UNIX98 PTYs if
|
|
1479 possible. Create temporary files more securely. The patch was
|
|
1480 generated by Torsten Duwe <duwe@caldera.de>, Florian Weimer
|
|
1481 <Florian.Weimer@RUS.Uni-Stuttgart.DE> and Olaf Kirch. See
|
|
1482 http://www.xemacs.org/list-archives/xemacs-patches/200007/msg00123.html
|
|
1483 for details.
|
|
1484
|
|
1485 2000-08-07 Ben Wing <ben@xemacs.org>
|
|
1486
|
|
1487 * getloadavg.c: remove duplicate (and windows-breaking)
|
|
1488 includes of fcntl.h and sys/file.h.
|
|
1489
|
|
1490 * nt.c: remove duplicate getloadavg() definition.
|
|
1491
|
|
1492 * sysdll.h (Qdll_filename_encoding): add missing stand-in
|
|
1493 encodings.
|
|
1494
|
|
1495 2000-08-07 Gunnar Evermann <ge204@eng.cam.ac.uk>
|
|
1496
|
|
1497 * eval.c (function_argcount): If function needs to be autoloaded
|
|
1498 actually use the loaded definition.
|
|
1499 GCPRO function.
|
|
1500
|
|
1501 2000-08-05 Ben Wing <ben@xemacs.org>
|
|
1502
|
|
1503 * getloadavg.c: add prototype for getloadavg(). remove
|
|
1504 duplicate WIN32_NATIVE/CYGWIN code (already in the middle
|
|
1505 of the code). remove duplicate header includes.
|
|
1506
|
|
1507 * s\cygwin32.h, s\mingw32.h: remove stray NO_ARG_ARRAY.
|
446
|
1508
|
442
|
1509 * s\cygwin32.h, s\mingw32.h, m\windowsnt.h:
|
|
1510 don't define LOAD_AVE_TYPE/LOAD_AVE_CVT because we have no
|
|
1511 useful load average.
|
|
1512
|
|
1513 * alloc.c (reinit_alloc_once_early): removed references to
|
|
1514 VIRT_ADDR_VARIES, malloc_sbrk_used/free, and data-bytes-used/free.
|
|
1515 the lisp vars are the only things referencing the malloc_sbrk_*
|
|
1516 vars, and they were already if 0'd out. these vars only exist
|
|
1517 in the older malloc.c, which is basically unused, and they're
|
|
1518 only for informational purposes.
|
|
1519
|
|
1520 * m\*.h: removed useless VIRT_ADDR_VARIES.
|
|
1521
|
|
1522 * m\powerpc.h: removed stray NO_ARG_ARRAY.
|
|
1523
|
|
1524 2000-04-26 IKEYAMA Tomonori <tomonori@suiyokai.org>
|
|
1525
|
|
1526 * redisplay-msw.c (mswindows_output_dibitmap): Set foreground
|
|
1527 color if the image is a mono pixmap.
|
|
1528
|
|
1529 2000-07-30 Ben Wing <ben@xemacs.org>
|
|
1530
|
|
1531 * Makefile.in.in (release):
|
|
1532 Remove stray @.
|
446
|
1533
|
442
|
1534 * buffer.c (directory_is_current_directory):
|
|
1535 * dired-msw.c (mswindows_get_files):
|
|
1536 * dired.c:
|
|
1537 * dired.c (Fdirectory_files):
|
|
1538 * dired.c (file_name_completion_stat):
|
|
1539 * dired.c (Ffile_attributes):
|
|
1540 [[[[1]]]]: Rename stat() -> xemacs_stat() and eliminate nasty
|
|
1541 preprocessor tricks, to avoid problems on some machines
|
|
1542 (e.g. SCO).
|
|
1543
|
|
1544 * callproc.c (egetenv): GC docs.
|
446
|
1545
|
442
|
1546 * console-msw.h:
|
|
1547 * console-msw.h (struct mswindows_dialog_id):
|
|
1548 * lrecord.h (lrecord_type):
|
|
1549 New object for use with MSW dialogs.
|
446
|
1550
|
442
|
1551 * console.h (struct console_methods):
|
|
1552 New enable/disable frame methods, for proper modal dialogs.
|
446
|
1553
|
442
|
1554 * device-msw.c (msprinter_default_printer): Fix to follow
|
|
1555 proper Mule conventions.
|
446
|
1556
|
442
|
1557 * device-msw.c:
|
|
1558 * device-msw.c (signal_open_printer_error):
|
|
1559 * device-msw.c (msprinter_init_device):
|
|
1560 * device-msw.c (ensure_not_printing):
|
|
1561 * device-msw.c (plist_get_margin):
|
|
1562 * device-msw.c (Fmsprinter_select_settings):
|
|
1563 * device-msw.c (finalize_devmode):
|
|
1564 * device-msw.c (Fmsprinter_settings_despecialize):
|
|
1565 * device-msw.c (signal_enum_priner_error):
|
|
1566 * extents.c (decode_extent):
|
|
1567 * extents.c (decode_map_extents_flags):
|
|
1568 * extents.c (decode_extent_at_flag):
|
|
1569 * extents.c (Fextent_at):
|
|
1570 * extents.c (Fextents_at):
|
|
1571 * extents.c (symbol_to_glyph_layout):
|
|
1572 [[[[2]]]] Use structured errors.
|
446
|
1573
|
442
|
1574 * dialog-msw.c:
|
|
1575 * dialog-msw.c (mswindows_is_dialog_msg):
|
|
1576 * dialog-msw.c (mark_mswindows_dialog_id):
|
|
1577 * dialog-msw.c (dialog_proc):
|
|
1578 * dialog-msw.c (handle_question_dialog_box):
|
|
1579 * dialog-msw.c (syms_of_dialog_mswindows):
|
|
1580 Define new object to clean up marking; use it as a dialog identifier.
|
|
1581 Call new delete-dialog-box-hook.
|
446
|
1582
|
442
|
1583 * dialog-x.c (dbox_selection_callback):
|
|
1584 * dialog-x.c (dbox_descriptor_to_widget_value):
|
|
1585 * dialog-x.c (x_make_dialog_box_internal):
|
|
1586 Call new delete-dialog-box-hook.
|
|
1587 Return an id.
|
|
1588
|
|
1589 * dialog.c:
|
|
1590 * dialog.c (syms_of_dialog):
|
|
1591 * dialog.c (vars_of_dialog):
|
|
1592 Define new delete-dialog-box-hook, for use w/modal dialog boxes.
|
446
|
1593
|
442
|
1594 * eval.c:
|
|
1595 * eval.c (signal_call_debugger):
|
|
1596 when noninteractive, output stack traces on the console instead
|
|
1597 of in a (never-seen) buffer.
|
446
|
1598
|
442
|
1599 * eval.c (signal_type_error):
|
|
1600 * eval.c (invalid_argument_2):
|
|
1601 * lisp.h:
|
|
1602 new funs for use w/structured errors.
|
446
|
1603
|
442
|
1604 * event-Xt.c:
|
|
1605 * event-Xt.c (x_to_emacs_keysym):
|
|
1606 * event-Xt.c (describe_event):
|
|
1607 * event-Xt.c (emacs_Xt_event_handler):
|
|
1608 * event-Xt.c (vars_of_event_Xt):
|
|
1609 * event-msw.c:
|
|
1610 * event-msw.c (mswindows_wnd_proc):
|
|
1611 * event-msw.c (vars_of_event_mswindows):
|
|
1612 rename {x,mswindows}-debug-events to debug-{}-events for
|
|
1613 consistency with other debug-foo variables.
|
446
|
1614
|
442
|
1615 * event-stream.c:
|
|
1616 document next-event more clearly.
|
446
|
1617
|
442
|
1618 * fileio.c (Ffile_name_directory):
|
|
1619 * fileio.c (Ffile_name_nondirectory):
|
|
1620 * fileio.c (Funhandled_file_name_directory):
|
|
1621 * fileio.c (file_name_as_directory):
|
|
1622 * fileio.c (Ffile_name_as_directory):
|
|
1623 * fileio.c (directory_file_name):
|
|
1624 * fileio.c (Fdirectory_file_name):
|
|
1625 * fileio.c (Fmake_temp_name):
|
|
1626 * fileio.c (Ffile_truename):
|
|
1627 * fileio.c (Fsubstitute_in_file_name):
|
|
1628 * fileio.c (expand_and_dir_to_file):
|
|
1629 * fileio.c (barf_or_query_if_file_exists):
|
|
1630 * fileio.c (check_executable):
|
|
1631 * fileio.c (Ffile_exists_p):
|
|
1632 * fileio.c (Ffile_writable_p):
|
|
1633 * fileio.c (Ffile_directory_p):
|
|
1634 * fileio.c (Ffile_regular_p):
|
|
1635 * fileio.c (Ffile_modes):
|
|
1636 * fileio.c (Ffile_newer_than_file_p):
|
|
1637 * fileio.c (Fverify_visited_file_modtime):
|
|
1638 * fileio.c (Fset_visited_file_modtime):
|
|
1639 * fileio.c (auto_save_1):
|
|
1640 (1). (2).
|
|
1641 fix up gcpro's.
|
446
|
1642
|
442
|
1643 * frame-msw.c:
|
|
1644 * frame-msw.c (mswindows_init_frame_1):
|
|
1645 * frame-msw.c (mswindows_enable_frame):
|
|
1646 * frame-msw.c (error_frame_unsizable):
|
|
1647 * frame-msw.c (msprinter_init_frame_1):
|
|
1648 * frame-msw.c (msprinter_init_frame_3):
|
|
1649 * frame-msw.c (console_type_create_frame_mswindows):
|
|
1650 (2).
|
|
1651 implement new enable/disable frame methods.
|
446
|
1652
|
442
|
1653 * frame-x.c:
|
|
1654 * frame-x.c (x_enable_frame):
|
|
1655 * frame-x.c (console_type_create_frame_x):
|
|
1656 implement new enable/disable frame methods.
|
446
|
1657
|
442
|
1658 * frame.c:
|
|
1659 * frame.c (Fdisable_frame):
|
|
1660 * frame.c (syms_of_frame):
|
|
1661 * frame.h (struct frame):
|
|
1662 implement new enable/disable frame methods/functions.
|
446
|
1663
|
442
|
1664 * general-slots.h:
|
|
1665 add initial-focus.
|
446
|
1666
|
442
|
1667 * glyphs-msw.c (mswindows_widget_instantiate):
|
|
1668 comment that initial-focus should be implemented.
|
446
|
1669
|
442
|
1670 * glyphs-widget.c:
|
|
1671 * glyphs-widget.c (check_valid_instantiator):
|
|
1672 * glyphs-widget.c (check_valid_orientation):
|
|
1673 * glyphs-widget.c (check_valid_tab_orientation):
|
|
1674 * glyphs-widget.c (check_valid_justification):
|
|
1675 * glyphs-widget.c (check_valid_border):
|
|
1676 * glyphs-widget.c (check_valid_callback):
|
|
1677 * glyphs-widget.c (check_valid_int_or_function):
|
|
1678 * glyphs-widget.c (check_valid_string_or_vector):
|
|
1679 * glyphs-widget.c (check_valid_item_list_1):
|
|
1680 * glyphs-widget.c (widget_validate):
|
|
1681 * glyphs-widget.c (combo_box_validate):
|
|
1682 * glyphs-widget.c (widget_instantiate):
|
|
1683 * glyphs-widget.c (syms_of_glyphs_widget):
|
|
1684 * glyphs-widget.c (VALID_WIDGET_KEYWORDS):
|
|
1685 * glyphs-widget.c (image_instantiator_combo_box):
|
|
1686 * glyphs-widget.c (image_instantiator_scrollbar):
|
|
1687 * glyphs-widget.c (image_instantiator_tab_control):
|
|
1688 * glyphs-widget.c (VALID_LAYOUT_KEYWORDS):
|
|
1689 (2).
|
|
1690 support (unimplemented) keyword initial-focus.
|
|
1691 reindent long macros.
|
446
|
1692
|
442
|
1693 * glyphs-x.c (x_redisplay_widget):
|
|
1694 * glyphs-x.c (x_button_instantiate):
|
|
1695 * glyphs-x.c (x_button_redisplay):
|
|
1696 * glyphs-x.c (x_progress_gauge_instantiate):
|
|
1697 * glyphs-x.c (x_edit_field_instantiate):
|
|
1698 * glyphs-x.c (x_combo_box_instantiate):
|
|
1699 * glyphs-x.c (x_tab_control_instantiate):
|
|
1700 * glyphs-x.c (x_label_instantiate):
|
|
1701 * gui-x.c:
|
|
1702 * gui-x.c (button_item_to_widget_value):
|
|
1703 * gui-x.c (gui_items_to_widget_values_1):
|
|
1704 * gui-x.c (gui_item_children_to_widget_values):
|
|
1705 * gui-x.c (gui_items_to_widget_values):
|
|
1706 * gui-x.h:
|
|
1707 * menubar-x.c (menu_item_descriptor_to_widget_value_1):
|
|
1708 add new flag to gui-parsing routines to indicate whether
|
|
1709 accelerator specs should be supported.
|
446
|
1710
|
442
|
1711 * glyphs.c (syms_of_glyphs): use DEFSYMBOL.
|
446
|
1712
|
442
|
1713 * glyphs.h (struct Lisp_Image_Instance):
|
|
1714 * glyphs.h (IMAGE_INSTANCE_WANTS_INITIAL_FOCUS):
|
|
1715 add initial-focus flag.
|
446
|
1716
|
442
|
1717 * gui.c:
|
|
1718 * gui.c (syms_of_gui):
|
|
1719 * gui.c (vars_of_gui):
|
|
1720 clean up menu-no-selection-hook.
|
446
|
1721
|
442
|
1722 * gui.h:
|
|
1723 support delete-dialog-box-hook.
|
446
|
1724
|
442
|
1725 * lread.c (Fload_internal):
|
|
1726 * lread.c (locate_file_in_directory_mapper):
|
|
1727 (1).
|
446
|
1728
|
442
|
1729 * lrecord.h:
|
|
1730 * lrecord.h (struct toolbar_button):
|
|
1731 * lrecord.h (syms_of_toolbar):
|
|
1732 document how to create a new object.
|
446
|
1733
|
442
|
1734 * menubar-msw.c (mswindows_char_is_accelerator):
|
|
1735 may be called on frames w/o menus.
|
|
1736
|
|
1737 * menubar.c (vars_of_menubar):
|
|
1738 clean up :filter docs.
|
446
|
1739
|
442
|
1740 * nt.c (readdir):
|
|
1741 * ntproc.c:
|
|
1742 (1).
|
446
|
1743
|
442
|
1744 * process-nt.c:
|
|
1745 * process-nt.c (validate_signal_number):
|
|
1746 * process-nt.c (signal_cannot_launch):
|
|
1747 * process-nt.c (nt_create_process):
|
|
1748 * process-nt.c (nt_send_process):
|
|
1749 * process-nt.c (nt_kill_child_process):
|
|
1750 * process-nt.c (nt_open_network_stream):
|
|
1751 * process-nt.c (syms_of_process_nt):
|
|
1752 (2).
|
|
1753 delete quote-handling. call new lisp code that does it better.
|
446
|
1754
|
442
|
1755 * process-unix.c (connect_to_file_descriptor):
|
|
1756 * process-unix.c (allocate_pty):
|
|
1757 * process-unix.c (unix_send_process):
|
|
1758 * process-unix.c (unix_kill_child_process):
|
|
1759 * process-unix.c (unix_open_network_stream):
|
|
1760 * process-unix.c (unix_open_multicast_group):
|
|
1761 (1). (2).
|
446
|
1762
|
442
|
1763 * process.c:
|
|
1764 * process.c (Fstart_process_internal):
|
|
1765 (2). need to canonicalize process path even if absolute.
|
446
|
1766
|
442
|
1767 * select-msw.c (symbol_to_ms_cf):
|
|
1768 * select-msw.c (ms_cf_to_symbol):
|
|
1769 * select-msw.c (cf_is_autofreed):
|
|
1770 * select-msw.c (mswindows_destroy_selection):
|
|
1771 * select.c:
|
|
1772 * select.c (syms_of_select):
|
|
1773 * select.h:
|
|
1774 support dibv5, fix bugs. (from Mike Alexander)
|
446
|
1775
|
442
|
1776 * select.c (Fget_selection_internal):
|
|
1777 * select.c (select_convert_out):
|
446
|
1778
|
442
|
1779 * sysdep.c:
|
|
1780 * sysdep.c (xemacs_stat):
|
|
1781 renamed.
|
446
|
1782
|
442
|
1783 * sysdep.c (mkdir):
|
|
1784 * sysdep.c (rmdir):
|
|
1785 but keep original stat() here because we provide encapsulation
|
|
1786 around these funs.
|
446
|
1787
|
442
|
1788 * sysfile.h:
|
|
1789 * sysfile.h (fstat):
|
|
1790 remove stat garbage.
|
446
|
1791
|
442
|
1792 * syswindows.h:
|
|
1793 fix X/MSW conflict.
|
|
1794 don't include tchar.h. it's inappropriate because it makes
|
|
1795 compile-time distinctions when we want runtime distinctions.
|
|
1796 (we provide our own tchar replacements)
|
446
|
1797
|
442
|
1798 * toolbar.c:
|
|
1799 use default object printer for toolbar-button.
|
446
|
1800
|
442
|
1801 * unexcw.c:
|
|
1802 make sure we don't encapsulate.
|
446
|
1803
|
442
|
1804 * window.c (vars_of_window):
|
|
1805 emphasize that temp-buffer-show-hook is obsolete.
|
|
1806
|
|
1807 2000-08-05 Martin Buchholz <martin@xemacs.org>
|
|
1808
|
|
1809 * glyphs.c (image_instance_hash): HASH2 wants EMACS_INT args.
|
|
1810 (Fimage_instance_subwindow_id): make_int wants EMACS_INT arg.
|
|
1811
|
446
|
1812 * events.c (Fevent_timestamp_lessp):
|
442
|
1813 Not 64-bit clean. Use EMACS_INT, not int.
|
|
1814
|
|
1815 2000-06-05 Andrew Begel <abegel@cs.berkeley.edu>
|
|
1816
|
|
1817 * lrecord.h (lrecord_types): Changed lrecord_type_count to an
|
|
1818 unsigned int and changed the last enum to
|
446
|
1819 lrecord_type_last_built_in_type.
|
442
|
1820 (lrecord_implementations_table): changed prototype to know how
|
446
|
1821 long the array is supposed to be.
|
442
|
1822 (lrecord_type_count): new unsigned int to keep track of the
|
|
1823 current number of lisp lrecord types.
|
|
1824 (DEFINE_EXTERNAL_LRECORD):
|
|
1825 (DECLARE_EXTERNAL_LRECORD): Added these two for external
|
|
1826 dynamic-modules to declare new lisp types. They are the same
|
|
1827 as the non-EXTERNAL forms, but declare an lrecord_type unsigned
|
|
1828 int for each new type, and increment lrecord_type_count by 1.
|
|
1829
|
|
1830 * alloc.c (lrecord_implementations_table): Changed to reference
|
|
1831 lrecord_type_last_built_in_type for the size of the array.
|
|
1832 Moved MODULE_DEFINABLE_TYPE_COUNT to lrecord.h.
|
|
1833
|
|
1834 2000-08-03 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
1835
|
|
1836 * glyphs.h (check_valid_item_list): Renamed from
|
|
1837 check_valid_item_list_1.
|
|
1838
|
|
1839 2000-08-01 Alastair J. Houghton <ajhoughton@lineone.net>
|
|
1840
|
|
1841 * select.c (Qselect_coerce): New.
|
|
1842 * select.c (Vselection_coercion_alist): New.
|
|
1843 * select.c (syms_of_select): Declare.
|
|
1844 * select.c (get-selection-internal): Use it.
|
|
1845 Use the new select-coerce functionality.
|
|
1846
|
|
1847 * select.c (select_coerce): New.
|
|
1848 * select.h (select_coerce): Declare.
|
|
1849 New function to coerce one type of data into another.
|
|
1850
|
|
1851 2000-08-03 Martin Buchholz <martin@xemacs.org>
|
|
1852
|
446
|
1853 * callproc.c (Fcall_process_internal):
|
|
1854 (Fcall_process_internal):
|
442
|
1855 * process-unix.c (unix_create_process):
|
|
1856 Save and restore the value of errno, so that error messages are accurate.
|
|
1857
|
|
1858 2000-08-01 Martin Buchholz <martin@xemacs.org>
|
|
1859
|
446
|
1860 * elhash.c (print_hash_table):
|
442
|
1861 Fix printing of hash tables to also use `key-and-value' instead of `t'.
|
|
1862 Prettify docstrings and indentation.
|
|
1863
|
|
1864 2000-07-31 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
1865
|
|
1866 * window.c (Fwindow_pixel_edges): Subtract frame border and
|
|
1867 gutter size.
|
|
1868
|
|
1869 2000-07-31 Andy Piper <andy@xemacs.org>
|
|
1870
|
|
1871 * buffer.c (Frecord_buffer): make absolutely sure that redisplay
|
|
1872 will acknowledge the change.
|
|
1873
|
|
1874 * glyphs.h: declare tab_control_order_only_changed.
|
|
1875
|
|
1876 * glyphs-x.c (x_tab_control_redisplay): use
|
|
1877 tab_control_order_only_changed.
|
|
1878
|
|
1879 * glyphs-widget.c (tab_control_order_only_changed): new function.
|
|
1880
|
|
1881 * glyphs-msw.c (mswindows_tab_control_redisplay): use
|
|
1882 tab_control_order_only_changed.
|
|
1883
|
|
1884 * gui.c (gui_item_equal_sans_selected): new function.
|
|
1885 (gui_item_equal): use it.
|
|
1886
|
|
1887 * glyphs-msw.c (mswindows_combo_box_instantiate): deprecate
|
|
1888 :properties in favor of :items..
|
|
1889
|
|
1890 * glyphs-widget.c (check_valid_item_list): rename from
|
|
1891 check_valid_item_list_1.
|
|
1892 (check_valid_item_list_1): renamed.
|
|
1893 (combo_box_validate): deprecate :properties in favor of :items.
|
|
1894 (widget_instantiate): ditto.
|
|
1895 (tab_control_update): ditto.
|
|
1896 (image_instantiator_combo_box): ditto.
|
|
1897 (image_instantiator_tree_view): ditto.
|
|
1898 (image_instantiator_tab_control): ditto.
|
|
1899 (layout_post_instantiate): remove dead code.
|
|
1900
|
|
1901 * print.c (debug_print_no_newline): only write to debugger if in
|
|
1902 WIN32_NATIVE.
|
|
1903
|
|
1904 * elhash.c (Fmake_hash_table): update doc string.
|
|
1905
|
|
1906 * event-msw.c (mswindows_wnd_proc): don't allow processing of
|
|
1907 messages whilst in GC. This at least stops XEmacs crashing but has
|
|
1908 the potential for wierd behaviour.
|
|
1909
|
|
1910 2000-07-31 Martin Buchholz <martin@xemacs.org>
|
|
1911
|
|
1912 * config.h.in:
|
|
1913 Make existence of s&m files optional.
|
446
|
1914
|
442
|
1915 * s/bsd386.h: Remove HAVE_GETLOADAVG.
|
|
1916 * s/freebsd.h: Remove HAVE_GETLOADAVG.
|
|
1917 * s/gnu.h: Remove HAVE_GETLOADAVG.
|
|
1918 * s/netbsd.h: Remove HAVE_GETLOADAVG.
|
|
1919 * s/sol2.h: Remove HAVE_GETLOADAVG.
|
|
1920 * lisp.h: Remove getloadavg() declaration.
|
|
1921 * fns.c:
|
|
1922 Include <sys/loadavg.h> if available.
|
|
1923 Don't declare our own getloadavg() if HAVE_GETLOADAVG.
|
|
1924 * config.h.in: Group together getloadavg()-related macros.
|
|
1925 Use only configure-time tests to detect getloadavg().
|
|
1926
|
|
1927 2000-07-30 Martin Buchholz <martin@xemacs.org>
|
|
1928
|
|
1929 * Makefile.in.in (TransientEmacsShell.o): Fix race condition.
|
|
1930
|
|
1931 2000-07-25 Andy Piper <andy@xemacs.org>
|
|
1932
|
|
1933 * syswindows.h: add tchar.h for native builds.
|
|
1934
|
|
1935 * frame.c (syms_of_frame): remove set-glyph-image.
|
|
1936
|
|
1937 * general-slots.h: add Qset_glyph_image.
|
|
1938
|
|
1939 * glyphs-widget.c (layout_update): add domain arg to
|
|
1940 set-glyph-image.
|
|
1941 (syms_of_glyphs_widget): remove set-glyph-image.
|
|
1942
|
|
1943 2000-07-23 Ben Wing <ben@xemacs.org>
|
|
1944
|
|
1945 * dialog-msw.c (vars_of_dialog_mswindows): need to staticpro
|
|
1946 Vpopup_frame_list.
|
|
1947
|
|
1948 2000-07-22 Andy Piper <andy@xemacs.org>
|
|
1949
|
|
1950 * symsinit.h: add syms_of_win32().
|
|
1951
|
|
1952 * gui-msw.c (syms_of_gui_mswindows): remove
|
|
1953 Fmswindows_shell_execute.
|
|
1954 (Fmswindows_shell_execute): moved to win32.c.
|
|
1955
|
|
1956 * emacs.c (main_1): add syms_of_win32 ().
|
|
1957
|
|
1958 * win32.c (init_potentially_nonexistent_functions): rewrite in
|
|
1959 compiler-friendly terms.
|
|
1960 (Fmswindows_shell_execute): move here from gui-msw.c.
|
|
1961 (syms_of_win32): new.
|
|
1962
|
|
1963 * device-msw.c (Fmswindows_printer_list): clean up args to
|
|
1964 EnumPrinters.
|
|
1965 Don't include tchar under cygwin or mingw.
|
|
1966 (msprinter_default_printer): make cygwin-friendly.
|
|
1967
|
|
1968 2000-07-21 Andy Piper <andy@xemacs.org>
|
|
1969
|
|
1970 * glyphs-widget.c (image_instantiator_tree_view): use tab
|
|
1971 control's update function.
|
|
1972 (layout_property): new function. Retrieve items.
|
|
1973
|
|
1974 * glyphs-msw.c (mswindows_tree_view_redisplay): new
|
|
1975 function. Re-populate the tree view from the pending items.
|
|
1976
|
|
1977 * glyphs.c (instantiate_image_instantiator): Make sure the domain
|
|
1978 is designated the parent if the domain is an image instance. This
|
|
1979 is needed so that dirtiness can be cascade up the hierarchy and
|
|
1980 thus for layout children to be redisplayed correctly.
|
|
1981 (allocate_image_instance): rename glyph -> parent.
|
|
1982
|
|
1983 * redisplay.h: change redisplay_output_layout signature.
|
|
1984
|
|
1985 * redisplay-msw.c (mswindows_output_display_block): use domain
|
|
1986 arg.
|
|
1987
|
|
1988 * redisplay-x.c (x_output_display_block): use domain arg.
|
|
1989
|
|
1990 2000-07-10 Andy Piper <andy@xemacs.org>
|
|
1991
|
|
1992 * window.c (Fset_window_configuration): add comment.
|
|
1993
|
446
|
1994 * redisplay-output.c (compare_runes):
|
442
|
1995 (redisplay_output_subwindow): redisplay rather than update subwindow.
|
|
1996 (redisplay_output_layout): ditto.
|
|
1997
|
|
1998 * redisplay-msw.c (mswindows_frame_output_end):
|
|
1999 (mswindows_frame_output_end): make defer window pos optional.
|
|
2000
|
|
2001 * lisp.h: add Flast.
|
|
2002
|
|
2003 * glyphs.h (struct image_instantiator_methods): add dest_mask top
|
|
2004 normalize method. Change update method to be for changed
|
|
2005 instantiators. Add redisplay method. Change signature of layout
|
|
2006 method.
|
|
2007 (struct Lisp_Image_Instance): add instantiator.
|
|
2008 (IMAGE_INSTANCE_INSTANTIATOR): new.
|
|
2009 (IMAGE_INSTANCE_SUBWINDOW_FACE): new.
|
|
2010 (XIMAGE_INSTANCE_INSTANTIATOR): new.
|
|
2011 (XIMAGE_INSTANCE_SUBWINDOW_FACE): new.
|
|
2012
|
|
2013 * glyphs.c:
|
|
2014 (find_instantiator_differences): new function.
|
|
2015 (Fset_instantiator_property): new convenience function.
|
|
2016 (check_image_instance_structure): strictly check for vector
|
|
2017 instantiators.
|
|
2018 (normalize_image_instantiator): make non-static.
|
|
2019 (instantiate_image_instantiator): pass on dest_mask and use new
|
|
2020 signatures for image_instance_layout and friends.
|
|
2021 (mark_image_instance): mark the instantiator. Mark the subwindow
|
|
2022 face not the widget face.
|
|
2023 (image_instance_equal): add instantiator.
|
|
2024 (image_instance_hash): ditto.
|
|
2025 (allocate_image_instance): ditto.
|
|
2026 (Fset_image_instance_property): removed.
|
|
2027 (Fimage_instance_file_name): ditto.
|
|
2028 (Fcolorize_image_instance): ditto.
|
|
2029 (image_instance_layout): add offsets to be set.
|
|
2030 (update_image_instance): new function. update an image instance
|
|
2031 from its changed instantiator.
|
|
2032 (inherit_normalize): add dest_mask.
|
|
2033 (xbm_normalize): ditto.
|
|
2034 (xface_normalize): ditto.
|
|
2035 (xpm_normalize): ditto.
|
|
2036 (text_update): set_property -> update.
|
|
2037 (image_instantiate): use the glyph identity as a hash key, not the
|
|
2038 instantiator.
|
|
2039 (glyph_width): use new image_instance_layout signature.
|
|
2040 (glyph_ascent): ditto.
|
|
2041 (glyph_descent): ditto.
|
|
2042 (glyph_height): ditto.
|
|
2043 (glyph_query_geometry): ressurrect.
|
|
2044 (glyph_layout): ditto.
|
|
2045 (redisplay_subwindow): update -> redisplay.
|
|
2046 (syms_of_glyphs): add Fset_instantiator_property.
|
|
2047 (image_instantiator_format_create): set_property -> update.
|
|
2048
|
|
2049 * glyphs-x.c:
|
|
2050 (autodetect_normalize): add dest_maks to signature.
|
|
2051 (x_redisplay_subwindow): update -> redisplay.
|
|
2052 (x_redisplay_widget): ditto.
|
|
2053 (x_button_redisplay): ditto.
|
|
2054 (x_progress_gauge_redisplay): ditto.
|
|
2055 (x_tab_control_redisplay): ditto. Rewrite to cope with changed
|
|
2056 stacking order.
|
|
2057 (console_type_create_glyphs_x): update -> redisplay.
|
|
2058 (image_instantiator_format_create_glyphs_x): ditto.
|
|
2059
|
|
2060 * glyphs-widget.c:
|
|
2061 (check_valid_instantiator): disallow glyphs in the instantiator,
|
|
2062 they must now be vectors.
|
|
2063 (check_valid_instantiator_list): ditto.
|
|
2064 (glyph_instantiator_to_glyph): use internal symbol rather than
|
|
2065 intern.
|
|
2066 (widget_update): renamed from widget_set_property. Call cascaded
|
|
2067 update methods.
|
|
2068 (redisplay_widget): renamed from update_widget.
|
|
2069 (widget_layout): image_instance_layout now takes position as well
|
|
2070 as size.
|
|
2071 (widget_normalize): ditto.
|
|
2072 (widget_instantiate): ditto.
|
|
2073 (tab_control_query_geometry) ditto.:
|
|
2074 (tab_control_update): renamed from tab_control_set_property.
|
|
2075 (progress_gauge_update): set_property -> update.
|
|
2076 (layout_normalize): rewrite so that child instantiators are
|
|
2077 normalized also.
|
|
2078 (layout_update): new function. Create glyphs from the normalized
|
|
2079 children and cope with any other layout keywords. We do not
|
|
2080 instantiate children here that will be take care of by
|
|
2081 redisplay_output_layout.
|
|
2082 (layout_instantiate): call layout_update and not much else.
|
|
2083 (layout_post_instantiate): not sure whether this is needed
|
|
2084 anymore.
|
|
2085 (layout_query_geometry): query glyph geometry rather than
|
|
2086 image_instance geometry.
|
|
2087 (layout_layout): set offsets from pass in parameters. Use glyph
|
|
2088 geometry and layout functions rather than image instance ones.
|
|
2089 (native_layout_layout): ditto.
|
|
2090 (syms_of_glyphs_widget): add make-glyph and set-glyph-image.
|
|
2091 (image_instantiator_widget): set_property -> update.
|
|
2092 (image_instantiator_buttons): ditto.
|
|
2093 (image_instantiator_progress_guage): ditto.
|
|
2094 (image_instantiator_tab_control): ditto.
|
|
2095 (VALID_LAYOUT_KEYWORDS): instantiators must now be vectors.
|
|
2096 (image_instantiator_layout): add update method.
|
|
2097
|
|
2098 * glyphs-msw.c (bmp_normalize):
|
|
2099 (mswindows_resource_normalize): add dest_mask so that it can be
|
|
2100 proprogated by layout_normalize.
|
|
2101 (begin_defer_window_pos): make optional because it may not be the
|
|
2102 right thing to do and it introduces differences with X.
|
|
2103 (mswindows_unmap_subwindow): ditto.
|
|
2104 (mswindows_map_subwindow): ditto.
|
|
2105 (mswindows_redisplay_subwindow): renamed from
|
|
2106 mswindows_update_subwindow.
|
|
2107 (mswindows_redisplay_widget): ditto.
|
|
2108 (mswindows_button_redisplay): renamed from
|
|
2109 mswindows_button_update. Update is now what the instantiation
|
|
2110 function does for a changed instantiator.
|
|
2111 (mswindows_progress_gauge_instantiate): set the progress value
|
|
2112 here if appropriate.
|
|
2113 (mswindows_tab_control_redisplay): cope with re-ordering of the
|
|
2114 members of the tab widget by simply selecting the new top
|
|
2115 widget. This makes things appear ok if you click on a tab.
|
|
2116 (mswindows_combo_box_instantiate): image_instance_layout now takes
|
|
2117 position as well as size.
|
|
2118 (mswindows_progress_gauge_redisplay): renamed from
|
|
2119 mswindows_progress_gauge_update.
|
|
2120 (console_type_create_glyphs_mswindows): fix update -> redisplay.
|
|
2121 (image_instantiator_format_create_glyphs_mswindows): ditto.
|
|
2122
|
|
2123 * glyphs-eimage.c (jpeg_normalize):
|
|
2124 (gif_normalize):
|
|
2125 (png_normalize):
|
|
2126 (tiff_normalize): add dest_mask so that it can be proprogated by
|
|
2127 layout_normalize.
|
|
2128
|
|
2129 * elhash.c:
|
|
2130 (print_hash_table):
|
|
2131 (hash_table_weakness_validate):
|
|
2132 (decode_hash_table_weakness):
|
|
2133 (Fhash_table_weakness):
|
|
2134 (Fhash_table_type):
|
|
2135 (syms_of_elhash): use Ben's naming scheme for hashtable types..
|
|
2136
|
|
2137 * console.h (struct console_methods): move update_* to
|
|
2138 redisplay_*.
|
|
2139
|
|
2140 2000-07-20 Ben Wing <ben@xemacs.org>
|
|
2141
|
|
2142 * *.[ch] (XSETOBJ): remove unused middle argument.
|
|
2143 lisp-disunion.h: correct wrap_object() to one argument.
|
446
|
2144
|
442
|
2145 2000-07-15 Ben Wing <ben@xemacs.org>
|
|
2146
|
|
2147 * s/cygwin32.h:
|
|
2148 * s/cygwin32.h (CYGWIN_CONV_PATH):
|
|
2149 Add missing logb prototype for v1.1.
|
|
2150 Use post-b20 names and alias to pre-b20 names when pre-b20.
|
|
2151
|
|
2152 * s/windowsnt.h: [5].
|
|
2153
|
|
2154 2000-07-15 Ben Wing <ben@xemacs.org>
|
|
2155
|
|
2156 * Makefile.in.in (x_objs):
|
|
2157 * Makefile.in.in (sheap_objs):
|
|
2158 * Makefile.in.in (objs):
|
|
2159 added win32.o, cosmetic cleanups.
|
446
|
2160
|
442
|
2161 * alloc.c (Fmake_byte_code):
|
|
2162 [[[1]]]: Changes for new LIST_LOOP, EXTERNAL_LIST_LOOP,
|
|
2163 etc. macros which declare their own args now.
|
|
2164
|
|
2165 * alloc.c (syms_of_alloc):
|
|
2166 [[[2]]]: Use DEFSYMBOL, DEFKEYWORD, DEFERROR and friends.
|
|
2167
|
|
2168 * buffer.c:
|
|
2169 Moved buffer-dedicated-frame, set-buffer-dedicated-frame into lisp.
|
|
2170
|
|
2171 * buffer.c (Fget_file_buffer):
|
|
2172 Fixed GCPRO problem.
|
|
2173
|
|
2174 * buffer.c (get_truename_buffer):
|
|
2175 Fixed comment about GC checking.
|
|
2176
|
|
2177 * buffer.c (syms_of_buffer):
|
|
2178 Undeclared those dedicated frame funs.
|
|
2179 [2].
|
|
2180
|
|
2181 * buffer.h:
|
|
2182 Define convenience macros for internal/external conversions.
|
|
2183 [[[3]]]: Define codesys aliases Qcommand_argument_encoding
|
|
2184 and Qenvironment_variable_encoding for cleaner code.
|
|
2185
|
|
2186 * bufslots.h:
|
|
2187 Remove dedicated-frame; in lisp.
|
|
2188
|
|
2189 * bytecode.c (funcall_compiled_function):
|
|
2190 [1].
|
|
2191
|
|
2192 * bytecode.c (syms_of_bytecode):
|
|
2193 [2].
|
|
2194
|
|
2195 * console-msw.c:
|
|
2196 * console-msw.c (mswindows_show_console): Rewrote.
|
|
2197
|
|
2198 * console-msw.c (Fmswindows_debugging_output): New.
|
|
2199 Sends to OutputDebugString (special MSWin debugger interface).
|
|
2200
|
|
2201 * console-msw.c (Fmswindows_message_box):
|
|
2202 Fixed stupid bugs so it works when called from kill-emacs.
|
|
2203
|
|
2204 * console-msw.c (syms_of_console_mswindows):
|
|
2205 Declare Fmswindows_debugging_output.
|
|
2206
|
|
2207 * console-msw.h:
|
|
2208 New MSWin prototypes.
|
|
2209
|
|
2210 * console-msw.h (struct mswindows_frame):
|
|
2211 New entry last-click-mods for improved button-modifier support.
|
|
2212
|
|
2213 * console-msw.h (FRAME_MSWINDOWS_POPUP):
|
|
2214 New struct entry `popup' with corresponding accessor.
|
|
2215
|
|
2216 * console-x.c:
|
|
2217 * console-x.c (split_up_display_spec):
|
|
2218 * console-x.c (get_display_arg_connection):
|
|
2219 * console-x.c (x_semi_canonicalize_console_connection):
|
|
2220 * console-x.c (x_canonicalize_device_connection):
|
|
2221 [[[6]]]: Change char to more specific type.
|
|
2222 [[[8]]]: Make use of abstracting codesys aliases defined in [3], [4];
|
|
2223
|
|
2224 * console-x.c (x_semi_canonicalize_console_connection):
|
|
2225 * console-x.c (x_canonicalize_device_connection):
|
|
2226 [[[9]]]: Fix up error signalling to use new structured error system.
|
|
2227
|
|
2228 * console-x.h:
|
|
2229 [[[4]]]: Define codesys aliases:
|
|
2230 Qlwlib_encoding, Qx_atom_name_encoding, Qx_font_name_encoding,
|
|
2231 Qx_color_name_encoding, Qx_display_name_encoding.
|
|
2232
|
|
2233 * console.h (struct console_methods):
|
|
2234 New method make_dialog_box_internal supersedes older
|
|
2235 popup_dialog_box method.
|
|
2236
|
|
2237 * data.c:
|
|
2238 Define many new errors, part of new structured errors.
|
|
2239
|
|
2240 * data.c (init_errors_once_early):
|
|
2241 * data.c (syms_of_data):
|
|
2242 [2].
|
|
2243
|
|
2244 * device-msw.c (mswindows_init_device):
|
|
2245 [[[5]]]: Cleanup to support NT 3.51.
|
|
2246
|
|
2247 * device-msw.c (decode_devmode): Cleanup.
|
|
2248
|
|
2249 * device-msw.c (mswindows_handle_print_setup_dialog_box):
|
|
2250 * device-msw.c (mswindows_handle_print_dialog_box):
|
|
2251 * device-msw.c (mswindows_handle_page_setup_dialog_box):
|
|
2252 * device-msw.c (syms_of_device_mswindows):
|
|
2253 Delete the dialog box primitives recently introduced by Kirill and
|
|
2254 instead interface to general dialog box interface.
|
|
2255
|
|
2256 * device-x.c:
|
|
2257 * device-x.c (compute_x_app_name):
|
|
2258 * device-x.c (x_init_device):
|
|
2259 * device-x.c (Fx_valid_keysym_name_p):
|
|
2260 * device-x.c (Fx_set_font_path):
|
|
2261 [6].
|
|
2262 [7].
|
|
2263
|
|
2264 * device.h (wrap_device): New.
|
|
2265 First of its kind; meant to replace XSETDEVICE.
|
|
2266
|
|
2267 * dialog-msw.c: Many file-dialog symbols.
|
|
2268
|
|
2269 * dialog-msw.c (mswindows_register_popup_frame): New.
|
|
2270 * dialog-msw.c (mswindows_is_dialog_msg): New.
|
|
2271 For supporting kbd traversal in dialog boxes.
|
|
2272
|
|
2273 * dialog-msw.c (dialog_proc):
|
|
2274 Support hitting ESC in dialogs.
|
|
2275
|
|
2276 * dialog-msw.c (struct):
|
|
2277 Common dialog box errors.
|
|
2278
|
|
2279 * dialog-msw.c (handle_file_dialog_box): New.
|
|
2280 Add file dialog code.
|
|
2281
|
|
2282 * dialog-msw.c (handle_question_dialog_box):
|
|
2283 Redo existing code to support new question dialog syntax.
|
|
2284
|
|
2285 * dialog-msw.c (console_type_create_dialog_mswindows):
|
|
2286 We support new dialog console method.
|
|
2287
|
|
2288 * dialog-msw.c (syms_of_dialog_mswindows):
|
|
2289 * dialog-msw.c (vars_of_dialog_mswindows):
|
|
2290 New file dialog symbols, vars.
|
|
2291
|
|
2292 * dialog-x.c:
|
|
2293 * dialog-x.c (maybe_run_dbox_text_callback):
|
|
2294 * dialog-x.c (dbox_descriptor_to_widget_value):
|
|
2295 * dialog-x.c (x_make_dialog_box_internal):
|
|
2296 * dialog-x.c (console_type_create_dialog_x):
|
|
2297 Mule-ize entire file.
|
|
2298 Redo to support question dialog syntax.
|
|
2299 [6].
|
|
2300
|
|
2301 * dialog.c:
|
|
2302 * dialog.c (Fmake_dialog_box_internal):
|
|
2303 * dialog.c (syms_of_dialog):
|
|
2304 Kill old popup-dialog-box, replace with new primitive.
|
|
2305 Just call device method or signal error.
|
|
2306
|
|
2307 * eldap.c (Fldap_open):
|
|
2308 * eldap.c (Fldap_search_basic):
|
|
2309 * eldap.c (Fldap_add):
|
|
2310 * eldap.c (Fldap_modify):
|
|
2311 [1].
|
|
2312 [7].
|
|
2313
|
|
2314 * emacs.c:
|
|
2315 * emacs.c (make_arg_list_1):
|
|
2316 * emacs.c (make_arg_list):
|
|
2317 Mule-ize call to dll_init().
|
|
2318 [6].
|
|
2319 [8].
|
|
2320
|
|
2321 * emacs.c (make_argc_argv):
|
|
2322 * emacs.c (free_argc_argv):
|
|
2323 * emacs.c (init_cmdargs):
|
|
2324 * emacs.c (main_1):
|
|
2325 * emacs.c (Fkill_emacs):
|
|
2326 * emacs.c (Fdump_emacs):
|
|
2327 Update comments about what can be used in syms_* etc.
|
|
2328 Call init_win32() when necessary.
|
|
2329 Fix up MS Win dialog box in kill-buffer to actually work right.
|
|
2330 [7].
|
|
2331
|
|
2332 * eval.c:
|
|
2333 * eval.c (For):
|
|
2334 * eval.c (Fand):
|
|
2335 * eval.c (Fprogn):
|
|
2336 * eval.c (Fprog1):
|
|
2337 * eval.c (Fprog2):
|
|
2338 * eval.c (FletX):
|
|
2339 * eval.c (Flet):
|
|
2340 * eval.c (condition_case_3):
|
|
2341 * eval.c (Feval):
|
|
2342 * eval.c (function_argcount):
|
|
2343 * eval.c (funcall_lambda):
|
|
2344 [1].
|
|
2345
|
|
2346 * eval.c (type_error): New.
|
|
2347 * eval.c (maybe_type_error): New.
|
|
2348 * eval.c (continuable_type_error): New.
|
|
2349 * eval.c (maybe_continuable_type_error): New.
|
|
2350 * eval.c (type_error_with_frob): New.
|
|
2351 * eval.c (maybe_type_error_with_frob): New.
|
|
2352 * eval.c (continuable_type_error_with_frob): New.
|
|
2353 * eval.c (maybe_continuable_type_error_with_frob): New.
|
|
2354 New functions for use with structured errors.
|
|
2355
|
|
2356 * event-Xt.c:
|
|
2357 * event-Xt.c (x_event_to_emacs_event):
|
|
2358 Buttons are now modifiers too.
|
|
2359
|
|
2360 * event-Xt.c (emacs_Xt_current_event_timestamp):
|
|
2361 Implement new event method.
|
|
2362 * event-Xt.c (reinit_vars_of_event_Xt): Set it.
|
|
2363
|
|
2364 * event-msw.c:
|
|
2365 * event-msw.c (ntpipe_shove_writer): [5].
|
|
2366 * event-msw.c (mswindows_enqueue_mouse_button_event):
|
|
2367 * event-msw.c (mswindows_drain_windows_queue):
|
|
2368 * event-msw.c (mswindows_wnd_proc): [7].
|
|
2369 * event-msw.c (mswindows_current_layout_has_AltGr): [5].
|
|
2370 * event-msw.c (mswindows_modifier_state):
|
|
2371 Throughout: support new button modifiers.
|
|
2372
|
|
2373 * event-msw.c (emacs_mswindows_current_event_timestamp):
|
|
2374 Implement new event method.
|
|
2375 * event-msw.c (reinit_vars_of_event_mswindows): Set it.
|
|
2376
|
|
2377 * event-stream.c:
|
|
2378 * event-stream.c (event_stream_current_event_timestamp): New.
|
|
2379 * event-stream.c (maybe_kbd_translate): New functionality.
|
|
2380 * event-stream.c (vars_of_event_stream):
|
|
2381 Document new kbd-translate-table functionality.
|
|
2382
|
|
2383 * event-stream.c (Fcurrent_event_timestamp): New.
|
|
2384 New primitive for use in fabricated events.
|
|
2385 * event-stream.c (syms_of_event_stream): [2]. Declare new primitive.
|
|
2386
|
|
2387 * events-mod.h (XEMACS_MOD_BUTTON1): new button modifiers.
|
|
2388
|
|
2389 * events.c:
|
|
2390 * events.c (Fmake_event):
|
|
2391 * events.c (WRONG_EVENT_TYPE_FOR_PROPERTY):
|
|
2392 [1].
|
|
2393 [9].
|
|
2394
|
|
2395 * events.c (format_event_object): fix gcc warnings.
|
|
2396
|
|
2397 * events.c (Fevent_timestamp): Document new primitives.
|
|
2398
|
|
2399 * events.c (TIMESTAMP_HALFSPACE): New.
|
|
2400
|
|
2401 * events.c (Fevent_timestamp_lessp): New. New primitive for
|
|
2402 comparing timestamps correctly (half-space algorithm).
|
|
2403
|
|
2404 * events.c (Fevent_modifier_bits): Doc fix.
|
|
2405
|
|
2406 * events.c (Fevent_modifiers): Major doc addition.
|
|
2407 * events.c (event_x_y_pixel_internal): Typo fix.
|
|
2408 * events.c (syms_of_events): Declare new primitives.
|
|
2409
|
|
2410 * events.h:
|
|
2411 Update long comment for button modifiers, timestamps.
|
|
2412
|
|
2413 * events.h (struct event_stream):
|
|
2414 New current_event_timestamp method.
|
|
2415
|
|
2416 * extents.c:
|
|
2417 * extents.c (extent_in_region_p):
|
|
2418 * extents.c (decode_extent):
|
|
2419 * extents.c (Fset_extent_parent):
|
|
2420 * extents.c (decode_map_extents_flags):
|
|
2421 Fix gcc warnings.
|
|
2422 [9].
|
|
2423
|
|
2424 * extents.c (struct extent_at_arg):
|
|
2425 * extents.c (decode_extent_at_flag):
|
|
2426 * extents.c (extent_at_mapper):
|
|
2427 * extents.c (extent_at_bytind):
|
|
2428 * extents.c (Fextent_at): Adapt to new lower-level interface. [9].
|
|
2429 * extents.c (Fextents_at): New primitive. [9].
|
|
2430 * extents.c (symbol_to_glyph_layout): [9].
|
|
2431 Support new primitive `extents-at'.
|
|
2432
|
|
2433
|
|
2434 * extents.c (get_text_property_bytind):
|
|
2435 extent_at_bytind has another arg.
|
|
2436 [9].
|
|
2437
|
|
2438 * extents.c (syms_of_extents): New primitive.
|
|
2439
|
|
2440 * file-coding.c (Fmake_coding_system): [1].
|
|
2441 * file-coding.c (subsidiary_coding_system): fix gcc warning
|
|
2442 * file-coding.c (syms_of_file_coding): [2].
|
|
2443
|
|
2444 * fileio.c (Fexpand_file_name):
|
|
2445 * fileio.c (Fsysnetunam):
|
|
2446 * fileio.c (Ffile_exists_p):
|
|
2447 * fileio.c (Ffile_executable_p):
|
|
2448 * fileio.c (Fverify_visited_file_modtime):
|
|
2449 Clean up GCPROing.
|
|
2450
|
|
2451 * fileio.c (syms_of_fileio): [2].
|
|
2452
|
|
2453 * filelock.c (lock_file_1):
|
|
2454 * filelock.c (current_lock_owner):
|
|
2455 * filelock.c (lock_if_free):
|
|
2456 * filelock.c (lock_file):
|
|
2457 * filelock.c (unlock_file):
|
|
2458 Clean up GCPROing.
|
|
2459
|
|
2460 * fns.c (concat): Fix gcc warning.
|
|
2461
|
|
2462 * fns.c (Fmember):
|
|
2463 * fns.c (Fold_member):
|
|
2464 * fns.c (Fmemq):
|
|
2465 * fns.c (Fold_memq):
|
|
2466 * fns.c (memq_no_quit):
|
|
2467 * fns.c (Fassoc):
|
|
2468 * fns.c (Fold_assoc):
|
|
2469 * fns.c (Fassq):
|
|
2470 * fns.c (Fold_assq):
|
|
2471 * fns.c (assq_no_quit):
|
|
2472 * fns.c (Frassoc):
|
|
2473 * fns.c (Fold_rassoc):
|
|
2474 * fns.c (Frassq):
|
|
2475 * fns.c (Fold_rassq):
|
|
2476 * fns.c (rassq_no_quit):
|
|
2477 * fns.c (Fdelete):
|
|
2478 * fns.c (Fold_delete):
|
|
2479 * fns.c (Fdelq):
|
|
2480 * fns.c (Fold_delq):
|
|
2481 * fns.c (delq_no_quit):
|
|
2482 * fns.c (Fremassoc):
|
|
2483 * fns.c (Fremassq):
|
|
2484 * fns.c (remassq_no_quit):
|
|
2485 * fns.c (Fremrassoc):
|
|
2486 * fns.c (Fremrassq):
|
|
2487 * fns.c (remrassq_no_quit):
|
|
2488 * fns.c (Freverse):
|
|
2489 * fns.c (mapcar1):
|
|
2490 [1].
|
|
2491
|
|
2492 * frame-msw.c (mswindows_init_frame_1):
|
|
2493 * frame-msw.c (mswindows_delete_frame):
|
|
2494 Register popups with dialog code so keyboard traversing works.
|
|
2495
|
|
2496 * frame-tty.c (tty_raise_frame_no_select): [1].
|
|
2497
|
|
2498 * frame-x.c:
|
|
2499 * frame-x.c (x_set_frame_text_value):
|
|
2500 * frame-x.c (x_set_frame_properties):
|
|
2501 * frame-x.c (x_create_widgets):
|
|
2502 [7].
|
|
2503
|
|
2504 * frame.c:
|
|
2505 * frame.c (Fmouse_pixel_position): Minor doc fixes.
|
|
2506
|
|
2507 * frame.h (wrap_frame): New.
|
|
2508 Macro like wrap_device.
|
|
2509
|
|
2510 * general.c:
|
|
2511 * general.c (SYMBOL):
|
|
2512 * general.c (syms_of_general):
|
|
2513 Major reorg. This is now just a wrapper and symbols themselves
|
|
2514 are listed in general-slots.h.
|
|
2515
|
|
2516 * glyphs-eimage.c (tiff_instantiate): Need cast to fix warning.
|
|
2517 * glyphs-msw.c (mswindows_resource_instantiate): [5].
|
|
2518
|
|
2519 * glyphs-msw.c (mswindows_native_layout_instantiate):
|
|
2520 Add DS_CONTROL so keyboard traversal will work.
|
|
2521
|
|
2522 * glyphs-widget.c:
|
|
2523 * glyphs-widget.c (syms_of_glyphs_widget):
|
|
2524 Move some symbols to general-slots.h.
|
|
2525
|
|
2526 * glyphs-x.c:
|
|
2527 * glyphs-x.c (xbm_instantiate_1):
|
|
2528 * glyphs-x.c (x_xbm_instantiate):
|
|
2529 * glyphs-x.c (x_xface_instantiate):
|
|
2530 * glyphs-x.c (autodetect_instantiate):
|
|
2531 * glyphs-x.c (cursor_font_instantiate):
|
|
2532 * glyphs-x.c (x_update_widget):
|
|
2533 * glyphs-x.c (x_widget_instantiate):
|
|
2534 * glyphs.c (bitmap_to_lisp_data):
|
|
2535 * glyphs.c (pixmap_to_lisp_data):
|
|
2536 [7].
|
|
2537
|
|
2538 * glyphs.c (syms_of_glyphs):
|
|
2539 [2].
|
|
2540
|
|
2541 * gui-x.c:
|
|
2542 * gui-x.c (print_widget_value):
|
|
2543 * gui-x.c (menu_separator_style_and_to_external):
|
|
2544 * gui-x.c (add_accel_and_to_external):
|
|
2545 * gui-x.c (button_item_to_widget_value):
|
|
2546 * gui-x.c (gui_items_to_widget_values_1):
|
|
2547 * gui-x.c (gui_items_to_widget_values):
|
|
2548 * gui-x.c (syms_of_gui_x):
|
|
2549 * gui-x.c (vars_of_gui_x):
|
|
2550 Mule-ize entire file. Move menu-no-selection-hook to gui.c.
|
|
2551 [9].
|
|
2552
|
|
2553 * gui-x.h:
|
|
2554 Muleize, prototype changes matching gui-x.c.
|
|
2555
|
|
2556 * gui.c:
|
|
2557 * gui.c (separator_string_p):
|
|
2558 * gui.c (gui_item_add_keyval_pair):
|
|
2559 * gui.c (make_gui_item_from_keywords_internal):
|
|
2560 * gui.c (signal_too_long_error):
|
|
2561 * gui.c (parse_gui_item_tree_item):
|
|
2562 * gui.c (syms_of_gui):
|
|
2563 * gui.c (vars_of_gui):
|
|
2564 * gui.h:
|
|
2565 menu-no-selection-hook moved here (used by MSWin).
|
|
2566 Move some symbols to general-slots.h.
|
|
2567 [6].
|
|
2568 [9].
|
|
2569
|
|
2570 * insdel.c (get_buffer_pos_char):
|
|
2571 * insdel.c (get_buffer_range_char):
|
|
2572 Add GC comments.
|
|
2573
|
|
2574 * keymap.c (keymap_lookup_directly):
|
|
2575 * keymap.c (keymap_store):
|
|
2576 * keymap.c (ensure_meta_prefix_char_keymapp):
|
|
2577 * keymap.c (describe_map):
|
|
2578 * keymap.h:
|
|
2579 Support new button modifiers.
|
|
2580
|
|
2581 * lisp-disunion.h (wrap_object):
|
|
2582 * lisp-disunion.h (XSETOBJ):
|
|
2583 Rename make_obj to wrap_object.
|
|
2584
|
|
2585 * lisp-union.h:
|
|
2586 * lisp-union.h (make_int):
|
|
2587 * lisp-union.h (make_char):
|
|
2588 Support wrap_object.
|
|
2589
|
|
2590 * lisp.h:
|
|
2591 * lisp.h (LIST_LOOP):
|
|
2592 * lisp.h (EXTERNAL_LIST_LOOP):
|
|
2593 * lisp.h (LIST_LOOP_2):
|
|
2594 * lisp.h (EXTERNAL_LIST_LOOP_1):
|
|
2595 * lisp.h (EXTERNAL_LIST_LOOP_2):
|
|
2596 * lisp.h (EXTERNAL_LIST_LOOP_3):
|
|
2597 * lisp.h (EXTERNAL_LIST_LOOP_4_NO_DECLARE):
|
|
2598 * lisp.h (PRIVATE_EXTERNAL_LIST_LOOP_6):
|
|
2599 * lisp.h (GET_EXTERNAL_LIST_LENGTH):
|
|
2600 * lisp.h (EXTERNAL_ALIST_LOOP_5):
|
|
2601 * lisp.h (EXTERNAL_ALIST_LOOP_6):
|
|
2602 * lisp.h (EXTERNAL_ALIST_LOOP_6_NO_DECLARE):
|
|
2603 * lisp.h (EXTERNAL_PROPERTY_LIST_LOOP_5_NO_DECLARE):
|
|
2604 * lisp.h (EXTERNAL_PROPERTY_LIST_LOOP_7):
|
|
2605 * lisp.h (struct Lisp_Symbol):
|
|
2606 * lisp.h (maybe_continuable_error_with_frob):
|
|
2607 Fix up section comments.
|
|
2608 Add new types for char to indicate usage.
|
|
2609 Delete symbols auto-generated from general-slots.h.
|
|
2610 Add prototypes for structured error functions.
|
|
2611 Add long comments describing looping macros and change interface
|
|
2612 so that lvalues are automatically declared.
|
|
2613 Add NO_DECLARE macro in case callers want to declare lvalues
|
|
2614 themselves.
|
|
2615
|
|
2616 * lread.c (read_syntax_error):
|
|
2617 * lread.c (continuable_read_syntax_error):
|
|
2618 * lread.c (read_structure):
|
|
2619 * lread.c (sequence_reader):
|
|
2620 * lread.c (read_list_conser):
|
|
2621 * lread.c (read_compiled_function):
|
|
2622 Rename syntax_error and continuable_syntax_error to avoid clash
|
|
2623 with same-named structured error functions.
|
|
2624
|
|
2625 * menubar-msw.c (mswindows_translate_menu_or_dialog_item):
|
|
2626 * menubar-msw.c (populate_menu_add_item):
|
|
2627 * menubar-msw.c (populate_or_checksum_helper):
|
|
2628 [5].
|
|
2629 [9].
|
|
2630
|
|
2631 * menubar-x.c:
|
|
2632 * menubar-x.c (menu_item_descriptor_to_widget_value_1):
|
|
2633 Mule-ize whole file.
|
|
2634
|
|
2635 * menubar.c (Fnormalize_menu_item_name): Add optimization.
|
|
2636
|
|
2637 * mule-charset.c (Fmake_charset):
|
|
2638 * mule-wnnfns.c (Fwnn_set_param):
|
|
2639 [1].
|
|
2640
|
|
2641 * ntproc.c (create_child):
|
|
2642 * ntproc.c (Fwin32_set_current_locale):
|
|
2643 Add comments portending doom.
|
|
2644
|
|
2645 * objects-msw.c:
|
|
2646 * objects-msw.c (old_font_enum_callback_2):
|
|
2647 * objects-msw.c (font_enum_callback_1):
|
|
2648 * objects-msw.c (mswindows_enumerate_fonts):
|
|
2649 [5].
|
|
2650
|
|
2651 * objects-x.c:
|
|
2652 * objects-x.c (allocate_nearest_color):
|
|
2653 * objects-x.c (x_parse_nearest_color):
|
|
2654 * objects-x.c (x_initialize_color_instance):
|
|
2655 * objects-x.c (x_print_color_instance):
|
|
2656 * objects-x.c (x_finalize_color_instance):
|
|
2657 * objects-x.c (x_valid_color_name_p):
|
|
2658 * objects-x.c (x_initialize_font_instance):
|
|
2659 * objects-x.c (x_print_font_instance):
|
|
2660 * objects-x.c (valid_x_font_name_p):
|
|
2661 * objects-x.c (truename_via_FONT_prop):
|
|
2662 * objects-x.c (truename_via_random_props):
|
|
2663 * objects-x.c (truename_via_XListFonts):
|
|
2664 * objects-x.c (x_font_truename):
|
|
2665 * objects-x.c (x_font_instance_truename):
|
|
2666 * objects-x.c (x_font_instance_properties):
|
|
2667 * objects-x.c (x_list_fonts):
|
|
2668 * objects-x.c (x_find_charset_font):
|
|
2669 Mule-ize entire file.
|
|
2670 [7].
|
|
2671
|
|
2672 * objects-x.h:
|
|
2673 Mule-verify.
|
|
2674
|
|
2675 * print.c:
|
|
2676 * print.c (std_handle_out_external):
|
|
2677 * print.c (debug_print_no_newline):
|
|
2678 * print.c (syms_of_print):
|
|
2679 Output to all debugger kinds in debug-print.
|
|
2680 Fix console-output code under MSWin to actually work.
|
|
2681
|
|
2682 * process-nt.c (send_signal):
|
|
2683 * process-nt.c (nt_create_process):
|
|
2684 Use newer Unicode macros.
|
|
2685
|
|
2686 * process-unix.c (unix_create_process):
|
|
2687 * process-unix.c (unix_canonicalize_host_name):
|
|
2688 * process-unix.c (unix_open_network_stream):
|
|
2689 [7].
|
|
2690
|
|
2691 * scrollbar-x.c:
|
|
2692 Mule-verify.
|
|
2693
|
|
2694 * search.c (syms_of_search):
|
|
2695 [2].
|
|
2696
|
|
2697 * select-msw.c (mswindows_destroy_selection):
|
|
2698 Use LIST_LOOP_2.
|
|
2699
|
|
2700 * select-x.c (symbol_to_x_atom):
|
|
2701 [7].
|
|
2702
|
|
2703 * select.c (syms_of_select):
|
|
2704 [2].
|
|
2705
|
|
2706 * sound.c (Fplay_sound_file):
|
|
2707 [7].
|
|
2708
|
|
2709 * specifier.c:
|
|
2710 * specifier.c (decode_specifier_type):
|
|
2711 * specifier.c (Fvalid_specifier_locale_type_p):
|
|
2712 * specifier.c (check_valid_locale_or_locale_type):
|
|
2713 * specifier.c (decode_locale):
|
|
2714 * specifier.c (decode_locale_type):
|
|
2715 * specifier.c (decode_locale_list):
|
|
2716 * specifier.c (check_valid_domain):
|
|
2717 * specifier.c (decode_specifier_tag_set):
|
|
2718 * specifier.c (Fcanonicalize_tag_set):
|
|
2719 * specifier.c (Fdefine_specifier_tag):
|
|
2720 * specifier.c (Fspecifier_tag_predicate):
|
|
2721 * specifier.c (check_valid_inst_list):
|
|
2722 * specifier.c (check_valid_spec_list):
|
|
2723 * specifier.c (decode_how_to_add_specification):
|
|
2724 * specifier.c (check_modifiable_specifier):
|
|
2725 * specifier.c (specifier_add_spec):
|
|
2726 * specifier.c (boolean_validate):
|
|
2727 * specifier.c (display_table_validate):
|
|
2728 [9].
|
|
2729
|
|
2730 * specifier.c (syms_of_specifier):
|
|
2731 Move some symbols to general-slots.h.
|
|
2732 [2].
|
|
2733
|
|
2734 * symbols.c:
|
|
2735 * symbols.c (Fmapatoms):
|
|
2736 * symbols.c (Fapropos_internal):
|
|
2737 Add GCPROs.
|
|
2738
|
|
2739 * symbols.c (set_default_buffer_slot_variable):
|
|
2740 * symbols.c (set_default_console_slot_variable):
|
|
2741 [1].
|
|
2742
|
|
2743 * symbols.c (defsymbol_massage_name_1):
|
|
2744 * symbols.c (defkeyword_massage_name):
|
|
2745 * symbols.c (deferror_1):
|
|
2746 * symbols.c (deferror):
|
|
2747 * symbols.c (deferror_massage_name_and_message):
|
|
2748 * symeval.h:
|
|
2749 * symeval.h (DEFSYMBOL):
|
|
2750 Support DEFSYMBOL*, DEFKEYWORD, DEFERROR
|
|
2751
|
|
2752 * symbols.c (syms_of_symbols):
|
|
2753 [2].
|
|
2754
|
|
2755 * symsinit.h:
|
|
2756 * symsinit.h (init_win32): New.
|
|
2757 Also new is syms_of_dialog_mswindows.
|
|
2758
|
|
2759 * syswindows.h:
|
|
2760 Add new Unicode macros, missing Cygwin wide-char functions,
|
|
2761 convenience conversion macros for Qmswindows_tstr, macros for
|
|
2762 encapsulating required MSWin <-> Cygwin filename conversions,
|
|
2763 prototype for dynamically-extracted (not in NT 3.51) functions.
|
|
2764
|
|
2765 * toolbar-x.c:
|
|
2766 Mule-verify.
|
|
2767
|
|
2768 * tooltalk.c (Fadd_tooltalk_message_arg):
|
|
2769 * tooltalk.c (Fadd_tooltalk_pattern_attribute):
|
|
2770 * tooltalk.c (Fadd_tooltalk_pattern_arg):
|
|
2771 [7].
|
|
2772
|
|
2773 * tooltalk.c (syms_of_tooltalk):
|
|
2774 [2].
|
|
2775
|
|
2776 * unexnt.c:
|
|
2777 * unexnt.c (unexec):
|
|
2778 Fix up headers, declaration of unexec() to be more standard.
|
|
2779
|
|
2780 2000-07-20 Martin Buchholz <martin@xemacs.org>
|
|
2781
|
|
2782 * offix.h: Revert change to guard macros - they're used in offix.c!
|
|
2783
|
|
2784 2000-07-18 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
2785
|
|
2786 * lisp.h: Defsubred Fdelete.
|
|
2787
|
|
2788 * console-msw.h: (msprinter_default_printer): Added.
|
|
2789
|
|
2790 * console-msw.c (msprinter_canonicalize_console_connection):
|
|
2791 (msprinter_canonicalize_device_connection): Added.
|
|
2792
|
|
2793 * device-msw.c (msprinter_default_printer):
|
446
|
2794 (Fmswingows_get_default_printer):
|
|
2795 (signal_enum_priner_error):
|
442
|
2796 (Fmswingows_printer_list): Added.
|
|
2797
|
|
2798 2000-07-19 Martin Buchholz <martin@xemacs.org>
|
|
2799
|
|
2800 * XEmacs 21.2.35 is released.
|
|
2801
|
|
2802 2000-07-19 Martin Buchholz <martin@xemacs.org>
|
|
2803
|
446
|
2804 * select-x.c (x_handle_selection_request):
|
442
|
2805 Text selected in xemacs and pasted into xterm failed to appear.
|
|
2806 Spelling fixes and cosmetic changes.
|
|
2807
|
|
2808 2000-07-18 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
2809
|
|
2810 * event-msw.c (mswindows_drain_windows_queue): Correctly check for
|
|
2811 XEmacs frame (fix for doubling chars in dialog boxes).
|
|
2812
|
|
2813 2000-07-17 Alastair J. Houghton <ajhoughton@lineone.net>
|
|
2814
|
|
2815 * select.c (select_convert_in, select_convert_out):
|
|
2816 Don't call intern() every time.
|
|
2817
|
|
2818 * select.c (Qselect_convert_in, Qselect_convert_out): New.
|
|
2819 * select.c (vars_of_select): Initialise them.
|
|
2820
|
|
2821 2000-07-18 Alastair J. Houghton <ajhoughton@lineone.net>
|
|
2822
|
|
2823 * select.c (selection-coercible-types): New.
|
|
2824
|
|
2825 * select.c (own-selection-internal):
|
|
2826 * select.c (get-selection-internal):
|
|
2827 MULE bug fix - these should default to COMPOUND_TEXT and not
|
|
2828 STRING for MULE. I think.
|
|
2829
|
|
2830 * select.c (select_convert_out): Use selection-coercible-types
|
|
2831 to find types that we can attempt to perform coercions on.
|
|
2832
|
|
2833 2000-07-18 Martin Buchholz <martin@xemacs.org>
|
|
2834
|
|
2835 * mule-wnnfns.c:
|
|
2836 * mule-canna.c:
|
|
2837 Add coding: cookie to identify encoding.
|
|
2838
|
|
2839 * mule-canna.c (CANNA_mode_keys): make static.
|
|
2840 Use proper prototypes, even for functions of no arguments.
|
|
2841 Remove external prototype for Fding().
|
|
2842
|
|
2843 * symsinit.h: Add missing prototype for reinit_vars_of_mule_wnn.
|
|
2844
|
|
2845 * select.c (syms_of_select): Add missing DEFSUBR.
|
|
2846
|
|
2847 2000-07-18 Alastair J. Houghton <ajhoughton@lineone.net>
|
|
2848
|
|
2849 * select.c (get_selection_internal, own_selection_internal):
|
|
2850 Make the type default to STRING, rather than placing a nil type
|
|
2851 into Vselection_alist.
|
|
2852
|
|
2853 2000-07-17 Alastair J. Houghton <ajhoughton@lineone.net>
|
|
2854
|
|
2855 * gpmevent.c (tty_selection_exists_p):
|
|
2856 * gpmevent.c (tty_own_selection):
|
|
2857 Updated parameter lists.
|
|
2858
|
|
2859 2000-07-15 Alastair J. Houghton <ajhoughton@lineone.net>
|
|
2860
|
|
2861 * select.h (selection-alist): Removed declaration.
|
|
2862
|
|
2863 * select.h (get_local_selection):
|
|
2864 * select.c (get_local_selection):
|
|
2865 Made static.
|
|
2866
|
|
2867 * select.h (convert_selection): Removed declaration.
|
|
2868 * select.c (convert_selection): Removed.
|
|
2869 This function belongs in Lisp.
|
|
2870
|
|
2871 * select.h (select_convert_in): Declare.
|
|
2872 * select.h (select_convert_out): Declare.
|
|
2873 * select.c (select_convert_in): New.
|
|
2874 * select.c (select_convert_out): New.
|
|
2875 New conversion functions for other files to call.
|
|
2876
|
|
2877 * select.h (select_notify_buffer_kill): Declare.
|
|
2878 * select.c (select_notify_buffer_kill): New.
|
|
2879 New functions that get called from kill-buffer.
|
|
2880
|
|
2881 * buffer.c (kill-buffer): Call select_notify_buffer_kill, rather than
|
|
2882 X-specific lisp code.
|
|
2883
|
|
2884 * select.h: Declare some of the lisp-visible functions for
|
|
2885 external use.
|
|
2886
|
|
2887 * select.c (clean_local_selection_data): Removed. This was
|
|
2888 a disgusting function, and previously should have been in
|
|
2889 select-x.c in any case. The functionality is now provided
|
|
2890 in select-convert-from-integer (select.el).
|
|
2891
|
|
2892 * select.c (available-selection-types): Fixed stupidity where
|
|
2893 INTEGER and ATOM got added twice. Also add STRING when we see an
|
|
2894 extent.
|
|
2895
|
|
2896 * select.c (get-selection-internal): Removed symbol stripping. No
|
|
2897 longer causes conversion when data comes from the internal cache.
|
|
2898
|
|
2899 * select.c (syms_of_select): Added new functions.
|
|
2900
|
|
2901 * select-x.c (motif_clipboard_cb): Use select_convert_out. Rewrote
|
|
2902 error checking - previously this called abort!
|
446
|
2903
|
442
|
2904 * select-x.c (x_own_selection): Changed comment.
|
446
|
2905
|
442
|
2906 * select-x.c (x_handle_selection_request): Use select_convert_out.
|
|
2907 Don't mess with selection-alist; it's an internal variable of select.c.
|
446
|
2908
|
442
|
2909 * select-x.c (x_get_foreign_selection): Use select_convert_in.
|
446
|
2910
|
442
|
2911 * select-x.c (x_handle_selection_clear): Use get-selection-timestamp,
|
|
2912 rather than messing with selection-alist.
|
446
|
2913
|
442
|
2914 * select-msw.c (mswindows_get_foreign_selection):
|
|
2915 Use TO_INTERNAL_FORMAT rather than hacking.
|
|
2916
|
|
2917 2000-07-14 Martin Buchholz <martin@xemacs.org>
|
|
2918
|
|
2919 * process-unix.c (unix_open_multicast_group):
|
|
2920 (unix_open_multicast_group): Remove useless casts.
|
|
2921
|
|
2922 2000-07-13 Martin Buchholz <martin@xemacs.org>
|
|
2923
|
|
2924 * sound.c (Fplay_sound): Fix `unused variable' warning.
|
|
2925
|
|
2926 * emacs.c (main): Use correct type for _environ on SCO5.
|
|
2927
|
|
2928 2000-07-12 Alastair J. Houghton <ajhoughton@lineone.net>
|
|
2929
|
|
2930 * console.h (own_selection_method):
|
|
2931 * console.h (selection_exists_p_method):
|
|
2932 * console.h (available_selection_types_method): New.
|
|
2933 * console.h (register_selection_data_type_method): New.
|
|
2934 * console.h (selection_data_type_name): New.
|
446
|
2935
|
442
|
2936 * console-msw.h (mswindows_destroy_selection): Declare it. New
|
|
2937 function & alist to track GlobalAlloc()'d handles that need
|
|
2938 releasing when the clipboard data gets replaced or emptied.
|
|
2939
|
|
2940 * event-msw.c (mswindows_wnd_proc): Call it.
|
|
2941
|
|
2942 * lisp.h, general.c (Qappend): New symbol representing a
|
|
2943 `how-to-add' mode.
|
446
|
2944
|
442
|
2945 * select.c (own-selection-internal):
|
|
2946 * select.c (selection-exists-p):
|
|
2947 * select.c (available-selection-types): New.
|
|
2948 * select.c (register-selection-data-type): New.
|
|
2949 * select.c (selection-data-type-name): New. New functions to deal
|
|
2950 with device-specific selection data formats.
|
|
2951 * select.c (selection-converter-out-alist): Renamed.
|
|
2952 * select.c (selection-converter-in-alist): New.
|
|
2953 * select.c (selection-appender-alist): New. Added new alists.
|
|
2954 * select.c (syms_of_select, vars_of_select): Added new symbols &
|
|
2955 variables.
|
|
2956 * select.c (get_local_selection): Split.
|
|
2957 * select.c: Removed spurious type checking - selections may now be
|
|
2958 of any type, not just strings.
|
|
2959 * select.c (own-selection-internal):
|
|
2960
|
|
2961 * select.h, select.c (convert_selection): New. Created
|
|
2962 convert_selection() function based on get_local_selection().
|
|
2963 * select.h, select.c (QCF_*): New symbols representing mswindows
|
|
2964 clipboard formats.
|
|
2965 * select.h, select.c (Qreplace_all, Qreplace_existing): New
|
|
2966 symbols representing `how-to-add' modes.
|
|
2967
|
|
2968 * select-msw.c (x_sym_p): New.
|
|
2969 * select-msw.c (symbol_to_ms_cf): New.
|
|
2970 * select-msw.c (ms_cf_to_symbol): New. New functions to deal with
|
|
2971 symbols & clipboard formats. Can also handle string names.
|
|
2972 * select-msw.c (mswindows_own_selection):
|
|
2973 * select-msw.c (mswindows_selection_exists_p):
|
|
2974 Added `data-type' parameter. Use it.
|
|
2975 * select-msw.c (mswindows_available_selection_types): New.
|
|
2976 * select-msw.c (mswindows_register_selection_data_type): New.
|
|
2977 * select-msw.c (mswindows_selection_data_type_name): New.
|
|
2978 * select-msw.c (mswindows_own_selection):
|
|
2979 * select-msw.c (mswindows_get_foreign_selection):
|
|
2980 * select-msw.c (mswindows_selection_exists_p): Rewrote.
|
|
2981 * select-msw.c (console_create_select_mswindows): Added new methods.
|
|
2982 * select-msw.c (mswindows_destroy_selection): New.
|
|
2983 * select-msw.c (Vhandle_alist): New list.
|
|
2984 * select-msw.c (mswindows_own_selection):
|
|
2985
|
|
2986 * select-x.c (x_own_selection):
|
|
2987 * select-x.c (x_selection_exists_p):
|
|
2988 * select-x.c: Added some comments about maybe using new
|
|
2989 functionality.
|
|
2990 * select-x.c (x_own_selection):
|
|
2991
|
|
2992 * specifier.c: Remove definition of Qappend (now in general.c)
|
|
2993 * specifier.c (syms_of_specifier): Remove Qappend.
|
|
2994
|
|
2995 2000-07-12 Martin Buchholz <martin@xemacs.org>
|
|
2996
|
|
2997 * config.h.in: Add socklen_t.
|
|
2998
|
|
2999 * s/decosf4-0.h: No special compiler flags needed or desired.
|
|
3000 In particular, undefine _BSD for DEC OSF 4.0.
|
|
3001
|
|
3002 2000-07-07 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
3003
|
|
3004 * redisplay-msw.c (msprinter_frame_output_end): Added.
|
|
3005 (console_type_create_redisplay_mswindows): Referred the above.
|
|
3006
|
|
3007 * frame.c (setup_frame_without_minibuffer): Do not create a
|
|
3008 default minibuffer frame on a printer device.
|
|
3009
|
|
3010 * frame-msw.c (apply_dc_geometry): Added.
|
446
|
3011 (msprinter_start_page):
|
|
3012 (msprinter_init_frame_3):
|
442
|
3013 (msprinter_eject_page): Use it.
|
|
3014
|
|
3015 * console-msw.h (struct msprinter_frame): Added pix_left and top,
|
|
3016 and removed residual duplex and orientation properties.
|
|
3017
|
|
3018 2000-07-11 Martin Buchholz <martin@xemacs.org>
|
|
3019
|
|
3020 * eval.c (function_argcount): Work around a DEC CC compiler bug.
|
|
3021
|
|
3022 * unexalpha.c: Remove system prototypes from C sources!
|
|
3023
|
|
3024 2000-07-09 Adrian Aichner <aichner@ecf.teradyne.com>
|
|
3025
|
|
3026 * eval.c: Remove references to M-x edit-options in DEFUNs for
|
|
3027 `defvar' and `defconst'.
|
|
3028
|
|
3029 2000-07-09 Martin Buchholz <martin@xemacs.org>
|
|
3030
|
|
3031 * config.h.in: Remove SMART_INCLUDE hackery.
|
446
|
3032
|
442
|
3033 PostgreSQL hacking:
|
|
3034 * config.h.in: Don't use SMART_INCLUDE.
|
|
3035
|
|
3036 * postgresql.h: Include libpq-fe.h here. Fix typo.
|
|
3037 * inline.c: Simply #include "postgresql.h"
|
|
3038 * postgresql.c:
|
|
3039 - Don't use SMART_INCLUDE
|
|
3040 - Use simply "const".
|
|
3041 - Use standard doc string conventions.
|
|
3042 - Use correct type for result of PQstatus.
|
|
3043
|
|
3044 2000-07-09 Martin Buchholz <martin@xemacs.org>
|
|
3045
|
|
3046 * glyphs-x.c (x_xface_instantiate): Fix C++ compilation warnings.
|
|
3047
|
|
3048 C++ compilation changes.
|
|
3049 * config.h.in (EXTERN_C): Define.
|
|
3050 * config.h.in (not): This is also a C++ keyword.
|
|
3051 * unexalpha.c (DEFAULT_ENTRY_ADDRESS): Enable C++ compilation.
|
|
3052 * cm.c: Use EXTERN_C.
|
|
3053 * redisplay-tty.c: Use EXTERN_C.
|
|
3054 * sysdep.c: Use EXTERN_C. Remove Gould support.
|
|
3055
|
|
3056 2000-07-09 Martin Buchholz <martin@xemacs.org>
|
|
3057
|
|
3058 * general.c: Remove duplicate definition for Qfunction.
|
|
3059
|
|
3060 2000-07-08 Ben Wing <ben@xemacs.org>
|
|
3061
|
|
3062 * device-msw.c (msprinter_init_device):
|
|
3063 * device-msw.c (sync_printer_with_devmode):
|
|
3064 * device-msw.c (handle_devmode_changes):
|
|
3065 * device-msw.c (print_dialog_worker):
|
|
3066 * device-msw.c (Fmsprinter_apply_settings):
|
|
3067 * device-msw.c (hash_devmode):
|
|
3068 * device-msw.c (Fmsprinter_settings_despecialize):
|
|
3069 use Qmswindows_tstr, not Qctext.
|
446
|
3070
|
442
|
3071 * vm-limit.c (check_memory_limits):
|
|
3072 avoid infinite loop printing warning messages.
|
|
3073
|
|
3074 2000-07-05 Craig Lanning <lanning@scra.org>
|
|
3075
|
|
3076 * Makefile.in.in: Add support for including the Windows resources
|
|
3077 when building with the cygwin and mingw targets.
|
|
3078
|
|
3079 * buffer.c: from Dan Holmsand, on Windows $PWD is most likely either
|
|
3080 not set or not correct.
|
|
3081 (directory_is_current_directory): Don't compile for WIN32_NATIVE.
|
|
3082 (init_initial_directory): Don't try to use $PWD on the
|
|
3083 WIN32_NATIVE target.
|
|
3084
|
|
3085 * s\cygwin32.h:
|
|
3086 [[Add -mwindows to eliminate console window.]] not required --ben
|
|
3087 (HAVE_NATIVE_SOUND): removed; now handled by configure.
|
|
3088 (MAIL_USE_POP): removed; now handled by configure.
|
|
3089
|
|
3090 * s\mingw32.h: [[Add -mwindows to eliminate console window.]] not in
|
|
3091 C_SWITCH_SYSTEM or it will affect lib-src progs. --ben
|
|
3092 (HAVE_NATIVE_SOUND): removed; now handled by configure.
|
|
3093 (MAIL_USE_POP): removed; now handled by configure.
|
|
3094 (ENCAPSULATE_STAT): from Dan Holmsand, added.
|
|
3095 (ENCAPSULATE_FSTAT): from Dan Holmsand, added.
|
|
3096 (DIRECTORY_SEP): from Dan Holmsand, use lisp variable instead of
|
|
3097 constant string.
|
|
3098 (HAVE_TIMEVAL): from Dan Holmsand, added; struct timeval is picked
|
|
3099 up from <winsock.h> via systime.h.
|
|
3100 (HAVE_GETPAGESIZE): from Dan Holmsand, added.
|
|
3101 (getpagesize): from Dan Holmsand, added.
|
|
3102 Added #endif which was left dangling by Ben's mega patch; added
|
|
3103 comment to help prevent this in the future.
|
|
3104
|
|
3105 * sysdll.c: added #include <windows.h> for WIN32_NATIVE case.
|
|
3106
|
|
3107 2000-07-05 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
3108
|
|
3109 * console-msw.h (struct mswindows_device): Removed unnecessary
|
|
3110 cached device geometry values.
|
|
3111 Added update_tick and an accessor macro.
|
446
|
3112 (Lisp_Devmode): Added lrecord declaration.
|
442
|
3113 (struct msprinter_device): Contain devmode as a Lisp object.
|
|
3114 Added mswindows_get_selected_frame_hwnd();
|
|
3115
|
|
3116 * console.h (struct console_methods): Indentation nitpicking.
|
|
3117
|
|
3118 * device-msw.c (mswindows_init_device): Do not initialize geometry
|
|
3119 cache. Initialize update tick.
|
|
3120 (mswindows_device_system_metrics): Ask the device for its geometry.
|
446
|
3121 (global_free_2_maybe):
|
|
3122 (devmode_to_hglobal):
|
|
3123 (handle_printer_changes):
|
|
3124 (ensure_not_printing):
|
|
3125 (print_dialog_worker):
|
|
3126 (Fmsprinter_print_setup_dialog):
|
|
3127 (Fmsprinter_print_dialog):
|
|
3128 (plist_get_margin):
|
|
3129 (plist_set_margin):
|
442
|
3130 (Fmsprinter_page_setup_dialog): Added functions.
|
446
|
3131 (sync_printer_with_devmode):
|
|
3132 (handle_devmode_changes):
|
|
3133 (Fmsprinter_get_settings):
|
|
3134 (Fmsprinter_select_settings):
|
442
|
3135 (Fmsprinter_apply_settings):
|
446
|
3136 (allocate_devmode):
|
|
3137 (Fmsprinter_settings_copy):
|
|
3138 (Fmsprinter_settings_despecialize):
|
|
3139 (print_devmode):
|
|
3140 (finalize_devmode):
|
|
3141 (equal_devmode):
|
442
|
3142 (hash_devmode): Added functions
|
|
3143 (syms_of_device_mswindows): Init devmode lrecord class.
|
|
3144
|
|
3145 * device.h: Added an exfun for find-device.
|
|
3146
|
|
3147 * event-msw.c (mswindows_wnd_proc): Do not update the cached
|
|
3148 geometry; although, recreate the device compatible DC.
|
|
3149
|
|
3150 * frame-msw.c (mswindows_get_selected_frame_hwnd): Added.
|
|
3151 (msprinter_init_frame_3):
|
446
|
3152 (msprinter_frame_property):
|
442
|
3153 (msprinter_internal_frame_property_p):
|
446
|
3154 (msprinter_frame_properties):
|
442
|
3155 (msprinter_set_frame_properties): Removed 'orientation and 'duplex
|
|
3156 print job properties (will move to device settings).
|
|
3157
|
|
3158 * lisp.h: Added symbols.
|
|
3159
|
|
3160 * general.c (syms_of_general): Declared them.
|
|
3161
|
|
3162 * hash.c (string_hash): Added.
|
|
3163
|
|
3164 * lrecord.h (lrecord_type): Added devmode lrecord type.
|
|
3165
|
|
3166 2000-07-02 Mike Sperber <mike@xemacs.org>
|
|
3167
|
|
3168 * s/freebsd.h (INTERRUPTIBLE_OPEN): open *is* interruptible on
|
|
3169 FreeBSD 4.0.
|
|
3170
|
|
3171 2000-06-07 MORIOKA Tomohiko <tomo@etl.go.jp>
|
|
3172
|
|
3173 * doprnt.c (emacs_doprnt_1): Fix problem with %0XXd for a negative
|
|
3174 integer.
|
|
3175
|
|
3176 2000-06-07 MORIOKA Tomohiko <tomo@urania.m17n.org>
|
|
3177
|
|
3178 * data.c (Fstring_to_number): Don't recognize floating point if
|
|
3179 base is not 10.
|
|
3180
|
|
3181 2000-06-22 Martin Buchholz <martin@xemacs.org>
|
|
3182
|
|
3183 * glyphs-widget.c (tab_control_query_geometry):
|
|
3184 (widget_query_geometry):
|
|
3185 (button_query_geometry):
|
|
3186 * glyphs.c (text_query_geometry):
|
|
3187 Enforce type correctness.
|
|
3188
|
|
3189 2000-06-18 Martin Buchholz <martin@xemacs.org>
|
|
3190
|
|
3191 * s/decosf4-0.h (_etext): Use portable _etext instead of etext.
|
|
3192 * s/decosf4-0.h (_edata): Use portable _edata instead of edata.
|
|
3193
|
|
3194 2000-06-17 Martin Buchholz <martin@xemacs.org>
|
|
3195
|
|
3196 * s/decosf4-0.h: Never #include "/usr/include/FOO.h" because this
|
|
3197 conflicts with gcc's fixincluded version of FOO.h.
|
|
3198
|
|
3199 * glyphs.h (image_instance_geometry): Remove trailing `,'
|
|
3200
|
|
3201 2000-06-08 Mike Alexander <mta@arbortext.com>
|
|
3202
|
|
3203 (MAX_SHOVE_BUFFER_SIZE): Change to 512 to match stream buffer size
|
|
3204 (shove_thread): Don't write the same output twice
|
|
3205 (make_ntpipe_output_stream): Increase priority of shove thread
|
|
3206 (ntpipe_shove_writer): Call SwitchToThread to give shove thread a
|
|
3207 chance to run
|
|
3208 (ntpipe_shove_closer): Don't delete the pipe until we're done with
|
|
3209 it.
|
|
3210
|
|
3211 2000-06-12 Ben Wing <ben@xemacs.org>
|
|
3212
|
|
3213 * s\mingw32.h (sigset):
|
|
3214 * s\windowsnt.h (sigset):
|
|
3215 rename msw_ to mswindows_ for consistency with general convention.
|
|
3216
|
|
3217 2000-06-12 Ben Wing <ben@xemacs.org>
|
|
3218
|
|
3219 * console-msw.c:
|
|
3220 * console-msw.c (mswindows_get_console_hwnd):
|
|
3221 * console-msw.c (mswindows_ensure_console_allocated):
|
|
3222 * console-msw.c (mswindows_hide_console):
|
|
3223 * console-msw.c (mswindows_show_console):
|
|
3224 * console-msw.c (mswindows_ensure_console_buffered):
|
|
3225 * console-msw.c (mswindows_output_console_string):
|
|
3226 * console-msw.c (mswindows_windows9x_p):
|
|
3227 * console-msw.h:
|
|
3228 * device-msw.c (mswindows_get_workspace_coords):
|
|
3229 * device-msw.c (mswindows_device_system_metrics):
|
|
3230 * dialog-msw.c (mswindows_popup_dialog_box):
|
|
3231 * event-msw.c (mswindows_wnd_proc):
|
|
3232 * frame-msw.c (mswindows_size_frame_internal):
|
|
3233 * menubar-msw.c (mswindows_translate_menu_or_dialog_item):
|
|
3234 * menubar-msw.c (displayable_menu_item):
|
|
3235 * menubar-msw.c (mswindows_char_is_accelerator):
|
|
3236 * nt.c:
|
|
3237 * nt.c (mswindows_sigset):
|
|
3238 * nt.c (mswindows_sigrelse):
|
|
3239 * nt.c (mswindows_sigpause):
|
|
3240 * nt.c (mswindows_raise):
|
|
3241 * nt.c (timer_proc):
|
|
3242 * ntproc.c:
|
|
3243 * ntproc.c (find_child_console):
|
|
3244 * ntproc.c (sys_kill):
|
|
3245 * print.c:
|
|
3246 * print.c (std_handle_out_external):
|
|
3247 * process-nt.c (find_child_console):
|
|
3248 * process-nt.c (send_signal_the_95_way):
|
|
3249 * process-nt.c (ensure_console_window_exists):
|
|
3250 * process-nt.c (nt_create_process):
|
|
3251 * syssignal.h:
|
|
3252 rename msw_ to mswindows_ for consistency with general convention.
|
|
3253
|
|
3254 * emacs.c:
|
|
3255 * dumper.c:
|
|
3256 include nt.h, not syswindows.h.
|
|
3257
|
|
3258 * nt.c (mswindows_fstat):
|
|
3259 * nt.c (mswindows_stat):
|
|
3260 prefix mswindows_ instead of attempting to directly override the
|
|
3261 library functions. fix declarations.
|
446
|
3262
|
442
|
3263 * nt.h:
|
|
3264 include syswindows.h. move some sysdep.h stuff here.
|
446
|
3265
|
442
|
3266 * ntheap.h:
|
|
3267 include syswindows.h, not <windows.h>.
|
|
3268
|
|
3269 * ntplay.c:
|
|
3270 clean up headers.
|
446
|
3271
|
442
|
3272 * sysdep.c:
|
|
3273 clean up headers.
|
446
|
3274
|
442
|
3275 * sysdep.c (sys_fstat):
|
|
3276 * sysdep.c (sys_stat):
|
|
3277 call mswindows versions when appropriate.
|
446
|
3278
|
442
|
3279 * sysdep.h:
|
|
3280 move mswin decls to nt.h.
|
446
|
3281
|
442
|
3282 * syswindows.h:
|
|
3283 add long comment describing appropriate use of the various windows
|
|
3284 headers.
|
|
3285
|
|
3286 2000-06-11 Ben Wing <ben@xemacs.org>
|
|
3287
|
|
3288 * device-x.c: Correct doc string for sixth arg of x-get-resource.
|
|
3289
|
|
3290 2000-06-10 Ben Wing <ben@xemacs.org>
|
|
3291
|
|
3292 * Makefile.in.in (release):
|
|
3293 Correction to make sure xemacs.exe always dumped when correct.
|
446
|
3294
|
442
|
3295 * alloca.c:
|
|
3296 * balloon_help.c:
|
|
3297 [[[[3]]]]: Conditionalize on actual problem, not WINDOWSNT.
|
446
|
3298
|
442
|
3299 * buffer.c (set_buffer_internal):
|
|
3300 [[[[2]]]]: Remove HAVE_FEP code.
|
|
3301
|
|
3302 * buffer.c (init_initial_directory):
|
|
3303 [3].
|
446
|
3304
|
442
|
3305 * bytecode.c:
|
|
3306 [[[[4]]]]: limits.h standardly included in lisp.h; remove from
|
|
3307 individual files.
|
446
|
3308
|
442
|
3309 * callproc.c:
|
|
3310 * callproc.c (call_process_cleanup):
|
|
3311 * callproc.c (Fold_call_process_internal):
|
|
3312 * callproc.c (child_setup):
|
|
3313 * callproc.c (getenv_internal):
|
|
3314 * callproc.c (init_callproc):
|
|
3315 * callproc.c (vars_of_callproc):
|
|
3316 [[[[1]]]]: WINDOWSNT -> WIN32_NATIVE.
|
|
3317 __CYGWIN32__ -> CYGWIN.
|
|
3318 DOS_NT -> WIN32_NATIVE.
|
|
3319 Remove MSDOS support/references, converting to WIN32_NATIVE
|
|
3320 where correct.
|
|
3321 __MINGW32__ -> MINGW.
|
|
3322 Fix windows.h includes.
|
|
3323 Remove bogus HAVE_NTGUI.
|
|
3324
|
|
3325 * config.h.in:
|
|
3326 [2].
|
446
|
3327
|
442
|
3328 * console-msw.c:
|
|
3329 mswindows_message_outputted added for use in allowing startup
|
|
3330 errors on the console to be seen.
|
446
|
3331
|
442
|
3332 * console-msw.c (msw_ensure_console_allocated):
|
|
3333 * console-msw.c (msw_output_console_string):
|
|
3334 * console-msw.c (DHEADER):
|
|
3335 * console-msw.c (DOPAQUE_DATA):
|
|
3336 * console-msw.c (DEVENT):
|
|
3337 * console-msw.c (DCONS):
|
|
3338 * console-msw.c (DCONSCDR):
|
|
3339 * console-msw.c (DSTRING):
|
|
3340 * console-msw.c (DVECTOR):
|
|
3341 * console-msw.c (DSYMBOL):
|
|
3342 * console-msw.c (DSYMNAME):
|
|
3343 Fix warnings.
|
446
|
3344
|
442
|
3345 * console-stream.c (stream_init_console):
|
|
3346 Fix text/binary problems.
|
446
|
3347
|
442
|
3348 * device-msw.c:
|
|
3349 * device-msw.c (mswindows_finish_init_device):
|
|
3350 * device-msw.c (mswindows_delete_device):
|
|
3351 [1].
|
446
|
3352
|
442
|
3353 * device.c (handle_asynch_device_change):
|
|
3354 [3].
|
446
|
3355
|
442
|
3356 * dgif_lib.c:
|
|
3357 * dgif_lib.c (DGifOpenFileName):
|
|
3358 * dgif_lib.c (DGifOpenFileHandle):
|
|
3359 * dgif_lib.c (DGifGetLine):
|
|
3360 * dgif_lib.c (DGifGetPixel):
|
|
3361 Added config.h/lisp.h, fix up includes.
|
|
3362 [1].
|
446
|
3363
|
442
|
3364 * dired-msw.c:
|
|
3365 [4].
|
446
|
3366
|
442
|
3367 * dired.c:
|
|
3368 * dired.c (file_name_completion):
|
|
3369 * dired.c (Ffile_attributes):
|
|
3370 * dired.c (syms_of_dired):
|
|
3371 [1].
|
446
|
3372
|
442
|
3373 * dumper.c:
|
|
3374 * dumper.c (pdump_file_unmap):
|
|
3375 * dumper.c (pdump_load):
|
|
3376 [1].
|
446
|
3377
|
442
|
3378 * editfns.c:
|
|
3379 * editfns.c (Ftemp_directory):
|
|
3380 * editfns.c (user_login_name):
|
|
3381 * editfns.c (Fuser_real_login_name):
|
|
3382 * editfns.c (get_home_directory):
|
|
3383 [1].
|
446
|
3384
|
442
|
3385 * elhash.c (finish_marking_weak_hash_tables):
|
|
3386 [[[[5]]]]: Fix GCC warnings.
|
446
|
3387
|
442
|
3388 * emacs.c:
|
|
3389 * emacs.c (mswindows_handle_hardware_exceptions):
|
|
3390 * emacs.c (make_arg_list_1):
|
|
3391 * emacs.c (main_1):
|
|
3392 * emacs.c (Fkill_emacs):
|
|
3393 * emacs.c (Fdump_emacs):
|
|
3394 [1].
|
|
3395 Fix problems with nested crashes, add long comment.
|
446
|
3396
|
442
|
3397 * event-Xt.c (init_event_Xt_late):
|
|
3398 [1].
|
446
|
3399
|
442
|
3400 * event-msw.c:
|
|
3401 * event-msw.c (mswindows_dde_callback):
|
|
3402 * event-msw.c (mswindows_handle_sticky_modifiers):
|
|
3403 * event-msw.c (mswindows_wnd_proc):
|
|
3404 [1].
|
|
3405 [5].
|
446
|
3406
|
442
|
3407 * events.c (character_to_event):
|
|
3408 [1].
|
446
|
3409
|
442
|
3410 * fileio.c:
|
|
3411 * fileio.c (Ffile_name_directory):
|
|
3412 * fileio.c (Ffile_name_nondirectory):
|
|
3413 * fileio.c (directory_file_name):
|
|
3414 * fileio.c (Fexpand_file_name):
|
|
3415 * fileio.c (Fsubstitute_in_file_name):
|
|
3416 * fileio.c (Ffile_name_absolute_p):
|
|
3417 * fileio.c (check_executable):
|
|
3418 * fileio.c (Ffile_readable_p):
|
|
3419 * fileio.c (Ffile_accessible_directory_p):
|
|
3420 * fileio.c (Ffile_modes):
|
|
3421 * fileio.c (Funix_sync):
|
|
3422 * fileio.c (vars_of_fileio):
|
|
3423 [1]. [4].
|
|
3424
|
|
3425 [[[[7]]]]: Move CORRECT_DIR_SEPS to s\windowsnt.h.
|
446
|
3426
|
442
|
3427 Expand getdefdir defn.
|
|
3428 Fix bogus rename() comment.
|
|
3429
|
|
3430 [[[[6]]]]: Fix Windows includes w.r.t. removed nt\inc. Attempt
|
|
3431 to use standard XEmacs include files, e.g. sysfile.h, rather
|
|
3432 than system-specific includes.
|
446
|
3433
|
442
|
3434 * fns.c:
|
|
3435 * fns.c (Fsubseq):
|
|
3436 [5]. [6].
|
446
|
3437
|
442
|
3438 * frame.c (vars_of_frame):
|
|
3439 [1].
|
446
|
3440
|
442
|
3441 * getloadavg.c:
|
|
3442 * getloadavg.c (getloadavg):
|
|
3443 [1]. [6].
|
|
3444 #ifdef XEMACS not defined on Cygwin. Remove this; no need for it.
|
|
3445 (We don't use it elsewhere in the code; just add a comment.)
|
446
|
3446
|
442
|
3447 * gif_io.c:
|
|
3448 [6].
|
|
3449 Add config.h.
|
446
|
3450
|
442
|
3451 * glyphs-msw.c:
|
|
3452 * glyphs-msw.c (mswindows_resource_instantiate):
|
|
3453 [1].
|
446
|
3454
|
442
|
3455 * glyphs-x.c (x_native_layout_instantiate):
|
|
3456 [5].
|
446
|
3457
|
442
|
3458 * gui-msw.c (Fmswindows_shell_execute):
|
|
3459 [1].
|
446
|
3460
|
442
|
3461 * insdel.c:
|
|
3462 [4].
|
446
|
3463
|
442
|
3464 * lisp.h:
|
|
3465 [4]. [5].
|
446
|
3466
|
442
|
3467 * lread.c (locate_file_in_directory_mapper):
|
|
3468 [1].
|
446
|
3469
|
442
|
3470 * lstream.c:
|
|
3471 [4].
|
446
|
3472
|
442
|
3473 * mem-limits.h:
|
|
3474 * mem-limits.h (get_lim_data):
|
|
3475 [1].
|
446
|
3476
|
442
|
3477 * menubar-msw.c:
|
|
3478 [4].
|
446
|
3479
|
442
|
3480 * ndir.h:
|
|
3481 [1].
|
446
|
3482
|
442
|
3483 * nt.c:
|
|
3484 * nt.c (getwd):
|
|
3485 * nt.c (closedir):
|
|
3486 * nt.c (rva_to_section):
|
|
3487 * nt.c (mswindows_executable_type):
|
|
3488 [1]. [6].
|
|
3489 Fix closedir() defn.
|
446
|
3490
|
442
|
3491 * nt.h:
|
|
3492 [[[[8]]]]: *_OK defs moved to sysfile.h.
|
446
|
3493
|
442
|
3494 * ntproc.c:
|
|
3495 [6]. [7].
|
446
|
3496
|
442
|
3497 * objects-x.c:
|
|
3498 [4].
|
446
|
3499
|
442
|
3500 * print.c:
|
|
3501 * print.c (std_handle_out_external):
|
|
3502 [1]. [4].
|
446
|
3503
|
442
|
3504 * process-nt.c:
|
|
3505 * process-nt.c (nt_create_process):
|
|
3506 [6].
|
|
3507 try to fix process quoting somewhat.
|
446
|
3508
|
442
|
3509 * process-unix.c (unix_create_process):
|
|
3510 [1].
|
446
|
3511
|
442
|
3512 * process.c:
|
|
3513 * process.c (vars_of_process):
|
|
3514 Add Vnull_device.
|
446
|
3515
|
442
|
3516 * process.h:
|
|
3517 [1].
|
446
|
3518
|
442
|
3519 * realpath.c:
|
|
3520 * realpath.c (xrealpath):
|
|
3521 [1].
|
446
|
3522
|
442
|
3523 * redisplay-tty.c (init_tty_for_redisplay):
|
|
3524 [3].
|
446
|
3525
|
442
|
3526 * redisplay.c:
|
|
3527 [4]. [6].
|
446
|
3528
|
442
|
3529 * scrollbar-msw.c:
|
|
3530 [4].
|
446
|
3531
|
442
|
3532 * sheap.c:
|
|
3533 * sheap.c (more_static_core):
|
|
3534 * sheap.c (report_sheap_usage):
|
|
3535 [5]. [6].
|
446
|
3536
|
442
|
3537 * signal.c:
|
|
3538 * signal.c (alarm_signal):
|
446
|
3539 [1]. [6].
|
|
3540
|
442
|
3541 * sound.c:
|
|
3542 [6].
|
446
|
3543
|
442
|
3544 * strftime.c:
|
|
3545 * strftime.c (zone_name):
|
|
3546 [1]. [5].
|
446
|
3547
|
442
|
3548 * symsinit.h (init_sunpro):
|
|
3549 [1].
|
446
|
3550
|
442
|
3551 * syscommctrl.h:
|
|
3552 commctrl.h not in Cygwin b20.1.
|
446
|
3553
|
442
|
3554 * sysdep.c:
|
|
3555 * sysdep.c (endif):
|
|
3556 * sysdep.c (sys_subshell):
|
|
3557 * sysdep.c (init_baud_rate):
|
|
3558 * sysdep.c (emacs_get_tty):
|
|
3559 * sysdep.c (emacs_set_tty):
|
|
3560 * sysdep.c (tty_init_sys_modes_on_device):
|
|
3561 * sysdep.c (init_system_name):
|
|
3562 * sysdep.c (sys_open):
|
|
3563 * sysdep.c (interruptible_open):
|
|
3564 * sysdep.c (sys_fopen):
|
|
3565 * sysdep.c (sys_mkdir):
|
|
3566 * sysdep.c (sys_rename):
|
|
3567 * sysdep.c (get_process_times_1):
|
|
3568 [1]. [6].
|
446
|
3569
|
442
|
3570 * sysdep.h:
|
|
3571 [1].
|
446
|
3572
|
442
|
3573 * sysdir.h:
|
|
3574 * sysdir.h (DIRENTRY_NONEMPTY):
|
|
3575 [1]. [6].
|
446
|
3576
|
442
|
3577 * sysdll.c (dll_init):
|
|
3578 * sysdll.h:
|
|
3579 [1].
|
446
|
3580
|
442
|
3581 * sysfile.h:
|
|
3582 [1]. [6]. [8].
|
|
3583 added text/binary defs.
|
446
|
3584
|
442
|
3585 * sysfloat.h:
|
|
3586 [1].
|
446
|
3587
|
442
|
3588 * sysproc.h:
|
|
3589 * sysproc.h (EDESTADDRREQ):
|
|
3590 * sysproc.h (poll_fds_for_input):
|
|
3591 [1]. [6].
|
446
|
3592
|
442
|
3593 * syspwd.h:
|
|
3594 [6].
|
446
|
3595
|
442
|
3596 * syssignal.h:
|
|
3597 [1].
|
446
|
3598
|
442
|
3599 * systime.h:
|
|
3600 [1]. [6].
|
446
|
3601
|
442
|
3602 * systty.h:
|
|
3603 [1].
|
446
|
3604
|
442
|
3605 * syswindows.h:
|
|
3606 [1].
|
|
3607 Always define WIN32_LEAN_AND_MEAN.
|
446
|
3608
|
442
|
3609 * unexcw.c (unexec):
|
|
3610 [5].
|
446
|
3611
|
442
|
3612 * unexec.c:
|
|
3613 * unexec.c (copy_text_and_data):
|
|
3614 * unexec.c (adjust_lnnoptrs):
|
|
3615 [1].
|
446
|
3616
|
442
|
3617 * unexnt.c:
|
|
3618 * unexnt.c (_start):
|
|
3619 [1].
|
446
|
3620
|
442
|
3621 2000-06-07 Ben Wing <ben@xemacs.org>
|
|
3622
|
|
3623 * mule-mcpath.c, mule-mcpath.h: Removed. Old, crufty code that
|
|
3624 was used only as a model. We've long since extracted any useful
|
|
3625 logic or code out of this. (I just did an exhaustive search.)
|
|
3626
|
|
3627 * s\msdos.h: Removed.
|
|
3628
|
|
3629 * s\windows95.h: Removed.
|
|
3630
|
|
3631 2000-06-10 Ben Wing <ben@xemacs.org>
|
|
3632
|
|
3633 * s\cygwin32.h:
|
|
3634 [1]. [5].
|
|
3635 Don't use extern with fun defs.
|
446
|
3636
|
442
|
3637 * s\mingw32.h:
|
|
3638 [1]. [7].
|
|
3639 Remove nt\inc include.
|
|
3640 Remove getdisk, getdefdir. (The former is unused, the latter
|
|
3641 expanded in fileio.h.)
|
446
|
3642
|
442
|
3643 * s\windowsnt.h:
|
|
3644 * s\windowsnt.h (WIN32_NATIVE):
|
|
3645 * s\windowsnt.h (HAVE_STRCASECMP):
|
|
3646 [1]. [7].
|
|
3647 Add long comment about preprocessor changes.
|
|
3648 Remove getdisk, getdefdir. (The former is unused, the latter
|
|
3649 expanded in fileio.h.)
|
|
3650
|
|
3651 2000-06-10 Ben Wing <ben@xemacs.org>
|
|
3652
|
|
3653 * m\arm.h:
|
|
3654 * m\delta.h:
|
|
3655 * m\intel386.h:
|
|
3656 * m\sequent.h:
|
|
3657 * m\template.h:
|
|
3658 * m\windowsnt.h:
|
|
3659 [1].
|
|
3660 Remove bogus/unused NO_SOCK_SIGIO.
|
446
|
3661
|
442
|
3662 2000-06-08 Hrvoje Niksic <hniksic@iskon.hr>
|
|
3663
|
|
3664 * lisp.h (set_string_char): Call set_string_byte with a Bufbyte,
|
|
3665 not an Emchar.
|
|
3666
|
|
3667 2000-06-04 Mike Sperber <mike@xemacs.org>
|
|
3668
|
|
3669 * casetab.c (set_case_table): For `set-standard-case-table',
|
|
3670 actually deposit the new case tables where the rest of XEmacs can
|
|
3671 see them.
|
|
3672
|
|
3673 2000-06-05 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
3674
|
|
3675 * data.c (Faset): Don't cast XCHAR() to unsigned char.
|
|
3676
|
|
3677 2000-06-05 Ben Wing <ben@xemacs.org>
|
|
3678
|
|
3679 * callproc.c (child_setup): Don't do close_load_descs() under
|
|
3680 MS Windows. Put in a comment explaining why.
|
|
3681
|
|
3682 2000-05-28 Adrian Aichner <aichner@ecf.teradyne.com>
|
|
3683
|
|
3684 * process-nt.c: Reverting patch "Fixing nt_create_process for MKS
|
|
3685 Toolkit shell" which breaks `kill-compilation' on Windows NT
|
|
3686 native, retaining STDERR handling improvements.
|
|
3687
|
|
3688 2000-06-01 Andreas Jaeger <aj@suse.de>
|
|
3689
|
|
3690 * s/s390.h: Support for S390, based on a patch by Martin
|
|
3691 Schwidefsky <schwidefsky@de.ibm.com>.
|
|
3692
|
|
3693 2000-05-30 Andy Piper <andy@xemacs.org>
|
|
3694
|
446
|
3695 * window.c (allocate_window):
|
|
3696 (make_dummy_parent):
|
442
|
3697 (Fset_window_configuration): use new hashtable type.
|
|
3698
|
446
|
3699 * glyphs.h (IMAGE_UNSPECIFIED_GEOMETRY):
|
|
3700 (struct image_instantiator_methods):
|
442
|
3701 (struct Lisp_Image_Instance): make instance geometry signed.
|
|
3702
|
446
|
3703 * glyphs.c (instantiate_image_instantiator):
|
|
3704 (image_instance_query_geometry):
|
|
3705 (image_instance_layout):
|
|
3706 (image_instance_layout):
|
|
3707 (query_string_geometry):
|
|
3708 (text_query_geometry):
|
|
3709 (image_instantiate):
|
|
3710 (image_instantiate):
|
|
3711 (cache_subwindow_instance_in_frame_maybe):
|
442
|
3712 (subwindow_query_geometry): make instance geometry signed.
|
|
3713
|
446
|
3714 * glyphs-widget.c (widget_query_geometry):
|
|
3715 (widget_layout):
|
|
3716 (button_query_geometry):
|
|
3717 (tree_view_query_geometry):
|
|
3718 (tab_control_query_geometry):
|
|
3719 (layout_query_geometry):
|
|
3720 (layout_layout):
|
442
|
3721 (native_layout_layout): make instance geometry signed.
|
|
3722
|
|
3723 2000-05-29 Olivier Galibert <galibert@pobox.com>
|
|
3724
|
|
3725 * lisp.h: Add Qfull_assoc symbol and WEAK_LIST_FULL_ASSOC
|
|
3726 constant.
|
|
3727
|
|
3728 * general.c (syms_of_general): Add Qfull_assoc symbol.
|
|
3729
|
|
3730 * data.c (finish_marking_weak_lists): Mark full-assoc lists
|
|
3731 correctly.
|
|
3732 (decode_weak_list_type): Decode full-assoc type.
|
|
3733 (encode_weak_list_type): Encode full-assoc type.
|
|
3734 (Fmake_weak_list): Update doc string.
|
|
3735
|
|
3736 2000-05-30 Andy Piper <andy@xemacs.org>
|
|
3737
|
|
3738 * elhash.h (hash_table_weakness): new KEY_VALUE weak hashtable.
|
|
3739
|
|
3740 * elhash.c (print_hash_table): new KEY_VALUE weak hashtable.
|
|
3741 (decode_hash_table_weakness): ditto.
|
|
3742 (Fhash_table_weakness): ditto.
|
|
3743 (Fhash_table_type): ditto.
|
|
3744 (finish_marking_weak_hash_tables): ditto.
|
|
3745 (hash_table_weakness_validate): ditto.
|
|
3746 (syms_of_elhash): ditto.
|
|
3747
|
|
3748 2000-05-28 Martin Buchholz <martin@xemacs.org>
|
|
3749
|
|
3750 * XEmacs 21.2.34 is released.
|
|
3751
|
|
3752 2000-05-22 Jan Vroonhof <vroonhof@math.ethz.ch>
|
|
3753
|
|
3754 * redisplay.c (VERTICAL_CLIP): No longer reset when updating line
|
|
3755 start cache.
|
|
3756 (updating_line_start_cache): Gone.
|
|
3757 (regenerate_window): Replace resetting of VERTICAL_CLIP by
|
|
3758 generic code to force a minimum of 1 line laid out in the
|
|
3759 CMOTION_DISP case.
|
|
3760
|
|
3761 2000-05-22 Jan Vroonhof <vroonhof@math.ethz.ch>
|
|
3762
|
|
3763 * glyphs.c (instantiate_image_instantiator): Check for initialized
|
|
3764 height & width no longer special cases IMAGE_NOTHING.
|
|
3765 (nothing_instantiate): Set height and width of instance.
|
|
3766
|
|
3767 2000-05-24 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
3768
|
|
3769 * unexelf.c (unexec): Search for ".data" section.
|
|
3770 Initialize new_data2_offset from old_data_index.
|
|
3771 Remove redundant check for ElfW.
|
|
3772
|
|
3773 2000-05-23 Andy Piper <andy@xemacs.org>
|
|
3774
|
|
3775 * glyphs.c (get_image_instantiator_governing_domain): allow more
|
|
3776 specific domains as the governing domain rather than expecting an
|
|
3777 exact match. This fixes problems with layouts.
|
|
3778
|
|
3779 2000-05-22 Andy Piper <andy@xemacs.org>
|
|
3780
|
|
3781 * redisplay-output.c (compare_runes): check for non-images
|
|
3782
|
|
3783 * glyphs.c (set_glyph_dirty_p): ditto.
|
|
3784 (update_glyph_cachel_data): ditto.
|
|
3785
|
|
3786 * glyphs-widget.c (layout_post_instantiate): ditto.
|
|
3787 (layout_post_instantiate): ditto.
|
|
3788
|
|
3789 * event-msw.c (mswindows_wnd_proc): warning removal.
|
|
3790
|
|
3791 2000-05-12 Craig Lanning <CraigL@DyCon.com>
|
|
3792
|
|
3793 * s\mingw32.h: Added #undef for CLASH_DETECTION.
|
|
3794
|
|
3795 * syswindows.h: Moved PBS_SMOOTH definition to syscommctrl.h.
|
|
3796
|
|
3797 * syscommctrl.h (PBS_SMOOTH): Moved from syswindows.h.
|
|
3798
|
|
3799 * nt.c (rva_to_section): mingw32 needs rva_to_section.
|
|
3800 (mswindows_executable_type): mingw32 now has enough headers for
|
|
3801 this to work.
|
|
3802
|
|
3803 2000-05-20 Andy Piper <andy@xemacs.org>
|
|
3804
|
|
3805 * console-msw.c (mswindows_output_last_error): ; -> ,
|
|
3806
|
|
3807 2000-05-12 Andy Piper <andy@xemacs.org>
|
|
3808
|
|
3809 * console-msw.c (FROB): compare ints with ints.
|
|
3810
|
|
3811 2000-05-11 Andy Piper <andy@xemacs.org>
|
|
3812
|
|
3813 * glyphs-x.c (x_finalize_image_instance): make minimal build
|
|
3814 happy.
|
|
3815
|
|
3816 2000-05-20 Ben Wing <ben@xemacs.org>
|
|
3817
|
|
3818 * event-Xt.c:
|
|
3819 * event-Xt.c (vars_of_event_Xt):
|
|
3820 move modifier-keys-are-sticky to event-stream.c.
|
446
|
3821
|
442
|
3822 * event-msw.c:
|
|
3823 * event-msw.c (mswindows_enqueue_mouse_button_event):
|
|
3824 * event-msw.c (key_needs_default_processing_p):
|
|
3825 * event-msw.c (XEMSW_LCONTROL):
|
|
3826 * event-msw.c (mswindows_handle_sticky_modifiers):
|
|
3827 * event-msw.c (FROB):
|
|
3828 * event-msw.c (clear_sticky_modifiers):
|
|
3829 * event-msw.c (output_modifier_keyboard_state):
|
|
3830 * event-msw.c (output_alt_keyboard_state):
|
|
3831 * event-msw.c (mswindows_wnd_proc):
|
|
3832 * event-msw.c (mswindows_modifier_state):
|
|
3833 * event-msw.c (emacs_mswindows_handle_magic_event):
|
|
3834 implement sticky modifiers.
|
446
|
3835
|
442
|
3836 * event-stream.c:
|
|
3837 * event-stream.c (vars_of_event_stream):
|
|
3838 move modifier-keys-are-sticky here.
|
|
3839
|
|
3840 * lisp.h:
|
|
3841 add CHECK_FUNCTION.
|
446
|
3842
|
442
|
3843 * rangetab.c:
|
|
3844 implement map-range-table.
|
|
3845
|
|
3846
|
|
3847 2000-05-17 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
3848
|
|
3849 * redisplay-tty.c (reset_tty_modes):
|
|
3850 (tty_redisplay_shutdown): Adjust argument type to
|
|
3851 tty_frame_output_end.
|
|
3852
|
|
3853 2000-05-11 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
3854
|
|
3855 * eval.c (Fbacktrace): Don't output a line with only right
|
|
3856 parenthesis.
|
|
3857
|
|
3858 2000-05-17 Kenji Itoh <keit@tpj.co.jp>
|
|
3859
|
|
3860 * postgresql.c (Fpq_connect_poll): Replace `PS' with `polling_status'.
|
|
3861 (Fpq_reset_poll): Ditto.
|
|
3862
|
|
3863 2000-05-16 Katsumi Yamaoka <yamaoka@jpl.org>
|
|
3864
|
|
3865 * redisplay-tty.c: Replace tty_output_end with tty_frame_output_end.
|
|
3866
|
|
3867 2000-05-16 Ben Wing <ben@xemacs.org>
|
|
3868
|
|
3869 * buffer.c:
|
|
3870 * buffer.c (dfc_convert_to/from_internal_format):
|
|
3871 * buffer.c (reinit_vars_of_buffer):
|
|
3872 Fix conversion functions to allow reentrancy.
|
446
|
3873
|
442
|
3874 * console-msw.c:
|
|
3875 * console-msw.c (mswindows_output_last_error):
|
|
3876 New fun, generally useful -- output a human-readable
|
|
3877 version of GetLastError() on the console.
|
446
|
3878
|
442
|
3879 * console-msw.h:
|
|
3880 * console-msw.h (struct mswindows_frame):
|
|
3881 Changes for DeferWindowPos. Declare mswindows_output_last_error().
|
446
|
3882
|
442
|
3883 * console-stream.c (stream_output_begin):
|
|
3884 * console-stream.c (stream_output_end):
|
|
3885 * console-stream.c (stream_output_vertical_divider):
|
|
3886 * console-stream.c (stream_clear_region):
|
|
3887 * console-stream.c (stream_flash):
|
|
3888 * console-stream.c (console_type_create_stream):
|
|
3889 Delete blank stream methods, not needed.
|
446
|
3890
|
442
|
3891 * console.h (struct console_methods):
|
|
3892 Split begin/end methods into window and frame.
|
446
|
3893
|
442
|
3894 * event-msw.c:
|
|
3895 * event-msw.c (mswindows_handle_paint):
|
|
3896 * event-msw.c (output_alt_keyboard_state):
|
|
3897 * event-msw.c (mswindows_wnd_proc):
|
|
3898 * event-msw.c (vars_of_event_mswindows):
|
|
3899 Comment about problems with ignored-expose.
|
|
3900 Define mswindows-debug-events; not really implemented.
|
446
|
3901
|
442
|
3902 * frame-msw.c (mswindows_init_frame_1):
|
|
3903 random cleanups.
|
446
|
3904
|
442
|
3905 * glyphs-msw.c:
|
|
3906 * glyphs-msw.c (begin_defer_window_pos):
|
|
3907 * glyphs-msw.c (mswindows_unmap_subwindow):
|
|
3908 * glyphs-msw.c (mswindows_map_subwindow):
|
|
3909 * glyphs-msw.c (mswindows_resize_subwindow):
|
|
3910 Use DeferWindowPos to reduce flashing when mapping/unmapping.
|
446
|
3911
|
442
|
3912 * glyphs.c (make_image_instance_1):
|
|
3913 Fix crash.
|
446
|
3914
|
442
|
3915 * gutter.c (Fredisplay_gutter_area):
|
|
3916 Use new begin/end methods.
|
446
|
3917
|
442
|
3918 * lisp.h (Dynarr_new2):
|
|
3919 New creation fun.
|
446
|
3920
|
442
|
3921 * redisplay-msw.c:
|
|
3922 * redisplay-msw.c (mswindows_frame_output_begin):
|
|
3923 * redisplay-msw.c (mswindows_frame_output_end):
|
|
3924 * redisplay-msw.c (console_type_create_redisplay_mswindows):
|
|
3925 New begin/end methods -- handle DeferWindowPos.
|
446
|
3926
|
442
|
3927 * redisplay-output.c (redisplay_move_cursor):
|
|
3928 * redisplay-output.c (redraw_cursor_in_window):
|
|
3929 * redisplay-output.c (redisplay_update_line):
|
|
3930 * redisplay-output.c (redisplay_output_window):
|
|
3931 New begin/end methods.
|
|
3932
|
|
3933 * redisplay-tty.c:
|
|
3934 * redisplay-tty.c (tty_frame_output_begin):
|
|
3935 * redisplay-tty.c (tty_frame_output_end):
|
|
3936 * redisplay-tty.c (console_type_create_redisplay_tty):
|
|
3937 New begin/end methods.
|
|
3938
|
|
3939 * redisplay-x.c:
|
|
3940 * redisplay-x.c (x_window_output_begin):
|
|
3941 * redisplay-x.c (x_window_output_end):
|
|
3942 * redisplay-x.c (console_type_create_redisplay_x):
|
|
3943 New begin/end methods.
|
|
3944
|
|
3945 * redisplay.c (redisplay_frame):
|
|
3946 * redisplay.c (Fredisplay_echo_area):
|
|
3947 New begin/end methods.
|
|
3948 use MAYBE_DEVMETH for clear_frame; it may not exist.
|
|
3949
|
|
3950 * window.h (WINDOW_XFRAME):
|
|
3951 WINDOW_XFOO macros -- get locale and decode struct pointer.
|
|
3952
|
|
3953
|
|
3954 2000-05-12 Ben Wing <ben@xemacs.org>
|
|
3955
|
|
3956 * emacs.c:
|
|
3957 * emacs.c (ensure_no_quitting_from_now_on):
|
|
3958 * emacs.c (fatal_error_signal):
|
|
3959 * emacs.c (mswindows_handle_hardware_exceptions):
|
|
3960 * emacs.c (main):
|
|
3961 * emacs.c (Fkill_emacs):
|
|
3962 * emacs.c (shut_down_emacs):
|
|
3963 * emacs.c (assert_failed):
|
|
3964 various improvements in fatal error handling.
|
446
|
3965
|
442
|
3966 * eval.c:
|
|
3967 move preparing_for_armageddon to emacs.c.
|
446
|
3968
|
442
|
3969 * lisp.h:
|
|
3970 declare fatal_error_in_progress.
|
446
|
3971
|
442
|
3972 * print.c:
|
|
3973 * print.c (std_handle_out_external):
|
|
3974 * print.c (std_handle_out_va):
|
|
3975 * print.c (stderr_out):
|
|
3976 * print.c (stdout_out):
|
|
3977 use console under mswin when no standard output.
|
|
3978 don't do code conversion during fatal error.
|
446
|
3979
|
442
|
3980 * scrollbar.c (Fscrollbar_page_up):
|
|
3981 * scrollbar.c (Fscrollbar_page_down):
|
|
3982 fix missing else. reindent.
|
|
3983
|
|
3984 2000-05-11 Jan Vroonhof <vroonhof@math.ethz.ch>
|
|
3985
|
446
|
3986 Emergency fix.
|
|
3987
|
|
3988 * glyphs.h (GLYPH_CACHEL_DESCENT):
|
|
3989 (GLYPH_CACHEL_DESCENT):
|
|
3990 (GLYPH_CACHEL_DESCENT):
|
442
|
3991 * glyphs.h (GLYPH_CACHEL_ASCENT): Match parameters to variables
|
|
3992 used in case these are inline functions.
|
|
3993 Use more absurd values to error check.
|
|
3994
|
|
3995 include window.h for error check functions.
|
|
3996
|
|
3997 2000-05-11 Ben Wing <ben@xemacs.org>
|
|
3998
|
|
3999 * cmdloop.c (Freally_early_error_handler):
|
|
4000 Display message box under windows; otherwise, message will disappear
|
|
4001 before it can be viewed.
|
|
4002
|
|
4003 * console-msw.c:
|
|
4004 * console-msw.c (Fmswindows_message_box):
|
|
4005 * console-msw.c (FROB):
|
|
4006 * console-msw.c (syms_of_console_mswindows):
|
|
4007 Define new fun `mswindows-message-box'.
|
|
4008 #### I will merge this into `popup-dialog-box'; just give me
|
|
4009 a bit of time.
|
446
|
4010
|
442
|
4011 * general.c:
|
|
4012 * general.c (syms_of_general):
|
|
4013 Some new symbols used in `mswindows-message-box'.
|
446
|
4014
|
442
|
4015 * glyphs.c:
|
|
4016 * glyphs.c (Fset_image_instance_property):
|
|
4017 put warning in this fun.
|
446
|
4018
|
442
|
4019 * glyphs.h:
|
|
4020 * glyphs.h (GLYPH_CACHEL_WIDTH):
|
|
4021 * glyphs.h (GLYPH_CACHEL_ASCENT):
|
|
4022 * glyphs.h (GLYPH_CACHEL):
|
|
4023 * glyphs.h (GLYPH_CACHEL_GLYPH):
|
|
4024 define error-checking versions to try to catch a bug i've seen --
|
|
4025 redisplay gets in an infinite loop because the glyph width of the
|
|
4026 continuation glyph is 65535.
|
446
|
4027
|
442
|
4028 * lisp.h:
|
|
4029 Extern message-box stuff.
|
|
4030
|
|
4031 * window.c (allocate_window):
|
|
4032 * window.c (make_dummy_parent):
|
|
4033 * window.c (Fset_window_configuration):
|
|
4034 Use EQUAL not EQ for subwindow caches to make them work a bit
|
|
4035 better. (Something is still very broken.)
|
446
|
4036
|
442
|
4037
|
|
4038 2000-05-11 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
4039
|
|
4040 * glyphs.c (image_instantiate): Suppress gcc warnings.
|
|
4041 (Fmake_image_instance): Fix doc string.
|
|
4042 * specifier.c (Fmake_specifier): Ditto.
|
|
4043
|
|
4044 2000-05-02 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
4045
|
|
4046 * paths.h.in (PATH_LOCK): Removed.
|
|
4047 * config.h.in (LOCKDIR_USER_DEFINED): Removed.
|
|
4048 * emacs.c (complex_vars_of_emacs): Remove configure-lock-directory.
|
|
4049
|
|
4050 2000-05-08 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
4051
|
|
4052 * fns.c (Ffeaturep): Update e-mail address in doc-string.
|
|
4053 Document (featurep '(and xemacs 21.02)).
|
|
4054
|
|
4055 2000-05-09 Ben Wing <ben@xemacs.org>
|
|
4056
|
|
4057 * buffer.c (complex_vars_of_buffer):
|
|
4058 update modeline-format doc.
|
446
|
4059
|
442
|
4060 * device.h:
|
|
4061 comment about how DFW_DEVICE should be merged with DOMAIN_DEVICE.
|
446
|
4062
|
442
|
4063 * emacs.c:
|
|
4064 timeline of all released versions of Emacs, for use in creating
|
|
4065 authorship comments and in synching up.
|
446
|
4066
|
442
|
4067 * glyphs-widget.c (image_instantiator_buttons):
|
|
4068 * glyphs-widget.c (image_instantiator_edit_fields):
|
|
4069 * glyphs-widget.c (image_instantiator_combo_box):
|
|
4070 * glyphs-widget.c (image_instantiator_scrollbar):
|
|
4071 * glyphs-widget.c (image_instantiator_progress_guage):
|
|
4072 * glyphs-widget.c (image_instantiator_tree_view):
|
|
4073 * glyphs-widget.c (image_instantiator_tab_control):
|
|
4074 * glyphs-widget.c (image_instantiator_labels):
|
|
4075 * glyphs-widget.c (image_instantiator_layout):
|
|
4076 * glyphs-widget.c (image_instantiator_native_layout):
|
|
4077 rename decode_domain method to governing_domain.
|
446
|
4078
|
442
|
4079 * glyphs.c:
|
|
4080 * glyphs.c (Fvalid_image_instantiator_format_p): doc update.
|
|
4081 * glyphs.c (add_entry_to_device_ii_format_list):
|
|
4082 make sure we don't put an entry more than once into the list.
|
|
4083 * glyphs.c (check_instance_cache_mapper):
|
|
4084 *************************************************************
|
|
4085 allow for nil. THIS SHOULD FIX A REAL CRASH THAT MANY PEOPLE
|
|
4086 HAVE BEEN GETTING.
|
|
4087 *************************************************************
|
|
4088 * glyphs.c (get_image_instantiator_governing_domain):
|
|
4089 clean up, expand on new concept of governing domain.
|
|
4090 * glyphs.c (instantiate_image_instantiator):
|
|
4091 * glyphs.c (allocate_image_instance):
|
|
4092 use governing_domain instead of cache_domain in naming.
|
|
4093 * glyphs.c (Fvalid_image_instance_type_p): fix docs.
|
|
4094 * glyphs.c (make_image_instance_1):
|
|
4095 * glyphs.c (Fmake_image_instance):
|
|
4096 allow for any domain (not just device), and process the
|
|
4097 governing domain correctly. very big doc fix.
|
|
4098 * glyphs.c (Fimage_instance_domain):
|
|
4099 new primitive, to retrieve the governing domain of an image instance.
|
|
4100 * glyphs.c (image_instantiate):
|
|
4101 use new governing_domain stuff. this fixes a crash you could get
|
|
4102 by instantiating certain widget glyphs in frame locales. (should
|
|
4103 signal an error instead of crashing.)
|
|
4104 * glyphs.c (Fimage_specifier_p): move doc to make-image-specifier.
|
|
4105 * glyphs.c (Fglyphp): clean up doc.
|
|
4106 * glyphs.c (subwindow_governing_domain): renamed from *_decode_domain.
|
|
4107 * glyphs.c (syms_of_glyphs):
|
|
4108 declare Fimage_instance_domain, remove unused Qlayout_image_instance_p.
|
|
4109 * glyphs.c (image_instantiator_format_create): add some comments about
|
|
4110 bogus code.
|
|
4111 * glyphs.c (specifier_vars_of_glyphs): totally rewrite the doc string
|
|
4112 for current-display-table. (Apparently Hrjove implemented in 1998 a
|
|
4113 design I wrote up in 1996, but didn't update the doc string.)
|
446
|
4114
|
442
|
4115 * glyphs.h: clean up a doc string.
|
|
4116 * glyphs.h (governing_domain):
|
|
4117 * glyphs.h (struct image_instantiator_methods):
|
|
4118 changes for governing_domain stuff.
|
446
|
4119
|
442
|
4120 * gutter.c:
|
|
4121 * gutter.c (Fgutter_specifier_p):
|
|
4122 * gutter.c (Fgutter_size_specifier_p):
|
|
4123 * gutter.c (Fgutter_visible_specifier_p):
|
|
4124 * objects.c:
|
|
4125 * objects.c (Fcolor_specifier_p):
|
|
4126 * objects.c (Ffont_specifier_p):
|
|
4127 * objects.c (Fface_boolean_specifier_p):
|
|
4128 doc strings moved to make-*-specifier.
|
446
|
4129
|
442
|
4130 * redisplay.c (add_disp_table_entry_runes_1):
|
|
4131 * redisplay.c (generate_fstring_runes):
|
|
4132 * redisplay.c (screen):
|
|
4133 add random comments and doc strings.
|
446
|
4134
|
442
|
4135 * specifier.c:
|
|
4136 * specifier.c (Fmake_specifier):
|
|
4137 major overhaul of this doc string.
|
446
|
4138
|
442
|
4139 * specifier.c (Fvalid_specifier_domain_p):
|
|
4140 comment about the bogosity of image instances being domains.
|
|
4141 * specifier.c (decode_domain):
|
|
4142 now non-static, used in glyphs.c.
|
|
4143 * specifier.c (specifier_instance):
|
|
4144 comment about the bogosity of image instances being domains.
|
|
4145 * specifier.c (Fgeneric_specifier_p):
|
|
4146 move doc string to make-generic-specifier.
|
|
4147 * specifier.c (VALID_SINGLE_DISPTABLE_INSTANTIATOR_P):
|
|
4148 rebackslashify.
|
446
|
4149
|
442
|
4150 * specifier.h:
|
|
4151 * specifier.h (DOMAIN_FRAME):
|
|
4152 * specifier.h (DOMAIN_LIVE_P):
|
|
4153 * specifier.h (DOMAIN_XDEVICE):
|
|
4154 rebackslashify.
|
|
4155 add comments about problems with these macros.
|
|
4156 prototype for decode_domain.
|
446
|
4157
|
442
|
4158 * toolbar.c:
|
|
4159 * toolbar.c (Ftoolbar_specifier_p):
|
|
4160 move doc string to `make-toolbar-specifier'.
|
446
|
4161
|
442
|
4162 * window.c (window_unmap_subwindows_cache_mapper):
|
|
4163 *************************************************************
|
|
4164 allow for nil. THIS SHOULD FIX A REAL CRASH THAT MANY PEOPLE
|
|
4165 HAVE BEEN GETTING.
|
|
4166 *************************************************************
|
|
4167
|
|
4168 2000-05-09 Andy Piper <andy@xemacs.org>
|
|
4169
|
|
4170 * glyphs.h: declare reset_frame_subwindow_instance_cache.
|
|
4171
|
|
4172 * window.c (Fset_window_configuration): reset the frame subwindow
|
|
4173 cache and re-initialize the window subwindow caches.
|
|
4174
|
|
4175 * glyphs.c (reset_frame_subwindow_instance_cache): new function.
|
|
4176
|
|
4177 2000-05-09 Ben Wing <ben@xemacs.org>
|
|
4178
|
|
4179 * ntheap.c (recreate_heap): Changed unknown (VC6 only?) SIZE_T to
|
|
4180 DWORD.
|
|
4181
|
|
4182 2000-04-26 Mike Woolley <mike@bulsara.com>
|
|
4183
|
|
4184 * ntheap.c: Changed recreate_heap to limit the amount reserved
|
|
4185 for the heap to that which is actually available. Also now
|
|
4186 displays a message box (with some dignostics) in the event that
|
|
4187 it still can't start.
|
|
4188
|
|
4189 2000-05-07 Jan Vroonhof <vroonhof@math.ethz.ch>
|
|
4190
|
|
4191 * callproc.c (Fold_call_process_internal): GCPRO path
|
|
4192
|
|
4193 2000-05-08 Jan Vroonhof <jan@xemacs.org>
|
|
4194
|
|
4195 Patch by Bill Perry.
|
446
|
4196
|
|
4197 * scrollbar.c (Fscrollbar_page_up): Conditionalize on type of call
|
442
|
4198 back data instead of #ifdef.
|
|
4199 (Fscrollbar_page_down): ditto.
|
|
4200
|
|
4201 2000-05-07 Ben Wing <ben@xemacs.org>
|
|
4202
|
|
4203 * buffer.h:
|
|
4204 Kludge for defining Qmswindows_tstr.
|
446
|
4205
|
442
|
4206 * nt.c:
|
|
4207 * nt.c (open_input_file):
|
|
4208 * nt.c (open_output_file):
|
|
4209 * nt.c (rva_to_section):
|
|
4210 * nt.c (mswindows_executable_type):
|
|
4211 Move all memory-mapped-file routines here (some were in unexnt.c,
|
|
4212 which is bad because they are used by process-nt.c, and unexnt
|
|
4213 won't be around when portable dumping). Synched the above routines
|
|
4214 with FSF 20.6.
|
446
|
4215
|
442
|
4216 * nt.h:
|
|
4217 Removed ifdef'd out bogus code.
|
|
4218 Fixed some prototypes.
|
446
|
4219
|
442
|
4220 * nt.h (file_data):
|
|
4221 * nt.h (OFFSET_TO_RVA):
|
|
4222 * nt.h (RVA_TO_OFFSET):
|
|
4223 * nt.h (RVA_TO_PTR):
|
|
4224 Moved the memory-mapped-file structures, macros and prototypes
|
|
4225 here, to parallel nt.c. ntheap.h should really be removed
|
|
4226 entirely, and it's a non-portable-dumper specific file.
|
446
|
4227
|
442
|
4228 * ntheap.h (round_to_next):
|
|
4229 Moved the memory-mapped-file structures, macros and prototypes
|
|
4230 to nt.h.
|
|
4231
|
|
4232 * ntproc.c (compare_env):
|
|
4233 Moved rva_to_section and mswindows_executable_type to nt.c.
|
|
4234 Moved compare_env to process-nt.c.
|
|
4235 ntproc.c will die, one day.
|
|
4236
|
|
4237 * ntproc.c (sys_spawnve):
|
|
4238 Account for win32_ -> mswindows_.
|
|
4239
|
|
4240 * process-nt.c:
|
|
4241 * process-nt.c (struct nt_process_data):
|
|
4242 * process-nt.c (ensure_console_window_exists):
|
|
4243 * process-nt.c (compare_env):
|
|
4244 * process-nt.c (nt_create_process):
|
|
4245 * process-nt.c (nt_kill_process_by_pid):
|
|
4246 * process-nt.c (syms_of_process_nt):
|
|
4247 * process-nt.c (vars_of_process_nt):
|
|
4248 Introduce variable `mswindows-quote-process-args', from FSF 20.6.
|
|
4249 Copy argument quoting code from FSF 20.6 (with appropriate Mule-ization
|
|
4250 changes). Eliminate our old `nt-quote-process-args' mechanism.
|
|
4251 Synch up nt_create_process with FSF 20.6 sys_spawnve.
|
|
4252 Move compare_env here from ntproc.c.
|
446
|
4253
|
442
|
4254 * process.c (Fprocess_send_region):
|
|
4255 Takes an optional fourth argument, BUFFER, which should fix some
|
|
4256 problems with call-process.
|
446
|
4257
|
442
|
4258 * syscommctrl.h:
|
|
4259 Move ICC_BAR_CLASSES here from syswindows.h, to avoid a warning.
|
446
|
4260
|
442
|
4261 * syswindows.h:
|
|
4262 Move ICC_BAR_CLASSES to syscommctrl.h.
|
|
4263 Add preliminary macros for MSWindows/Mule. More to come.
|
|
4264
|
|
4265 * unexnt.c:
|
|
4266 * unexnt.c (unexec):
|
|
4267 open_output_file moved to nt.c.
|
|
4268
|
|
4269
|
|
4270 2000-05-05 Andy Piper <andy@xemacs.org>
|
|
4271
|
|
4272 * window.c (window_unmap_subwindows_cache_mapper): remove the dead
|
|
4273 instance from the frame cache also since GC may catch up too late
|
|
4274 to make frame deletion sane.
|
|
4275
|
|
4276 2000-05-04 Andy Piper <andy@xemacs.org>
|
|
4277
|
|
4278 * glyphs-x.c (x_widget_instantiate): gcpro widget callbacks.
|
|
4279 (x_finalize_image_instance): ungcpro on deletion.
|
|
4280
|
|
4281 * glyphs.c (image_instantiator_format_create): give pointers a
|
|
4282 query geometry method so that the geometry is at least set.
|
|
4283
|
|
4284 * glyphs-x.c (image_instantiator_format_create_glyphs_x): only
|
|
4285 initialize layouts if using widgets.
|
|
4286
|
|
4287 2000-05-03 Andy Piper <andy@xemacs.org>
|
|
4288
|
|
4289 * nt.c: remove bogus reference to sysmmsystem.h
|
|
4290
|
|
4291 * gui-x.c (popup_selection_callback): fix no selection abort.
|
|
4292
|
|
4293 2000-05-02 Andy Piper <andy@xemacs.org>
|
|
4294
|
|
4295 * glyphs-msw.c (mswindows_update_widget): cope with nil text.
|
|
4296 (mswindows_widget_instantiate): ditto.
|
|
4297
|
|
4298 * glyphs-widget.c (initialize_widget_image_instance): initialize
|
|
4299 children correctly.
|
|
4300 (widget_instantiate): cope with children and items in the same
|
|
4301 instance.
|
|
4302
|
|
4303 * glyphs.c (mark_image_instance): cope with children as a first
|
|
4304 class member.
|
|
4305 (image_instance_equal): ditto.
|
|
4306 (image_instance_hash): ditto.
|
|
4307 (image_instance_changed): ditto.
|
|
4308
|
|
4309 2000-04-30 Andy Piper <andy@xemacs.org>
|
|
4310
|
|
4311 * glyphs.c (subwindow_query_geometry): new function. Return some
|
|
4312 defaults.
|
|
4313 (subwindow_instantiate): don't assign dimensions if none have been
|
|
4314 given.
|
|
4315 (image_instantiator_format_create): add subwindow_query_geometry.
|
|
4316 (print_image_instance): cope with layouts as widgets.
|
|
4317
|
|
4318 2000-04-29 Andy Piper <andy@xemacs.org>
|
|
4319
|
|
4320 * frame.c (delete_frame_internal): call
|
|
4321 free_frame_subwindow_instance_cache so that all subwindows are
|
|
4322 finalized before their parent.
|
|
4323 (mark_frame): remove subwindow_cachels.
|
|
4324 (Fmake_frame): remove subwindow_cachel manipulation.
|
|
4325 (allocate_frame_core): subwindow_instance_cache is a weak list.
|
|
4326 (delete_frame_internal): set subwindow_instance_cache to nil.
|
|
4327
|
|
4328 * glyphs-msw.c (mswindows_finalize_image_instance): make double
|
|
4329 finalization safe.
|
|
4330 (mswindows_finalize_image_instance): use the device
|
|
4331 not the domain as the domain may have died already.
|
|
4332
|
|
4333 * glyphs-x.c (x_finalize_image_instance): ditto.
|
|
4334 (x_subwindow_instantiate): remove SUBWINDOW_WIDTH &
|
|
4335 HEIGHT.
|
|
4336
|
|
4337 * redisplay-output.c (redisplay_unmap_subwindows): update for
|
|
4338 subwindow instance cache as a weak list.
|
|
4339 (redisplay_unmap_subwindows_maybe): ditto.
|
|
4340 (redisplay_unmap_subwindows_except_us): ditto.
|
|
4341
|
|
4342 * glyphs.c (unmap_subwindow): error checking will check the domain
|
|
4343 so don't deal with it here. Don't use cachels anymore.
|
|
4344 (map_subwindow): ditto.
|
|
4345 (update_subwindow_cachel_data): remove old accessor names.
|
|
4346 (subwindow_instantiate): remove SUBWINDOW_WIDTH & HEIGHT.
|
|
4347 (Fresize_subwindow): don't update cachel.
|
|
4348 (mark_subwindow_cachels):
|
|
4349 (update_subwindow_cachel_data):
|
|
4350 (add_subwindow_cachel):
|
|
4351 (get_subwindow_cachel_index):
|
|
4352 (update_subwindow_cachel):
|
|
4353 (reset_subwindow_cachels):
|
|
4354 (mark_subwindow_cachels_as_not_updated): deleted.
|
|
4355 (cache_subwindow_instance_in_frame_maybe): new function. Add a
|
|
4356 subwindow instance to the frame cache.
|
|
4357 (find_matching_subwindow): update for subwindow instance cache as
|
|
4358 a weak list.
|
|
4359 (update_widget_instances): ditto.
|
|
4360 (image_instance_type_to_mask):inlined.
|
|
4361 (free_frame_subwindow_instance_cache): new function. finalize all
|
|
4362 subwindows that are instantiated.
|
|
4363
|
|
4364 * glyphs.h (struct Lisp_Image_Instance): add display_data instead
|
|
4365 of cachel information.
|
|
4366 (IMAGE_INSTANCE_DISPLAY_X):
|
|
4367 (IMAGE_INSTANCE_DISPLAY_Y):
|
|
4368 (IMAGE_INSTANCE_DISPLAY_WIDTH):
|
|
4369 (IMAGE_INSTANCE_DISPLAY_HEIGHT):
|
|
4370 (XIMAGE_INSTANCE_DISPLAY_X):
|
|
4371 (XIMAGE_INSTANCE_DISPLAY_Y):
|
|
4372 (XIMAGE_INSTANCE_DISPLAY_WIDTH):
|
446
|
4373 (XIMAGE_INSTANCE_DISPLAY_HEIGHT): new accessors.
|
442
|
4374 remove subwindow_cachel structure and function references.
|
|
4375 (image_instance_type_to_mask): inline from glyphs.c
|
|
4376
|
|
4377 * redisplay.c (redisplay_frame): remove subwindow_cachel
|
|
4378 references.
|
|
4379
|
|
4380 * frame.h (struct frame): remove subwindow_cachels.
|
|
4381 (FRAME_SUBWINDOW_CACHE): access subwindow_instance_cache.
|
|
4382
|
|
4383 * frameslots.h: add subwindow_instance_cache.
|
|
4384
|
|
4385 * window.c (replace_window): check subwindow cache of replacement.
|
|
4386 (window_unmap_subwindows_cache_mapper):
|
|
4387 (window_unmap_subwindows): new functions. Unmap all subwindows
|
|
4388 cached on this window.
|
|
4389 (mark_window_as_deleted): unmap all subwindows.
|
|
4390
|
|
4391 2000-04-27 Andy Piper <andy@xemacs.org>
|
|
4392
|
|
4393 * glyphs.h (IIFORMAT_METH_OR_GIVEN): cope with null meths.
|
|
4394
|
|
4395 * glyphs-widget.c (widget_layout): return something.
|
|
4396 (layout_layout): return something. Fail if not initialized.
|
|
4397 (layout_query_geometry): ditto.
|
|
4398 (image_instantiator_native_layout): new function. Initialized the
|
|
4399 native layout type.
|
|
4400 (widget_instantiate): don't do layout stuff here.
|
|
4401
|
|
4402 * glyphs.c (instantiate_image_instantiator): reorded calling or
|
|
4403 instantiate and post_instantiate with layout in between.
|
|
4404 (image_instance_layout): be more selective about deciding whether
|
|
4405 the layout has been done or not.
|
|
4406
|
|
4407 * glyphs.h (struct image_instantiator_methods): return a value
|
|
4408 from layout_method.
|
|
4409
|
|
4410 2000-04-26 Andy Piper <andy@xemacs.org>
|
|
4411
|
|
4412 * glyphs.c (allocate_image_instance): make initial width and
|
|
4413 height unspecified. Set initialized to 0.
|
|
4414
|
|
4415 * syscommctrl.h new file. Encapsulates commctrl.h.
|
|
4416
|
|
4417 * syswindows.h new file. Encapsulates windows.h.
|
|
4418
|
|
4419 * ntplay.c: use new syswindows.h and syscommctrl.h header.
|
|
4420 * nt.c: ditto.
|
|
4421 * console-msw.h: ditto.
|
446
|
4422
|
442
|
4423 * redisplay-tty.c (tty_output_display_block): remove layout references.
|
|
4424
|
|
4425 * glyphs-msw.c (mswindows_widget_instantiate): use the domain
|
|
4426 window handle rather than just the frame.
|
|
4427
|
|
4428 * glyphs.c (mark_image_instance): remove layout references.
|
|
4429 (print_image_instance): ditto.
|
|
4430 (image_instance_equal): ditto.
|
|
4431 (image_instance_hash): ditto.
|
|
4432 (decode_image_instance_type): ditto.
|
|
4433 (encode_image_instance_type): ditto.
|
|
4434 (image_instantiate): ditto.
|
|
4435 (allocate_glyph): ditto.
|
|
4436 (Fimage_instance_height): ditto.
|
|
4437 (Fimage_instance_width): ditto.
|
|
4438 (update_subwindow): ditto.
|
|
4439
|
|
4440 * redisplay-x.c (x_output_display_block): recode for layouts as
|
|
4441 widgets.
|
|
4442
|
|
4443 * redisplay-output.c (redisplay_output_layout): recode for layouts
|
|
4444 as widgets.
|
|
4445 (compare_runes): remove layout references.
|
|
4446
|
|
4447 * redisplay-msw.c (mswindows_output_display_block): recode for
|
|
4448 layouts as widgets.
|
|
4449
|
|
4450 * glyphs-widget.c (image_instantiator_layout): remove
|
|
4451 layout_possible_dest_types.
|
|
4452 (layout_possible_dest_types): deleted.
|
|
4453
|
|
4454 * glyphs.h (image_instance_type): remove layout references.
|
|
4455 (struct Lisp_Image_Instance): ditto. Add initialized flag.
|
|
4456 (IMAGE_INSTANCE_INITIALIZED): new accessor.
|
|
4457 (XIMAGE_INSTANCE_INITIALIZED): ditto.
|
446
|
4458
|
442
|
4459 2000-04-25 Andy Piper <andy@xemacs.org>
|
|
4460
|
|
4461 * glyphs-widget.c (image_instantiator_buttons):
|
|
4462 (image_instantiator_edit_fields):
|
|
4463 (image_instantiator_combo_box):
|
|
4464 (image_instantiator_scrollbar):
|
|
4465 (image_instantiator_progress_guage):
|
|
4466 (image_instantiator_tree_view):
|
|
4467 (image_instantiator_tab_control):
|
|
4468 (image_instantiator_labels):
|
|
4469 (image_instantiator_layout): call default post_instantiate method.
|
|
4470 (widget_post_instantiate): new function. Simply lays out the
|
|
4471 widgets.
|
|
4472
|
|
4473 * glyphs.h (struct image_instantiator_methods): add
|
|
4474 post_instantiate method.
|
|
4475
|
|
4476 * glyphs.c (instantiate_image_instantiator): add post_instantiate
|
|
4477 method calls.
|
|
4478
|
|
4479 2000-04-23 Andy Piper <andy@xemacs.org>
|
|
4480
|
|
4481 * glyphs.h (struct image_instantiator_methods): add
|
|
4482 decode_domain_method.
|
|
4483 (struct Lisp_Image_Instance): remove subwindow frame - it can be
|
|
4484 derived from the domain.
|
|
4485 (IMAGE_INSTANCE_FRAME): new accessor.
|
|
4486 (XIMAGE_INSTANCE_FRAME): ditto.
|
|
4487
|
|
4488 * glyphs.c (print_image_instance): use IMAGE_INSTANCE_FRAME
|
|
4489 instead of _SUBWINDOW_FRAME.
|
|
4490 (finalize_image_instance): ditto.
|
|
4491 (Fimage_instance_foreground): ditto.
|
|
4492 (Fimage_instance_background): ditto.
|
|
4493 (image_instantiate): ditto.
|
|
4494 (update_subwindow_cachel): ditto.
|
|
4495 (update_subwindow): ditto.
|
|
4496 (unmap_subwindow): ditto.
|
|
4497 (map_subwindow): ditto
|
|
4498 (subwindow_instantiate): ditto.
|
|
4499 * glyphs-msw.c (mswindows_update_widget): ditto.
|
|
4500 (mswindows_progress_gauge_instantiate): ditto.
|
|
4501 (mswindows_tab_control_update): ditto.
|
|
4502 * glyphs-x.c (x_update_widget): ditto.
|
|
4503 (x_widget_instantiate): ditto.
|
|
4504 (x_tab_control_instantiate): ditto.
|
|
4505 (x_tab_control_update): ditto.
|
|
4506 * event-msw.c (mswindows_wnd_proc): ditto
|
|
4507
|
|
4508 * glyphs-widget.c (image_instantiator_layout): use
|
|
4509 subwindow_decode_domain.
|
|
4510 (image_instantiator_buttons): ditto.
|
|
4511 (image_instantiator_edit_fields): ditto.
|
|
4512 (image_instantiator_combo_box): ditto.
|
|
4513 (image_instantiator_scrollbar): ditto.
|
|
4514 (image_instantiator_progress_guage): ditto.
|
|
4515 (image_instantiator_tree_view): ditto.
|
|
4516 (image_instantiator_tab_control): ditto.
|
|
4517 (image_instantiator_labels): ditto.
|
|
4518 (image_instantiator_layout): ditto.
|
|
4519
|
|
4520 * glyphs.c: add instance error checking to many functions.
|
|
4521 (instantiate_image_instantiator): decode device from cache_domain.
|
|
4522 (image_instantiate): partially rewrite by using
|
|
4523 decode_image_instantiator_domain to determine what domain the
|
|
4524 instance needs to be cached in.
|
|
4525 (decode_image_instantiator_domain): new function. Determine what
|
|
4526 domain the image needs to be cached in.
|
|
4527 (check_window_subwindow_cache): new error checking function.
|
|
4528 (check_instance_cache_mapper): ditto.
|
|
4529 (check_image_instance_structure): ditto.
|
|
4530 (subwindow_decode_domain): new function. Encodes a window as a
|
|
4531 subwindow's cache domain.
|
|
4532 (image_instantiator_format_create): use it for text and
|
|
4533 subwindows.
|
|
4534
|
|
4535 2000-04-21 Andy Piper <andy@xemacs.org>
|
|
4536
|
|
4537 * glyphs.c (image_instance_device): new function.
|
|
4538 (image_instance_frame): new function.
|
|
4539 (image_instance_window): new function.
|
|
4540 (image_instance_live_p): new function.
|
|
4541
|
|
4542 * window.c (mark_window_as_deleted): reset the subwindow_instance_
|
|
4543 cache to nil.
|
|
4544
|
|
4545 * glyphs.h (struct Lisp_Image_Instance): device->domain.
|
|
4546 (IMAGE_INSTANCE_DOMAIN): new accessor.
|
|
4547 (XIMAGE_INSTANCE_DOMAIN): ditto.
|
|
4548
|
|
4549 * glyphs-x.c (x_finalize_image_instance): device->domain.
|
|
4550
|
|
4551 * glyphs-msw.c (init_image_instance_geometry): device->domain.
|
|
4552 (mswindows_finalize_image_instance): ditto.
|
|
4553
|
|
4554 * glyphs-eimage.c (jpeg_instantiate): device->domain.
|
|
4555 (gif_instantiate): ditto.
|
|
4556 (png_instantiate): ditto.
|
|
4557 (tiff_instantiate): ditto.
|
|
4558
|
|
4559 * glyphs.c (instantiate_image_instantiator): use domain rather
|
|
4560 than device.
|
|
4561 (mark_image_instance): device -> domain.
|
|
4562 (print_image_instance): ditto.
|
|
4563 (finalize_image_instance): ditto.
|
|
4564 (image_instance_equal): ditto.
|
|
4565 (allocate_image_instance): ditto.
|
|
4566 (Fcolorize_image_instance): ditto.
|
|
4567 (query_string_geometry): ditto.
|
|
4568 (image_instantiate): ditto
|
|
4569 (query_string_font): ditto.
|
|
4570 (image_instantiate): ditto.
|
|
4571 (update_subwindow): ditto.
|
|
4572 (unmap_subwindow): ditto.
|
|
4573 (map_subwindow): ditto.
|
|
4574 (subwindow_instantiate): ditto.
|
|
4575
|
|
4576 * specifier.h (DOMAIN_DEVICE): new, semantically correct, decoder.
|
|
4577 (DOMAIN_FRAME): ditto.
|
|
4578 (DOMAIN_WINDOW): ditto.
|
|
4579 (DOMAIN_LIVE_P): ditto.
|
|
4580 (XDOMAIN_DEVICE): ditto.
|
|
4581 (XDOMAIN_FRAME): ditto.
|
|
4582 (XDOMAIN_WINDOW): ditto.
|
|
4583
|
|
4584 * specifier.c (Fvalid_specifier_domain_p): add image instances as
|
|
4585 a valid specifier domain.
|
|
4586
|
|
4587 2000-04-19 Andy Piper <andy@xemacs.org>
|
|
4588
|
|
4589 * glyphs-widget.c (syms_of_glyphs_widget): remove
|
|
4590 widget-callback-current-channel.
|
|
4591 (vars_of_glyphs_widget): ditto.
|
|
4592 * glyphs.h: ditto
|
|
4593
|
|
4594 * gui.c (get_gui_callback): revert to previous behaviour.
|
|
4595
|
|
4596 2000-04-18 Andy Piper <andy@xemacs.org>
|
|
4597
|
|
4598 * glyphs.h (struct Lisp_Image_Instance): add margin_width.
|
|
4599 (IMAGE_INSTANCE_MARGIN_WIDTH): new.
|
|
4600 (XIMAGE_INSTANCE_MARGIN_WIDTH): new.
|
|
4601
|
|
4602 * glyphs.c (image_instance_equal): add margin_width.
|
|
4603 (image_instance_hash): ditto.
|
|
4604
|
|
4605 * glyphs-widget.c (widget_instantiate): deal with margin-width.
|
|
4606 (layout_query_geometry): ditto.
|
|
4607 (layout_layout): ditto.
|
|
4608 (syms_of_glyphs_widget): add margin-width.
|
|
4609 (image_instantiator_layout): allow margin-width.
|
|
4610
|
|
4611 * glyphs.c (update_widget_instances): make a normal function.
|
|
4612 (syms_of_glyphs): remove Qupdate_widget_instances.
|
|
4613 * glyphs.h: ditto.
|
|
4614
|
|
4615 * gui-x.c (popup_selection_callback): use enqueue_magic_eval_event
|
|
4616 so that we don't corrupt ideas about the last event or
|
|
4617 command. Remove widget-callback-current-channel fiddling.
|
|
4618 * gui-msw.c (mswindows_handle_gui_wm_command): ditto.
|
|
4619
|
|
4620 2000-05-01 Martin Buchholz <martin@xemacs.org>
|
|
4621
|
|
4622 * XEmacs 21.2.33 is released.
|
|
4623
|
|
4624 2000-05-01 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
4625
|
|
4626 * make-src-depend: Allow dots in header file name.
|
|
4627
|
|
4628 2000-05-01 Yoshiki Hayashi <yoshiki@xmacs.org>
|
|
4629
|
|
4630 * mule-charset.h (struct charset_lookup): Add
|
|
4631 next_allocated_1_byte_leading_byte and
|
|
4632 next_allocated_2_byte_leading_byte.
|
|
4633 * mule-charset.c: Move above two variables so that those values
|
|
4634 will be dumped.
|
|
4635
|
|
4636 2000-04-26 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
4637
|
|
4638 * insdel.c (find_charsets_in_bufbyte_string): Add Vcharset_ascii
|
|
4639 when string length is zero.
|
|
4640 (find_charsets_in_emchar_string): Ditto.
|
|
4641
|
|
4642 2000-04-29 Bjrn Torkelsson <torkel@hpc2n.umu.se>
|
|
4643
|
|
4644 * lisp.h: extern Qdialog and Qmenubar.
|
|
4645
|
|
4646 * gui-x.c: added events.h.
|
|
4647 also fixed typo which made the file uncompilable.
|
|
4648
|
|
4649 * general.c: Added Qmenubar and Qdialog
|
|
4650
|
|
4651 2000-04-28 Ben Wing <ben@xemacs.org>
|
|
4652
|
|
4653 * frame-msw.c (mswindows_init_frame_1):
|
|
4654 * frame-msw.c (mswindows_mark_frame):
|
|
4655 * event-msw.c (mswindows_enqueue_dispatch_event):
|
|
4656 * console-msw.h:
|
|
4657 * console-msw.h (struct mswindows_frame):
|
|
4658 * console-msw.h (FRAME_MSWINDOWS_WIDGET_HASH_TABLE1):
|
|
4659 there are now three hash tables for callbacks.
|
|
4660 mswindows_enqueue_dispatch_event is no longer static.
|
446
|
4661
|
442
|
4662 * dialog-x.c (maybe_run_dbox_text_callback):
|
|
4663 * dialog-x.c (dbox_descriptor_to_widget_value):
|
|
4664 switch to new cons3 form for callbacks.
|
446
|
4665
|
442
|
4666 * glyphs-msw.c (mswindows_register_gui_item):
|
|
4667 * glyphs-msw.c (mswindows_widget_instantiate):
|
|
4668 * glyphs-msw.c (add_tree_item):
|
|
4669 * glyphs-msw.c (add_tab_item):
|
|
4670 new image instance parameter, so it can be passed to callback-ex.
|
|
4671 respect :callback-ex as well as :callback.
|
446
|
4672
|
442
|
4673 * glyphs-widget.c (VALID_GUI_KEYWORDS):
|
|
4674 add :callback-ex.
|
446
|
4675
|
442
|
4676 * glyphs.c (print_image_instance):
|
|
4677 prettify, e.g. now prints widget type.
|
446
|
4678
|
442
|
4679 * gui-x.h:
|
|
4680 certain funs have new image instance parameter.
|
446
|
4681
|
442
|
4682 * gui.c:
|
|
4683 * gui.c (get_gui_callback):
|
|
4684 * gui.c (gui_item_add_keyval_pair):
|
|
4685 * gui.c (gui_item_init):
|
|
4686 * gui.c (gui_add_item_keywords_to_plist):
|
|
4687 * gui.c (mark_gui_item):
|
|
4688 * gui.c (gui_item_hash):
|
|
4689 * gui.c (gui_item_equal):
|
|
4690 * gui.c (copy_gui_item):
|
|
4691 * gui.c (syms_of_gui):
|
|
4692 recognize callback-ex in a number of places.
|
|
4693 also, fix the annoying "can't get out of yes-no dialog" bug.
|
446
|
4694
|
442
|
4695 * gui.h:
|
|
4696 * gui.h (struct Lisp_Gui_Item):
|
|
4697 recognize callback-ex in a number of places.
|
|
4698
|
|
4699 * menubar-x.c (menu_item_descriptor_to_widget_value_1):
|
|
4700 new parameter in button_item_to_widget_value.
|
446
|
4701
|
442
|
4702 * glyphs-x.c (x_update_widget):
|
|
4703 * glyphs-x.c (x_button_instantiate):
|
|
4704 * glyphs-x.c (x_button_update):
|
|
4705 * glyphs-x.c (x_progress_gauge_instantiate):
|
|
4706 * glyphs-x.c (x_edit_field_instantiate):
|
|
4707 * glyphs-x.c (x_combo_box_instantiate):
|
|
4708 * glyphs-x.c (x_tab_control_instantiate):
|
|
4709 * glyphs-x.c (x_label_instantiate):
|
|
4710 new image instance parameter in various places.
|
446
|
4711
|
442
|
4712 * event-Xt.c:
|
|
4713 * event-Xt.c (enqueue_Xt_dispatch_event):
|
|
4714 this fun gets exported.
|
446
|
4715
|
442
|
4716 * gui-msw.c:
|
|
4717 * gui-msw.c (mswindows_handle_gui_wm_command):
|
|
4718 handle both :callback and :callback-ex, and generate our own
|
|
4719 event because it's one of the callback-ex arguments.
|
446
|
4720
|
442
|
4721 * gui-x.c:
|
|
4722 * gui-x.c (popup_selection_callback):
|
|
4723 handle both :callback and :callback-ex, and generate our own
|
|
4724 event because it's one of the callback-ex arguments.
|
|
4725 * gui-x.c (button_item_to_widget_value):
|
|
4726 * gui-x.c (gui_items_to_widget_values_1):
|
|
4727 * gui-x.c (gui_item_children_to_widget_values):
|
|
4728 * gui-x.c (gui_items_to_widget_values):
|
|
4729 new image instance parameter in various places.
|
|
4730
|
|
4731 * fns.c (Freplace_list):
|
|
4732 fix small typo in doc string.
|
446
|
4733
|
442
|
4734 * lisp.h:
|
|
4735 declare enqueue_Xt_dispatch_event.
|
|
4736
|
|
4737 2000-04-28 Ben Wing <ben@xemacs.org>
|
|
4738
|
|
4739 * buffer.c:
|
|
4740 * buffer.c (Frecord_buffer):
|
|
4741 * buffer.c (syms_of_buffer):
|
|
4742 delete record-buffer-hook.
|
446
|
4743
|
442
|
4744 * fns.c:
|
|
4745 * fns.c (Freplace_list):
|
|
4746 * fns.c (syms_of_fns):
|
|
4747 new primitive replace-list.
|
446
|
4748
|
442
|
4749 * frameslots.h:
|
|
4750 slot for old buffer-alist.
|
446
|
4751
|
442
|
4752 * lisp.h:
|
|
4753 exfun replace-list.
|
446
|
4754
|
442
|
4755 * redisplay.c:
|
|
4756 * redisplay.c (redisplay_frame):
|
|
4757 * redisplay.c (syms_of_redisplay):
|
|
4758 * redisplay.c (vars_of_redisplay):
|
|
4759 new hook buffer-list-changed-hook.
|
|
4760 call it.
|
|
4761
|
|
4762 2000-04-27 Ben Wing <ben@xemacs.org>
|
|
4763
|
|
4764 * extents.h: extern in_modeline_generation.
|
|
4765
|
|
4766 * redisplay.c (generate_formatted_string_db): set
|
|
4767 in_modeline_generation.
|
|
4768
|
|
4769 * extents.c (extent_changed_for_redisplay): don't mark redisplay
|
|
4770 flags if in modeline generation. otherwise frame-modified-tick
|
|
4771 is ticked far too often.
|
|
4772 Declare in_modeline_generation.
|
|
4773
|
|
4774 2000-04-26 Ben Wing <ben@xemacs.org>
|
|
4775
|
|
4776 * emacs.c (vars_of_emacs): document quick-build "error-checking"
|
|
4777 option.
|
|
4778 (vars_of_emacs): add quick-build as an error-checking option.
|
|
4779 A bit kludgy, but there doesn't seem much point in creating
|
|
4780 a real var for this.
|
|
4781
|
|
4782 * config.h.in: put in an entry for QUICK_BUILD; remove NO_DOC_FILE.
|
|
4783
|
|
4784 2000-04-14 IKEYAMA Tomonori <tomonori@suiyokai.org>
|
|
4785
|
|
4786 * redisplay.h (struct display_line): Add a new variable,
|
|
4787 line_continuation.
|
|
4788
|
|
4789 * redisplay.c (create_text_block): Set dl->line_continuation if
|
|
4790 the line continues.
|
|
4791 (create_string_text_block): Ditto.
|
|
4792 (regenerate_window_incrementally): Use line_continuation instead
|
|
4793 of searching continuation glyph.
|
|
4794 (add_margin_runes): Call add_glyph_rune.
|
|
4795 (add_glyph_rune): Handle margin glyph.
|
|
4796
|
|
4797 2000-04-20 Martin Buchholz <martin@xemacs.org>
|
|
4798
|
446
|
4799 * filelock.c (fill_in_lock_file_name):
|
442
|
4800 ANSIfy.
|
|
4801 Check for IS_ANY_SEP instead of '/'.
|
446
|
4802 (lock_file_1):
|
442
|
4803 Avoid generating gratuitous garbage. Call user_login_name() directly.
|
|
4804 Never check errno without first seeing that system call failed.
|
|
4805 (unlock_file): Add GCPRO.
|
|
4806 (Flock_buffer): Fix docstring.
|
|
4807 (Ffile_locked_p): Fix docstring. Add GCPRO.
|
|
4808
|
|
4809 2000-04-19 Martin Buchholz <martin@xemacs.org>
|
|
4810
|
446
|
4811 * sysdep.c (get_pty_max_bytes):
|
442
|
4812 Fix hangs on DEC OSF 4.0 when (process-send-string) sends
|
|
4813 strings longer than 252 bytes.
|
|
4814
|
|
4815 * md5.c: Unconditionally include ANSI header <limits.h>
|
|
4816
|
446
|
4817 * glyphs-x.c (convert_EImage_to_XImage):
|
|
4818 * lisp-union.h (union Lisp_Object):
|
442
|
4819 Use consistently the syntax #ifdef FEATURE, not #if FEATURE.
|
|
4820
|
|
4821 2000-04-13 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
4822
|
|
4823 * filelock.c (current_lock_owner): Remove unused variable o, p.
|
|
4824
|
|
4825 2000-04-17 Norbert Koch <n.koch@eai-delta.de>
|
|
4826
|
|
4827 * callint.c: Remove multiply defined symbol Qlet
|
|
4828 (syms_of_callint): ditto.
|
|
4829
|
|
4830 2000-04-14 Andy Piper <andy@xemacs.org>
|
|
4831
|
|
4832 * general.c (syms_of_general): add last-command, this-command, let
|
|
4833 and funcall.
|
|
4834
|
|
4835 * lisp.h: declare various symbols.
|
|
4836
|
|
4837 * glyphs.h: declare Qwidget_callback_current_channel;
|
|
4838
|
|
4839 * glyphs-widget.c (syms_of_glyphs_widget): add
|
|
4840 Qgui_callback_current_channel.
|
|
4841 (vars_of_glyphs_widget): add Vgui_callback_current_channel.
|
|
4842
|
|
4843 * gui-msw.c (mswindows_handle_gui_wm_command): bind
|
|
4844 widget-callback-current-channel when invoking the interactive
|
|
4845 arg. Also bind last-command and next-command when invoking the
|
|
4846 widget updates.
|
|
4847 * gui-x.c (popup_selection_callback): ditto.
|
|
4848
|
|
4849 * gui.c (get_gui_callback): massage args so that we are always
|
|
4850 calling eval. This allows us to add our own variable bindings
|
|
4851 outside.
|
|
4852
|
|
4853 * glyphs-x.c (x_button_instantiate): use
|
|
4854 gui_items_to_widget_values since this is GC safe.
|
|
4855 (x_progress_gauge_instantiate): ditto.
|
|
4856 (x_edit_field_instantiate): ditto.
|
|
4857 (x_label_instantiate): ditto.
|
|
4858
|
|
4859 * event-Xt.c (emacs_Xt_handle_magic_event): remove old printfs.
|
|
4860 (emacs_Xt_event_widget_focus_out): new function
|
|
4861 (emacs_Xt_event_widget_focus_in): new function. Set the keyboard
|
|
4862 focus.
|
|
4863 (emacs_Xt_event_add_widget_actions): new function. add focus
|
|
4864 functions as actions.
|
|
4865 (init_event_Xt_late): use it.
|
|
4866
|
|
4867 2000-04-14 Hrvoje Niksic <hniksic@iskon.hr>
|
|
4868
|
|
4869 * event-stream.c (Fdispatch_event): Doc fix.
|
|
4870
|
|
4871 2000-03-29 SL Baur <steve@musashimaru.m17n.org>
|
|
4872
|
|
4873 * postgresql.c: Remove all references to PQsetenv*.
|
|
4874
|
|
4875 * postgresql.h: Remove references to PGsetenvHandler object.
|
|
4876 * lrecord.h (lrecord_type): Ditto.
|
|
4877
|
|
4878 2000-04-11 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
4879
|
|
4880 * glyphs-msw.h (struct mswindows_image_instance_data): Added
|
|
4881 real_heigh and real_width members, and accessor macros for these.
|
|
4882
|
|
4883 * glyphs-msw.c (init_image_instance_geometry): New function.
|
|
4884 (init_image_instance_from_dibitmap): Use it.
|
|
4885 (mswindows_resource_instantiate): Use it.
|
|
4886 (init_image_instance_from_xbm_inline): Use it.
|
|
4887 (mswindows_initialize_image_instance_mask): Use real bitmap
|
|
4888 geometry.
|
|
4889 (mswindows_create_resized_bitmap): Ditto.
|
|
4890 (mswindows_create_resized_mask): Ditto.
|
446
|
4891
|
442
|
4892 * redisplay-msw.c (mswindows_output_dibitmap): Stretch real mask
|
|
4893 and bitmap to their surface size.
|
|
4894
|
|
4895 2000-04-11 Jan Vroonhof <jan@xemacs.org>
|
|
4896
|
|
4897 * process-unix.c (unix_send_process): Guard against process MIA
|
|
4898 after Faccept_process_output.
|
|
4899
|
|
4900 2000-04-11 Ben Wing <ben@xemacs.org>
|
|
4901
|
|
4902 * eval.c (unbind_to_hairy): fix brokenness introduced by
|
|
4903 nanosecond speed improvements.
|
|
4904
|
|
4905 2000-04-07 Raymond Toy <toy@rtp.ericsson.se>
|
|
4906
|
|
4907 * sunplay.c (init_device): To play sounds correctly, the device
|
|
4908 apparently needs to be initialized at least once by XEmacs. Make
|
|
4909 it so.
|
|
4910
|
|
4911 2000-04-10 IKEYAMA Tomonori <tomonori@suiyokai.org>
|
|
4912
|
|
4913 * redisplay.c (add_margin_runes): Add text image glyph
|
|
4914 handling.
|
|
4915
|
|
4916 2000-04-06 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
4917
|
|
4918 * lisp.h (DOESNT_RETURN): Don't declare as volatile when
|
|
4919 gcc is newer than 2.5.
|
|
4920
|
|
4921 2000-04-06 Colin Rafferty <colin@xemacs.org>
|
|
4922
|
|
4923 * lisp.h (FLEXIBLE_ARRAY_STRUCT_SIZEOF): Created.
|
446
|
4924
|
442
|
4925 * fns.c (size_bit_vector):
|
|
4926 * alloc.c (size_vector):
|
|
4927 (make_vector_internal):
|
|
4928 (make_bit_vector_internal):
|
|
4929 (sweep_bit_vectors_1):
|
|
4930 Replace calls to offsetof with FLEXIBLE_ARRAY_STRUCT_SIZEOF macro.
|
|
4931
|
|
4932 2000-04-06 Andy Piper <andy@xemacs.org>
|
|
4933
|
|
4934 * gmalloc.c (malloc): undo previous change.
|
|
4935 (malloc): ditto.
|
|
4936 (free): ditto.
|
|
4937 (realloc): ditto.
|
|
4938
|
|
4939 2000-04-06 IKEYAMA Tomonori <tomonori@suiyokai.org>
|
|
4940
|
|
4941 * line-number.c (buffer_line_number): Revert to former version.
|
|
4942
|
|
4943 2000-04-06 Andy Piper <andy@xemacs.org>
|
|
4944
|
|
4945 * gmalloc.c (malloc): add error checking.
|
|
4946 (malloc): ditto.
|
|
4947 (free): ditto.
|
|
4948 (realloc): ditto.
|
|
4949
|
|
4950 * dialog-x.c (dbox_descriptor_to_widget_value): add extra
|
|
4951 button_item_to_widget_value arg.
|
|
4952
|
|
4953 * glyphs-x.c (x_button_instantiate): add extra
|
|
4954 button_item_to_widget_value arg.
|
|
4955 (x_progress_gauge_instantiate): ditto.
|
|
4956 (x_edit_field_instantiate): ditto.
|
|
4957 (x_label_instantiate): ditto.
|
|
4958
|
|
4959 * gui-x.c (gui_items_to_widget_values_1): add extra
|
|
4960 button_item_to_widget_value arg.
|
|
4961 (button_item_to_widget_value): add extra menu_item_p arg.
|
|
4962
|
|
4963 * gui-x.h: change signature of button_item_to_widget_value.
|
|
4964
|
|
4965 * menubar-x.c (menu_item_descriptor_to_widget_value_1): add extra
|
|
4966 button_item_to_widget_value arg.
|
|
4967
|
|
4968 2000-04-03 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
4969
|
|
4970 * buffer.h (struct buffer): auto_save_modified should be long.
|
|
4971
|
|
4972 2000-04-05 Andy Piper <andy@xemacs.org>
|
|
4973
|
|
4974 * glyphs-widget.c (widget_instantiate): pixwidth != pixheight
|
|
4975 type.
|
|
4976 (button_query_geometry): give a little more room so that athena
|
|
4977 buttons fit.
|
|
4978
|
|
4979 2000-04-05 Andy Piper <andy@xemacs.org>
|
|
4980
|
|
4981 * faces.c (complex_vars_of_faces): The widget face should inherit
|
|
4982 the font of the gui-element face.
|
|
4983
|
|
4984 2000-04-04 Andy Piper <andy@xemacs.org>
|
|
4985
|
|
4986 * glyphs-x.c (x_button_update): new function. unconditionally
|
|
4987 update a button's state when the instance is dirty.
|
|
4988 (image_instantiator_format_create_glyphs_x): add x_button_update.
|
|
4989 (x_widget_instantiate): remove old resize cruft.
|
|
4990
|
|
4991 2000-04-02 Andy Piper <andy@xemacs.org>
|
|
4992
|
|
4993 * frame.c (change_frame_size_1): The introduction of gutters means
|
|
4994 that we need to allow 0 as a potential frame dimension.
|
|
4995
|
|
4996 2000-04-02 IKEYAMA Tomonori <tomonori@suiyokai.org>
|
|
4997
|
|
4998 * redisplay.c (add_glyph_rune): Don't set 0 to bufpos for text
|
|
4999 image glyph if allow_cursor.
|
|
5000 (add_hscroll_rune): Don't allow cursor to border glyph.
|
|
5001 (create_text_block): Ditto.
|
|
5002
|
|
5003 * redisplay-output.c (redisplay_move_cursor): Do nothing even if
|
|
5004 text not in buffer.
|
|
5005 (redisplay_output_layout): Call ensure_face_cachel_complete for
|
|
5006 text image glyph.
|
|
5007
|
|
5008
|
|
5009 2000-03-16 IKEYAMA Tomonori <tomonori@suiyokai.org>
|
|
5010
|
|
5011 * redisplay.c (add_glyph_rune): Adding text image as text runes.
|
|
5012
|
|
5013 * redisplay-output.c (redisplay_move_cursor): NO_CURSOR if text
|
|
5014 not in buffer
|
|
5015
|
|
5016 * redisplay-tty.c (tty_output_display_block): Delete the routine
|
|
5017 for text image glyph
|
|
5018 * redisplay-x.c (x_output_display_block): ditto
|
|
5019 * redisplay-msw.c (mswindows_output_display_block): ditto
|
|
5020
|
|
5021 2000-02-02 Mike Alexander <mta@arbortext.com>
|
|
5022
|
|
5023 Note: Some of these were committed by accident as part of other
|
|
5024 patches.
|
446
|
5025
|
442
|
5026 * regex.c (regex_compile): Avoid compiler warnings.
|
|
5027
|
|
5028 * ntproc.c (sys_spawnve): Avoid compiler warnings.
|
|
5029
|
|
5030 * nt.h: Declare term_ntproc correctly.
|
|
5031
|
|
5032 * nt.c: Remove incorrect declaration of get_home_directory which
|
|
5033 is declared correctly in lisp.h.
|
|
5034
|
|
5035 * keymap.c (get_keyelt): Avoid compiler warnings.
|
|
5036 (raw_lookup_key_mapper): Avoid compiler warnings.
|
|
5037
|
|
5038 * gutter.c (gutter_was_visible): Add return statement to avoid warning.
|
|
5039
|
|
5040 * glyphs-eimage.c (png_instantiate): Avoid compiler warnings.
|
|
5041
|
|
5042 * filemode.c (mode_string): Avoid compiler warnings.
|
|
5043
|
|
5044 * file-coding.c (Fcoding_system_aliasee): Add return statement to
|
|
5045 avoid warning.
|
|
5046
|
|
5047 * events-mod.h: Undef some things that winuser.h defines differently.
|
|
5048
|
|
5049 * data.c (Faset): Avoid compiler warnings.
|
|
5050
|
|
5051 * alloc.c (Fmake_byte_code): Avoid compiler warnings.
|
|
5052
|
|
5053 2000-03-03 Jan Vroonhof <vroonhof@math.ethz.ch>
|
|
5054
|
|
5055 * sound.c (Fplay_sound_file): Wrap ESD in start/stop_interrupts.
|
|
5056 Fall through to simple beep on error.
|
|
5057 Replace "extern" by real header file.
|
|
5058
|
|
5059 * linuxplay.c: Use nativesound.h
|
|
5060 (play_sound_data): Return error code. Be less verbose on error.
|
|
5061
|
|
5062 * sunplay.c: Use nativesound.h
|
|
5063 (play_sound_data): Return error code. Be less verbose on error.
|
|
5064
|
|
5065 * ntplay.c: Use nativesound.h
|
|
5066 (play_sound_data): Return fake error code
|
|
5067
|
|
5068 * sgiplay.c: Use nativesound.h
|
|
5069 (play_sound_data): Return error code
|
|
5070
|
|
5071 * hpplay.c: Use nativesound.h, partially implement
|
|
5072 new error code. Break compilation until finished.
|
|
5073 (play_sound_data): error code.
|
|
5074
|
446
|
5075 * nativesound.h (play_sound_file):
|
442
|
5076 (play_sound_data): Prototype in new header.
|
|
5077
|
|
5078 2000-03-31 Andy Piper <andy@xemacs.org>
|
|
5079
|
|
5080 * glyphs-widget.c: (button_query_geometry): new function. Adjust
|
|
5081 for toggle and radio buttons.
|
|
5082 (image_instantiator_buttons): use it.
|
|
5083
|
|
5084 2000-03-03 Jan Vroonhof <vroonhof@math.ethz.ch>
|
|
5085
|
446
|
5086 * scrollbar-x.c (x_update_vertical_scrollbar_callback):
|
442
|
5087 (x_update_horizontal_scrollbar_callback): Return if no mirror was
|
|
5088 found. Scrollbar event probably belonged to some old config.
|
|
5089
|
|
5090 2000-03-31 Andy Piper <andy@xemacs.org>
|
|
5091
|
|
5092 * glyphs-widget.c (widget_instantiate): use LAYOUT_VERTICAL rather
|
|
5093 than 1.
|
|
5094 (initialize_widget_image_instance): default layout to
|
|
5095 LAYOUT_HORIZONTAL rather than 0.
|
|
5096 (widget_instantiate): reverse the item list at the end rather than
|
|
5097 every iteration.
|
|
5098 (layout_layout): re-code for the border text at the front of the
|
|
5099 item list rather than at the end.
|
|
5100 (layout_query_geometry): ditto. Pick up fixed and dynamic sizes
|
|
5101 provided by the user.
|
|
5102 (widget_query_geometry): comment.
|
|
5103
|
|
5104 2000-03-30 Andy Piper <andy@xemacs.org>
|
|
5105
|
|
5106 * glyphs-widget.c (image_instantiator_layout): allow standard
|
|
5107 widget keywords in layouts.
|
|
5108
|
|
5109 * gutter.c (output_gutter): cope with nil gutter contents.
|
|
5110
|
|
5111 * frame.c (Fset_frame_properties): add gutter docs.
|
|
5112
|
|
5113 2000-03-29 Andy Piper <andy@xemacs.org>
|
|
5114
|
|
5115 * toolbar-msw.c (TBSTYLE_FLAT): add.
|
|
5116 (mswindows_output_toolbar): minor fiddling.
|
|
5117
|
|
5118 2000-03-29 Andy Piper <andy@xemacs.org>
|
|
5119
|
|
5120 * gutter.c (output_gutter): force gutter size recalculation if
|
|
5121 what we are trying to display won't fit.
|
|
5122 (update_gutter_geometry): new function. A per-gutter version of
|
|
5123 update_frame_gutter_geometry.
|
|
5124 (update_frame_gutter_geometry): use it.
|
|
5125 (redraw_exposed_gutter): add extra debugging output.
|
|
5126
|
|
5127 2000-03-28 Mike Alexander <mta@arbortext.com>
|
|
5128
|
|
5129 * dumper.c: Declare pdump_hFile and pdump_hMap (Windows only)
|
|
5130 (pdump_file_unmap): Implement it on Windows
|
|
5131 (pdump_file_get): Save alocated handles for pdump_file_unmap
|
|
5132
|
|
5133 2000-03-28 Andy Piper <andy@xemacs.org>
|
|
5134
|
|
5135 * gui.c (get_gui_callback): treat Quit specially.
|
|
5136
|
|
5137 2000-03-27 Andy Piper <andy@xemacs.org>
|
|
5138
|
|
5139 * glyphs.c (image_instantiate): be careful to check in the same
|
|
5140 way we assigned.
|
|
5141
|
|
5142 2000-03-27 Didier Verna <didier@xemacs.org>
|
|
5143
|
|
5144 * config.h.in: define the proper SMART_INCLUDE macro.
|
|
5145 handle renaming of `foo_h_path' to `foo_h_file'.
|
|
5146
|
|
5147 * database.c: ditto.
|
|
5148
|
|
5149 * emacs.c: ditto.
|
|
5150
|
|
5151 * linuxplay.c: ditto.
|
|
5152
|
|
5153 * terminfo.c: ditto.
|
|
5154
|
|
5155 * tooltalk.h: ditto.
|
|
5156
|
|
5157 2000-03-27 Andy Piper <andy@xemacs.org>
|
|
5158
|
|
5159 * glyphs-msw.c (mswindows_update_widget): make sure the widget
|
|
5160 gets updated whenever the face might have changed.
|
|
5161
|
|
5162 2000-03-26 Mike Alexander <mta@arbortext.com>
|
|
5163
|
|
5164 * dumper.c (pdump_resource_free): Fix the comment.
|
|
5165
|
|
5166 2000-03-21 Olivier Galibert <galibert@pobox.com>
|
|
5167
|
|
5168 * input-method-xlib.c (XIM_init_frame): Remove painful warning.
|
|
5169
|
|
5170 2000-03-22 Mike Alexander <mta@arbortext.com>
|
|
5171
|
|
5172 * dumper.c: Include Windows headers on Windows
|
|
5173 (pdump_resource_free): Add a body to the function
|
|
5174 (pdump_load): exe_name -> exe_path and add some comments.
|
|
5175
|
|
5176 2000-03-25 Mike Alexander <mta@arbortext.com>
|
|
5177
|
|
5178 * gui.c (copy_gui_item_tree): Return a value in all cases
|
|
5179
|
|
5180 2000-03-21 Didier Verna <didier@xemacs.org>
|
|
5181
|
|
5182 * config.h.in: move INCLUDE_GLUE_1 and INCLUDE_GLUE_2 here from
|
|
5183 lwlib/config.h.in.
|
|
5184 (SMART_INCLUDE): new macro.
|
|
5185 (POSTGRES_INCLUDE): new macro to include postgresql headers from
|
|
5186 the proper location.
|
|
5187
|
|
5188 * postgresql.c: use it.
|
|
5189
|
|
5190 * inline.c: ditto.
|
|
5191
|
|
5192 2000-03-24 Andy Piper <andy@xemacs.org>
|
|
5193
|
|
5194 * gutter.c (redraw_exposed_gutters): must be "in display" when we
|
|
5195 do this.
|
|
5196
|
|
5197 2000-03-24 Andy Piper <andy@xemacs.org>
|
|
5198
|
|
5199 * redisplay-output.c (compare_runes): use image_instance_changed
|
|
5200 to detect changes. Do not depend on glyphs_changed, only depend on
|
|
5201 dirtiness.
|
|
5202 (redisplay_output_layout): add debug messages.
|
|
5203 (compare_runes): ditto.
|
|
5204
|
|
5205 * glyphs.h: declare new functions.
|
|
5206 (struct Lisp_Image_Instance): remove percent and associated
|
|
5207 accessors.
|
|
5208
|
|
5209 * gui.h: declare new copying functions.
|
|
5210
|
|
5211 * gui.c (copy_gui_item_tree): new function.
|
|
5212 (copy_gui_item): new function.
|
|
5213 (gui_item_id_hash): revert to standard hash.
|
|
5214 (gui_item_hash): ditto.
|
|
5215 (gui_item_hash_internal): deleted.
|
|
5216 (mark_gui_item): mark value.
|
|
5217 (gui_item_add_keyval_pair): add value.
|
|
5218 (gui_item_init): ditto.
|
|
5219 (gui_add_item_keywords_to_plist): ditto.
|
|
5220 (gui_item_equal): ditto.
|
|
5221 (syms_of_gui): add Q_value.
|
|
5222
|
|
5223 * glyphs-x.c (x_progress_gauge_update): use pending items and
|
|
5224 value for setting the state.
|
|
5225 (x_update_widget): don't set items from pending here.
|
|
5226
|
|
5227 * glyphs-widget.c (update_widget): update items here.
|
|
5228 (progress_gauge_set_property): use items for storing value. Put
|
|
5229 new value in pending items.
|
|
5230
|
|
5231 * glyphs-msw.c (mswindows_progress_gauge_update): use pending
|
|
5232 items for new value. Convert percent -> value.
|
|
5233 (mswindows_tab_control_update): don't update items here.
|
|
5234
|
|
5235 * glyphs.c (Fupdate_widget_instances): use image_instance_changed.
|
|
5236 (update_subwindow): ditto.
|
|
5237 (image_instance_changed): new function. Compare hash values and
|
|
5238 past and present widget items.
|
|
5239 (image_instantiate): We more careful about where we instantiate
|
|
5240 things.
|
|
5241 (image_instantiate): add error checking.
|
|
5242
|
|
5243 * gutter.c (syms_of_gutter): use -hook.
|
|
5244
|
|
5245 2000-03-20 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
5246
|
|
5247 * console-tty.c (Fset_console_tty_input_coding_system): Use
|
|
5248 Qkeyboard.
|
|
5249 (Fset_console_tty_output_coding_system): Use Qterminal.
|
|
5250 (tty_init_console): Use Qkeyboard and Qterminal.
|
|
5251
|
|
5252 2000-03-21 Ben Wing <ben@xemacs.org>
|
|
5253
|
|
5254 * ntproc.c (create_child): remove bogus HAVE_NTGUI's.
|
|
5255 From Mike Alexander <mta@arbortext.com>.
|
|
5256
|
|
5257 2000-03-21 Ben Wing <ben@xemacs.org>
|
|
5258
|
|
5259 * event-msw.c (mswindows_need_event): Horrible kludge to fix
|
|
5260 process brokenness. Proper implementation to come.
|
|
5261 * callproc.c:
|
|
5262 Rename call-process-internal to old-call-process-internal.
|
|
5263 New impl. in process.el.
|
|
5264
|
|
5265 2000-03-21 Martin Buchholz <martin@xemacs.org>
|
|
5266
|
|
5267 * Makefile.in.in: Coalesce HAVE_NATIVE_SOUND code fragments.
|
|
5268
|
|
5269 2000-03-20 Andy Piper <andy@xemacs.org>
|
|
5270
|
|
5271 * glyphs.c (full_list_hash): make hashes of the same elements in
|
|
5272 different orders return different values.
|
|
5273
|
|
5274 2000-03-20 Martin Buchholz <martin@xemacs.org>
|
|
5275
|
|
5276 * XEmacs 21.2.32 is released.
|
|
5277
|
|
5278 2000-03-20 Martin Buchholz <martin@xemacs.org>
|
|
5279
|
|
5280 * buffer.h (DFC_ALLOCA_USE_CONVERTED_DATA):
|
|
5281 (DFC_MALLOC_USE_CONVERTED_DATA):
|
|
5282 Add aliasing-safe casts to allow use with char* or unsigned char*
|
|
5283 lvalues.
|
|
5284
|
|
5285 * eldap.c (Fldap_open):
|
|
5286 (Fldap_search_basic):
|
|
5287 (Fldap_add):
|
|
5288 (Fldap_modify):
|
|
5289 Make C++-compilable.
|
|
5290 Make sure GCPRO'ed variables are initialized.
|
|
5291 Use temp variables to avoid repeated calls to Flength.
|
|
5292
|
|
5293 2000-03-16 Martin Buchholz <martin@xemacs.org>
|
|
5294
|
|
5295 * sysfile.h:
|
|
5296 Make sure PATH_MAX is always defined.
|
|
5297 Include limits.h for PATH_MAX.
|
|
5298 Deprecate use of MAXPATHLEN.
|
|
5299
|
|
5300 2000-03-10 Martin Buchholz <martin@xemacs.org>
|
|
5301
|
|
5302 * emacs.c: Add reinit_vars_of_fileio.
|
|
5303 * symsinit.h: Add reinit_vars_of_fileio.
|
|
5304 * fileio.c (reinit_vars_of_fileio): New.
|
|
5305 * fileio.c (Fmake_temp_name):
|
|
5306 Initialize temp_name random number from microseconds to make
|
|
5307 collisions even less likely. Initialize always at process startup
|
|
5308 time. (make-temp-name) used to return the same file name twice in
|
|
5309 a row when PDUMP.
|
|
5310 Random stylistic fiddling.
|
|
5311 Comment fixes.
|
|
5312
|
|
5313 2000-03-20 Andy Piper <andy@xemacs.org>
|
|
5314
|
|
5315 * glyphs.c (image_instantiate): allow text glyphs to be
|
|
5316 instantiated in the minibuffer window.
|
|
5317
|
|
5318 2000-03-19 Andy Piper <andy@xemacs.org>
|
|
5319
|
|
5320 * glyphs.c (image_instance_hash): be careful about which items we
|
|
5321 hash on.
|
|
5322
|
|
5323 * glyphs-widget.c (tab_control_set_property): record into pending
|
|
5324 items rather than the actual items.
|
|
5325
|
|
5326 * glyphs-x.c (x_update_widget): use pending items to update with.
|
|
5327
|
|
5328 * glyphs-msw.c (mswindows_tab_control_update): use pending items
|
|
5329 to update with.
|
|
5330
|
|
5331 * glyphs.c (mark_image_instance): mark pending items.
|
|
5332
|
|
5333 * window.c (Fset_window_configuration): record the buffer.
|
|
5334 (Fselect_window): totally revert previous change which breaks many
|
|
5335 things.
|
|
5336
|
|
5337 2000-03-18 Andy Piper <andy@xemacs.org>
|
|
5338
|
|
5339 * glyphs-msw.c (mswindows_tab_control_update): force selected
|
|
5340 item.
|
|
5341
|
|
5342 * glyphs.c (image_instantiate): don't allow the minibuffer as a
|
|
5343 window domain cache, otherwise we get inconsistencies at
|
|
5344 startup. There is something fishy at startup which can lead to the
|
|
5345 minibuffer being the selected window when the gutter content is
|
|
5346 instantiated.
|
|
5347
|
|
5348 * gui.c (parse_gui_item_tree_list): add probably unnecessary
|
|
5349 gcpros.
|
|
5350 (parse_gui_item_tree_children): ditto.
|
|
5351 (parse_gui_item_tree_item): ditto.
|
|
5352
|
|
5353 * glyphs.c (Fupdate_widget_instances): return something.
|
|
5354
|
|
5355 2000-03-18 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
5356
|
|
5357 * window.c (Fselect_window): Undo 2000-03-17 change.
|
|
5358
|
|
5359 2000-03-17 SL Baur <steve@musashimaru.m17n.org>
|
|
5360
|
|
5361 * postgresql.c (Fpq_setenv): Remove this turkey when linking
|
|
5362 against v7.0 libraries. Insta-coredump city until the postgres
|
|
5363 folks fix it.
|
|
5364
|
|
5365 2000-03-17 Andy Piper <andy@xemacs.org>
|
|
5366
|
|
5367 * faces.c (complex_vars_of_faces): don't give the widget face an
|
|
5368 inherited background pixmap.
|
|
5369
|
|
5370 * glyphs-msw.c (mswindows_tab_control_instantiate): select the
|
|
5371 selected item.
|
|
5372
|
|
5373 * event-stream.c (Fdispatch_non_command_events): return something.
|
|
5374
|
|
5375 * gutter.c (output_gutter): use widget face.
|
|
5376 (clear_gutter): ditto.
|
|
5377
|
|
5378 * NEWS: adjust again.
|
|
5379
|
|
5380 * window.c (Fselect_window): make sure this runs to completion to
|
|
5381 avoid oddities with Fset_window_configuration.
|
|
5382 (Fcurrent_window_configuration): in general do not save the
|
|
5383 minibuffer as the selected window.
|
|
5384
|
|
5385 * glyphs.h (IMAGE_INSTANCE_HASH_DEPTH): increase.
|
|
5386
|
|
5387 2000-03-16 Olivier Galibert <galibert@pobox.com>
|
|
5388
|
|
5389 * emacs.c (Frunning_temacs_p): Revert previous patch.
|
|
5390 (main_1): Reinitialize running_temacs_argc if pdump_load succeeds.
|
|
5391
|
|
5392 2000-03-16 Andy Piper <andy@xemacs.org>
|
|
5393
|
|
5394 * glyphs-x.c (x_tab_control_update): if no widget values then
|
|
5395 return.
|
|
5396
|
|
5397 * NEWS: update for new features.
|
|
5398
|
|
5399 * event-Xt.c (emacs_Xt_force_event_pending): new function. Post a
|
|
5400 synthetic event to the native system.
|
|
5401 (reinit_vars_of_event_Xt): set force_event_pending to
|
|
5402 emacs_Xt_force_event_pending.
|
|
5403
|
|
5404 * events.h (struct event_stream): add force_event_pending.
|
|
5405
|
|
5406 * specifier.c (recompute_one_cached_specifier_in_window): add
|
|
5407 comment.
|
|
5408
|
|
5409 * redisplay.c (redisplay_frame): don't call
|
|
5410 update_frame_subwindows. Reset subwindow cachels when
|
|
5411 subwindows_changed, removing this was an optimization too far.
|
|
5412
|
|
5413 * redisplay-output.c (compare_runes): reorganize so that we catch
|
|
5414 glyph changes when we want them. Set optimize_output when this
|
|
5415 would help layouts.
|
|
5416 (redisplay_output_layout): remove frame_really_changed, use
|
|
5417 optimize_output instead.
|
|
5418
|
|
5419 * redisplay-msw.c (mswindows_output_display_block): reset
|
|
5420 optimize_output after outputting a glyph.
|
|
5421 * redisplay-x.c (x_output_display_block): ditto.
|
|
5422 * redisplay-tty.c (tty_output_display_block): ditto.
|
|
5423
|
|
5424 * gutter.c: (specifier_vars_of_gutter): use new spec changed
|
|
5425 functions.
|
|
5426 (gutter_specs_changed): do specific gutter positions.
|
|
5427 (top_gutter_specs_changed): new function. Only update the
|
|
5428 specified gutter specs.
|
|
5429 (bottom_gutter_specs_changed): ditto.
|
|
5430 (left_gutter_specs_changed): ditto.
|
|
5431 (right_gutter_specs_changed): ditto.
|
|
5432
|
|
5433 * gui.c (gui_item_hash_internal): new function, does a real hash.
|
|
5434 (gui_item_id_hash): use it.
|
|
5435 (gui_item_hash): hash the eval'ed gui_item.
|
|
5436
|
|
5437 * gui-x.c (popup_selection_callback): send an eval event to call
|
|
5438 Fupdate_widget_instances.
|
|
5439
|
|
5440 * gui-msw.c (mswindows_handle_gui_wm_command): send an eval event
|
|
5441 to call Fupdate_widget_instances.
|
|
5442
|
|
5443 * glyphs.h (struct Lisp_Image_Instance): add optimize_output flag.
|
|
5444 (IMAGE_INSTANCE_OPTIMIZE_OUTPUT): access it.
|
|
5445
|
|
5446 * glyphs.c: (update_frame_subwindows): deleted.
|
|
5447 (Fupdate_widget_instances): new function for updating the dirty
|
|
5448 state of widgets that might have changed.
|
|
5449 (syms_of_glyphs): add Qupdate_widget_instances.
|
|
5450 (full_list_hash): hash a list completely.
|
|
5451 (image_instance_hash): use it for items and properties.
|
|
5452
|
|
5453 * frame-msw.c (mswindows_size_frame_internal): remove unused
|
|
5454 variable.
|
|
5455
|
|
5456 * faces.h (struct face_cachel): fix comment.
|
|
5457
|
|
5458 * event-stream.c (Fdispatch_non_command_events): new
|
|
5459 function. Process non-command events, forcing an event cycle
|
|
5460 beforehand.
|
|
5461 (syms_of_event_stream): declare.
|
|
5462 (event_stream_force_event_pending): new function. Force an event
|
|
5463 on the native event queue so that an event cycle will occur next
|
|
5464 time we check.
|
|
5465
|
|
5466 * event-msw.c:
|
|
5467 (struct ntpipe_shove_stream):
|
|
5468 (mswindows_enqueue_dispatch_event):
|
|
5469 (mswindows_dequeue_dispatch_event):
|
|
5470 (mswindows_cancel_dispatch_event):
|
|
5471 (mswindows_pump_outstanding_events):
|
|
5472 (mswindows_drain_windows_queue):
|
|
5473 (mswindows_handle_paint):
|
|
5474 (mswindows_wnd_proc):
|
|
5475 (mswindows_key_to_emacs_keysym):
|
|
5476 (get_process_input_waitable):
|
|
5477 (emacs_mswindows_delete_stream_pair): re-indent file.
|
|
5478 (mswindows_need_event): do not process further fds if the windows
|
|
5479 fd is set, otherwise you get endless XM_BUMPQUEUE cycles. This
|
|
5480 fixes the 100% cpu problem.
|
|
5481 (reinit_vars_of_event_mswindows): set force_event_pending to 0.
|
|
5482
|
|
5483 2000-03-15 Olivier Galibert <galibert@pobox.com>
|
|
5484
|
|
5485 * alloc.h: New.
|
|
5486 * dumper.h: New.
|
|
5487 * dumper.c: New.
|
|
5488
|
|
5489 * emacs.c: Moved dump file searching to dumper.c.
|
|
5490 (Frunning_temacs_p): Fixed.
|
|
5491
|
|
5492 * alloc.c: Moved everything pdump-related to dumper.c. Removed
|
|
5493 last_lrecord_type_index_assigned.
|
|
5494
|
|
5495 2000-02-20 Olivier Galibert <galibert@pobox.com>
|
|
5496
|
|
5497 * symsinit.h: Added reinit parameter to init_console_stream
|
|
5498 declaration.
|
|
5499
|
|
5500 * lisp.h: Added file parameter to pdump_load declaration.
|
|
5501
|
|
5502 * emacs.c (main_1): Added -nd/--nodump-file and -sd/--show-dump-id
|
|
5503 support. Added dump file searching.
|
|
5504
|
|
5505 * config.h.in: Added EMACS_PROGNAME.
|
|
5506
|
|
5507 * console-stream.c (init_console_stream): Fix reinitialisation
|
|
5508 when running from temacs.
|
|
5509
|
|
5510 * alloc.c (pdump): Add id support.
|
|
5511 (pdump_load): Add file parameter and signature/id support.
|
|
5512
|
|
5513 * Makefile.in.in: Add full pdump support.
|
|
5514
|
|
5515 2000-03-15 SL Baur <steve@musashimaru.m17n.org>
|
|
5516
|
|
5517 * postgresql.c: Update documentation to reflect latest code
|
|
5518 status.
|
|
5519 (print_result): Show tuple counts in printed representation when
|
|
5520 appropriate.
|
|
5521 (Fpq_put_nbytes): MULE-ize.
|
|
5522 (Fpq_get_line_async): Ditto.
|
|
5523
|
|
5524 2000-03-14 SL Baur <steve@musashimaru.m17n.org>
|
|
5525
|
|
5526 * postgresql.c (Fpq_lo_import): Fix return value.
|
|
5527 Suggested by: Kenji Itoh <keit@tpj.co.jp>.
|
|
5528
|
|
5529 2000-03-13 Ben Wing <ben@xemacs.org>
|
|
5530
|
|
5531 * alloc.c (pdump_load):
|
|
5532 Fix compile warning under mswin.
|
|
5533
|
|
5534 2000-03-14 SL Baur <steve@musashimaru.m17n.org>
|
|
5535
|
|
5536 * postgresql.c: Mule-ization, bug fixes.
|
|
5537 Use PG_CODING to encapsulate coding system name changes.
|
|
5538 Backport a version of TO_EXTERNAL format for 21.1/InfoDock.
|
|
5539 (pg-coding-system): Create.
|
|
5540
|
|
5541 (Fpq_conn_defaults): Mule-ize.
|
|
5542 (Fpq_connectdb): Mule-ize & bug fix.
|
|
5543 (Fpq_connect_start): Mule-ize.
|
|
5544 (Fpq_set_client_encoding): Mule-ize.
|
|
5545 (Fpq_finish): Document `DEAD' connection status.
|
|
5546 (Fpq_clear): Ditto.
|
|
5547 (Fpq_pgconn): Mule-ize.
|
|
5548 (Fpq_exec): Mule-ize & bug fix.
|
|
5549 (Fpq_send_query): Ditto.
|
|
5550 (Fpq_get_result): Ditto.
|
|
5551 (Fpq_res_status): Mule-ize.
|
|
5552 (Fpq_result_error_message): Mule-ize.
|
|
5553 (Fpq_ntuples): fix comments.
|
|
5554 (Fpq_fname): Mule-ize.
|
|
5555 (Fpq_fnumber): Mule-ize.
|
|
5556 (Fpq_ftype): fix comments.
|
|
5557 (Fpq_get_value): Mule-ize.
|
|
5558 (Fpq_cmd_status): Ditto.
|
|
5559 (Fpq_cmd_tuples): Ditto.
|
|
5560 (Fpq_oid_value): Ditto.
|
|
5561 (Fpq_notifies): Ditto.
|
|
5562 (Fpq_lo_import): Ditto.
|
|
5563 (Fpq_lo_export): Ditto.
|
|
5564 (Fpq_get_line): Ditto.
|
|
5565 (Fpq_put_line): Mule-ize and bug fix.
|
|
5566 (syms_of_postgresql): Fix ifdef'ing, add pg-coding-system.
|
|
5567
|
|
5568 2000-03-10 SL Baur <steve@musashimaru.m17n.org>
|
|
5569
|
|
5570 * postgresql.c (vars_of_postgresql): Mule-ize.
|
|
5571 (Fpq_conn_defaults): Ditto.
|
|
5572
|
|
5573 2000-03-12 Ben Wing <ben@xemacs.org>
|
|
5574
|
|
5575 * alloc.c (Fmake_byte_code):
|
|
5576 * alloc.c (debug_string_purity_print):
|
|
5577 * alloc.c (pdump_backtrace):
|
|
5578 * alloc.c (pdump_get_indirect_count):
|
|
5579 * alloc.c (pdump_register_sub):
|
|
5580 * alloc.c (pdump_register_object):
|
|
5581 * alloc.c (pdump_register_struct):
|
|
5582 * alloc.c (pdump_dump_data):
|
|
5583 * alloc.c (pdump_reloc_one):
|
|
5584 Minor cleanups.
|
|
5585
|
|
5586 * console-msw.c:
|
|
5587 * console-msw.c (GetConsoleHwnd):
|
|
5588 * console-msw.c (msw_hide_console):
|
|
5589 * console-msw.c (msw_show_console):
|
|
5590 * console-msw.c (msw_ensure_console_buffered):
|
|
5591 * console-msw.c (msw_output_console_string):
|
|
5592 * console-msw.c (console_type_create_mswindows):
|
|
5593
|
|
5594 a) Added functions to manipulate the console window for use with
|
|
5595 shell support.
|
|
5596
|
|
5597 b) Added support for writing text to the console, which is now
|
|
5598 used under Windows when xemacs is not being run non-interactively,
|
|
5599 to write text that would otherwise be destined for stdout because
|
|
5600 under these circumstances, text written to stdout tends to
|
|
5601 disappear and not be seen.
|
|
5602
|
|
5603 * console-msw.h:
|
|
5604 * event-Xt.c:
|
|
5605 * event-Xt.c (x_event_to_emacs_event):
|
|
5606 * event-Xt.c (describe_event_window):
|
|
5607 * events-mod.h (XEMACS_MOD_CONTROL):
|
|
5608 * events.c:
|
|
5609 * events.c (Fmake_event):
|
|
5610 * events.c (character_to_event):
|
|
5611 * events.c (event_to_character):
|
|
5612 * events.c (format_event_object):
|
|
5613 * events.c (Fevent_modifiers):
|
|
5614 * events.h:
|
|
5615 * events.h (struct key_data):
|
|
5616 * events.h (struct button_data):
|
|
5617 * events.h (struct misc_user_data):
|
|
5618 * frame-x.c (Fcde_start_drag_internal):
|
|
5619 * frame-x.c (Foffix_start_drag_internal):
|
|
5620 * gpmevent.c (Freceive_gpm_event):
|
|
5621 * keymap.c:
|
|
5622 * keymap.c (bucky_sym_to_bucky_bit):
|
|
5623 * keymap.c (control_meta_superify):
|
|
5624 * keymap.c (make_key_description):
|
|
5625 * keymap.c (keymap_lookup_directly):
|
|
5626 * keymap.c (create_bucky_submap):
|
|
5627 * keymap.c (keymap_store):
|
|
5628 * keymap.c (define_key_check_and_coerce_keysym):
|
|
5629 * keymap.c (define_key_parser):
|
|
5630 * keymap.c (define_key_alternate_name):
|
|
5631 * keymap.c (Fdefine_key):
|
|
5632 * keymap.c (raw_lookup_key_mapper):
|
|
5633 * keymap.c (struct map_keymap_unsorted_closure):
|
|
5634 * keymap.c (map_keymap_unsorted_mapper):
|
|
5635 * keymap.c (map_keymap_sort_predicate):
|
|
5636 * keymap.c (map_keymap_sorted):
|
|
5637 * keymap.c (accessible_keymaps_mapper_1):
|
|
5638 * keymap.c (where_is_recursive_mapper):
|
|
5639 * keymap.c (describe_map_mapper):
|
|
5640 * keymap.c (describe_map_sort_predicate):
|
|
5641 * keymap.c (describe_map):
|
|
5642 * keymap.c (complex_vars_of_keymap):
|
|
5643 And a number of other files, the key modifier preprocessor
|
|
5644 constants that xemacs uses have names that conflict with constants
|
|
5645 defined under MS Windows for other purposes, so they were renamed
|
|
5646 to begin with the prefix XEMACS_. The variables that hold such
|
|
5647 modifiers were changed to consistently be of type int to fix
|
|
5648 various compile warnings.
|
|
5649
|
|
5650 * console.c (complex_vars_of_console):
|
|
5651 * device.c:
|
|
5652 * device-msw.c:
|
|
5653 * device-msw.c (mswindows_finish_init_device):
|
|
5654 * device-msw.c (msw_get_workspace_coords):
|
|
5655 * device-msw.c (mswindows_device_system_metrics):
|
|
5656 and various other files, added support for a new
|
|
5657 device property called offset-workspace which returns the position
|
|
5658 of the upper left corner of the workspace area and goes along with
|
|
5659 the existing size-workspace property.
|
|
5660
|
|
5661 * dialog-msw.c:
|
|
5662 * dialog-msw.c (push_bufbyte_string_as_unicode):
|
|
5663 * dialog-msw.c (mswindows_popup_dialog_box):
|
|
5664 Added support for XEmacs-style accelerator specifications in
|
|
5665 button text. Note: I didn't add support for this under X Windows,
|
|
5666 and somebody needs to do this.
|
|
5667
|
|
5668 * dialog.c:
|
|
5669 * dialog.c (Fpopup_dialog_box):
|
|
5670 Documented the support for accelerators that was just mentioned.
|
|
5671
|
|
5672 editfns.c (get_home_directory): Changed behavior under Windows
|
|
5673 when HOME not defined; former behavior was irretrievably broken.
|
|
5674
|
|
5675 * emacs.c:
|
|
5676 * emacs.c (main_1):
|
|
5677 * emacs.c (main):
|
|
5678 * minibuf.c (clear_echo_area_internal):
|
|
5679 * minibuf.c (echo_area_append):
|
|
5680 * print.c:
|
|
5681 * print.c (std_handle_out_external):
|
|
5682 * print.c (std_handle_out_va):
|
|
5683 * print.c (fatal):
|
|
5684 * print.c (write_string_to_stdio_stream):
|
|
5685 * print.c (output_string):
|
|
5686 * print.c (debug_print):
|
|
5687 * print.c (debug_backtrace):
|
|
5688 * print.c (debug_short_backtrace):
|
|
5689 Cleaned up the code that prints text to stdout so that this can be
|
|
5690 changed to output into a console window instead under MS Windows,
|
|
5691 as described above.
|
|
5692
|
|
5693 * eval.c:
|
|
5694 * eval.c (DEFEND_AGAINST_THROW_RECURSION):
|
|
5695 * eval.c (internal_catch):
|
|
5696 * eval.c (unwind_to_catch):
|
|
5697 * eval.c (throw_or_bomb_out):
|
|
5698 * eval.c (condition_case_1):
|
|
5699 * eval.c (signal_1):
|
|
5700 * eval.c (check_error_state_sanity):
|
|
5701 * eval.c (call_with_suspended_errors_1):
|
|
5702 * eval.c (call_with_suspended_errors):
|
|
5703 * eval.c (reinit_vars_of_eval):
|
|
5704 Added code to catch throw loops and check for a pesky bug that may
|
|
5705 be gone now.
|
|
5706
|
|
5707 * event-msw.c:
|
|
5708 * event-msw.c (key_needs_default_processing_p):
|
|
5709 * event-msw.c (mswindows_wnd_proc):
|
|
5710 * event-msw.c (mswindows_modifier_state):
|
|
5711 * event-msw.c (emacs_mswindows_quit_p):
|
|
5712 * event-msw.c (vars_of_event_mswindows):
|
|
5713 a) Added support for using the alt key to select menu items as is
|
|
5714 standard under MS Windows. This is controlled using the variable
|
|
5715 menu-accelerator-enabled, just like under X Windows. There is an
|
|
5716 option on the options menu to turn this support on. I really
|
|
5717 think that it should be on by default under Windows, but I'm not
|
|
5718 going to make this change yet.
|
|
5719
|
|
5720 b) Added support for dynamic display size changes under Windows.
|
|
5721
|
|
5722 * event-stream.c:
|
|
5723 * event-stream.c (maybe_echo_keys):
|
|
5724 * event-stream.c (Fnext_event):
|
|
5725 * event-stream.c (command_builder_find_leaf):
|
|
5726 * event-stream.c (lookup_command_event):
|
|
5727 * event-stream.c (execute_command_event):
|
|
5728 * event-stream.c (pre_command_hook):
|
|
5729 * event-stream.c (post_command_hook):
|
|
5730 * event-stream.c (syms_of_event_stream):
|
|
5731 * event-stream.c (vars_of_event_stream):
|
|
5732 * event-stream.c (complex_vars_of_event_stream):
|
|
5733 * events.h (struct command_builder):
|
|
5734
|
|
5735 a) Tried to clean up a little bit the horribly written x-specific
|
|
5736 accelerator code that crept into this file. I moved this code
|
|
5737 into menubar-x.c where it belongs. I also needed to move the
|
|
5738 command builder structure into the file events.h because it is
|
|
5739 accessed directly by this accelerator code. What I didn't do, but
|
|
5740 which should be done at some point, is to properly abstract this
|
|
5741 code using device methods instead of the kludgy way that it
|
|
5742 currently hooks into the event code.
|
|
5743
|
|
5744 b) Added the lisp variables this-command-properties and
|
|
5745 last-command- properties, which should be used to synchronize two
|
|
5746 adjacent commands in preference to playing games with the variable
|
|
5747 this-command, which is typically what happens.
|
|
5748
|
|
5749 c) Added some slightly nasty code to hook into the lisp support
|
|
5750 for shifted- motion-key selection. This is actually necessary for
|
|
5751 somewhat complicated reasons, which are described in
|
|
5752 simple.el. (NB: I think the proper thing would be to have the code
|
|
5753 that calls the pre and post command hooks also call out to generic
|
|
5754 lisp functions in simple.el, where all built-in stuff could be
|
|
5755 added. I will think about this more.)
|
|
5756
|
|
5757 * event-unixoid.c (poll_fds_for_input):
|
|
5758 * lread.c (readchar):
|
|
5759 * redisplay-tty.c (tty_clear_frame):
|
|
5760 * redisplay-x.c (x_get_gc):
|
|
5761 * signal.c (interrupt_signal):
|
|
5762 And a whole bunch of other files: fixed up places that printed
|
|
5763 directly to stderr to instead call the function stderr_out so that
|
|
5764 the changes I made under Windows work correctly.
|
|
5765
|
|
5766 * filemode.c (mode_string):
|
|
5767 Warning fixes.
|
|
5768
|
|
5769 * frame-msw.c:
|
|
5770 * frame-msw.c (mswindows_size_frame_internal):
|
|
5771 Fixed the computation of frame size and position to keep the frame
|
|
5772 within the workspace area, rather than within the physical
|
|
5773 dimensions of the screen, so that the frame doesn't overlap window
|
|
5774 manager decorations, such as the start menu and toolbar, typically
|
|
5775 at the bottom of the screen.
|
|
5776
|
|
5777 * frame.c (vars_of_frame):
|
|
5778 Changed the default frame title format under MS Windows to consist
|
|
5779 of buffername-XEmacs, which is standard under MS Windows. I think
|
|
5780 it might be a good idea to change this everywhere because I think
|
|
5781 it is superior to the current frame title format, but this is the
|
|
5782 kind of change that is likely to cause some people to get annoyed,
|
|
5783 so I'm not making it.
|
|
5784
|
|
5785 * glyphs-eimage.c (png_instantiate): Fixed some compile warnings.
|
|
5786
|
|
5787 * gui-msw.c (mswindows_handle_gui_wm_command):
|
|
5788 Fixed compile warnings.
|
|
5789
|
|
5790 * gui-x.c:
|
|
5791 * gui-x.c (strdup_and_add_accel):
|
|
5792 * gui-x.c (button_item_to_widget_value):
|
|
5793 * gui-x.h:
|
|
5794 Added code to automatically put an accelerator onto the beginning
|
|
5795 of menu items that don't have one as is now the standard, and is
|
|
5796 described more later. Also fixed things so that the menu item
|
|
5797 name can be an evaluated expression, again a new standard.
|
|
5798
|
|
5799 * gui.c:
|
|
5800 * gui.c (gui_item_add_keyval_pair):
|
|
5801 * gui.c (make_gui_item_from_keywords_internal):
|
|
5802 * gui.c (gui_add_item_keywords_to_plist):
|
|
5803 * gui.c (gui_item_accelerator):
|
|
5804 * gui.c (gui_name_accelerator):
|
|
5805 * gui.c (gui_item_included_p):
|
|
5806 * gui.c (gui_item_display_flush_left):
|
|
5807 * gui.c (gui_item_display_flush_right):
|
|
5808 * gui.c (parse_gui_item_tree_item):
|
|
5809 * gui.c (parse_gui_item_tree_children):
|
|
5810 * gui.c (parse_gui_item_tree_list):
|
|
5811 Mule-ized. Cleanup. GCPRO addition.
|
|
5812
|
|
5813 * line-number.c (buffer_line_number):
|
|
5814 * lisp.h:
|
|
5815 * lisp.h (EMACS_INT_MAX):
|
|
5816 Added the manifest constant EMACS_INT_MIN corresponding to the
|
|
5817 existing constant EMACS_INT_MAX. This is partially to fix compile
|
|
5818 warnings under Windows, and partly for cleanliness.
|
|
5819
|
|
5820 * menubar-msw.c:
|
|
5821 * menubar-msw.c (REPLACE_ME_WITH_GLOBAL_VARIABLE_WHICH_CONTROLS_RIGHT_FLUSH):
|
|
5822 * menubar-msw.c (msw_translate_menu_or_dialog_item):
|
|
5823 * menubar-msw.c (displayable_menu_item):
|
|
5824 * menubar-msw.c (populate_menu_add_item):
|
|
5825 * menubar-msw.c (populate_or_checksum_helper):
|
|
5826 * menubar-msw.c (populate_menu):
|
|
5827 * menubar-msw.c (update_frame_menubar_maybe):
|
|
5828 * menubar-msw.c (prune_menubar):
|
|
5829 * menubar-msw.c (msw_char_is_accelerator):
|
|
5830 * menubar-msw.c (unsafe_handle_wm_initmenu_1):
|
|
5831 * menubar-msw.c (mswindows_handle_wm_command):
|
|
5832 * menubar-msw.c (mswindows_handle_wm_initmenupopup):
|
|
5833 * menubar-msw.c (mswindows_handle_wm_initmenu):
|
|
5834 * menubar-msw.c (mswindows_update_frame_menubars):
|
|
5835 * menubar-msw.c (mswindows_free_frame_menubars):
|
|
5836 * menubar-msw.c (mswindows_popup_menu):
|
|
5837 Fixed a bug in handling accelerators where an extra character
|
|
5838 would be displayed in the menu item. Also generalized the
|
|
5839 function displayable_menu_item because it is now used by the
|
|
5840 dialog box code as well. And finally, added code in the functions
|
|
5841 that create the menubar to extract a list of accelerators for the
|
|
5842 top level menubar, which is used in the event code to determine
|
|
5843 whether a particular alt-key combination should be used to invoke
|
|
5844 a menu item, or should be passed through to access the standard
|
|
5845 XEmacs keymap binding for this key combination.
|
|
5846
|
|
5847 Much needed GCPROing.
|
|
5848
|
|
5849 * menubar-x.c:
|
|
5850 * menubar-x.c (menu_item_descriptor_to_widget_value_1):
|
|
5851 * menubar-x.c (menu_item_descriptor_to_widget_value):
|
|
5852 * menubar-x.c (restore_in_menu_callback):
|
|
5853 * menubar-x.c (x_popup_menu):
|
|
5854 * menubar-x.c (menu_move_up):
|
|
5855 * menubar-x.c (menu_move_down):
|
|
5856 * menubar-x.c (menu_move_left):
|
|
5857 * menubar-x.c (menu_move_right):
|
|
5858 * menubar-x.c (menu_select_item):
|
|
5859 * menubar-x.c (command_builder_operate_menu_accelerator):
|
|
5860 * menubar-x.c (menu_accelerator_junk_on_error):
|
|
5861 * menubar-x.c (command_builder_find_menu_accelerator):
|
|
5862 * menubar-x.c (Faccelerate_menu):
|
|
5863 * menubar.h:
|
|
5864 Moved a whole bunch of code here that was previously in
|
|
5865 event-stream.c as described above. There is also code connected
|
|
5866 to the new standard of adding an accelerator to the beginning of
|
|
5867 menu items that don't have one as described above and below.
|
|
5868
|
|
5869 * menubar.c:
|
|
5870 * menubar.c (menu_parse_submenu_keywords):
|
|
5871 * menubar.c (Fmenu_find_real_submenu):
|
|
5872 * menubar.c (Fnormalize_menu_item_name):
|
|
5873 * menubar.c (syms_of_menubar):
|
|
5874 * menubar.c (vars_of_menubar):
|
|
5875 * menubar.c (complex_vars_of_menubar):
|
|
5876
|
|
5877 a) Cleaned up a bunch of documentation and improved it.
|
|
5878
|
|
5879 b) XEmacs now automatically adds an accelerator onto the beginning
|
|
5880 of any menu items that don't have one. I did this because there
|
|
5881 will inevitably be some menu items on the main menubar that don't
|
|
5882 have accelerators on them because the package that adds that
|
|
5883 particular menu item hasn't yet been fixed up to have accelerators
|
|
5884 in them and it looked rather strange to have some items with and
|
|
5885 some items without accelerators, especially since even in items
|
|
5886 without accelerators, you can, at least under windows, still
|
|
5887 access the item through an accelerator corresponding to the first
|
|
5888 character in the item's name. If people don't like this behavior,
|
|
5889 I can add a variable to turn it off optionally, but I'm not sure
|
|
5890 this is a good idea because we really do need to have accelerators
|
|
5891 on all of the menu items, and if a package doesn't like the
|
|
5892 accelerators being put on the first character, then it should put
|
|
5893 the accelerators where they belong.
|
|
5894
|
|
5895 c) I made a behavior change, which is that the descriptor that
|
|
5896 specifies the text of the menu item, which formerly was just a
|
|
5897 string, can now also be an evaluated expression. This makes this
|
|
5898 descriptor parallel with all of the others, which could also be
|
|
5899 evaluated expressions. This also obviates the need for the
|
|
5900 keyword :label, which was previously listed in the documentation
|
|
5901 as unimplemented, and which was for the same purpose.
|
|
5902
|
|
5903 d) GCPROing.
|
|
5904
|
|
5905 * ntproc.c:
|
|
5906 * ntproc.c (new_child):
|
|
5907 * ntproc.c (sys_spawnve):
|
|
5908 * ntproc.c (find_child_console):
|
|
5909 * ntproc.c (sys_kill):
|
|
5910 Fixed compile warnings. By the way, this file should really go
|
|
5911 away entirely, and this will happen as soon as Kirill makes his
|
|
5912 final round of process cleanups, which affect the function
|
|
5913 call-process.
|
|
5914
|
|
5915 * process-nt.c:
|
|
5916 * process-nt.c (struct nt_process_data):
|
|
5917 * process-nt.c (find_process_from_pid):
|
|
5918 * process-nt.c (send_signal_the_nt_way):
|
|
5919 * process-nt.c (enable_child_signals):
|
|
5920 * process-nt.c (find_child_console):
|
|
5921 * process-nt.c (send_signal_the_95_way):
|
|
5922 * process-nt.c (nt_finalize_process_data):
|
|
5923 * process-nt.c (ensure_console_window_exists):
|
|
5924 * process-nt.c (nt_create_process):
|
|
5925 * process-nt.c (nt_kill_child_process):
|
|
5926 * process-nt.c (nt_kill_process_by_pid):
|
|
5927 * process-nt.c (nt_open_network_stream):
|
|
5928 * process-nt.c (vars_of_process_nt):
|
|
5929 Copied over code from Emacs 20.5 to correctly send signals to sub-
|
|
5930 processes under Windows 95. Also added code to automatically
|
|
5931 create and hide console window when a sub-process is created under
|
|
5932 Windows 95, which obviates the need for the separate runemacs.exe
|
|
5933 executable, and finally implemented some variables that were
|
|
5934 implemented in Emacs 20.5, but previously not in XEmacs. These
|
|
5935 include mswindows- start-process-share-console and
|
|
5936 mswindows-start-process-inherit-error-mode. (Both of these only
|
|
5937 apply to Windows 95.)
|
|
5938
|
|
5939 * regex.c (regex_compile): Fixed a compile warning.
|
|
5940
|
|
5941 * select-msw.c:
|
|
5942 * select-msw.c (mswindows_own_selection):
|
|
5943 * select-msw.c (mswindows_get_foreign_selection):
|
|
5944 * select-msw.c (mswindows_disown_selection):
|
|
5945 * select-msw.c (console_type_create_select_mswindows):
|
|
5946 * select-msw.c (syms_of_select_mswindows):
|
|
5947 Cleaned up the file and implemented the device method
|
|
5948 selection_exists_p, which had accidentally been left out. Also
|
|
5949 removed four lisp functions that were remnants from before the
|
|
5950 time when the selection code was properly device abstracted.
|
|
5951 These functions are no longer needed because there are generic
|
|
5952 equivalents, and because they were added recently and don't exist
|
|
5953 in FSF Emacs, I don't think there's any problem with just deleting
|
|
5954 them.
|
|
5955
|
|
5956 * sysdep.c:
|
|
5957 * sysdep.c (sys_subshell):
|
|
5958 Fixed a compile warning, although in this case there's probably
|
|
5959 something wrong with this code, and it ought to be looked into
|
|
5960 more thoroughly by somebody who understands it.
|
|
5961
|
|
5962 * window.c:
|
|
5963 * window.c (Fwindow_text_area_height):
|
|
5964 * window.c (Fwindow_width):
|
|
5965 * window.c (Fwindow_full_width):
|
|
5966 * window.c (Fwindow_pixel_width):
|
|
5967 * window.c (debug_print_window):
|
|
5968 * window.c (syms_of_window):
|
|
5969 Added functions window-text-area-height and window-full-width,
|
|
5970 which are functions for returning various width and height
|
|
5971 characteristics of a window. (One of these functions is necessary
|
|
5972 for making the file dialog box work correctly, and the other one
|
|
5973 was added for completeness.) Also added a table to the
|
|
5974 documentation for window-height which describes the entire scheme
|
|
5975 for accessing width and height characteristics of a window.
|
|
5976
|
|
5977 2000-03-12 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
5978
|
|
5979 * nt.c (fstat): Added a comment for another problem with
|
|
5980 non-encapsulated [f]stat(), reported by Adrian Aichner
|
|
5981 <aichner@ecf.teradyne.com>.
|
|
5982
|
|
5983 2000-03-11 Andy Piper <andy@xemacs.org>
|
|
5984
|
|
5985 * window.c (make_dummy_parent): initialize subwindow instance
|
|
5986 cache.
|
|
5987 (Fset_window_configuration): zero extent_modiff.
|
|
5988
|
|
5989 2000-03-10 Andy Piper <andy@xemacs.org>
|
|
5990
|
|
5991 * redisplay.c (Fredraw_frame): reset the changed_set flags so that
|
|
5992 more changes can be triggered.
|
|
5993 (Fredisplay_frame): ditto.
|
|
5994 (Fredraw_device): ditto.
|
|
5995 (Fredisplay_device): ditto.
|
|
5996 (redisplay_frame): make non-static.
|
|
5997 (redisplay_frame): call update_frame_gutter_geometry outside of
|
|
5998 display proper.
|
|
5999
|
|
6000 * gutter.h: declare update_frame_gutter_geometry.
|
|
6001
|
|
6002 * redisplay.h: declare redisplay_frame.
|
|
6003
|
|
6004 * gutter.c (update_frame_gutter_geometry): move geometry changes
|
|
6005 in update_frame_gutters here. Geometry changes can only occur
|
|
6006 outside of redisplay.
|
|
6007 (update_frame_gutters): remove geometry change code.
|
|
6008 (Fredisplay_gutter_area): make sure that we are in display when we
|
|
6009 update and that we have flushed any size changes.
|
|
6010
|
|
6011 2000-03-11 Andy Piper <andy@xemacs.org>
|
|
6012
|
|
6013 * alloc.c (pdump_dump_data): remove i & count shadows.
|
|
6014
|
|
6015 2000-02-27 Mike Alexander <mta@arbortext.com>
|
|
6016
|
|
6017 * sysdep.h: Declare pdump_read_file
|
|
6018
|
|
6019 * sysdep.c (pdump_read_file): New function
|
|
6020
|
|
6021 * alloc.c (pdump_load): Call pdump_read_file to get the portable
|
|
6022 dump data
|
|
6023
|
|
6024 2000-03-10 SL Baur <steve@musashimaru.m17n.org>
|
|
6025
|
|
6026 * lrecord.h: add `lrecord_type_pgsetenv'.
|
|
6027
|
|
6028 2000-03-08 SL Baur <steve@musashimaru.m17n.org>
|
|
6029
|
|
6030 * symsinit.h: declare (vars|syms)_of* functions.
|
|
6031 * lrecord.h: add `lrecord_type_pgconn' and 'lrecord_type_pgresult'.
|
|
6032
|
|
6033 2000-03-06 SL Baur <steve@musashimaru.m17n.org>
|
|
6034
|
|
6035 * config.h.in: Add symbols HAVE_POSTGRESQL and HAVE_POSTGRESQLV7
|
|
6036
|
|
6037 * inline.c: Include postgresql.h lrecord stuffs to placate buggy
|
|
6038 GCCs.
|
|
6039
|
|
6040 * emacs.c (main_1): Call postgres initialization code.
|
|
6041
|
|
6042 * postgresql.h: New file. PostgreSQL RDBMS support.
|
|
6043 * postgresql.c: New file.
|
|
6044
|
|
6045 2000-03-08 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
6046
|
|
6047 * redisplay-output.c (redisplay_output_display_block): Disable
|
|
6048 redundant code.
|
|
6049
|
|
6050 2000-03-09 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
6051
|
|
6052 * mule-canna.c (Fcanna_henkan_region): Translate doc-string.
|
|
6053 (Fcanna_henkan_next): Ditto.
|
|
6054 (Fcanna_bunsetu_henkou): Ditto.
|
|
6055 (Fcanna_henkan_kakutei): Ditto.
|
|
6056 (Fcanna_henkan_end): Ditto.
|
|
6057 (Fcanna_henkan_quit): Ditto.
|
|
6058 (Fcanna_henkan_next): Set retun value correctly.
|
|
6059 (c2mu): Use unsigned char instead of signed char.
|
|
6060
|
|
6061 2000-03-09 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
6062
|
|
6063 * emacs.c (main_1): Always call syms_of_gui.
|
|
6064 * inline.c: include gui.h
|
|
6065
|
|
6066 2000-03-09 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
6067
|
|
6068 * redisplay.c (Vvisible_bell): Renamed from visible_bell and
|
|
6069 converted to Lisp_Object.
|
|
6070 (Qtop_bottom): New variable.
|
|
6071 (syms_of_redisplay): Initialize it.
|
|
6072 * redisplay.h (Vvisible_bell): Ditto.
|
|
6073 * sound.c (ding): Ditto and check if Vvisible_bell is nil.
|
|
6074 * redisplay-x.c (x_flash): When Vvisible_bell is top-bottom,
|
|
6075 only flash top and bottom.
|
|
6076
|
|
6077 2000-03-08 Andy Piper <andy@xemacs.org>
|
|
6078
|
|
6079 * buffer.c (Frename_buffer): record new buffer name the right way.
|
|
6080
|
|
6081 2000-03-08 Andy Piper <andy@xemacs.org>
|
|
6082
|
|
6083 * glyphs.c (update_subwindow): increase hash depth so that widget
|
|
6084 items get picked up properly.
|
|
6085
|
|
6086 * redisplay-output.c (compare_runes): increase hash depth so that
|
|
6087 widget items get picked up properly.
|
|
6088
|
|
6089 2000-03-08 Andy Piper <andy@xemacs.org>
|
|
6090
|
|
6091 * gutter.c (output_gutter): add some debug.
|
|
6092
|
|
6093 * glyphs.h (struct Lisp_Image_Instance): add display_hash.
|
|
6094 (IMAGE_INSTANCE_DISPLAY_HASH): new macro.
|
|
6095 (XIMAGE_INSTANCE_DISPLAY_HASH): ditto.
|
|
6096
|
|
6097 * redisplay-output.c (compare_runes): use display_hash to
|
|
6098 determine if glyphs really are not the same.
|
|
6099
|
|
6100 * glyphs.c (update_subwindow): check display_hash to see if
|
|
6101 anything really needs to be updated. If not then do
|
|
6102 nothing. Record the display_hash after updating.
|
|
6103 (image_instance_equal): compare the image_instance face also.
|
|
6104
|
|
6105 2000-03-07 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
6106
|
|
6107 * redisplay.h: Fix comment style.
|
|
6108
|
|
6109 2000-03-08 Jonathan Harris <jhar@tardis.ed.ac.uk>
|
|
6110
|
|
6111 * consle-msw.h (struct mswindows_frame):
|
|
6112 Added new member paint_pending to indicate whether a WM_PAINT
|
|
6113 magic event has been queued for this frame.
|
|
6114
|
|
6115 * event-msw.c (mswindows_drain_windows_queue):
|
|
6116 Don't queue a WM_PAINT magic event if one is already queued.
|
|
6117 (emacs_mswindows_handle_magic_event): clear paint_pending flag.
|
|
6118
|
|
6119 * frame-msw.c (mswindows_init_frame_1): initialise paint_pending flag.
|
|
6120
|
|
6121 2000-03-07 Didier Verna <didier@xemacs.org>
|
|
6122
|
|
6123 * dired.c: #include `regex.h' after `sysfile.h'.
|
|
6124
|
|
6125 2000-03-06 Martin Buchholz <martin@xemacs.org>
|
|
6126
|
|
6127 * sound.c (init_nas_sound): Fix compiler warning.
|
|
6128
|
|
6129 * alloc.c (ALIASING_VOIDPP_DEREFERENCE): New.
|
|
6130 (FREE_STRUCT_P):
|
|
6131 (MARK_STRUCT_AS_FREE):
|
|
6132 (MARK_STRUCT_AS_NOT_FREE):
|
|
6133 Make `gcc -fstrict-aliasing' work properly.
|
|
6134
|
|
6135 2000-03-07 Jonathan Harris <jhar@tardis.ed.ac.uk>
|
|
6136
|
|
6137 * device-msw.c (mswindows_finish_init_device): Call CoInitialize().
|
|
6138 (mswindows_delete_device): Call CoUnnitialize().
|
|
6139
|
|
6140 * event-msw.c (mswindows_wnd_proc): WM_DROPFILES: Decode Shortcuts.
|
|
6141
|
|
6142 2000-02-25 <CraigL@DyCon.com>
|
|
6143
|
|
6144 * process-nt.c: MinGW now has <shellapi.h>, but still needs
|
|
6145 <errno.h>.
|
|
6146
|
|
6147 * sysdep.c: This extern declaration for environ prevents MinGW
|
|
6148 from finding the variable in CRTDLL.DLL.
|
|
6149
|
|
6150 * s\mingw32.h (PBS_SMOOTH): Removed, now defined in cygwin's
|
|
6151 windows headers.
|
|
6152 (SHGFI_EXETYPE): ..
|
|
6153 (WM_MOUSEWHEEL): ..
|
|
6154 (_WIN32_IE): Added, needed to get the TCS_BOTTOM and TCS_VERTICAL
|
|
6155 definitions.
|
|
6156 (MMRESULT): Removed, now defined in cygwin's windows headers.
|
|
6157 (TIMECAPS): ..
|
|
6158 (uid_t,gid_t,pid_t,ssize_t): ..
|
|
6159 (_timeb): Removed, MinGW defines both _timeb and timeb.
|
|
6160 (HAVE_H_ERRNO): Added.
|
|
6161 (HAVE_TZNAME): Added, configure is not detecting this.
|
|
6162
|
|
6163 2000-02-03 IKEYAMA Tomonori <tomonori@suiyokai.org>
|
|
6164
|
|
6165 * chartab.h (XCHAR_TABLE_VALUE_UNSAFE): New macro.
|
|
6166 * syntax.c (syntax_match): Use it.
|
|
6167
|
|
6168 * cmds.c: Import auto-fill-chars from FSF Emacs.
|
|
6169 (Vauto_fill_chars): New variables.
|
|
6170 (internal_self_insert): Check Vauto_fill_chars.
|
|
6171 (vars_of_cmds):
|
|
6172 Declare auto-fill-chars as a Lisp variable and initialize it.
|
|
6173
|
|
6174 2000-03-05 Jonathan Harris <jhar@tardis.ed.ac.uk>
|
|
6175
|
|
6176 * fileio.c (Fmake_symbolic_link):
|
|
6177 (Ffile_symlink_p):
|
|
6178 Run handlers even if local machine doesn't have symlinks.
|
|
6179
|
|
6180 2000-03-05 Jonathan Harris <jhar@tardis.ed.ac.uk>
|
|
6181
|
|
6182 * event-msw.c (mswindows_drain_windows_queue):
|
|
6183 Don't generate paint magic events for non-XEmacs frames.
|
|
6184
|
|
6185 2000-03-05 Andy Piper <andy@xemacs.org>
|
|
6186
|
|
6187 * redisplay.c (redisplay_frame): generate_displayable_area and
|
|
6188 friends assumes that we are not in GC, we therefore have to make
|
|
6189 sure that this doesn't happen.
|
|
6190
|
|
6191 * gutter.c (calculate_gutter_size): generate_displayable_area
|
|
6192 assumes that we are not in GC, we therefore have to make sure that
|
|
6193 this doesn't happen.
|
|
6194
|
|
6195 2000-03-05 Martin Buchholz <martin@xemacs.org>
|
|
6196
|
|
6197 * opaque.c (DEFINE_LRECORD_IMPLEMENTATION): opaque_ptr ==> opaque-ptr
|
|
6198
|
|
6199 2000-03-03 Jan Vroonhof <vroonhof@math.ethz.ch>
|
|
6200
|
|
6201 * redisplay.c (regenerate_window): Make sure we set a sane value
|
|
6202 for end_pos even if we jump out of the loop.
|
|
6203 (regenerate_window): Answer Ben's question :-).
|
|
6204 (start_end_of_last_line): Add may_error argument.
|
|
6205 (start_of_last_line):
|
|
6206 (end_of_last_line): Pass may_error = 0.
|
|
6207 (end_of_last_line_may_error): New function.
|
|
6208 (pixel_to_glyph_translation): Use it, so we don't crash in
|
|
6209 event_to_glyph.
|
|
6210
|
|
6211 2000-03-04 Andy Piper <andy@xemacs.org>
|
|
6212
|
|
6213 * window.h (struct window): add gutter_extent_modiff.
|
|
6214
|
|
6215 * window.c (allocate_window): zero out gutter_extent_modiff.
|
|
6216
|
|
6217 * redisplay.h: declare sync_display_line_structs.
|
|
6218
|
|
6219 * redisplay.c (add_glyph_rune): add a better comment.
|
|
6220
|
|
6221 * redisplay-output.c (sync_display_line_structs): made non-static.
|
|
6222 (compare_runes): remove unneccesary glyph cachel access.
|
|
6223
|
|
6224 * gutter.h: declare gutter_extent_signal_changed_region_maybe.
|
|
6225
|
|
6226 * gutter.c (output_gutter): don't output the gutter if extent
|
|
6227 changes only involve extents in buffers. use 4 sets of display
|
|
6228 lines.
|
|
6229 (gutter_extent_signal_changed_region_maybe): new function. Mark
|
|
6230 extents in gutters as changed.
|
|
6231 (update_frame_gutters): use 4 sets of display lines.
|
|
6232 (reset_gutter_display_lines): ditto.
|
|
6233 (free_frame_gutters): ditto.
|
|
6234 (redraw_exposed_gutter): force output of gutters.
|
|
6235
|
|
6236 * frame.h (struct frame): add 4 sets of gutter display lines.
|
|
6237
|
|
6238 * extents.c: (extent_changed_for_redisplay): signal changes to
|
|
6239 extents in strings in the gutter as well as extents in buffers.
|
|
6240
|
|
6241 2000-03-02 Andy Piper <andy@xemacs.org>
|
|
6242
|
|
6243 * gutter.c (specifier_vars_of_gutter): cosmetic changes.
|
|
6244
|
|
6245 * frame.c (Fmake_frame): make sure the gutters get initialized
|
|
6246 after the frame is visible.
|
|
6247 (set_frame_selected_window): re-arrange compilation macros a
|
|
6248 little.
|
|
6249 (change_frame_size_1): mark gutters changed.
|
|
6250
|
|
6251 * device.c (Fset_device_class): mark gutters changed.
|
|
6252
|
|
6253 2000-03-01 Andy Piper <andy@xemacs.org>
|
|
6254
|
|
6255 * window.c (window_top_frame_gutter_height): deleted.
|
|
6256 (window_bottom_frame_gutter_height): ditto.
|
|
6257 (window_left_frame_gutter_height): ditto.
|
|
6258 (window_right_frame_gutter_height): ditto.
|
|
6259 (window_top_gutter_height): don't use them.
|
|
6260 (window_bottom_gutter_height): ditto.
|
|
6261 (window_left_gutter_width): ditto.
|
|
6262 (window_right_gutter_width): ditto.
|
|
6263 (Fsplit_window): ditto.
|
|
6264 (Fwindow_pixel_edges): don't use border dimensions here.
|
|
6265
|
|
6266 * scrollbar.c (update_scrollbar_instance): don't take gutters into account.
|
|
6267 (update_scrollbar_instance): ditto.
|
|
6268
|
|
6269 * redisplay.c (generate_modeline): don't take gutters into account.
|
|
6270 (generate_modeline): ditto.
|
|
6271 (redisplay_frame): small gutter display optimization.
|
|
6272
|
|
6273 * redisplay-x.c (x_output_vertical_divider): don't take gutters into account.
|
|
6274
|
|
6275 * redisplay-msw.c (mswindows_output_vertical_divider): don't take
|
|
6276 gutters into account.
|
|
6277
|
|
6278 * gutter.h (WINDOW_REAL_*_GUTTER_BOUNDS): remove bogus checks
|
|
6279 for window position and type.
|
|
6280
|
|
6281 * gutter.c (get_gutter_coords): fix for frame gutters.
|
|
6282 (update_frame_gutters): update frame geometry if the gutters have
|
|
6283 changed.
|
|
6284 (init_frame_gutters): record current gutter geometries.
|
|
6285
|
|
6286 * glyphs-msw.c (mswindows_subwindow_instantiate): remove unused
|
|
6287 var.
|
|
6288 (mswindows_widget_instantiate): ditto.
|
|
6289
|
|
6290 * frame.h (struct frame): add current_gutter_bounds.
|
|
6291
|
|
6292 * frame.c (change_frame_size_1): position window and minibuffer
|
|
6293 appropriately taking into account the frame gutters.
|
|
6294
|
|
6295 * frame-x.c: (x_initialize_frame_size): take into account the
|
|
6296 frame gutters.
|
|
6297
|
|
6298 2000-02-29 Stephen J. Turnbull <stephen@xemacs.org>
|
|
6299
|
|
6300 * emacs.c (data-directory): Xref `locate-data-file' in docstring.
|
|
6301
|
|
6302 2000-02-29 Stephen J. Turnbull <stephen@xemacs.org>
|
|
6303
|
|
6304 * alloc.c (dumpopaquevec): Increase dimension for --with-canna.
|
|
6305
|
|
6306 1999-12-30 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp>
|
|
6307
|
|
6308 * file-coding.c (reset_decoding_stream): Clear previous
|
|
6309 detection state when autodetect.
|
|
6310
|
|
6311 2000-02-29 Didier Verna <didier@xemacs.org>
|
|
6312
|
|
6313 * extents.c (set_extent_glyph_1): don't require extents to be
|
|
6314 attached.
|
|
6315
|
|
6316 2000-02-27 Andy Piper <andy@xemacs.org>
|
|
6317
|
|
6318 * gutter.c (Fset_default_gutter_position): don't default left and
|
|
6319 right gutter visibility to t.
|
|
6320 (Fset_default_gutter_position): run
|
|
6321 default-gutter-position-changed-hook.
|
|
6322 (syms_of_gutter): add default-gutter-position-changed-hook.
|
|
6323
|
|
6324 2000-02-26 Andy Piper <andy@xemacs.org>
|
|
6325
|
|
6326 * specifier.c (Fmake_specifier): add gutter references.
|
|
6327
|
|
6328 * gutter.h (RAW_WINDOW_GUTTER): new macro.
|
|
6329
|
|
6330 * lisp.h: declare Fvalid_plist_p.
|
|
6331
|
|
6332 * gutter.c (gutter_geometry_changed_in_window): mark the modeline
|
|
6333 as changed.
|
|
6334 (default_gutter_visible_p_changed_in_window): invalidate gutter as
|
|
6335 well as its visibility so that it gets reconstructed.
|
|
6336 (construct_window_gutter_spec): new function. Construct a string
|
|
6337 to be displayed in the gutter from a plist of strings. Take care
|
|
6338 to only use elements that are declared as visible.
|
|
6339 (calculate_gutter_size): use RAW_WINDOW_GUTTER instead of
|
|
6340 WINDOW_GUTTER.
|
|
6341 (gutter_validate): allow plists of strings in the specifier.
|
|
6342 (gutter_specs_changed): construct the real_gutter from the gutter
|
|
6343 specs using construct_window_gutter_spec.
|
|
6344 (gutter_visible_validate): gutter-visible is a new specifier type.
|
|
6345 (Fgutter_visible_specifier_p): new function for the new specifier.
|
|
6346 (syms_of_gutter): declare gutter-visible and
|
|
6347 Fgutter_visible_specifier_p.
|
|
6348 (specifier_type_create_gutter): intitalize new gutter-visible
|
|
6349 specifier.
|
|
6350 (reinit_specifier_type_create_gutter): ditto.
|
|
6351 (specifier_vars_of_gutter): use new specifier type for gutter
|
|
6352 visibility.
|
|
6353 (init_frame_gutters): construct real_gutter correctly.
|
|
6354 (Fgutter_specifier_p): beef up documentation.
|
|
6355 (Fgutter_size_specifier_p): ditto.
|
|
6356
|
|
6357 * winslots.h: add real_gutter slots.
|
|
6358
|
|
6359 2000-02-25 Andy Piper <andy@xemacs.org>
|
|
6360
|
|
6361 * device-msw.c: Be kind to older cygwin versions. From Raymond
|
|
6362 Toy <toy@rtp.ericsson.se>.
|
|
6363
|
|
6364 * gui-msw.c (Fmswindows_shell_execute): Remove things unknown to
|
|
6365 earlier cygwins. From Raymond Toy <toy@rtp.ericsson.se>.
|
|
6366
|
|
6367 2000-02-25 Martin Buchholz <martin@xemacs.org>
|
|
6368
|
|
6369 * elhash.c (MARK_OBJ): Practice macro hygiene.
|
|
6370
|
|
6371 2000-02-24 Martin Buchholz <martin@xemacs.org>
|
|
6372
|
|
6373 * miscplay.c: s/__inline__/inline/g;
|
|
6374 * glyphs-msw.c (set_mono_pixel): INLINE ==> static inline
|
|
6375 (get_device_compdc): INLINE ==> static inline
|
|
6376 * *.[ch]: Change INLINE to INLINE_HEADER globally.
|
|
6377 find -name '*.h' | \
|
|
6378 xargs global-replace \
|
|
6379 's/(^|(?<=[^A-Za-z0-9_]))INLINE((?=[^A-Za-z0-9_])|$)/INLINE_HEADER/g'
|
|
6380
|
|
6381 2000-02-25 Andy Piper <andy@xemacs.org>
|
|
6382
|
|
6383 * window.c (window_top_frame_gutter_height): new function.
|
|
6384 (window_top_window_gutter_height): ditto.
|
|
6385 (window_top_gutter_height): use them.
|
|
6386 (window_bottom_frame_gutter_height): new function.
|
|
6387 (window_bottom_window_gutter_height): ditto.
|
|
6388 (window_bottom_gutter_height): use them.
|
|
6389 (window_left_window_gutter_width): new function.
|
|
6390 (window_left_frame_gutter_width): ditto.
|
|
6391 (window_left_gutter_width): use them.
|
|
6392 (window_right_window_gutter_width): new function.
|
|
6393 (window_right_frame_gutter_width): ditto.
|
|
6394 (window_right_gutter_width): use them.
|
|
6395 (window_pixel_height): new function. calulate window pixel height
|
|
6396 with frame gutter involvement.
|
|
6397 (Fsplit_window): calculate new sizes taking frame gutters into
|
|
6398 account.
|
|
6399 (window_char_height_to_pixel_height): don't include frame gutters.
|
|
6400 (window_char_height): use window_pixel_height.
|
|
6401 (window_pixheight): rename from window_pixel_height.
|
|
6402 (change_window_height): use it.
|
|
6403 (window_pixel_height_to_char_height): don't include frame gutters.
|
|
6404 (window_char_width_to_pixel_width): ditto.
|
|
6405
|
|
6406 2000-02-25 Andy Piper <andy@xemacs.org>
|
|
6407
|
|
6408 * glyphs.h (IMAGE_INSTANCE_FACE): glyph might be nil, don't crash
|
|
6409 if it is.
|
|
6410
|
|
6411 2000-02-24 Martin Buchholz <martin@xemacs.org>
|
|
6412
|
|
6413 * alloc.c (staticpro):
|
|
6414 (staticpro_nodump):
|
|
6415 (dumpstruct):
|
|
6416 (dumpopaque):
|
|
6417 (pdump_wire):
|
|
6418 (pdump_wire_list):
|
|
6419 (compact_string_chars):
|
|
6420 (pdump_dump_wired):
|
|
6421 Convert: if (foo) abort(); ==> assert (! foo);
|
|
6422
|
|
6423 * eldap.c (Fldap_search_basic):
|
|
6424 (Fldap_add):
|
|
6425 (Fldap_modify):
|
|
6426 (Fldap_delete):
|
|
6427 Fix compiler warnings, and possible crashes if (random) return
|
|
6428 value were to be used.
|
|
6429
|
|
6430 2000-02-21 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
6431
|
|
6432 * device-msw.c: Workaround ResetDC failure.
|
|
6433
|
|
6434 * frame-msw.c (msprinter_init_frame_3): Added an assertion before
|
|
6435 applying a devmode.
|
|
6436
|
|
6437 * redisplay-msw.c (get_frame_dc): Added start_page_p.
|
|
6438 (mswindows_text_width): Do not start printer page.
|
|
6439
|
|
6440 * console-msw.h (CHECK_MSGDI_DEVICE): Added this and friends.
|
|
6441
|
|
6442 * glyphs-msw.c: Added image methods to msprinter console and
|
|
6443 msprinter-specific image instantiation.
|
|
6444
|
|
6445 2000-02-20 Mike Alexander <mta@arbortext.com>
|
|
6446
|
|
6447 * select-msw.c (Fmswindows_set_clipboard): GC protect more things
|
|
6448 to avoid crashes when selection-sets-clipboard is on
|
|
6449 (mswindows_own_selection): ditto
|
|
6450
|
|
6451 2000-02-19 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
6452
|
|
6453 * glyphs-msw.c:
|
|
6454 * redisplay-msw.c (get_frame_dc):
|
|
6455 (get_frame_compdc):
|
|
6456 * console-msw.h:
|
|
6457 * device-msw.c (mswindows_init_device):
|
|
6458 (mswindows_delete_device):
|
|
6459 (msprinter_init_device):
|
|
6460 (msprinter_delete_device):
|
|
6461 * frame-msw.c (mswindows_init_frame_1):
|
|
6462 (mswindows_delete_frame):
|
|
6463 (msprinter_init_frame_3):
|
|
6464 (msprinter_delete_frame): Move compatible DC to device object from
|
|
6465 frame object, for both mswindows and msprinter. Only one at a time
|
|
6466 is needed, it is a real waste to have one per frame!
|
|
6467
|
|
6468 2000-02-23 Andy Piper <andy@xemacs.org>
|
|
6469
|
|
6470 * glyphs.c: add dynamic width and height elements.
|
|
6471 (image_instance_equal): ditto.
|
|
6472
|
|
6473 * glyphs-widget.c (widget_query_geometry): calculate width and
|
|
6474 height dynamically if required.
|
|
6475 (initialize_widget_image_instance): initialize dynamic dimensions.
|
|
6476 (widget_instantiate): pick-up dynamic dimensions.
|
|
6477
|
|
6478 * glyphs.h (struct Lisp_Image_Instance): add width and height for
|
|
6479 dynamic determination. Add appropriate macros.
|
|
6480
|
|
6481 * gutter.h (WINDOW_GUTTER_BORDER_WIDTH): make non-integer
|
|
6482 dimensions safe.
|
|
6483 (WINDOW_GUTTER_SIZE): ditto.
|
|
6484 (WINDOW_GUTTER_SIZE_INTERNAL): ditto.
|
|
6485
|
|
6486 * redisplay-msw.c (get_frame_compdc): gcc can't cope with this
|
|
6487 inline.
|
|
6488 (get_frame_dc): ditto.
|
|
6489
|
|
6490 * redisplay.h (GLOBAL_RESET_CHANGED_FLAGS): don't reset faces
|
|
6491 here.
|
|
6492
|
|
6493 2000-02-23 Martin Buchholz <martin@xemacs.org>
|
|
6494
|
|
6495 * XEmacs 21.2.31 is released.
|
|
6496
|
|
6497 2000-02-22 Ben Wing <ben@xemacs.org>
|
|
6498
|
|
6499 * ntheap.c (allocate_heap): Make sure `ptr' is initialized.
|
|
6500
|
|
6501 2000-02-22 Andy Piper <andy@xemacs.org>
|
|
6502
|
|
6503 * glyphs-x.c (x_widget_instantiate): don't explicitly resize here.
|
|
6504
|
|
6505 2000-02-21 Mike Sperber <mike@xemacs.org>
|
|
6506
|
|
6507 * .dbxrc:
|
|
6508 * .gdbinit:
|
|
6509 * Makefile.in.in: Remove obsolete EMACSBOOTSTRAP... environment
|
|
6510 variables.
|
|
6511
|
|
6512 2000-02-21 Mike Sperber <mike@xemacs.org>
|
|
6513
|
|
6514 * s/aix4.h: Declare getaddrinfo broken for AIX 4, which it is.
|
|
6515
|
|
6516 2000-02-21 Martin Buchholz <martin@xemacs.org>
|
|
6517
|
|
6518 * XEmacs 21.2.30 is released.
|
|
6519
|
|
6520 2000-02-20 Martin Buchholz <martin@xemacs.org>
|
|
6521
|
|
6522 Performance hacking.
|
|
6523 * *.c (syms_of_*):
|
|
6524 Add INIT_LRECORD_IMPLEMENTATION macros, paired with
|
|
6525 DEFINE_LRECORD_IMPLEMENTATION macros in the same file.
|
|
6526 * emacs.c (main_1):
|
|
6527 * lisp.h (DEFUN):
|
|
6528 * console.c (DEFVAR_CONSOLE_LOCAL_1):
|
|
6529 * buffer.c (DEFVAR_BUFFER_LOCAL_1):
|
|
6530 * symeval.h (DEFVAR_SYMVAL_FWD):
|
|
6531 * symbols.c (guts_of_unbound_marker):
|
|
6532 Make all c_readonly objects also lisp_readonly and marked for life.
|
|
6533 * lrecord.h (struct lrecord_implementation):
|
|
6534 Document flags better.
|
|
6535 * lrecord.h (DEFINE_LRECORD_SEQUENCE_IMPLEMENTATION_WITH_PROPS):
|
|
6536 * lrecord.h (DECLARE_LRECORD):
|
|
6537 * lrecord.h (XSETRECORD):
|
|
6538 * lrecord.h (RECORDP):
|
|
6539 * lrecord.h (RECORD_TYPEP):
|
|
6540 * lrecord.h (RECORD_MARKER): New.
|
|
6541 * lrecord.h (error_check_*):
|
|
6542 * lrecord.h (CONCHECK_NONRECORD):
|
|
6543 * lrecord.h (MAKE_LRECORD_IMPLEMENTATION):
|
|
6544 * lrecord.h (INIT_LRECORD_IMPLEMENTATION): New.
|
|
6545 * lrecord.h (set_lheader_implementation):
|
|
6546 * lrecord.h (enum lrecord_type): New.
|
|
6547 * symeval.h (SYMBOL_VALUE_MAGIC_P):
|
|
6548 * alloc.c (disksave_object_finalization_1):
|
|
6549 * alloc.c (mark_object):
|
|
6550 * alloc.c (lrecord_type_index):
|
|
6551 * alloc.c (tick_lcrecord_stats):
|
|
6552 * alloc.c (Fgarbage_collect):
|
|
6553 * alloc.c (init_alloc_once_early):
|
|
6554 * alloc.c (pdump_load):
|
|
6555 * alloc.c (GC_CHECK_LHEADER_INVARIANTS): New.
|
|
6556 * alloc.c (lrecord_type_index): Delete.
|
|
6557 Make lisp object type indexes be constant.
|
|
6558 Makes (byte-compile) 5% faster.
|
|
6559 Put all marker functions into their own array.
|
|
6560 Makes (garbage-collect) 5% faster.
|
|
6561 Optimize SYMBOL_VALUE_MAGIC_P.
|
|
6562 Makes (byte-compile) 2-3% faster.
|
|
6563 * config.h.in (gc_checking_assert): New.
|
|
6564 * alloc.c: Use gc_checking_assert().
|
|
6565 * .dbxrc: Make compatible with new object type implementation.
|
|
6566 * .gdbinit: Make compatible with new object type implementation.
|
|
6567 * alloc.c: Delete all symbols defined only for debugging, such as
|
|
6568 Lisp_Type_Vector and lrecord_charset.
|
|
6569
|
|
6570 2000-02-21 Andy Piper <andy@xemacs.org>
|
|
6571
|
|
6572 * gui-msw.c (Fmswindows_shell_execute): fix file location
|
|
6573 problems.
|
|
6574
|
|
6575 * buffer.c (Fkill_buffer): remove buffer from alist buffer
|
|
6576 unshowing so that set_window_buffer doesn't undo
|
|
6577 kill_buffer_hook's hard work.
|
|
6578
|
|
6579 * glyphs-widget.c (tab_control_query_geometry): don't count the
|
|
6580 first item when calculating geometry.
|
|
6581
|
|
6582 * glyphs.c (map_subwindow): remove redundant code.
|
|
6583 (update_frame_subwindows): be more circumspect about when to
|
|
6584 update subwindows.
|
|
6585
|
|
6586 * glyphs-x.c (x_update_widget): Properly fix sizing bug. Fix bug
|
|
6587 when items haven't changed. Update faces if faces have changed as
|
|
6588 well as just the widget face.
|
|
6589 (x_tab_control_update): Update faces if faces have changed as well
|
|
6590 as just the widget face.
|
|
6591
|
|
6592 2000-02-21 Jonathan Harris <jhar@tardis.ed.ac.uk>
|
|
6593
|
|
6594 * device-msw.c: (mswindows_delete_device): Remove redundant DDE
|
|
6595 registration.
|
|
6596 (build_syscolor_string): Use mswindows_color_to_string to try to
|
|
6597 get a named color.
|
|
6598 (mswindows_device_system_metrics): Reverse the foreground and
|
|
6599 background colors so that they match the documentation.
|
|
6600
|
|
6601 * objects-msw.c: (mswindows_X_color_map): tweak some values so
|
|
6602 they match the default Windows palette.
|
|
6603 (mswindows_color_to_string): New function.
|
|
6604
|
|
6605 2000-02-21 Jonathan Harris <jhar@tardis.ed.ac.uk>
|
|
6606
|
|
6607 * s/windowsnt.h: Only use __declspec(noreturn) with MSVC>=6.
|
|
6608
|
|
6609 2000-02-18 Olivier Galibert <galibert@pobox.com>
|
|
6610
|
|
6611 * m/*, s/*: Removed obsolete DATA_SEG_BITS, PURE_SEG_BITS,
|
|
6612 WORD_MACHINE, SIGN_EXTEND_CHAR and EXPLICIT_SIGN_EXTEND.
|
|
6613
|
|
6614 * symbols.c (init_symbols_once_early): Removed obsolete
|
|
6615 DATA_SEG_BITS related kludge.
|
|
6616 (defvar_magic): Ditto.
|
|
6617
|
|
6618 * malloc.c: Removed obsolete DATA_SEG_BITS
|
|
6619 * ralloc.c: Ditto.
|
|
6620 * mem-limits.h: Ditto.
|
|
6621
|
|
6622 * Makefile.in.in: Removed obsolete HAVE_SHM
|
|
6623 * emacs.c: Ditto.
|
|
6624
|
|
6625 2000-02-13 Jonathan Harris <jhar@tardis.ed.ac.uk>
|
|
6626
|
|
6627 * device-msw.c (mswindows_delete_device): Free DDE string
|
|
6628 handles.
|
|
6629
|
|
6630 2000-02-16 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
6631
|
|
6632 * keymap.c (get_keyelt):
|
|
6633 * unexnt.c (unexec):
|
|
6634 * vm-limit.c (memory_warnings):
|
|
6635 * ntheap.c (recreate_heap):
|
|
6636 * ntheap.h (UNINIT_PTR):
|
|
6637 * select-msw.c (Fmswindows_get_clipboard):
|
|
6638 (Fmswindows_set_clipboard):
|
|
6639 * objects-msw.h (MSWINDOWS_BAD_HFONT):
|
|
6640 * objects-msw.c:
|
|
6641 * menubar-msw.c (displayable_menu_item):
|
|
6642 * glyphs-msw.c:
|
|
6643 * glyphs-msw.h (IMAGE_INSTANCE_MSWINDOWS_MASK):
|
|
6644 * sysdep.c (sys_subshell):
|
|
6645 * process-nt.c (nt_create_process):
|
|
6646 * nt.c (normalize_filename):
|
|
6647 (dostounix_filename):
|
|
6648 (unixtodos_filename):
|
|
6649 * ntproc.c (win32_executable_type):
|
|
6650 * ntplay.c (play_sound_data_1):
|
|
6651 (play_sound_file):
|
|
6652 * editfns.c (get_home_directory):
|
|
6653 * event-msw.c (struct winsock_stream):
|
|
6654 (mswindows_dde_callback):
|
|
6655 * device-msw.c (msprinter_init_device):
|
|
6656 (msprinter_get_devmode_copy): Frobbed syntax frivolities.
|
|
6657
|
|
6658 * toolbar-msw.c (mswindows_free_frame_toolbars): Paramters to
|
|
6659 mswindows_clear_toolbar were swapped!
|
|
6660
|
|
6661 * objects-msw.c:(colormap_t):
|
|
6662 (fontmap_t):
|
|
6663 * emacs.c (struct standard_args): Fixed const jumble.
|
|
6664
|
|
6665 * glyphs-widget.c (update_widget): Fixed comparison notation.
|
|
6666
|
|
6667 * event-msw.c (mswindows_dde_callback): Removed extraneous ';'.
|
|
6668
|
|
6669 * s\windowsnt.h (DOESNT_RETURN): Defined to support the MSVC
|
|
6670 __declspec(noreturn) syntax.
|
|
6671
|
|
6672 2000-02-19 Martin Buchholz <martin@xemacs.org>
|
|
6673
|
|
6674 * eldap.c (Fldap_open):
|
|
6675 (Fldap_search_basic):
|
|
6676 (Fldap_add):
|
|
6677 (Fldap_modify):
|
|
6678 Use new coding system conversion macros.
|
|
6679
|
|
6680 2000-01-06 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp>
|
|
6681
|
|
6682 * console-tty.c (tty_init_console): Change MULE to FILE_CODING.
|
|
6683
|
|
6684 1999-11-27 Oscar Figueiredo <Oscar.Figueiredo@di.epfl.ch>
|
|
6685
|
|
6686 * eldap.h (Fldap_search) Renamed from Fldap_search_internal:
|
|
6687 (Fldap_add, Fldap_modify, Fldap_delete): New functions
|
|
6688
|
|
6689 * eldap.c (Qadd, Qreplace): New constant symbols
|
|
6690 (Fldap_open): Use the LDAP_OPT_RESTART option to avoid
|
|
6691 interruptions by XEmacs signals
|
|
6692 Remove unnecessary calls to slow_down_interrupts and
|
|
6693 speed_up_interrupts
|
|
6694 (Fldap_search_basic): Renamed from Fldap_search_internal
|
|
6695 Added new optional parameter VERBOSE that triggers the
|
|
6696 display of progress messages
|
|
6697 Remove unnecessary calls to slow_down_interrupts and
|
|
6698 speed_up_interrupts
|
|
6699 LDAP result code analysis rewritten
|
|
6700 (Fldap_add, Fldap_modify, Fldap_delete): New functions
|
|
6701 (syms_of_eldap): Define the new symbols and functions
|
|
6702
|
|
6703
|
|
6704 2000-02-17 Martin Buchholz <martin@xemacs.org>
|
|
6705
|
|
6706 * realpath.c: Determine PATH_MAX maximally portably.
|
|
6707
|
|
6708 * insdel.c (bytecount_to_charcount): Optimize.
|
|
6709 The function used to be optimized for entirely ASCII sequences.
|
|
6710 Now it is optimized for successive characters from the same
|
|
6711 charset. This also wins big for _mostly_ ASCII sequences.
|
|
6712
|
|
6713 * fileio.c (Ffile_truename): convert return from realpath() using
|
|
6714 Qfile_name, not Qbinary. Fixes obvious bug with non-ASCII symlinks.
|
|
6715 - Rewrite GCPROing slightly.
|
|
6716
|
|
6717 * sysdep.c (sys_open): Do filename conversion, like all other
|
|
6718 sys_* functions. Fixes bug:
|
|
6719 (let ((file-name-coding-system 'iso-8859-2))
|
|
6720 (write-region x y latin2-name))
|
|
6721 ==> writes filename using internal encoding.
|
|
6722
|
|
6723 2000-02-18 Martin Buchholz <martin@xemacs.org>
|
|
6724
|
|
6725 * buffer.c (DEFVAR_BUFFER_LOCAL_1): Turn on c_readonly. Always const.
|
|
6726 * console.c (DEFVAR_CONSOLE_LOCAL_1): Turn on c_readonly. Always const.
|
|
6727 * symeval.h (DEFVAR_SYMVAL_FWD): Turn on c_readonly. Always const.
|
|
6728 * eval.c (lrecord_subr): Remove this_one_is_unmarkable.
|
|
6729 * symbols.c (lrecord_symbol_value_forward): Remove this_one_is_unmarkable.
|
|
6730 * symbols.c (guts_of_unbound_marker): Turn on c_readonly.
|
|
6731 * lrecord.h (UNMARKABLE_LRECORD_HEADER_P): Delete.
|
|
6732 (CONST_IF_NOT_DEBUG): Delete.
|
|
6733 * alloc.c (this_one_is_unmarkable): Delete.
|
|
6734 (mark_object): Don't check for this_one_is_unmarkable. Use the
|
|
6735 c_readonly flag instead.
|
|
6736 * lisp.h (DEFUN): Define a Lisp_Subr as c_readonly.
|
|
6737
|
|
6738 2000-02-18 Jonathan Harris <jhar@tardis.ed.ac.uk>
|
|
6739
|
|
6740 * event-msw.c (mswindows_drain_windows_queue):
|
|
6741 (emacs_mswindows_handle_magic_event): Remove attempt to optimise
|
|
6742 away redundant repaint events.
|
|
6743
|
|
6744 2000-02-17 Andy Piper <andy@xemacs.org>
|
|
6745
|
|
6746 * redisplay.h: declare mark_redisplay_structs.
|
|
6747
|
|
6748 * redisplay.c (redisplay_window):
|
|
6749 (redisplay_frame): don't check subwindows_state_changed.
|
|
6750 (mark_redisplay): mark gutters here.
|
|
6751
|
|
6752 * glyphs.c: (instantiate_image_instantiator): always layout if we
|
|
6753 haven't done so already.
|
|
6754 (allocate_image_instance): don't mark as dirty.
|
|
6755 (update_subwindow): bind inhibit_quit.
|
|
6756
|
|
6757 * gutter.c (mark_gutters): new function.
|
|
6758
|
|
6759 * glyphs-x.c (x_update_widget): Always resize to get round a
|
|
6760 widget bug.
|
|
6761
|
|
6762 * glyphs-msw.c (mswindows_tab_control_update): remove `;' that was
|
|
6763 breaking absolutely everything.
|
|
6764
|
|
6765 * gutter.h: declare mark_gutters.
|
|
6766
|
|
6767 2000-02-16 Martin Buchholz <martin@xemacs.org>
|
|
6768
|
|
6769 * XEmacs 21.2.29 is released.
|
|
6770
|
|
6771 2000-02-15 Olivier Galibert <galibert@pobox.com>
|
|
6772
|
|
6773 * fns.c (size_bit_vector): Fix computation of the size.
|
|
6774
|
|
6775 2000-02-15 Martin Buchholz <martin@xemacs.org>
|
|
6776
|
|
6777 * *.[ch]: Change CONST to const globally.
|
|
6778 find -name '*.[ch]' | \
|
|
6779 xargs global-replace \
|
|
6780 's/(^|(?<=[^A-Za-z0-9_]))CONST((?=[^A-Za-z0-9_])|$)/const/g'
|
|
6781 - Remove vestigial references to CONST_IS_LOSING
|
|
6782
|
|
6783 2000-02-13 Jonathan Harris <jhar@tardis.ed.ac.uk>
|
|
6784
|
|
6785 * event-msw.c (mswindows_drain_windows_queue): Remove hack to
|
|
6786 bailout early on quit. Enqueue WM_PAINT events as XEmacs magic
|
|
6787 events instead of dispatching them directly.
|
|
6788 (mswindows_handle_paint): New function to do repainting.
|
|
6789 (mswindows_wnd_proc):
|
|
6790 (emacs_mswindows_handle_magic_event): Call above function.
|
|
6791
|
|
6792 2000-02-13 Jonathan Harris <jhar@tardis.ed.ac.uk>
|
|
6793
|
|
6794 * objects-msw.c (mswindows_create_font_variant): Return the new
|
|
6795 font handle.
|
|
6796 (initialize_font_instance): Get font metrics from the underlined
|
|
6797 variant of the font to cope with the case where the underlined
|
|
6798 font has a bigger descent.
|
|
6799
|
|
6800 2000-02-08 Daiki Ueno <ueno@ueda.info.waseda.ac.jp>
|
|
6801
|
|
6802 * gui.c (gui_item_accelerator): Return the first underlined
|
|
6803 character in item name.
|
|
6804
|
|
6805 2000-02-11 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
6806
|
|
6807 * lisp.h: Added Qprinter.
|
|
6808
|
|
6809 * general.c (syms_of_general): Initialized it.
|
|
6810
|
|
6811 * redisplay-msw.c (get_frame_dc): Conditionally start a new page.
|
|
6812 (get_frame_dc):
|
|
6813 (get_frame_compdc): Made inline.
|
|
6814
|
|
6815 * console.h (struct console_methods): Added eject_page method.
|
|
6816
|
|
6817 * frame.h: Added FRAME_DISPLAY_P and friends.
|
|
6818 Aligned backslahes in many macros in more readable fashion.
|
|
6819 Added page_number to struct frame, and an accessor macro
|
|
6820 for it.
|
|
6821
|
|
6822 * defice.h: Added DEVICE_DISPLAY_P and friends.
|
|
6823
|
|
6824 * device.c (Fdevice_printer_p): Used these.
|
|
6825
|
|
6826 * frame.c (allocate_frame_core): Initialize page number.
|
|
6827 (Fprint_job_page_number):
|
|
6828 (Fprint_job_eject_page): Implemented.
|
|
6829
|
|
6830 * frame-msw.c (msprinter_eject_page): Added method.
|
|
6831 (msprinter_start_page): Added.
|
|
6832
|
|
6833 * window.c (Fwindow_truncated_p): Fixed docstring.
|
|
6834 (Fwindow_last_line_visible_height): Implemented.
|
|
6835
|
|
6836 2000-02-09 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
6837
|
|
6838 * frame.c (change_frame_size_1): Undo 2000-02-03 change.
|
|
6839
|
|
6840 1999-12-20 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp>
|
|
6841
|
|
6842 * syntax.c (scan_words): Always advance at least one character.
|
|
6843
|
|
6844 2000-02-13 Andy Piper <andy@xemacs.org>
|
|
6845
|
|
6846 * redisplay.c (add_glyph_rune): call get_glyph_cachel_index here
|
|
6847 to make sure the glyph is in the cachels.
|
|
6848
|
|
6849 * glyphs.h (struct Lisp_Image_Instance): make layout_changed a
|
|
6850 global image instance flag.
|
|
6851 (IMAGE_INSTANCE_NEEDS_LAYOUT): new macro.
|
|
6852 (XIMAGE_INSTANCE_NEEDS_LAYOUT): ditto.
|
|
6853
|
|
6854 * glyphs.c (allocate_image_instance): set dirty bits correctly.
|
|
6855 (Fset_image_instance_property): mark layout as changed.
|
|
6856 (invalidate_glyph_geometry_maybe): mark layout as changed.
|
|
6857 (glyph_width): use new NEEDS_LAYOUT macro.
|
|
6858 (glyph_ascent): ditto.
|
|
6859 (glyph_descent): ditto.
|
|
6860 (glyph_height): ditto.
|
|
6861 (image_instance_layout): mark layout as clean after laying out.
|
|
6862 (update_subwindow): don't mark layout as clean here.
|
|
6863
|
|
6864 * glyphs-x.h (IMAGE_INSTANCE_X_WIDGET_ID): undo C++ changes, they
|
|
6865 should no longer be needed.
|
|
6866
|
|
6867 * glyphs-x.c (x_update_widget): sanitize asserts.
|
|
6868 (x_finalize_image_instance): sanitize assignment to widgets.
|
|
6869
|
|
6870 * glyphs-widget.c (widget_instantiate): don't need to clear the
|
|
6871 layout flag here.
|
|
6872
|
|
6873 2000-02-13 Martin Buchholz <martin@xemacs.org>
|
|
6874
|
|
6875 * sysdep.c (getcwd): Use standard prototype.
|
|
6876 * sysdep.h (getcwd): Use standard prototype.
|
|
6877
|
|
6878 * fns.c (Fsubseq): Change parameters to more natural ANSI Lisp
|
|
6879 (sequence, start, end).
|
|
6880 Remove redundant type checking.
|
|
6881 (Fmapconcat): Remove useless GCPRO, a wrong-headed attempt (in
|
|
6882 view of `caller-protects') to avoid a crash where the real fix was
|
|
6883 found elsewhere.
|
|
6884
|
|
6885 2000-02-12 Martin Buchholz <martin@xemacs.org>
|
|
6886
|
|
6887 * glyphs-x.c (x_finalize_image_instance): Compile error fixes.
|
|
6888
|
|
6889 * s/sol2.h: Remove feature macro initialization.
|
|
6890
|
|
6891 * alloc.c (alloc_lcrecord): Add more type checking assertions.
|
|
6892 (vector_hash): New. Code from internal_hash.
|
|
6893 * lrecord.h:
|
|
6894 Fix up allocation subsystem comments.
|
|
6895
|
|
6896 * config.h.in: Add __EXTENSIONS__ for Solaris.
|
|
6897
|
|
6898 * systime.h (EMACS_GETTIMEOFDAY): New.
|
|
6899 (EMACS_GET_TIME): Use EMACS_GETTIMEOFDAY.
|
|
6900 Remove Solaris-specific code.
|
|
6901 Use void* for the (ignored) second arg for gettimeofday().
|
|
6902
|
|
6903 * elhash.c (hash_table_hash): Implement it, finally.
|
|
6904 * elhash.c: Use hashcode_t.
|
|
6905
|
|
6906 * linuxplay.c (sighandler): Fix prototypes to use SIGTYPE.
|
|
6907 * sunplay.c (sighandler): Fix prototype to use SIGTYPE.
|
|
6908
|
|
6909 * lisp.h (STRETCHY_STRUCT_SIZEOF): Delete.
|
|
6910 * fns.c (size_bit_vector):
|
|
6911 * alloc.c (size_vector):
|
|
6912 (make_vector_internal):
|
|
6913 (make_bit_vector_internal):
|
|
6914 (sweep_bit_vectors_1):
|
|
6915 Replace calls to STRETCHY_STRUCT_SIZEOF with offsetof expression.
|
|
6916
|
|
6917 2000-02-10 Martin Buchholz <martin@xemacs.org>
|
|
6918
|
|
6919 * s/aix4.h: #define MAP_FAILED if sys/mman.h didn't.
|
|
6920 Include strings.h to avoid warnings for bzero and strcasecmp.
|
|
6921
|
|
6922 2000-02-10 Olivier Galibert <galibert@pobox.com>
|
|
6923
|
|
6924 * alloc.c: Move STRETCHY_STRUCT_SIZEOF from here...
|
|
6925 * lisp.h (STRETCHY_STRUCT_SIZEOF): ...to here
|
|
6926
|
|
6927 * fns.c (size_bit_vector): New. Declare bit vectors as a
|
|
6928 sequence.
|
|
6929
|
|
6930 2000-02-10 Olivier Galibert <galibert@pobox.com>
|
|
6931
|
|
6932 * symeval.h (struct symbol_value_magic): Remove "next" kludge and
|
|
6933 use a value field instead.
|
|
6934 (symbol_value_forward_forward): Use value field.
|
|
6935 (DEFVAR_SYMVAL_FWD): Use value field.
|
|
6936 (DEFVAR_SYMVAL_FWD_INT): Added. Dumps the int with dumpopaque.
|
|
6937 (DEFVAR_INT): Use DEFVAR_SYMVAL_FWD_INT.
|
|
6938 (DEFVAR_CONST_INT): Ditto.
|
|
6939 (DEFVAR_BOOL): Ditto.
|
|
6940 (DEFVAR_CONST_BOOL): Ditto.
|
|
6941 (DEFVAR_INT_MAGIC): Ditto.
|
|
6942 (DEFVAR_BOOL_MAGIC): Ditto.
|
|
6943
|
|
6944 * symbols.c (guts_of_unbound_marker): Use value field.
|
|
6945 * console.c (DEFVAR_CONSOLE_LOCAL_1): Ditto.
|
|
6946 * buffer.c (DEFVAR_BUFFER_LOCAL_1): Ditto.
|
|
6947
|
|
6948 * lisp.h: Declare dumpopaque and noninteractive1.
|
|
6949
|
|
6950 * alloc.c (dumpopaque): Added.
|
|
6951 (pdump_dump_opaquevec): Added.
|
|
6952 (pdump): Call pdump_dump_opaquevec to dump opaque data.
|
|
6953 (pdump_load): Reload opaque data. Sync noninteractive1 with
|
|
6954 noninteractive.
|
|
6955
|
|
6956 2000-02-10 Andy Piper <andy@xemacs.org>
|
|
6957
|
|
6958 * glyphs.c (image_instance_layout): if the size changes, mark it
|
|
6959 as such.
|
|
6960
|
|
6961 * redisplay-output.c (redisplay_output_layout): Update the
|
|
6962 subwindow here.
|
|
6963 (redisplay_output_subwindow): ditto.
|
|
6964
|
|
6965 * glyphs.c (update_subwindow): make sure we reset flags for
|
|
6966 layouts as well as everything else.
|
|
6967
|
|
6968 * glyphs-widget.c (layout_layout): don't need to set the instances
|
|
6969 dimensions here.
|
|
6970
|
|
6971 2000-02-09 Martin Buchholz <martin@xemacs.org>
|
|
6972
|
|
6973 * device-x.c (x_init_device): Wrap calls to dll_* in HAVE_SHLIB,
|
|
6974 not HAVE_DLOPEN, which is a lower-level thing.
|
|
6975
|
|
6976 * .cvsignore: Ignore gmon.out
|
|
6977
|
|
6978 2000-02-09 Hamish Macdonald <hamishm@lucent.com>
|
|
6979
|
|
6980 * .cvsignore: Ignore portable dumper xemacs.dmp file
|
|
6981
|
|
6982 2000-02-09 Andy Piper <andy@xemacs.org>
|
|
6983
|
|
6984 * redisplay-output.c (redisplay_output_layout): be more clever
|
|
6985 about when we output based on the changed flags.
|
|
6986
|
|
6987 * glyphs.h (struct image_instantiator_methods): add update_method.
|
|
6988 (struct Lisp_Image_Instance): add changed flags. Declare new
|
|
6989 macros for manipulating them.
|
|
6990
|
|
6991 * glyphs.c (allocate_image_instance): renamed glyph -> parent.
|
|
6992 (image_instance_parent_glyph): find an image_instance's parent
|
|
6993 glyph or image_instance.
|
|
6994 (image_instance_layout): mark the size as changed.
|
|
6995 (set_image_instance_dirty_p): new function. mark an image
|
|
6996 instance, plus all of its parents, as dirty.
|
|
6997 (Fset_image_instance_property): use it.
|
|
6998 (Fglyph_animated_timeout_handler): use it.
|
|
6999 (update_subwindow): call update_widget and device methods for
|
|
7000 update_subwindow. Mark all changed flags as clean.
|
|
7001 (Fresize_subwindow): mark size as changed.
|
|
7002
|
|
7003 * glyphs-x.c (x_finalize_image_instance): try and detect gc
|
|
7004 failures.
|
|
7005 (x_update_subwindow): only resize subwindows here.
|
|
7006 (x_update_widget): new function. Update all changed properties of
|
|
7007 a widget.
|
|
7008 (x_resize_subwindow): deleted.
|
|
7009 (x_widget_set_property): deleted.
|
|
7010 (x_progress_gauge_set_property): deleted.
|
|
7011 (x_progress_gauge_update): new function. Implement recorded
|
|
7012 changes.
|
|
7013 (x_tab_control_update): ditto.
|
|
7014 (x_tab_control_set_property): deleted.
|
|
7015 (console_type_create_glyphs_x): declare new functions.
|
|
7016 (image_instantiator_format_create_glyphs_x): ditto.
|
|
7017
|
|
7018 * glyphs-widget.c (widget_set_property): mark text changed.
|
|
7019 (update_widget): new function. Update properties of a widget.
|
|
7020 (widget_instantiate): for layouts make sure we set their
|
|
7021 children's parent correctly.
|
|
7022 (tab_control_set_property): new function. Record changes that will
|
|
7023 take place under redisplay's control.
|
|
7024 (progress_gauge_set_property): ditto.
|
|
7025 (image_instantiator_progress_guage): declare new functions.
|
|
7026 (image_instantiator_tab_control): ditto.
|
|
7027
|
|
7028 * glyphs-msw.c (mswindows_update_subwindow): just do resizing here
|
|
7029 now.
|
|
7030 (mswindows_update_widget): new function. Update all properties on
|
|
7031 a widget that have changed.
|
|
7032 (mswindows_button_update): new function. Update a button's set
|
|
7033 state.
|
|
7034 (mswindows_tab_control_update): new function. Update the items in
|
|
7035 a tab.
|
|
7036 (mswindows_tab_control_set_property): deleted.
|
|
7037 (mswindows_progress_gauge_update): new function. Update the
|
|
7038 progress gauge's progress.
|
|
7039 (mswindows_widget_set_property): deleted. This is all done
|
|
7040 asynchronously now.
|
|
7041 (mswindows_progress_gauge_set_property): ditto.
|
|
7042 (console_type_create_glyphs_mswindows): declare new methods.
|
|
7043 (image_instantiator_format_create_glyphs_mswindows): ditto.
|
|
7044
|
|
7045 * frame-msw.c (msprinter_init_frame_1): Remove unused variables.
|
|
7046 (msprinter_set_frame_properties): ditto.
|
|
7047
|
|
7048 * console.h (struct console_methods): Add update_widget_method.
|
|
7049
|
|
7050 2000-02-09 Andy Piper <andy@xemacs.org>
|
|
7051
|
|
7052 * gui-msw.c (Fmswindows_shell_execute): Make
|
|
7053 mswindows-shell-execute industrial strength.
|
|
7054
|
|
7055 2000-02-08 Martin Buchholz <martin@xemacs.org>
|
|
7056
|
|
7057 * lrecord.h: Make macro argument `props' match member function `plist'.
|
|
7058 * fns.c (Fget):
|
|
7059 * fns.c (Fput):
|
|
7060 * fns.c (Fremprop):
|
|
7061 * fns.c (Fobject_plist):
|
|
7062 * alloc.c:
|
|
7063 * symbols.c:
|
|
7064 Object property list frobbing cleanup.
|
|
7065 - Allow any lisp object (compared with `eq'), not just symbols, as
|
|
7066 keys in object plists.
|
|
7067 - Move symbol plist frobbing into symbols.c, where it belongs.
|
|
7068 - Move string plist frobbing into alloc.c, where it belongs.
|
|
7069 - Everything's an lrecord now, so no need to test for symbolp, etc.
|
|
7070 - Fix up doc strings to refer to PROPERTY, not PROPNAME.
|
|
7071
|
|
7072 * extents.c: Reorder code to remove declarations.
|
|
7073
|
|
7074 * frame.h (store_in_alist): Remove useless declaration.
|
|
7075
|
|
7076 2000-02-07 Martin Buchholz <martin@xemacs.org>
|
|
7077
|
|
7078 * event-Xt.c (x_has_keysym): Use XConvertCase only if available.
|
|
7079 * config.h.in: Add HAVE_XCONVERTCASE.
|
|
7080
|
|
7081 2000-02-07 Andy Piper <andy@xemacs.org>
|
|
7082
|
|
7083 * glyphs.c (image_instance_layout): undo 2000-01-29 change since
|
|
7084 it breaks many things.
|
|
7085
|
|
7086 2000-02-07 Jan Vroonhof <vroonhof@math.ethz.ch>
|
|
7087
|
|
7088 * src/syntax.h (SYNTAX_START_P): Check whether the two chars
|
|
7089 actually can start a common comment type.
|
|
7090 * src/syntax.h (SYNTAX_END_P): ditto for end.
|
|
7091
|
440
|
7092 2000-02-07 Martin Buchholz <martin@xemacs.org>
|
|
7093
|
|
7094 * XEmacs 21.2.28 is released.
|
|
7095
|
|
7096 2000-02-06 Martin Buchholz <martin@xemacs.org>
|
|
7097
|
|
7098 * event-Xt.c (x_keysym_to_character): New.
|
|
7099 (maybe_define_x_key_as_self_inserting_character): New.
|
|
7100 (x_has_keysym): New.
|
|
7101 Auto-define all keys on the keyboard as self-insert-key.
|
|
7102
|
|
7103 2000-02-02 Martin Buchholz <martin@xemacs.org>
|
|
7104
|
|
7105 * menubar.c (vars_of_menubar): A small code simplification.
|
|
7106
|
|
7107 * minibuf.c (echo_area_append): Workaround egcs-20000131 c++ compiler bug
|
|
7108
|
442
|
7109 * ExternalShell.c:
|
|
7110 * ExternalClient.c:
|
|
7111 * EmacsShell-sub.c:
|
|
7112 * EmacsManager.c:
|
|
7113 * EmacsFrame.c:
|
440
|
7114 Use consistent style for specifying X resources.
|
|
7115
|
|
7116 * symbols.c (Fset): Further implement SYMVAL_LISP_MAGIC.
|
|
7117 This makes (dontusethis-set-symbol-value-handler) actually usable.
|
|
7118
|
|
7119 * lrecord.h (lrecord_decription_type):
|
442
|
7120 * alloc.c (pdump_register_sub):
|
|
7121 (pdump_dump_data):
|
|
7122 (pdump_reloc_one):
|
440
|
7123 Add XD_LISP_OBJECT_ARRAY to describe multiple Lisp_Objects.
|
|
7124 Comply with XEmacs coding style.
|
|
7125 All lrecord descriptions updated to use XD_LISP_OBJECT with 2
|
|
7126 args, and XD_LISP_OBJECT_ARRAY with 3 args.
|
|
7127
|
442
|
7128 * keymap.c (Faccessible_keymaps):
|
440
|
7129 Make (accessible-keymaps map "\C-h") do the Right Thing.
|
|
7130 Make (accessible-keymaps map []) do the Right Thing.
|
|
7131 Make (accessible-keymaps map "") do the Right Thing.
|
|
7132 (check_keymap_definition_loop): New function.
|
|
7133 (keymap_store_internal): Keep luser from shooting self in foot,
|
|
7134 via (define-key ctl-x-4-map "p" global-map).
|
|
7135 Remove fullness slot from struct Lisp_Keymap, since hash tables
|
|
7136 are now reliable.
|
|
7137 (print_keymap): Remove 'Yuck' factor by simply printing "size %d".
|
|
7138
|
|
7139 2000-01-30 Martin Buchholz <martin@xemacs.org>
|
|
7140
|
|
7141 * redisplay.c (init_redisplay): Fix small memory leak.
|
442
|
7142 * elhash.h:
|
|
7143 * elhash.c (pdump_reorganize_hash_table):
|
440
|
7144 Rename from reorganize_hash_table. Change prototype.
|
|
7145 Reuse the original memory for hentries. Save 100k.
|
|
7146 * alloc.c (PDUMP_READ): new macro.
|
|
7147 * alloc.c (pdump_load): Replace LISP_TO_VOID with higher-level macros.
|
|
7148 * alloc.c: No need to #ifndef before #undef.
|
|
7149
|
|
7150 * print.c: Allow debug_print() to print readably by modifying
|
|
7151 debug_print_readably. Use consistent variable names.
|
|
7152
|
|
7153 * .dbxrc: Try to get things to work even if stopped in a function
|
|
7154 without source available by explicitly specifying source files.
|
|
7155 2000-02-03 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
7156
|
|
7157 * unexnt.c (_start): Removed bogus code which caused loading heap
|
|
7158 from differrent executable file.
|
|
7159 Removed bogus assignment to _fmode, which caused inconsistencies.
|
|
7160
|
|
7161 2000-02-03 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
7162
|
|
7163 * s\windowsnt.h: Removed lots of #if 0 blocks of Emacs heritage.
|
|
7164 Have spawnve encapsulation regard DONT_ENCAPSULATE.
|
|
7165 Do not preliminary `#define signal sigset'.
|
|
7166
|
|
7167 * systime.h: Do not prototype environ on windows nt and cygwin,
|
|
7168 this conflicts with system header.
|
|
7169
|
|
7170 * syssignal.h: Use correct define for WINDOWSNT
|
|
7171
|
|
7172 * sysdep.h: Do not prototype environ on windows nt, this conflicts
|
|
7173 with system header.
|
|
7174
|
|
7175 * sysdep.c (near start of file): Fixed commentary and rearranged
|
|
7176 ifdefs in readable order.
|
|
7177 (NEED_STARTS): Do not force NEED_STARTS when PDUMPing.
|
|
7178 (start_of_text):
|
442
|
7179 (end_of_text):
|
440
|
7180 (end_of_data): Do not compile in if using PDUMP.
|
|
7181
|
442
|
7182 * symsinit.h: Prototyped vars_of_nt().
|
440
|
7183
|
|
7184 * ntproc.c (windows9x_p): Added, instead of os_subtype.
|
|
7185 (find_child_console): Use it.
|
|
7186 (sys_kill): Use it.
|
|
7187
|
|
7188 * ntheap.h: Do not extern os_subtype.
|
|
7189
|
|
7190 * ntheap.c (cache_system_info): Do not cache unneeded:
|
|
7191 nt_major_version, nt_minor_version and os_subtype.
|
|
7192 (recreate_heap): Do not compile in when PDUMPing.
|
|
7193
|
|
7194 * nt.c (geteuid and friends): Use the new varibale
|
|
7195 nt_fake_unix_uid, instead of hashing fake uid out of NT RID.
|
|
7196 (init_user_info): Removed the above mentioned hackery.
|
|
7197 (fstat, stat): Do not compile in if using MSVC 5.0 and above -
|
|
7198 stat has been fixed in the C runtime.
|
|
7199 (vars_of_nt): Added, defined the nt_fake_unix_uid variable there.
|
442
|
7200
|
440
|
7201 * file-coding.c (struct file_coding_dump): Do not define
|
|
7202 ucs_to_mule_table in the struct if not MULE.
|
|
7203 (struct struct lrecord_description fcd_description_1): Do not dump
|
|
7204 the above.
|
|
7205
|
|
7206 * emacs.c (main_1): Call vars_of_nt().
|
|
7207 (right before Fdump_emacs_data): Don't need lastfile if using both
|
|
7208 portabe dumper and system malloc.
|
|
7209
|
|
7210 * alloc.c (Fmemory_limit): Conditionalized out.
|
|
7211 (pdump): Use OPEN_BINARY for the portable dump file.
|
|
7212 (pdump_load): Ditto.
|
|
7213
|
|
7214 2000-02-02 Mike Alexander <mta@arbortext.com>
|
|
7215
|
|
7216 * nt.c (convert_time): Set tm_isdst before calling mktime and
|
|
7217 avoid calling it at all if the compiler supports 64 bit integers.
|
|
7218 Also initialize utc_base_ft before using it.
|
|
7219
|
|
7220 2000-02-03 Daiki Ueno <ueno@ueda.info.waseda.ac.jp>
|
|
7221
|
|
7222 * frame.c (change_frame_size_1): Take f->internal_border_width
|
|
7223 into consideration when calculating the width of the frame.
|
|
7224
|
|
7225 2000-02-01 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
7226
|
|
7227 * window.c (frame_min_height):
|
|
7228 (frame_size_valid_p):
|
|
7229 (frame_pixsize_valid_p): Added.
|
|
7230 (check_frame_size): Generalized.
|
|
7231
|
|
7232 * window.h: Prototyped the above.
|
|
7233
|
|
7234 * lisp.h:
|
|
7235 * general.c: Added Qbottom_margin, Qduplex, Qlandscape,
|
|
7236 Qleft_margin, Qorientation, Qportrait, Qright_margin, Qtop_margin.
|
|
7237 Deleted Vwin32_* and Vbinary_process_* unused variables.
|
|
7238
|
|
7239 * device-msw.c (msprinter_init_device): Do not get printer font
|
|
7240 list; Added DEVMODE functions.
|
|
7241
|
|
7242 * frame-msw.c: Added lots of printer code.
|
|
7243
|
|
7244 * faces.c: Moved 'left-margin and 'right-margin defsymbols to
|
|
7245 general.c.
|
|
7246
|
442
|
7247 * console-msw.h: Added more msprinter device private slots.
|
440
|
7248
|
|
7249 2000-02-01 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
7250
|
|
7251 * event-msw.c (key_needs_default_processing_p): Added.
|
|
7252 (mswindows_wnd_proc, WM_KEYUP, KEYDOWN): Call it.
|
|
7253
|
|
7254 2000-01-29 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
7255
|
|
7256 * glyphs.c (image_instance_layout): Mark image instance as clean
|
|
7257 after layout.
|
|
7258 (glyph_dirty_p): Removed redundant function.
|
|
7259 (invalidate_glyph_geometry_maybe): Added.
|
|
7260 (update_glyph_cachel_data): Call it.
|
|
7261
|
|
7262 * glyphs.h: Prototyped it.
|
|
7263
|
|
7264 * redisplay.c (add_glyph_rune): Call it.
|
444
|
7265 (redisplay_window): Reset glyphs cachels when frame faces have
|
440
|
7266 changed, thus forcing recomputation of built-in border glyphs.
|
|
7267
|
|
7268 2000-01-30 Martin Buchholz <martin@xemacs.org>
|
|
7269
|
|
7270 * Makefile.in.in: Make portable dumper and purify play well together.
|
|
7271 Add imperfect, but better than nothing, support for pdump.
|
|
7272 Remove xemacs.dmp when temacs is re-generated.
|
|
7273 Don't ignore errors when dumping xemacs.
|
|
7274
|
|
7275 * symbols.c (maybe_call_magic_handler): Remove one magic number.
|
|
7276
|
|
7277 2000-01-28 Andy Piper <andy@xemacs.org>
|
|
7278
|
|
7279 * frame.c (allocate_frame_core): Use new Fset_window_buffer signature.
|
|
7280 (setup_normal_frame): ditto.
|
|
7281 (setup_frame_without_minibuffer): ditto.
|
|
7282 (setup_minibuffer_frame): ditto.
|
|
7283 (delete_frame_internal): ditto.
|
|
7284 (Fmake_frame_invisible): ditto.
|
|
7285 (Ficonify_frame): ditto.
|
|
7286
|
|
7287 * window.h: change Fset_window_buffer signature.
|
|
7288
|
|
7289 * window.c (Fsplit_window): Use new Fset_window_buffer signature.
|
|
7290 (Fset_window_buffer): allow recording of buffer if the window is
|
|
7291 the selected window.
|
|
7292 (window_loop): Use new Fset_window signature.
|
|
7293
|
|
7294 2000-01-23 Daniel Pittman <daniel@danann.net>
|
|
7295
|
|
7296 * config.h.in: Added template for `HAVE_ATHENA_3D'
|
|
7297
|
|
7298 2000-01-29 Andy Piper <andy@xemacs.org>
|
|
7299
|
|
7300 * glyphs-x.c (x_resize_subwindow): Try and catch bogus resizes.
|
|
7301
|
|
7302 * gutter.c (output_gutter): Don't output if the window isn't live.
|
|
7303
|
|
7304 2000-01-28 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
7305
|
|
7306 * glyphs-msw.c (mswindows_unmap_subwindow): Fix of corrupted patch
|
|
7307 of 01/12/00: Moved SetFocus back here where it belongs.
|
|
7308
|
|
7309 2000-01-23 Andy Piper <andy@xemacs.org>
|
|
7310
|
|
7311 * s/cygwin32.h: declare printer things.
|
|
7312
|
|
7313 2000-01-26 Andy Piper <andy@xemacs.org>
|
|
7314
|
|
7315 * select.c (Fown_selection_internal): GCPRO bug fix from Mike
|
|
7316 Alexander.
|
|
7317
|
|
7318 2000-01-24 Andy Piper <andy@xemacs.org>
|
|
7319
|
|
7320 * glyphs-msw.c (mswindows_locate_pixmap_file): Expand filename.
|
|
7321 (mswindows_button_instantiate): Make sure glyph is a pixmap.
|
|
7322
|
|
7323 * glyphs-widget.c (widget_instantiate): Avoid shadows.
|
|
7324
|
|
7325 * frame-msw.c (msprinter_init_frame_3): Nuke warning.
|
|
7326
|
|
7327 * glyphs-msw.c: (mswindows_string_to_color): remove declaration.
|
|
7328
|
|
7329 * redisplay-msw.c (mswindows_output_cursor): Avoid shadows.
|
|
7330 (mswindows_output_display_block): Avoid local shadows.
|
|
7331
|
|
7332 * event-msw.c (mswindows_enqueue_magic_event): Avoid shadows.
|
|
7333 (mswindows_enqueue_mouse_button_event): ditto.
|
|
7334 (mswindows_handle_gui_wm_command): remove declaration.
|
|
7335
|
|
7336 * console-msw.c (mswindows_canonicalize_console_connection): Avoid
|
|
7337 warnings.
|
|
7338
|
|
7339 * console-msw.h: Avoid shadows.
|
|
7340 (mswindows_get_toolbar_button_text):
|
|
7341 (emacs_mswindows_create_stream_pair):
|
|
7342 (emacs_mswindows_delete_stream_pair):
|
|
7343 (mswindows_handle_toolbar_wm_command): declare.
|
|
7344
|
|
7345 * device-msw.c (build_syscolor_string): Avoid shadows.
|
|
7346
|
|
7347 2000-01-23 Andy Piper <andy@xemacs.org>
|
|
7348
|
|
7349 * glyphs-widget.c (widget_instantiate): reverse the items for
|
|
7350 layouts so that children are in the expected order.
|
|
7351
|
|
7352 2000-01-28 Martin Buchholz <martin@xemacs.org>
|
|
7353
|
|
7354 * ralloc.c: safe_bcopy ==> memmove
|
|
7355 * gmalloc.c: Remove MEMMOVE_MISSING conditional code.
|
|
7356 * s/msdos.h: Remove BCOPY macros.
|
|
7357 * insdel.c (gap_right): Remove BCOPY conditional code.
|
|
7358 * insdel.c (gap_left): Remove BCOPY conditional code.
|
|
7359 XEmacs demands a working ANSI C compiler - hence memmove.
|
|
7360
|
|
7361 * regex.c (regex_compile): Remove accidental use of trigraphs.
|
|
7362
|
|
7363 2000-01-27 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
7364
|
|
7365 * event-msw.c (mswindows_enqueue_misc_user_event): Initialize
|
|
7366 event timestamp.
|
|
7367
|
|
7368 2000-01-26 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
7369
|
|
7370 * event-msw.c (mswindows_drain_windows_queue): Added the
|
|
7371 parameter.
|
|
7372 (mswindows_need_event): Commented the call to
|
|
7373 mswindows_drain_windows_queue().
|
|
7374 (emacs_mswindows_quit_p): Lookup the windows for keyboard messages
|
|
7375 only.
|
|
7376
|
|
7377 * console-msw.h: Moved a few function prototypes here from
|
442
|
7378 event-msw.c.
|
440
|
7379
|
|
7380 * gui-msw.c (mswindows_handle_gui_wm_command): Changed the ID
|
|
7381 parameter from unsigned short to unsigned long.
|
|
7382 (Fmswindows_shell_execute): Added return value.
|
|
7383
|
|
7384 2000-01-27 URA Hiroshi <ura@hiru.aoba.yokohama.jp>
|
|
7385
|
442
|
7386 * sysdep.c (init_system_name):
|
|
7387 process-unix.c (unix_canonicalized_host_name):
|
440
|
7388 Don't call freeaddrinfo() if getaddrinfo() fails.
|
|
7389
|
|
7390 * process-unix.c (unix_open_unix_network_stream):
|
|
7391 Moved the code to get a port # into address loop.
|
|
7392
|
|
7393 2000-01-27 Martin Buchholz <martin@xemacs.org>
|
|
7394
|
442
|
7395 * buffer.c (reinit_vars_of_buffer):
|
440
|
7396 The right place to initialize conversion_in_dynarr and
|
|
7397 conversion_out_dynarr.
|
|
7398
|
|
7399 * alloc.c (pdump): Use the real open() till sys_open() is functional.
|
|
7400
|
|
7401 * process-unix.c (unix_canonicalize_host_name): Muleize.
|
|
7402 (unix_open_network_stream): Muleize.
|
|
7403
|
|
7404 * buffer.h: Fix up prototypes for ralloc.c functions.
|
|
7405
|
|
7406 2000-01-27 URA Hiroshi <ura@hiru.aoba.yokohama.jp>
|
|
7407 * config.h.in: added HAVE_GETADDRINFO and HAVE_GETNAMEINFO
|
|
7408 * sysdep.c: In init_system_name(), add code to use getaddrinfo()
|
|
7409 instead of gethostbyname()
|
|
7410 * process-unix.c: In unix_canonicalize_host_name() and
|
|
7411 unix_open_network_stream(), add code to use getaddrinfo()
|
|
7412 instead of gethostbyname().
|
|
7413
|
|
7414 2000-01-27 Daniel Pittman <daniel@danann.net>
|
|
7415
|
|
7416 * device-x.c (x_init_device): Warn at run-time if using Athena 3d
|
|
7417 libs when built with flat Athena.
|
|
7418
|
|
7419 2000-01-27 Martin Buchholz <martin@xemacs.org>
|
|
7420
|
|
7421 * ralloc.c: Replace SIZE (conflicts with Windows headers) with size_t.
|
|
7422 Use coding standards for function prototypes.
|
|
7423
|
|
7424 2000-01-25 Martin Buchholz <martin@xemacs.org>
|
|
7425
|
|
7426 * dialog-msw.c (push_lisp_string_as_unicode):
|
|
7427 * doc.c (unparesseuxify_doc_string):
|
|
7428 * dired.c (Fuser_name_completion_1):
|
|
7429 * dired.c (Fuser_name_all_completions):
|
|
7430 * dired.c (free_user_cache):
|
|
7431 * dired.c (user_name_completion):
|
|
7432 * console-x.c (get_display_arg_connection):
|
|
7433 * minibuf.c (clear_echo_area_internal):
|
|
7434 * minibuf.c (echo_area_append):
|
|
7435 * eldap.c (Fldap_open):
|
|
7436 * eldap.c (Fldap_search_internal):
|
|
7437 * frame-x.c (x_set_frame_text_value):
|
|
7438 * frame-x.c (x_set_frame_properties):
|
|
7439 * frame-x.c (x_create_widgets):
|
|
7440 * redisplay-tty.c (term_get_fkeys_1):
|
|
7441 * objects-x.c (x_parse_nearest_color):
|
|
7442 * objects-x.c (x_valid_color_name_p):
|
|
7443 * objects-x.c (x_initialize_font_instance):
|
|
7444 * objects-x.c (x_list_fonts):
|
|
7445 * objects-x.c (x_find_charset_font):
|
|
7446 * tooltalk.c (Fadd_tooltalk_message_arg):
|
|
7447 * tooltalk.c (Fadd_tooltalk_pattern_attribute):
|
|
7448 * tooltalk.c (Fadd_tooltalk_pattern_arg):
|
|
7449 * process-unix.c (unix_create_process):
|
|
7450 * ntproc.c (sys_spawnve):
|
|
7451 * sound.c (Fplay_sound_file):
|
|
7452 * sound.c (Fplay_sound):
|
|
7453 * buffer.c (init_initial_directory):
|
|
7454 * buffer.c (init_buffer):
|
|
7455 * editfns.c (init_editfns):
|
|
7456 * editfns.c (Ftemp_directory):
|
|
7457 * editfns.c (Fuser_full_name):
|
|
7458 * editfns.c (uncache_home_directory):
|
|
7459 * editfns.c (get_home_directory):
|
|
7460 * editfns.c (Fuser_home_directory):
|
|
7461 * editfns.c (Fformat_time_string):
|
|
7462 * editfns.c (Fcurrent_time_string):
|
|
7463 * gui-x.c (button_item_to_widget_value):
|
|
7464 * database.c (Fopen_database):
|
|
7465 * event-Xt.c (x_to_emacs_keysym):
|
|
7466 * event-Xt.c (x_event_to_emacs_event):
|
|
7467 * event-Xt.c (describe_event_window):
|
|
7468 * event-msw.c (mswindows_wnd_proc):
|
|
7469 * glyphs-eimage.c (jpeg_instantiate):
|
|
7470 * glyphs-eimage.c (gif_instantiate):
|
|
7471 * glyphs-eimage.c (png_instantiate):
|
|
7472 * glyphs-eimage.c (tiff_instantiate):
|
|
7473 * glyphs-x.c (xbm_instantiate_1):
|
|
7474 * glyphs-x.c (x_xbm_instantiate):
|
|
7475 * glyphs-x.c (x_xface_instantiate):
|
|
7476 * glyphs-x.c (autodetect_instantiate):
|
|
7477 * glyphs-x.c (cursor_font_instantiate):
|
|
7478 * glyphs-x.c (x_widget_instantiate):
|
|
7479 * glyphs-x.c (x_widget_set_property):
|
|
7480 * glyphs-x.c (x_widget_property):
|
|
7481 * glyphs-x.c (BUILD_GLYPH_INST):
|
|
7482 * print.c (write_string_to_stdio_stream):
|
|
7483 * print.c (output_string):
|
|
7484 * print.c (Falternate_debugging_output):
|
|
7485 * print.c (Fexternal_debugging_output):
|
|
7486 * glyphs-msw.c (extract_xpm_color_names):
|
|
7487 * glyphs-msw.c (mswindows_xpm_instantiate):
|
|
7488 * glyphs-msw.c (bmp_instantiate):
|
|
7489 * glyphs-msw.c (resource_name_to_resource):
|
|
7490 * glyphs-msw.c (mswindows_resource_instantiate):
|
|
7491 * glyphs-msw.c (xbm_instantiate_1):
|
|
7492 * glyphs-msw.c (mswindows_xbm_instantiate):
|
|
7493 * glyphs-msw.c (mswindows_xface_instantiate):
|
|
7494 * glyphs-msw.c (mswindows_widget_instantiate):
|
|
7495 * glyphs-msw.c (add_tree_item):
|
|
7496 * glyphs-msw.c (add_tab_item):
|
|
7497 * glyphs-msw.c (mswindows_combo_box_instantiate):
|
|
7498 * glyphs-msw.c (mswindows_widget_property):
|
|
7499 * glyphs-msw.c (mswindows_combo_box_property):
|
|
7500 * glyphs-msw.c (mswindows_widget_set_property):
|
|
7501 * console.c (stuff_buffered_input):
|
|
7502 * objects-msw.c (mswindows_initialize_color_instance):
|
|
7503 * objects-msw.c (mswindows_valid_color_name_p):
|
|
7504 * objects-msw.c (mswindows_list_fonts):
|
|
7505 * objects-msw.c (mswindows_font_instance_truename):
|
|
7506 * bytecode.c (optimize_compiled_function):
|
|
7507 * select-x.c (symbol_to_x_atom):
|
|
7508 * select-x.c (x_atom_to_symbol):
|
|
7509 * select-x.c (hack_motif_clipboard_selection):
|
|
7510 * select-x.c (selection_data_to_lisp_data):
|
|
7511 * select-x.c (lisp_data_to_selection_data):
|
|
7512 * select-x.c (Fx_get_cutbuffer_internal):
|
|
7513 * select-x.c (Fx_store_cutbuffer_internal):
|
|
7514 * buffer.h (TO_EXTERNAL_FORMAT): New function.
|
|
7515 * buffer.h (TO_INTERNAL_FORMAT): New function.
|
|
7516 * emacs.c (make_arg_list_1):
|
|
7517 * emacs.c (make_argc_argv):
|
|
7518 * emacs.c (main_1):
|
|
7519 * emacs.c (Fdump_emacs):
|
|
7520 * emacs.c (split_string_by_emchar_1):
|
|
7521 * file-coding.h:
|
|
7522 * lisp.h:
|
|
7523 * lstream.h:
|
|
7524 * symsinit.h:
|
|
7525 * device-x.c (x_init_device):
|
|
7526 * device-x.c (Fx_valid_keysym_name_p):
|
|
7527 * device-x.c (Fx_get_font_path):
|
|
7528 * device-x.c (Fx_set_font_path):
|
|
7529 * glyphs.c (bitmap_to_lisp_data):
|
|
7530 * glyphs.c (pixmap_to_lisp_data):
|
|
7531 * alloc.c (make_ext_string): Use coding system arguments. Update
|
|
7532 all callers.
|
|
7533 * alloc.c (build_string):
|
|
7534 * callproc.c (child_setup):
|
|
7535 * callproc.c (init_callproc):
|
|
7536 * fileio.c (lisp_strerror):
|
|
7537 * fileio.c (directory_file_name):
|
|
7538 * fileio.c (Fexpand_file_name):
|
|
7539 * fileio.c (Ffile_truename):
|
|
7540 * fileio.c (Fsysnetunam):
|
|
7541 * fileio.c (Fdo_auto_save):
|
|
7542 * sysdep.c (sys_readdir):
|
|
7543 * tests.c: New file. Allow adding C tests.
|
|
7544 Replace GET_* macros with a more comprehensible and flexible
|
|
7545 interface, TO_INTERNAL_FORMAT() and TO_EXTERNAL_FORMAT().
|
|
7546 Modify all calls.
|
|
7547 Any coding system can be used to do format conversion.
|
|
7548 Eliminate enum external_data_format.
|
|
7549 Eliminate convert_to_external_format.
|
|
7550 Eliminate convert_to_internal_format.
|
|
7551 Make sure file-name, keyboard, terminal, and ctext are always
|
|
7552 defined as coding systems or aliases. Make
|
|
7553 file-name-coding-system, terminal-coding-system, and
|
|
7554 keyboard-coding-system magical variables that are equivalent to
|
|
7555 defining the corresponding coding system aliases.
|
442
|
7556
|
440
|
7557 * file-coding.c (Fcoding_system_canonical_name_p): New function.
|
|
7558 * file-coding.c (Fcoding_system_alias_p): New function.
|
|
7559 * file-coding.c (Fcoding_system_aliasee): New function.
|
|
7560 * file-coding.c (append_suffix_to_symbol): New function.
|
|
7561 * file-coding.c (dangling_coding_system_alias_p): New function.
|
|
7562 * file-coding.c (Ffind_coding_system):
|
|
7563 * file-coding.c (Fcopy_coding_system):
|
|
7564 * file-coding.c (encode_coding_no_conversion):
|
|
7565 * file-coding.c (syms_of_file_coding):
|
|
7566 * file-coding.c (vars_of_file_coding):
|
|
7567 Rewrite coding system alias code.
|
|
7568 Allow nested aliases, like symbolic links.
|
|
7569 Allow redefinition of coding system aliases.
|
|
7570 Prevent existence of dangling coding system aliases.
|
|
7571
|
|
7572 * dired.c (Fuser_name_completion_1):
|
|
7573 * dired.c (Fuser_name_all_completions):
|
|
7574 A crash would happen if user did QUIT in the middle of building
|
|
7575 user_name_cache. Remove redundant code in mainline and unwind_protect.
|
|
7576
|
|
7577 * lisp.h:
|
|
7578 * dynarr.c (Dynarr_min_size): Make static. Increase value to 8.
|
|
7579
|
|
7580 * lstream.c (make_fixed_buffer_input_stream): Take a void *, not
|
|
7581 an unsigned char *. Update all callers.
|
|
7582
|
|
7583 2000-01-26 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
7584
|
|
7585 * callproc.c (Fcall_process_internal): Ignore Vbinary-process_output.
|
|
7586
|
|
7587 2000-01-25 Martin Buchholz <martin@xemacs.org>
|
|
7588
|
|
7589 * elhash.c (hentry_description): Use more portable definition.
|
|
7590 (resize_hash_table): Initialize new hentries using
|
|
7591 xnew_array_and_zero, thereby simplifying the code.
|
|
7592
|
|
7593 * mule-charset.c (make_charset): Make sure entire object is
|
442
|
7594 initialized, to avoid Purify warnings.
|
440
|
7595
|
|
7596 * alloc.c (resize_string): Fix unlikely crash with big strings.
|
|
7597
|
|
7598 2000-01-24 Martin Buchholz <martin@xemacs.org>
|
|
7599
|
442
|
7600 * realpath.c (xrealpath):
|
440
|
7601 Don't call getwd().
|
|
7602
|
|
7603 2000-01-25 Martin Buchholz <martin@xemacs.org>
|
|
7604
|
|
7605 * lread.c (read_bit_vector): Fix memory leak reading literal bit vectors.
|
|
7606
|
|
7607 1999-12-28 Max Matveev <max@melbourne.sgi.com>
|
|
7608
|
|
7609 * unexelfsgi.c (unexec): Change the way we decide which segment
|
|
7610 should be extended.
|
|
7611
|
|
7612 Assumption that .bss section should be outside the PT_LOADable
|
|
7613 segment. On IRIX with version 6.2 and above, .bss (or .sbss, if
|
|
7614 it's present) is inside the 'data' segment. This would fail the
|
|
7615 test which was used to find a segment to grow and cover new
|
|
7616 heap. Instead of this assumption, I created another one - on IRIX
|
|
7617 the segment to grow should start below .bss and it's address
|
|
7618 should extent above the end of .bss. Once this segment is
|
|
7619 identified, it's grown to accommodate the new heap and new
|
|
7620 zero-length .bss section is added at the end of .data2.
|
|
7621
|
|
7622 2000-01-25 Martin Buchholz <martin@xemacs.org>
|
|
7623
|
|
7624 * eval.c (Feval): Wrong number of arguments should use original
|
|
7625 function, not the indirect_function version of it.
|
|
7626
|
|
7627 2000-01-24 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
7628
|
|
7629 * glyphs-x.c (x_button_instantiate): Don't add image if
|
|
7630 it is not a pixmap.
|
|
7631 (x_locate_pixmap_file): Call Fexpand_file_name when file name
|
|
7632 is relative.
|
|
7633
|
|
7634 2000-01-21 Yoshiki Hayashi <yoshiki@xemacs.org>
|
|
7635
|
|
7636 * symeval.h (DEFVAR_LISP_MAGIC): Remove semicolon after macro
|
|
7637 declaration.
|
|
7638 (DEFVAR_INT_MAGIC): Ditto.
|
|
7639 (DEFVAR_BOOL_MAGIC): Ditto.
|
|
7640 * glyphs.h: Reindent backslash.
|
|
7641
|
|
7642 2000-01-24 Martin Buchholz <martin@xemacs.org>
|
|
7643
|
442
|
7644 * glyphs-widget.c (layout_query_geometry):
|
440
|
7645 (layout_layout): Use correct types for gheight, gwidth.
|
|
7646
|
|
7647 2000-01-24 Martin Buchholz <martin@xemacs.org>
|
|
7648
|
|
7649 * EmacsManager.c (QueryGeometry): Purified.
|
|
7650
|
|
7651 2000-01-23 Martin Buchholz <martin@xemacs.org>
|
|
7652
|
442
|
7653 * alloc.c (make_float): Make sure entire object is initialized, to
|
440
|
7654 avoid Purify warnings.
|
|
7655 (pdump_register_sub): Remove useless assignment.
|
|
7656 (pdump): Use xmalloc, not malloc.
|
|
7657 (pdump_load): Use xmalloc, not malloc.
|
|
7658
|
|
7659 2000-01-23 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
7660
|
442
|
7661 * callproc.c:
|
|
7662 * dired-msw.c:
|
|
7663 * fileio.c:
|
|
7664 * process-nt.c:
|
|
7665 * redisplay-msw.c:
|
440
|
7666 * sysdep.c: Removed redundant #include <windows.h>
|
|
7667
|
|
7668 2000-01-22 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
7669
|
|
7670 * frame.c (delete_frame_internal): Do not delete device when its
|
|
7671 implementation so declares.
|
|
7672 (delete_frame_internal): Set device selected frame to nil when
|
442
|
7673 last frame goes away.
|
440
|
7674
|
|
7675 * device-msw.c (msprinter_device_system_metrics): Implemented.
|
|
7676 (mswindows_device_system_metrics): Added 'device-dpi property.
|
|
7677
|
|
7678 * device.c: (Fdevice_printer_p): Added.
|
|
7679 Added 'offset-workspace device metric.
|
|
7680
|
|
7681 * console.h (device_metrics): Declared DM_offset_workspace.
|
|
7682
|
|
7683 2000-01-23 Martin Buchholz <martin@xemacs.org>
|
|
7684
|
|
7685 * fileio.c (Ffile_truename): Remove pointless and confusing
|
|
7686 initialization of elen.
|
|
7687
|
|
7688 * glyphs-widget.c: Compiler warning fixes.
|
|
7689
|
|
7690 2000-01-23 Gunnar Evermann <ge204@eng.cam.ac.uk>
|
|
7691
|
|
7692 * process.h (PROCESS_LIVE_P): Modify to take a Lisp_Process
|
|
7693 instead of a Lisp_Object as argument to make it consistent with
|
|
7694 the other LIVE_P macros.
|
|
7695 (CHECK_LIVE_PROCESS): New macro.
|
|
7696
|
|
7697 * process.c: Declare Qprocess_live_p.
|
|
7698 (Fprocess_live_p): New function.
|
|
7699 (create_process): Use PROCESS_LIVE_P.
|
|
7700 (read_process_output): Ditto.
|
|
7701 (set_process_filter): Ditto.
|
|
7702 (Fdelete_process): Ditto.
|
|
7703 (kill_buffer_processes): Ditto
|
|
7704 (process_send_signal): Use CHECK_LIVE_PROCESS.
|
|
7705 (Fprocess_input_coding_system): Check whether process is still
|
|
7706 alive (fix PR#1061).
|
|
7707 (Fprocess_output_coding_system): Ditto.
|
|
7708 (Fprocess_coding_system): Ditto.
|
|
7709 (Fset_process_input_coding_system): Ditto.
|
|
7710 (Fset_process_output_coding_system): Ditto.
|
|
7711
|
|
7712 2000-01-23 Andy Piper <andy@xemacs.org>
|
|
7713
|
|
7714 * glyphs.h (struct Lisp_Image_Instance): change format by unifying
|
|
7715 layout and widget.
|
|
7716
|
|
7717 * glyphs.c (mark_image_instance): take into account changed
|
|
7718 image_instance format.
|
|
7719 (image_instance_equal): ditto.
|
|
7720 (image_instance_hash): ditto.
|
|
7721
|
|
7722 * glyphs-widget.c (widget_instantiate): Incorporate layout
|
|
7723 instantiation here. Delay layout of the layout until later.
|
|
7724 (layout_instantiate): deleted.
|
|
7725 (layout_query_geometry): new function. get the geometry of a
|
|
7726 layout.
|
|
7727 (layout_layout): layout a layout dynamically.
|
|
7728 (image_instantiator_widget): New function - splitting up
|
|
7729 image_instantiator_format_create_glyphs_widget for netwinder
|
|
7730 compilation.
|
|
7731 (image_instantiator_buttons):
|
|
7732 (image_instantiator_edit_fields):
|
|
7733 (image_instantiator_combo_box):
|
|
7734 (image_instantiator_scrollbar):
|
|
7735 (image_instantiator_progress_guage):
|
|
7736 (image_instantiator_tree_view):
|
|
7737 (image_instantiator_tab_control):
|
|
7738 (image_instantiator_labels):
|
|
7739 (image_instantiator_layout): ditto.
|
442
|
7740 (image_instantiator_format_create_glyphs_widget): Call preceding
|
440
|
7741 functions.
|
|
7742
|
|
7743 2000-01-22 Martin Buchholz <martin@xemacs.org>
|
|
7744
|
|
7745 * process.c (Fset_process_coding_system):
|
442
|
7746 * device-x.c (Fx_keysym_hash_table):
|
440
|
7747 Docstring fixes.
|
|
7748
|
|
7749 * lstream.c (Lstream_write): Return documented value, not 0.
|
|
7750
|
442
|
7751 * fileio.c (directory_file_name):
|
|
7752 (Fsubstitute_in_file_name):
|
|
7753 (Fsubstitute_insert_file_contents_internal):
|
440
|
7754 (Fwrite_region_internal):
|
|
7755 * emacs.c:
|
|
7756 * sysdep.c:
|
442
|
7757 * getloadavg.c:
|
440
|
7758 * systty.h:
|
|
7759 Remove vestigial APOLLO-conditional code.
|
|
7760
|
|
7761 2000-01-21 Martin Buchholz <martin@xemacs.org>
|
|
7762
|
|
7763 * getpagesize.h: Add guard macros.
|
|
7764 * libsst.h: Add guard macros.
|
|
7765 * libst.h: Add guard macros.
|
|
7766 * line-number.h: Add guard macros.
|
|
7767 * ndir.h: Add guard macros.
|
|
7768 * sysfloat.h: Add guard macros.
|
|
7769 * sysfile.h: Add guard macros.
|
|
7770 * sysproc.h: Add guard macros.
|
|
7771 * syswait.h: Add guard macros.
|
|
7772 * xintrinsic.h: Add guard macros.
|
|
7773 * xintrinsicp.h: Add guard macros.
|
|
7774 * xmmanager.h: Add guard macros.
|
|
7775 * xmmanagerp.h: Add guard macros.
|
|
7776 * xmprimitive.h: Add guard macros.
|
|
7777 * xmu.h: Add guard macros.
|
|
7778 * gpmevent.h: Add copyright statement. Add guard macros.
|
|
7779 * miscplay.h: Add guard macros.
|
|
7780 * *.h: Use consistent C-standards-approved guard macro names.
|
|
7781
|
442
|
7782 * opaque.c (make_opaque): Switch parameter order.
|
440
|
7783 * opaque.h (make_opaque): Switch parameter order.
|
|
7784 Update all callers.
|
|
7785 * buffer.h (MAKE_MIRROR_TRT_TABLE): Use symbolic constant OPAQUE_CLEAR.
|
|
7786
|
|
7787 * config.h.in (type_checking_assert): Added.
|
|
7788 (bufpos_checking_assert): Added.
|
|
7789
|
|
7790 2000-01-21 Martin Buchholz <martin@xemacs.org>
|
|
7791
|
|
7792 * alloc.c: Harmless pdump changes.
|
|
7793 - Use countof().
|
|
7794 - spell alignment correctly.
|
|
7795 * sysdep.c: Use countof()
|
|
7796
|
|
7797 2000-01-20 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
7798
|
|
7799 * console.c (create_console): Use CONMETH_OR_GIVEN when calling
|
|
7800 initially_selected_for_input() console method, default to 0.
|
|
7801 (semi_canonicalize_console_connection): Try to delegate to
|
|
7802 canonicalize_console_connection if no such console method.
|
|
7803 (canonicalize_console_connection): Vice versa.
|
|
7804 (print_console): Do not print nil connection.
|
|
7805
|
|
7806 * console.h (XDEVIMPF_IS_A_PRINTER): Added.
|
|
7807 (XDEVIMPF_NO_AUTO_REDISPLAY): Added.
|
|
7808 (XDEVIMPF_FRAMELESS_OK): Added.
|
|
7809 (CONSOLE_INHERITS_METHOD): Added.
|
|
7810
|
|
7811 * console-msw.c (mswindows_canonicalize_console_connection):
|
|
7812 Added.
|
|
7813 (mswindows_canonicalize_device_connection): Added.
|
|
7814
|
|
7815 * console-msw.h (struct msprinter_device): Added this struct and
|
|
7816 accessor macros.
|
|
7817 (mswindows_device): Made fontlist a lisp object.
|
|
7818
|
|
7819 * device.c (semi_canonicalize_device_connection): Try to delegate
|
|
7820 to canonicalize_device_connection if no such console method.
|
|
7821 (canonicalize_device_connection): Vice versa.
|
|
7822 (print_device): Do not print nil connection.
|
|
7823
|
|
7824 * device-msw.c (mswindows_init_device): Call InitCommonControls
|
|
7825 when have widgets.
|
|
7826 (mswindows_delete_device): Removed fontlist deallocation.
|
|
7827 (mswindows_mark_device): Added.
|
|
7828
|
|
7829 * events.c (event_equal): Added abort() at unreached code.
|
|
7830 (event_hash): Ditto.
|
|
7831
|
|
7832 * faces.c (complex_vars_of_faces): Added Qmsprinter to the list of
|
|
7833 fallback tags of Windows devices.
|
|
7834
|
|
7835 * general.c (syms_of_general): Initialized Qmsprinter.
|
|
7836
|
|
7837 * gutter.c (complex_vars_of_gutters): Added Qmsprinter to the list
|
|
7838 of fallback tags of Windows devices.
|
|
7839
|
|
7840 * lisp.h: Declared Qmsprinter.
|
|
7841
|
|
7842 * objects-msw.c (font_enum_callback_2): Rewrote to build lisp list
|
|
7843 of strings.
|
|
7844 (mswindows_list_fonts): Ditto.
|
|
7845 (mswindows_enumerate_fonts): Removed dependency on XDEVICE, so
|
|
7846 that it can be used by both mswindows and msprinter devices.
|
|
7847 (initialize_font_instance): Added.
|
|
7848 (mswindows_initialize_font_instance): Use it.
|
|
7849 (msprinter_initialize_font_instance): Added.
|
|
7850
|
|
7851 * redisplay.c (redisplay_device): Added the parameter AUTOMATIC
|
|
7852 and implementation flags check.
|
|
7853 (redisplay_without_hooks): Changed the call to the above.
|
|
7854 (Fredraw_device): Ditto.
|
|
7855 (Fredisplay_device): Ditto.
|
|
7856
|
|
7857 * redisplay-msw.c (get_frame_dc): Implemented.
|
|
7858 (get_frame_compdc): Implemented.
|
|
7859 (many functions): Use the two functions above to get device
|
|
7860 contexts, ether for a window or a printer.
|
|
7861
|
|
7862 2000-01-21 Olivier Galibert <galibert@pobox.com>
|
|
7863
|
|
7864 * symbols.c (reinit_symbols_once_early): Put Qzero/Qnull_pointer
|
|
7865 initialization here.
|
|
7866 (init_symbols_once_early): Call it.
|
|
7867 * emacs.c (main_1): Call it.
|
|
7868 * symsinit.h: Declare it.
|
|
7869
|
|
7870 2000-01-19 Olivier Galibert <galibert@pobox.com>
|
|
7871
|
|
7872 * alloc.c: Use a lrecord_header * in the backtrace instead of a
|
|
7873 Lisp_Object.
|
|
7874 (pdump_backtrace): Ditto.
|
|
7875 (pdump_register_object): Ditto. Cleanup use of the pointers.
|
|
7876 (pdump_get_entry): Abort if trying to register a null pointer.
|
|
7877 (pdump_dump_data): Cleanup types when relocating.
|
|
7878 (pdump_dump_staticvec): Cleanup types w.r.t the reloc table.
|
|
7879 (pdump_dump_rtables): Remove bad casts.
|
|
7880 (pdump_load): Cleanup relocation w.r.t union type. Use a
|
|
7881 Lisp_Object instead of a EMACS_INT for the hashtable
|
|
7882 reorganization.
|
|
7883
|
|
7884 2000-01-20 Martin Buchholz <martin@xemacs.org>
|
|
7885
|
|
7886 * emacs.c (main_1): Rearrange morass of #ifdef's for correctness.
|
|
7887
|
|
7888 * callproc.c (call_process_cleanup): Isolate WINDOWSNT code for clarity.
|
|
7889
|
|
7890 * EmacsManager.c (GeometryManager): Avoid use of CPP for clarity.
|
|
7891
|
|
7892 * *.[ch]: global-replace 's/_of_xselect/_of_select_x/g' *.[ch]
|
|
7893
|
|
7894 2000-01-17 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
|
7895
|
|
7896 * faces.h (FACE_STRIKETHRU_P): Added.
|
|
7897
|
|
7898 * glyphs-msw.c (mswindows_widget_hfont): Implemented, to take care
|
|
7899 of font variants.
|
|
7900
|
|
7901 * redisplay-msw.c (mswindows_apply_face_effects): Deleted.
|
|
7902 (mswindows_set_dc_font): New function, aware of font variants,
|
|
7903 separated from mswindows_update_dc.
|
|
7904
|
|
7905 * objects-msw.h (struct mswindows_font_instance_data): Added
|
|
7906 definition.
|
|
7907
|
|
7908 * objects-msw.c (mswindows_finalize_font_instance): Delete all
|
|
7909 cached fonts and the data structure.
|
|
7910 (mswindows_initialize_font_instance): Added creation of font data
|
|
7911 structure.
|
|
7912 (mswindows_print_font_instance): Print at least something.
|
|
7913 (mswindows_create_font_variant): Implemented.
|
|
7914 (mswindows_get_hfont): Implemented.
|
|
7915
|
|
7916 2000-01-13 Fabrice Popineau <Fabrice.Popineau@supelec.fr>
|
|
7917
|
|
7918 * dired-msw.c: permute "sysdir.h" with "sysfile.h" because of
|
|
7919 prototyping problem with msvc.
|
|
7920
|
|
7921 * emacs.c (main_1): added syms_of_gui_mswindows() call
|
|
7922
|
|
7923 * gui-msw.c: added "mswindows-shell-execute" lisp subr and
|
|
7924 syms_of_gui_mswindows() function
|
|
7925
|
|
7926 * symsinit.h: added the prototype for syms_of_gui_mswindows()
|
|
7927
|
438
|
7928 2000-01-18 Martin Buchholz <martin@xemacs.org>
|
434
|
7929
|
438
|
7930 * XEmacs 21.2.27 is released.
|
432
|
7931
|
438
|
7932 2000-01-18 Martin Buchholz <martin@xemacs.org>
|
430
|
7933
|
438
|
7934 * glyphs-eimage.c (struct tiff_error_struct):
|
|
7935 (tiff_error_func):
|
|
7936 (tiff_warning_func):
|
|
7937 #if HAVE_VSNPRINTF ==> #ifdef HAVE_VSNPRINTF
|
428
|
7938
|
438
|
7939 * unexmips.c:
|
|
7940 * unexhp9k3.c:
|
|
7941 * unexfreebsd.c:
|
|
7942 * unexec.c: Remove vestigial Lucid C code.
|
|
7943 * unexalpha.c:
|
|
7944 * unexaix.c:
|
|
7945 * termcap.c:
|
|
7946 * libsst.c: Ansify.
|
|
7947 Remove declarations of errno and strerror().
|
428
|
7948
|
438
|
7949 * eval.c (Fbacktrace): Small Purify-cation. Fix docstring.
|
428
|
7950
|
438
|
7951 * .dbxrc (run-temacs): Use the horrible ${1+"$@"} instead of "$@".
|
428
|
7952
|
438
|
7953 2000-01-16 Martin Buchholz <martin@xemacs.org>
|
428
|
7954
|
438
|
7955 * mule-charset.c (Fchar_octet): Resurrect from earlier in 1999.
|
|
7956 Optimize.
|
428
|
7957
|
438
|
7958 2000-01-14 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp>
|
428
|
7959
|
438
|
7960 * md5.c:
|
|
7961 * file-coding.c:
|
428
|
7962 * file-coding.h:
|
438
|
7963 Change enum eol_type to eol_type_t.
|
428
|
7964
|
438
|
7965 2000-01-17 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp>
|
428
|
7966
|
438
|
7967 * gui.c (get_gui_callback): Check cons before accessing car.
|
428
|
7968
|
438
|
7969 2000-01-17 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp>
|
428
|
7970
|
438
|
7971 * specifier.h (XSPECIFIER_TYPE): Add error checking version.
|
|
7972 (XSETSPECIFIER_TYPE): Ditto.
|
428
|
7973
|
438
|
7974 2000-01-17 Didier Verna <didier@xemacs.org>
|
428
|
7975
|
438
|
7976 * redisplay.c (generate_fstring_runes): compute string size in
|
|
7977 characters, not bytes.
|
428
|
7978
|
438
|
7979 2000-01-09 Hrvoje Niksic <hniksic@iskon.hr>
|
428
|
7980
|
438
|
7981 * window.c (Fwindow_minibuffer_p): Make WINDOW optional.
|
428
|
7982
|
438
|
7983 2000-01-14 Hrvoje Niksic <hniksic@iskon.hr>
|
428
|
7984
|
438
|
7985 * print.c (print_error_message): Call print_prepare().
|
428
|
7986
|
438
|
7987 2000-01-14 Martin Buchholz <martin@xemacs.org>
|
428
|
7988
|
438
|
7989 * .dbxrc: Renamed from dbxrc.
|
428
|
7990
|
438
|
7991 * events.c (event_to_character):
|
|
7992 Use `assert (foo)' instead of `if (!foo) abort()'
|
428
|
7993
|
438
|
7994 * .gdbinit (xtype): Add documentation.
|
|
7995 * .gdbinit (check-temacs): New function.
|
|
7996 * .gdbinit (check-xemacs): New function.
|
|
7997 * dbxrc (check-xemacs): New function.
|
|
7998 * dbxrc (check-xemacs): New function.
|
428
|
7999
|
438
|
8000 2000-01-14 Andy Piper <andy@xemacs.org>
|
428
|
8001
|
438
|
8002 * glyphs-widget.c (widget_query_geometry): Make sure that we
|
|
8003 calculate default dimensions correctly.
|
428
|
8004
|
438
|
8005 2000-01-13 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
428
|
8006
|
438
|
8007 * symsinit.h: Added prototype for reinit_vars_of_frame_mswindows.
|
428
|
8008
|
438
|
8009 * event-msw.c (vars_of_event_mswindows): Fixed a mistyped
|
|
8010 pdump_wire'd variable.
|
428
|
8011
|
438
|
8012 * emacs.c: (main_1): Conditionalized calls to
|
|
8013 reinit_vars_of_scrollbar_x and reinit_vars_of_module.
|
428
|
8014
|
438
|
8015 2000-01-13 Martin Buchholz <martin@xemacs.org>
|
428
|
8016
|
438
|
8017 * window.c (Fset_window_configuration):
|
|
8018 * sysdep.c (_start):
|
|
8019 * input-method-motif.c (res):
|
|
8020 * event-Xt.c (Xt_process_to_emacs_event):
|
|
8021 Simple compiler warning fixes.
|
428
|
8022
|
438
|
8023 * bytecode.c (funcall_compiled_function): Use the original
|
|
8024 function symbol on the backtrace list in preference to the
|
|
8025 compiled_function object in error messages.
|
428
|
8026
|
438
|
8027 2000-01-13 Andy Piper <andy@xemacs.org>
|
428
|
8028
|
438
|
8029 * glyphs-x.c (update_widget_face): Make sure we update the widget
|
|
8030 background as well as foreground.
|
428
|
8031
|
438
|
8032 2000-01-13 Andy Piper <andy@xemacs.org>
|
428
|
8033
|
438
|
8034 * glyphs.h (struct Lisp_Image_Instance): Move justify and orient
|
|
8035 fields to subwindow.
|
|
8036 (IMAGE_INSTANCE_SUBWINDOW_JUSTIFY): new macro.
|
|
8037 (XIMAGE_INSTANCE_SUBWINDOW_JUSTIFY): ditto.
|
|
8038 (IMAGE_INSTANCE_SUBWINDOW_ORIENT): ditto.
|
|
8039 (XIMAGE_INSTANCE_SUBWINDOW_ORIENT): ditto.
|
428
|
8040
|
438
|
8041 * glyphs-widget.c (check_valid_tab_orientation): new function.
|
|
8042 (initialize_widget_image_instance): zero orientation and
|
|
8043 justification.
|
|
8044 (widget_instantiate): pick up orientation.
|
|
8045 (tab_control_query_geometry): return appropriate values for
|
|
8046 vertical tabs.
|
428
|
8047
|
438
|
8048 * glyphs-msw.c: (mswindows_tab_control_instantiate): assign
|
|
8049 appropriate creation flags for left, right and bottom tabs.
|
428
|
8050
|
438
|
8051 * s/cygwin32.h: add tab definitions.
|
428
|
8052
|
438
|
8053 2000-01-12 Kirill 'Big K' Katsnelson <kkm@dtmx.com>
|
428
|
8054
|
438
|
8055 * glyphs-msw.c (mswindows_unmap_subwindow): Set focus back to the
|
|
8056 frame upon hiding a subwindow.
|
|
8057 (mswindows_button_instantiate): Changed the push button style to
|
|
8058 BS_PUSHBUTTON.
|
|
8059 (mswindows_button_instantiate): Removed button BS_NOTIFY
|
|
8060 style.
|
|
8061 (mswindows_button_instantiate): Removed redundant check for
|
|
8062 a disabled gui item.
|
|
8063 (mswindows_button_instantiate): Made use of WS_TABSTOP
|
|
8064 consistent: "operable" controls (edit, button, tree, scroll) have
|
|
8065 this style, "display-only" ones (static, progress gauge) do
|
|
8066 not. This style is currently ignored by XEmacs though. Also,
|
|
8067 removed the WS_EX_CONTROLPARENT style - it is not for children,
|
|
8068 it is for their parents!
|
|
8069 (mswindows_edit_field_instantiate): Ditto.
|
|
8070 (mswindows_progress_gauge_instantiate): Ditto.
|
|
8071 (mswindows_tree_view_instantiate): Ditto.
|
|
8072 (mswindows_tab_control_instantiate): Ditto.
|
|
8073 (mswindows_scrollbar_instantiate): Ditto.
|
|
8074 (mswindows_combo_box_instantiate): Ditto.
|
|
8075 (mswindows_widget_instantiate): Added the WS_EX_CONTROLPARENT
|
|
8076 style to the "clip" window.
|
|
8077 (mswindows_button_instantiate): Removed compilation warning by
|
|
8078 equally typing terms of the ?: operator.
|
428
|
8079
|
438
|
8080 2000-01-12 Didier Verna <didier@xemacs.org>
|
428
|
8081
|
438
|
8082 * redisplay.c (generate_fstring_runes): new parameter holding the
|
|
8083 last modeline-format extent.
|
|
8084 (add_glyph_to_fstring_db_runes): new parameter holding the glyph
|
|
8085 extent, fill the glyph block with it.
|
|
8086 (generate_fstring_runes): handle these parameters.
|
|
8087 (generate_formatted_string_db): ditto.
|
428
|
8088
|
438
|
8089 * keymap.c (get_relevant_keymaps): retreive the keymaps from the
|
|
8090 glyphs'extents in the modeline.
|
428
|
8091
|
438
|
8092 1999-01-11 Mike Woolley <mike@bulsara.com>
|
428
|
8093
|
438
|
8094 * ntheap.c: Reduced the reserved heap space from 1Gb down to
|
|
8095 256Mb, as a workaround for the non-starting problem many people
|
|
8096 have experienced.
|
428
|
8097
|
438
|
8098 2000-01-06 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp>
|
428
|
8099
|
438
|
8100 * console-tty.c (Fset_console_tty_output_coding_system):
|
|
8101 Force redrawing tty frame.
|
428
|
8102
|
438
|
8103 2000-01-10 Didier Verna <didier@xemacs.org>
|
428
|
8104
|
438
|
8105 * redisplay.c (generate_fstring_runes): fix size computation bug.
|
428
|
8106
|
438
|
8107 2000-01-09 William M. Perry <wmperry@aventail.com>
|
428
|
8108
|
438
|
8109 * gpmevent.c: (gpm_next_event_cb): Don't return value from void function.
|
428
|
8110
|
438
|
8111 2000-01-09 Andy Piper <andy@xemacs.org>
|
428
|
8112
|
438
|
8113 * glyphs-msw.c: index -> i to avoid shadows.
|
|
8114 (xbm_create_bitmap_from_data): make static.
|
|
8115 (check_valid_string_or_int): deleted.
|
|
8116 (mswindows_control_wnd_proc): message -> msg to avoid shadows.
|
428
|
8117
|
438
|
8118 * glyphs-x.c (x_update_subwindow): remove unused args.
|
428
|
8119
|
438
|
8120 * glyphs.c (glyph_image_instance): return the thing. Don't set the
|
|
8121 back pointer - this is done in allocate_image_instance.
|
|
8122 (query_string_font): return Qnil to make the compiler happy.
|
|
8123 (unmap_subwindow): set to ~0 to make the compiler happy.
|
|
8124 (glyph_query_geometry): comment out until used.
|
|
8125 (glyph_layout): ditto.
|
428
|
8126
|
438
|
8127 2000-01-09 Hrvoje Niksic <hniksic@iskon.hr>
|
428
|
8128
|
438
|
8129 * insdel.c (signal_after_change): Remove extraneous unbind_to().
|