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