274
|
1 1998-04-10 Kirill M. Katsnelson <kkm@kis.ru>
|
|
2
|
|
3 * callproc.c (init_callproc): Correctly initialize
|
|
4 `shell-file-name' for WINDOWSNT
|
|
5
|
|
6 * emacs.c (main_1): Properly called new functions (see symsinit.h
|
|
7 entry for which).
|
|
8
|
|
9 * event-msw.c (struct ntpipe_slurp_stream):
|
|
10 (slurp_thread):
|
|
11 (make_ntpipe_input_stream):
|
|
12 (get_ntpipe_input_stream_waitable):
|
|
13 (get_ntpipe_input_stream_param):
|
|
14 (ntpipe_slurp_reader):
|
|
15 (ntpipe_slurp_closer):
|
|
16 (init_slurp_stream): Win32 pipe input stream implementation.
|
|
17 (struct ntpipe_shove_stream):
|
|
18 (shove_thread):
|
|
19 (make_ntpipe_output_stream):
|
|
20 (get_ntpipe_output_stream_param):
|
|
21 (ntpipe_shove_writer):
|
|
22 (ntpipe_shove_was_blocked_p):
|
|
23 (ntpipe_shove_flusher):
|
|
24 (ntpipe_shove_closer):
|
|
25 (init_shove_stream): Win32 pipe output stream implementation.
|
|
26 (mswindows_enqueue_process_event): Dispatch helper.
|
|
27 (find_waitable_handle):
|
|
28 (add_waitable_handle):
|
|
29 (remove_waitable_handle): New three, waitable handles handling.
|
|
30 (mswindows_need_event_in_modal_loop): Simplified.
|
|
31 (mswindows_need_event): Simplified.
|
|
32 (mswindows_need_event): Generate process events on process output;
|
|
33 kick status_notify when a process ends.
|
|
34 (mswindows_find_console): Simplified.
|
|
35 (emacs_mswindows_event_pending_p): Adjusted parameters to
|
|
36 mswindows_need_event().
|
|
37 (emacs_mswindows_next_event): Ditto.
|
|
38 (get_process_input_waitable):
|
|
39 (get_process_handle): Process select/unselect helpers.
|
|
40 (emacs_mswindows_select_process): Implemented.
|
|
41 (emacs_mswindows_unselect_process): Implemented.
|
|
42 (emacs_mswindows_quit_p): Call mswindows_drain_windows_queue()
|
|
43 directly so do not even try do dequeue process events. Saved a
|
|
44 byte and a tick.
|
|
45 (emacs_mswindows_create_stream_pair): Implemented.
|
|
46 (emacs_mswindows_delete_stream_pair): Implemented.
|
|
47 (vars_of_event_mswindows): Registered the above two.
|
|
48 (lstream_type_create_mswindows_selectable): Function called from
|
|
49 emacs.c to create two pipe lstream types.
|
|
50
|
|
51 * ntproc.c (sys_select): Disgustful brain fart this file is.
|
|
52
|
|
53 * process-nt.c: New file: Asynchronous subprocess implemenation
|
|
54 for Win32.
|
|
55
|
|
56 * process.h: Declare Fprocess_id().
|
|
57
|
|
58 * signal.c (init_signals_very_early): Conditionalize possibly
|
|
59 nonexistent signals.
|
|
60
|
|
61 * symsinit.h: Declared:
|
|
62 lstream_type_create_mswindows_selectable ()
|
|
63 process_type_create_nt ()
|
|
64 vars_of_process_nt ()
|
|
65
|
|
66 * s/windowsnt.h: Defined HAVE_WIN32_PROCESSES.
|
|
67 Removed fake SIGTRAP, SIGPIPE and SIGCHLD.
|
|
68
|
|
69 1998-04-10 Martin Buchholz <martin@xemacs.org>
|
|
70
|
|
71 * fns.c (Fnthcdr):
|
|
72 Most times through the loop will get a cons, so optimize for that.
|
|
73
|
|
74 * bytecode.c (Fbyte_code): Remove '91 vintage compiler bug workaround.
|
|
75 Add NATNUMP check for Bnth bytecode.
|
|
76 Bnth: Optimize case of n > length (list).
|
|
77 QUITs not necessary since even if list is circular, n will count
|
|
78 down to 0.
|
|
79 Bnthcdr: inline the code for nthcdr (we have a bytecode for it,
|
|
80 after all)
|
|
81 Bcdr, Bcar: Use tail recursion.
|
|
82
|
|
83 1998-04-10 Hrvoje Niksic <hniksic@srce.hr>
|
|
84
|
|
85 * redisplay.c (redisplay_window): Don't lose with negative
|
|
86 scroll_step.
|
|
87
|
|
88 1998-04-09 Hrvoje Niksic <hniksic@srce.hr>
|
|
89
|
|
90 * fileio.c (Fmake_temp_name): Don't use `+' in generated file
|
|
91 names.
|
|
92 (Fmake_temp_name): Randomize the initial values of counters.
|
|
93
|
|
94 1998-04-07 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de>
|
|
95
|
|
96 * Makefile.in.in: paths.h.in is now generated from paths.h.in.in.
|
|
97
|
|
98 * emacs.c (decode_path): Removed parsing of "::" into nil component.
|
|
99
|
|
100 1998-04-09 Martin Buchholz <martin@xemacs.org>
|
|
101
|
|
102 * lstream.c (make_filedesc_stream_1): Fix another Martin blooper.
|
|
103
|
|
104 1998-04-07 SL Baur <steve@altair.xemacs.org>
|
|
105
|
|
106 * emacs.c (Fdump_emacs): Delete superfluous open comment.
|
|
107
|
|
108 1998-04-06 SL Baur <steve@altair.xemacs.org>
|
|
109
|
|
110 * emacs.c (Fdump_emacs): Move call to disable_free_hook back to
|
|
111 Fdump_emacs where it belongs.
|
|
112
|
|
113 1998-04-07 Kirill M. Katsnelson <kkm@kis.ru>
|
|
114
|
|
115 * nt.c (sys_mkdir): Added the second unused parameter, after UNIX
|
|
116 version. Suggested by Martin.
|
|
117
|
|
118 1998-04-07 Kirill M. Katsnelson <kkm@kis.ru>
|
|
119
|
|
120 * event-msw.c (mswindows_wnd_proc): Fix member access macro names.
|
|
121
|
|
122 * frame-msw.c (mswindows_frame_property):
|
|
123 (mswindows_internal_frame_property_p):
|
|
124 (mswindows_frame_properties): Implemented for the 'left and 'top
|
|
125 properties.
|
|
126 (console_type_create_frame_mswindows): Regsitered the above.
|
|
127 (mswindows_set_title_from_bufbyte): Update title only if it has
|
|
128 really changed. This avoids a bit of flashing.
|
|
129
|
|
130 * console-msw.h (FRAME_MSWINDOWS_TITLE_CHECKSUM): To update title
|
|
131 smoother.
|
|
132 (MSWINDOWS_FRAME_*(f)): Were MSWINDOWS_FRAME_*(f). Eeek!
|
|
133
|
|
134 1998-04-06 Kazuyuki IENAGA <ienaga@jsys.co.jp>
|
|
135
|
|
136 * unexfreebsd.c: introduce FreeBSD port's patch to avoid
|
|
137 FreeBSD-current warns "Absurd new brk addr".
|
|
138
|
|
139 1998-04-06 Colin Rafferty <colin@xemacs.org>
|
|
140
|
|
141 * glyphs-x.c (struct gif_error_struct): Made the err_str point to
|
|
142 a CONST char* instead of non-const.
|
|
143 (tiff_memory_write): Add fake return statement to shut up warnings.
|
|
144
|
|
145 1998-04-06 Hrvoje Niksic <hniksic@srce.hr>
|
|
146
|
|
147 * fileio.c (Finsert_file_contents_internal): Correctly handle
|
|
148 special files larger than 32K.
|
|
149
|
|
150 1998-04-06 Hrvoje Niksic <hniksic@srce.hr>
|
|
151
|
|
152 * fileio.c (Fmake_temp_name): Don't call mktemp().
|
|
153
|
|
154 1998-04-06 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
|
155
|
|
156 * unexelf.c: include <config.h> first.
|
|
157
|
|
158 1998-04-04 Martin Buchholz <martin@xemacs.org>
|
|
159
|
|
160 * sysdep.c: Add #include <sys/termio.h> for AIXHFT as suggested
|
|
161 on c.e.x.
|
|
162
|
|
163 * nt.c:
|
|
164 * ntproc.c:
|
|
165 Change "config.h" to <config.h>. Add dire warnings to code since
|
|
166 config.h is not included first.
|
|
167
|
|
168 * powerpc.h: Avoid redefinition warning on START_FILES.
|
|
169
|
|
170 * window.c: Rename Vminibuf_scroll_window to Vminibuffer_scroll_window.
|
|
171 * hpplay.c: Rename play_gain to hp_play_gain in accordance with
|
|
172 coding standards.
|
|
173
|
|
174 * frame-x.c (x_lower_frame):
|
|
175 (x_raise_frame_1): Clarify code. Save a nanosecond if frame not
|
|
176 visible.
|
|
177
|
|
178 * fileio.c (Fmake_temp_name): Use static CONST suffix; save a
|
|
179 nanosecond.
|
|
180
|
|
181 1998-04-05 Amir J. Katz <amir@ndsoft.com>
|
|
182
|
|
183 * sysproc.h: Added #include <sys/types.h> before <sys/socket.h>
|
|
184 otherwise callproc.c does not compile on SunOS 4.1.4 with gcc 2.8.1
|
|
185
|
|
186 * sysdep.h: strerror() does not return CONST in gcc 2.8.1
|
|
187
|
|
188 1998-04-05 Hrvoje Niksic <hniksic@srce.hr>
|
|
189
|
|
190 * redisplay.c (generate_fstring_runes): Grok specifiers and
|
|
191 symbols indirecting to specifiers.
|
|
192
|
|
193 1998-04-06 Olivier Galibert <galibert@pobox.com>
|
|
194
|
|
195 * events.c (print_event): XINT() may return a long.
|
|
196
|
|
197 * insdel.c (make_gap): Thou shan't cast EMACS_INT_MAX to int.
|
|
198 (buffer_insert_string_1): ditto.
|
|
199
|
|
200 * regex.c (print_partial_compiled_pattern): Neither EMACS_INTs nor
|
|
201 ptrdiff_t are portably printable as an int.
|
|
202
|
|
203 * redisplay.c (window_line_number): Don't assume that an EMACS_INT
|
|
204 in an int.
|
|
205
|
|
206 * alloc.c (report_pure_usage): Don't assume that a size_t is
|
|
207 displayable as an int.
|
|
208
|
|
209 1998-04-06 SL Baur <steve@altair.xemacs.org>
|
|
210
|
|
211 * process-unix.c: Fix typo in #ifdef.
|
|
212 From Hrvoje Niksic <hniksic@srce.hr>
|
|
213
|
|
214 1998-04-06 Olivier Galibert <galibert@pobox.com>
|
|
215
|
|
216 * unexelfsgi.c (unexec): Don't treat the sbss section as bss if it
|
|
217 isn't one. Needed for irix 6.5.
|
|
218
|
|
219 1998-04-05 Martin Buchholz <martin@xemacs.org>
|
|
220
|
|
221 * sysdep.h: Two prototypes that weren't properly size_t'ed
|
|
222
|
|
223 1998-04-04 Martin Buchholz <martin@xemacs.org>
|
|
224
|
|
225 * ralloc.c: mallopt <==> malloc.h.
|
|
226
|
272
|
227 1998-04-04 Martin Buchholz <martin@xemacs.org>
|
|
228
|
|
229 * emacs.c: #include <paths.h>, not "paths.h"
|
|
230 This is a standard bug. It manifests if you configure in the
|
|
231 source tree, then configure elsewhere with --srcdir.
|
|
232 Remove misleading PATH_EXEC comment; PATH_PACKAGEPATH is also used.
|
|
233
|
|
234 1998-04-04 Olivier Galibert <galibert@pobox.com>
|
|
235
|
|
236 * s/386bsd.h: Removed obsolete define.
|
|
237
|
|
238 1998-04-04 Olivier Galibert <galibert@pobox.com>
|
|
239
|
|
240 * s/386-ix.h: Removed useless define.
|
|
241
|
|
242 * sysdep.c (insque): Removed. Not used anywhere in the code.
|
|
243
|
|
244 1998-04-04 Olivier Galibert <galibert@pobox.com>
|
|
245
|
|
246 * process-unix.c (unix_kill_child_process): Use TIOCSIGSEND or
|
|
247 TIOCSIGNAL as needed.
|
|
248
|
|
249 * s/usg5-4.h: Remove kludgy TIOCSIGSEND #define which breaks on
|
|
250 irix 6.5.
|
|
251
|
|
252 1998-03-28 Hrvoje Niksic <hniksic@srce.hr>
|
|
253
|
|
254 * insdel.c (emchar_string_displayed_columns): Simplify for
|
|
255 non-Mule case.
|
|
256
|
|
257 * events.c (WRONG_EVENT_TYPE_FOR_PROPERTY): Issue nicer output.
|
|
258
|
|
259 1998-04-01 Martin Buchholz <martin@xemacs.org>
|
|
260
|
|
261 * sysdir.h (sys_mkdir):
|
|
262 * sysfile.h (sys_read):
|
|
263 (sys_write):
|
|
264 (sys_chmod):
|
|
265 (sys_creat):
|
|
266
|
|
267 * sysdep.c (sys_read_1):
|
|
268 (sys_read):
|
|
269 (sys_write_1):
|
|
270 (sys_write):
|
|
271 (sys_mkdir):
|
|
272 (sys_readlink):
|
|
273 (sys_chmod):
|
|
274 (sys_creat):
|
|
275
|
|
276 * nt.c (sys_read):
|
|
277 (sys_chmod):
|
|
278 (sys_creat):
|
|
279 (sys_write): Change types of sys_* in accordance with published
|
|
280 standards. Use size_t and mode_t instead of unsigned int and int.
|
|
281
|
|
282 1998-04-03 Martin Buchholz <martin@xemacs.org>
|
|
283
|
|
284 * config.h.in (enum_field):
|
|
285 * lisp-union.h:
|
|
286 * extents.h:
|
|
287 * redisplay.c (add_margin_runes):
|
|
288 Prefer enums for use as bitfields in preference to unsigned int,
|
|
289 but allow the possibility to suppress it if a compiler disallows
|
|
290 it or emits annoying warnings. Currently only __SUNPRO_C cc -Xc
|
|
291 used unsigned ints.
|
|
292
|
|
293 * event-stream.c: Fixup DEFVAR for
|
|
294 Vcomposed_character_default_binding; Real bug!
|
|
295 * event-msw.c: Rename mswindows_button2* to mswindows_mouse_button*
|
|
296 * emacs.c: Rename suppress_early_backtrace to
|
|
297 suppress_early_error_handler_backtrace
|
|
298 * objects-x.c: Rename handle_nonfull_spec_fonts to
|
|
299 x_handle_non_fully_specified_fonts
|
|
300 * lread.c: Rename puke_on_fsf_keys to
|
|
301 fail-on-bucky-bit-character-escapes
|
|
302 * lread.c:
|
|
303 * doc.c: Rename Vdoc_file_name to Vinternal_doc_file_name
|
|
304 * fileio.c:
|
|
305 * bufslots.h:
|
|
306 * buffer.c: Rename save_length to saved_size
|
|
307 * alloc.c: Rename pureptr to pure_bytes_used
|
|
308 * abbrev.c: Rename last_abbrev_point to last_abbrev_location
|
|
309 * lisp.h:
|
|
310 DEFVAR_* are supposed to be named following a standard convention.
|
|
311
|
|
312 1998-04-03 Martin Buchholz <martin@xemacs.org>
|
|
313
|
|
314 * callint.c:
|
|
315 * ralloc.c:
|
|
316 * data.c:
|
|
317 * eldap.c:
|
|
318 * extents.c:
|
|
319 * frame-msw.c:
|
|
320 * frame-x.c:
|
|
321 * general.c:
|
|
322 * process.c:
|
|
323 * xselect.c:
|
|
324 Rationalize defsymbol handling.
|
|
325 defsymbols are supposed to have equivalent C and Lisp names, for
|
|
326 consistency. At least one real bug (end-glyph-layout) fixed.
|
|
327 Move multiply defsymbol'ed stuff into general.c.
|
|
328
|
|
329 1998-04-03 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de>
|
|
330
|
|
331 * m/ibmrs6000.inp: Removed; obsoleted by configure.in changes.
|
|
332
|
|
333 1998-04-03 Martin Buchholz <martin@xemacs.org>
|
|
334
|
|
335 * console-tty.c (Fset_console_tty_input_coding_system):
|
|
336 (Fset_console_tty_output_coding_system):
|
|
337 Input/Output and encoding/decoding were reversed.
|
|
338
|
|
339 1998-04-02 SL Baur <steve@altair.xemacs.org>
|
|
340
|
|
341 * m/powerpc.h: Remove LD_SWITCH_MACHINE for Linux.
|
|
342
|
|
343 1998-04-02 Greg Klanderman <greg@alphatech.com>
|
|
344
|
|
345 * window.c (set_window_pixsize): Move up call to
|
|
346 check_min_window_sizes.
|
|
347
|
|
348 * indent.c (vmotion_1): renamed from vmotion() and added
|
|
349 additional argument to optionally return the pixel motion.
|
|
350 (vpix_motion): Helper for vmotion_1.
|
|
351 (vmotion): Wrapper - just call vmotion_1() with the right args.
|
|
352 (Fvertical_motion_pixels): New function.
|
|
353 (syms_of_indent): DEFSUBR it.
|
|
354
|
|
355 1998-04-02 Martin Buchholz <martin@xemacs.org>
|
|
356
|
|
357 * xselect.c:
|
|
358 * event-Xt.c:
|
|
359 * emacs.c:
|
|
360 Remove last vestiges of #ifdef EPOCH code. It had no chance of
|
|
361 working anyways. In honour of seeing Marc Andreesen in person for
|
|
362 the first time today.
|
|
363
|
|
364 1998-04-01 Martin Buchholz <martin@xemacs.org>
|
|
365
|
|
366 * extents.h:
|
|
367 * lisp-union.h:
|
|
368 Don't use enums as bitfields - only unsigned ints.
|
|
369 Fixes: warning: nonportable bit-field type
|
|
370
|
|
371 * eval.c (call_with_suspended_errors): More volatilizing to
|
|
372 appease Sunpro cc.
|
|
373
|
|
374 * mem-limits.h:
|
|
375 * ralloc.c: Remove #undef NULL; they're not even used!
|
|
376
|
|
377 * process-unix.c (unix_send_process): send_process is a method, so
|
|
378 we can't include volatile in the prototype. We make the argument
|
|
379 non-volatile, make a volatile copy, and then use that instead.
|
|
380
|
|
381 * frame-x.c (x_delete_frame): The `frame' variable is initialized
|
|
382 but not actually used.
|
|
383
|
|
384 * Makefile.in.in (xselect.o): The last line of b34-pre2's
|
|
385 src/Makefile.in.in contains a dependency that should have been
|
|
386 patched away.
|
|
387 (mostlyclean): Remove the removal of depend.* - no such files
|
|
388 exist anymore
|
|
389
|
|
390 * make-src-depend: include a dependency on only one of
|
|
391 lisp-union.h or lisp-disunion.h.
|
|
392
|
|
393 1998-04-01 Martin Buchholz <martin@xemacs.org>
|
|
394
|
|
395 * specifier.c (specifier_instance_from_inst_list): A nanosecond
|
|
396 saved is a nanosecond earned.
|
|
397
|
|
398 1998-03-31 Greg Klanderman <greg@alphatech.com>
|
|
399
|
|
400 * redisplay.c (update_line_start_cache): Fix bug involving
|
|
401 invisible text in which the line_start_cache gets hosed.
|
|
402
|
|
403 Sun Mar 29 1998 Andy Piper <andyp@parallax.co.uk>
|
|
404
|
|
405 * console-msw.h: define FRAME_MSWINDOWS_CDC.
|
|
406
|
|
407 * frame-msw.c: (mswindows_set_frame_icon) new function. Works but
|
|
408 no masks as yet.
|
|
409
|
|
410 * glyphs-msw.c: GNUize the code. Fix 24bpp display and make the
|
|
411 default. Add managment of icons.
|
|
412
|
|
413 * glyphs-msw.h: add icon attributes.
|
|
414
|
|
415 * redisplay-msw.c: (mswindows_output_pixmap) remove unused cursor
|
|
416 code.
|
|
417
|
|
418 * objects-msw.c: eliminate char subscript warning.
|
|
419
|
|
420 1998-04-01 SL Baur <steve@altair.xemacs.org>
|
|
421
|
|
422 * sysdll.c (dll_close): fix typo.
|
|
423 Suggested by Marcus Thiessel <marcus_thiessel@hp.com>
|
|
424
|
|
425
|
|
426 1998-03-28 Kyle Jones <kyle_jones@wonderworks.com>
|
|
427
|
|
428 * device.c (Fset_device_class): Recompute cached
|
|
429 specifiers everywhere if device class is changed.
|
|
430 Set various redisplay flags so that the device's
|
|
431 various frames are redisplayed.
|
|
432
|
|
433 1998-03-31 SL Baur <steve@altair.xemacs.org>
|
|
434
|
|
435 * lrecord.h (DECLARE_NONRECORD): Remove redundant paren.
|
|
436 Suggested by Martin Buchholz <martin@xemacs.org>
|
|
437
|
|
438 1998-04-01 Kirill M. Katsnelson <kkm@kis.ru>
|
|
439
|
|
440 * gui.c (gui_item_display_flush_left): Fix suffix length.
|
|
441
|
|
442 1998-04-01 Kirill M. Katsnelson <kkm@kis.ru>
|
|
443
|
|
444 * s/windowsnt.h: Defined SIZEOF_LONG_LONG and SIZEOF_VOID_P
|
|
445
|
|
446 * dired-msw.c: Included <limits.h>
|
|
447
|
|
448 * config.h.in (VOID_P_BITS): Fixed so that uses SIZEOF_VOID_P
|
|
449
|
|
450 1998-03-31 SL Baur <steve@altair.xemacs.org>
|
|
451
|
|
452 * glyphs.c (image_instantiate_cache_result): Correct order of
|
|
453 parameters to Fputhash.
|
|
454 Suggested by Kirill M. Katsnelson <kkm@kis.ru>
|
|
455
|
|
456 1998-03-30 Martin Buchholz <martin@xemacs.org>
|
|
457
|
|
458 * redisplay.c (create_right_glyph_block): glyph_type should really
|
|
459 be glyph_layout.
|
|
460
|
|
461 1998-03-29 Martin Buchholz <martin@xemacs.org>
|
|
462
|
|
463 * sysfile.h: Move all encapsulations from lisp.h/emacsfns.h into
|
|
464 sysfile.h. Users of the functionality herein will have to
|
|
465 #include sysfile.h.
|
|
466 Check all .o files for missing #includes.
|
|
467 * config.h.in:
|
|
468 Discovered that config.h.in was missing ENCAPSULATE_CLOSEDIR, as a
|
|
469 result of fixing the above.
|
|
470
|
|
471 * gui.c (gui_item_add_keyval_pair): We should not use the idiom
|
|
472 error ("%S", lisp_object) in C code.
|
|
473 I converted the code to use signal_simple_error_2 instead.
|
|
474 (signal_too_long_error): Ditto.
|
|
475
|
|
476 * glyphs.c (image_instantiate_cache_result): Use XC[AD]R instead
|
|
477 of Fc[ad]r. This is always called with valid conses, and in fact,
|
|
478 already assumed it.
|
|
479
|
|
480 * font-lock.c (find_context): Use context_none with context
|
|
481 instead of ccontext_none.
|
|
482
|
|
483 * fns.c (Flength): The CONSP and NILP code can be combined.
|
|
484 Change the name of the arg to SEQUENCE from OBJ.
|
|
485 (Fnthcdr): CHECK_NATNUM instead of CHECK_INT. Optimize out Fcdr calls.
|
|
486 (Felt): Change argument from seq to sequence to match docstring.
|
|
487
|
|
488 1998-03-28 Martin Buchholz <martin@xemacs.org>
|
|
489
|
|
490 * fns.c (string_putprop):
|
|
491 (string_getprop): Make method functions static.
|
|
492
|
|
493 * window.c (find_window_by_pixel_pos): Warning suppression.
|
|
494
|
|
495 * imgproc.c (splitbox): Warning suppression.
|
|
496
|
|
497 * redisplay-x.c (x_output_eol_cursor): Remove redundant XSETWINDOW.
|
|
498
|
|
499 * glyphs-x.c (signal_image_error):
|
|
500 (signal_image_error_2):
|
|
501 (convert_EImage_to_XImage): Make functions static.
|
|
502
|
|
503 * editfns.c (Fbuffer_size): Rename the `F' function to
|
|
504 Fbuffer_size in accordance with coding standards.
|
|
505
|
|
506 * dll.c (Fdll_open): Fix up data conversion.
|
|
507 Provide auxiliary function maybe_call_library_function().
|
|
508
|
|
509 * device-x.c (get_x_display): make function static.
|
|
510
|
|
511 * data.c (Fcar): Should generate listp, not consp error.
|
|
512 (Fcdr): Should generate listp, not consp error.
|
|
513
|
|
514 1998-03-27 Martin Buchholz <martin@xemacs.org>
|
|
515
|
|
516 * console-tty.c (free_tty_console_struct):
|
|
517 Replace con->console_data with CONSOLE_type_DATA (con)
|
|
518
|
|
519 * *.[ch]: C++ compilability of xemacs, on Linux and Solaris.
|
|
520
|
|
521 * casetab.c (Fcase_table_p): Optimize.
|
|
522
|
|
523 * eval.c:
|
|
524 * bytecode.c:
|
|
525 Rename Fcondition_case_3 to condition_case_3 - it's not a DEFUN.
|
|
526
|
|
527 * buffer.h:
|
|
528 Remove all *BUFFER_OR_STRING* macros - unused.
|
|
529 (memind_to_bytind): Merge two versions of function by moving
|
|
530 #ifdef ERROR_CHECK_BUFPOS into the function body.
|
|
531 (*_DATA_ALLOCA*): get types correct. rewrite for clarity.
|
|
532
|
|
533 * balloon_help.c (balloon_help_destroy): rearrange order of
|
|
534 functions, and remove prototype from header file.
|
|
535
|
|
536 * alloc.c (deadbeef_memory): Rewrite. Use size_t for clarity.
|
|
537 Don't bother with the left-over bytes, since in practice we will
|
|
538 always get called with a size multiple of 4.
|
|
539 (Fmake_list): CHECK_NATNUM instead of CHECK_INT
|
|
540 (vector[4567]): Currently unused; ifdef out.
|
|
541 (make_pure_float): make function static.
|
|
542 (garbage_collect_1): Optimize.
|
|
543
|
|
544 1998-03-23 Martin Buchholz <martin@xemacs.org>
|
|
545
|
|
546 * marker.c (print_marker): Fix compiler warning, real bug!
|
|
547
|
|
548 * device.h (MARK_DEVICE_FRAMES_FACES_CHANGED):
|
|
549 * frame.h (MARK_FRAME_FACES_CHANGED):
|
|
550 (MARK_FRAME_TOOLBARS_CHANGED):
|
|
551 (MARK_FRAME_SIZE_CHANGED):
|
|
552 (MARK_FRAME_CHANGED):
|
|
553 (MARK_FRAME_WINDOWS_CHANGED):
|
|
554 (MARK_FRAME_WINDOWS_STRUCTURE_CHANGED):
|
|
555 Fix multiple evaluation of macro arguments.
|
|
556 Macros are a fact of life. Callers have to use temp variables to
|
|
557 avoid multiple evaluation of arguments.
|
|
558
|
|
559 * data.c (Ftrue_list_p): New function, with obvious meaning.
|
|
560 This is terminology from Cltl2.
|
|
561 Also define a corresponding macro TRUE_LIST_P.
|
|
562
|
|
563 * device-x.c (validify_resource_component): Optimize. Rename.
|
|
564 Use the standard technique of using a precomputed table of valid chars.
|
|
565
|
|
566 (x_get_resource_prefix):
|
|
567 (Fx_get_resource):
|
|
568 (Fx_get_resource_prefix):
|
|
569 Avoid fixed buffer sizes. Use a char_dynarr.
|
|
570 Run validify_resource_component on all computed components.
|
|
571
|
|
572 * lisp.h: Define a char_dynarr type.
|
|
573
|
|
574 1998-03-22 Martin Buchholz <martin@xemacs.org>
|
|
575
|
|
576 * fns.c (Fcopy_alist): Optimize.
|
|
577
|
|
578 * alloc.c (acons): New function. Now used in the C code.
|
|
579 Definition in cl.el is commented out. Add docstring.
|
|
580 Use acons in functions which create alists.
|
|
581 * lisp/cl.el (acons): Add docstring. Really otta be a macro, tho.
|
|
582
|
|
583 * buffer.c (Fbuffer_memory_usage):
|
|
584 * window.c (Fwindow_memory_usage):
|
|
585 Clean up horrible consing code using new acons function.
|
|
586 Fix incorrect value reported for gap-overhead.
|
|
587
|
|
588 * fns.c (Fmember):
|
|
589 (Fold_member):
|
|
590 (Fmemq):
|
|
591 (Fold_memq):
|
|
592 (memq_no_quit):
|
|
593 (Fassoc):
|
|
594 (Fold_assoc):
|
|
595 (Fassq):
|
|
596 (Fold_assq):
|
|
597 (assq_no_quit):
|
|
598 (Frassoc):
|
|
599 (Fold_rassoc):
|
|
600 (Frassq):
|
|
601 (Fold_rassq):
|
|
602 (rassq_no_quit):
|
|
603 (Fdelete):
|
|
604 (Fold_delete):
|
|
605 (Fdelq):
|
|
606 (Fold_delq):
|
|
607 (delq_no_quit):
|
|
608 (delq_no_quit_and_free_cons):
|
|
609 (Fremassoc):
|
|
610 (Fremassq):
|
|
611 (remassq_no_quit):
|
|
612 (Fremrassoc):
|
|
613 (Fremrassq):
|
|
614 (remrassq_no_quit):
|
|
615 (Fnreverse):
|
|
616 (Freverse):
|
|
617 (Fnthcdr):
|
|
618 Optimize.
|
|
619 Replace calls to Fcar, Fcdr, Fsetcar with XCAR and XCDR.
|
|
620 Simplify logic.
|
|
621 Many of these functions wouldn't QUIT if called on cyclic lists.
|
|
622 e.g. try (progn (setq x '(nil)) (setcdr x x) (reverse x))
|
|
623 One benchmark of delq showed it to be 3 times faster.
|
|
624
|
|
625 * emacs.c:
|
|
626 * database.c:
|
|
627 Cleanup of database functions.
|
|
628 Make the get_subtype and get_type methods return Lisp_Objects,
|
|
629 instead of C strings. No more need for both dbm_type and dbm_lisp_type.
|
|
630 Rewrite the doc strings to be consistent with XEmacs tradition.
|
|
631 Replace old `dbm' names with `database'.
|
|
632 Rename struct database to struct Lisp_Database.
|
|
633 Rename DEFUN arguments to `database', when applicable.
|
|
634
|
|
635 * buffer.c:
|
|
636 * chartab.c:
|
|
637 * console.c:
|
|
638 * data.c:
|
|
639 * database.c:
|
|
640 * device.c:
|
|
641 * elhash.c:
|
|
642 * eval.c:
|
|
643 * event-stream.c:
|
|
644 * extents.c:
|
|
645 * faces.c:
|
|
646 * frame.c:
|
|
647 * glyphs.c:
|
|
648 * keymap.c:
|
|
649 * lstream.c:
|
|
650 * mule-charset.c:
|
|
651 * mule-coding.c:
|
|
652 * objects.c:
|
|
653 * opaque.c:
|
|
654 * process.c:
|
|
655 * rangetab.c:
|
|
656 * specifier.c:
|
|
657 * symbols.c:
|
|
658 * tooltalk.c:
|
|
659 * window.c:
|
|
660 Place DEFINE_LRECORD_* after definition of static object methods, to
|
|
661 avoid redundant declarations.
|
|
662
|
|
663 * console.c:
|
|
664 * console.h:
|
|
665 * device.c:
|
|
666 * device.h:
|
|
667 * extents.c:
|
|
668 * extents.h:
|
|
669 * frame.c:
|
|
670 * frame.h:
|
|
671 * glyphs.c:
|
|
672 * glyphs.h:
|
|
673 * lisp.h:
|
|
674 * lstream.c:
|
|
675 * lstream.h:
|
|
676 * signal.c:
|
|
677 * specifier.c:
|
|
678 * specifier.h:
|
|
679 Eliminate MAC_* macros.
|
|
680 The MAC_ macros use non-standard comiler extenstions which cause
|
|
681 gcc to generate bad code on Sparc/Solaris. Attractive though the
|
|
682 idea of using those compiler extensions is, they are just not
|
|
683 robust enough to use in the real world. So we eliminate them.
|
|
684 We put up with some sub-optimalities, like macros with multiple
|
|
685 evaluation. Such is life with C. The MAC_ macros were pretty
|
|
686 darn ugly anyways. We CAN use inline functions, since the advent
|
|
687 of C++ means that compilers must support those anyways.
|
|
688
|
|
689 1998-03-21 Martin Buchholz <martin@xemacs.org>
|
|
690
|
|
691 * alloc.c (list*): Optimize recursion levels.
|
|
692
|
|
693 * alloc.c: Add debugger support via enum dbg_constants.
|
|
694 * gdbinit: Complete rewrite.
|
|
695 * gdbinit.union: Remove
|
|
696 * gdbinit.pre-4.14: Remove
|
|
697 * dbxrc: Complete rewrite.
|
|
698 * man/xemacs-faq.texi:
|
|
699 Proper robust debugger support for gdb and Sun's dbx.
|
|
700 Support all combinations of Kylish DEFINEs.
|
|
701 Work out of the box with no user customizations.
|
|
702 See the updated faq for details.
|
|
703
|
|
704 * emacsfns.h: Remove. Move declarations to lisp.h
|
|
705 * dynarr.h: Remove. Move declarations to lisp.h
|
|
706 * lisp.h.
|
|
707 Optimize header file handling to improve compile time over a network.
|
|
708 Introduce EXFUN macro for external declaration to correspond to DEFUN.
|
|
709 Include header files only when necessary, i.e. not from lisp.h:
|
|
710 - unistd.h, limits.h, fnctl.h, blocktype.h, dynarr.h, emacsfns.h
|
|
711
|
|
712
|
|
713 * lisp.h:
|
|
714 * lisp-union.h:
|
|
715 * lisp-disunion.h:
|
|
716 Rewrite low level object frobbing.
|
|
717 Make it safe to use XSETOBJ on uninitialized Lisp_Objects.
|
|
718 (markbit might have been set otherwise)
|
|
719 Move XPRNTRVAL->XPNTR computation out of lisp-*union.h, since it
|
|
720 is union-type-independent.
|
|
721
|
|
722 * EmacsFrame.c:
|
|
723 * alloc.c:
|
|
724 * chartab.c:
|
|
725 * console.c:
|
|
726 * dialog-x.c:
|
|
727 * doc.c:
|
|
728 * elhash.c:
|
|
729 * eval.c:
|
|
730 * event-Xt.c:
|
|
731 * event-stream.c:
|
|
732 * event-unixoid.c:
|
|
733 * extents.c:
|
|
734 * faces.c:
|
|
735 * file-coding.c:
|
|
736 * frame.c:
|
|
737 * glyphs.c:
|
|
738 * insdel.c:
|
|
739 * keymap.c:
|
|
740 * lstream.c:
|
|
741 * marker.c:
|
|
742 * menubar-x.c:
|
|
743 * mule-coding.c:
|
|
744 * opaque.c:
|
|
745 * ralloc.c:
|
|
746 * rangetab.c:
|
|
747 * redisplay-msw.c:
|
|
748 * redisplay-output.c:
|
|
749 * redisplay-tty.c:
|
|
750 * redisplay-x.c:
|
|
751 * redisplay.c:
|
|
752 * scrollbar-x.c:
|
|
753 * scrollbar.c:
|
|
754 * specifier.c:
|
|
755 * symbols.c:
|
|
756 * toolbar-x.c:
|
|
757 * toolbar.c:
|
|
758 * window.c:
|
|
759 As a result of the above lisp*.h changes, we can now safely remove
|
|
760 initializations of Lisp_Objects before calling XSETOBJ on them.
|
|
761 This was only being done half the time, anyways.
|
|
762
|
|
763 * Makefile.in.in (depend): New target. calls make-src-depend.
|
|
764 * depend: New file. Generated by make-src-depend
|
|
765 * make-src-depend: New file. generates up-to-date dependencies.
|
|
766 Makefile dependencies are now automagically maintained, and
|
|
767 CORRECT. lisp.h and friends are now included in the dependencies,
|
|
768 since this complies with the principle of least astonishment.
|
|
769
|
|
770 * symbols.c (symbol_is_constant): Optimize.
|
|
771
|
|
772 1998-03-30 SL Baur <steve@altair.xemacs.org>
|
|
773
|
|
774 * frame.c (vars_of_frame): Default frame name should be InfoDock
|
|
775 for InfoDock.
|
|
776
|
|
777 1998-03-29 SL Baur <steve@altair.xemacs.org>
|
|
778
|
|
779 * emacs.c (voodoo_free_hook): ELF libraries built with newer
|
|
780 versions of GCC do horrible things in dumped binaries after exit()
|
|
781 is called.
|
|
782 (Fkill_emacs): Use it.
|
|
783
|
|
784 1998-03-28 SL Baur <steve@altair.xemacs.org>
|
|
785
|
|
786 * s/linux.h: For simplicity, do not use standard linking because
|
|
787 it is deadly with new GCC.
|
|
788
|
269
|
789 Sat Mar 28 10:16:29 1998 Andy Piper <andyp@parallax.co.uk>
|
|
790
|
|
791 * Makefile.in.in: fix fastdump target
|
|
792
|
|
793 * console-msw.h: add memory dc to frame.
|
|
794
|
|
795 * frame-msw.c: manage memory dc on frame creation/deleteion
|
|
796
|
|
797 * frame.h: mess with toolbar macros so that xemacs doesn't die
|
|
798 in redisplay with a triple build.
|
|
799
|
|
800 * g;yphs-msw.c: GNUize the code. Fix 24bpp display and make the
|
|
801 default.
|
|
802
|
|
803 * glyphs-msw.h: remove memory dc from image attributes.
|
|
804
|
|
805 * redisplay-msw.c: fix redisplay to use new frame memory dc.
|
|
806
|
|
807 * sheap.c: bump initial sheap yet again to allow byyte
|
|
808 recompilation.
|
|
809
|
|
810 * unexcw.c: fix section parsing for multiple idata and rdata
|
|
811 sections.
|
|
812
|
|
813 1998-03-27 SL Baur <steve@altair.xemacs.org>
|
|
814
|
|
815 * emacs.c: Enabled free-hook.c code if
|
|
816 LOSING_GCC_DESTRUCTOR_FREE_BUG is defined.
|
|
817
|
|
818 1998-03-28 Kyle Jones <kyle_jones@wonderworks.com>
|
|
819
|
|
820 * Fixed display bug where changes to builtin glyphs like
|
|
821 Vcontrol_arrow_glyph would not be propagated
|
|
822 immediately to the display.
|
|
823
|
|
824 * device.h: Added glyphs_changed field to device
|
|
825 struct. Created MARK_DEVICE_GLYPHS_CHANGED macro.
|
|
826
|
|
827 * frame.h: Added glyphs_changed field to frame
|
|
828 struct. Created MARK_FRAME_GLYPHS_CHANGED macro.
|
|
829
|
|
830 * redisplay.h: Declared glyph_changed and
|
|
831 glyph_changed_set variables, mimicking clip_changed
|
|
832 and clip_changed_set. New macro MARK_GLYPHS_CHANGED.
|
|
833
|
|
834 * redisplay.c: Defined glyph_changed and
|
|
835 glyph_changed_set variables, mimicking
|
|
836 clip_changed and clip_changed_set.
|
|
837
|
|
838 (redisplay_window): Reset the window's glyph cache is
|
|
839 f->glyphs_changed is non-zero. Call regenerate_window
|
|
840 if f->glyphs_changed is non-zero.
|
|
841
|
|
842 (redisplay_frame): Clear f->glyphs_changed after
|
|
843 successful redisplay of all windows on frame.
|
|
844
|
|
845 (redisplay_device): Redisplay frame if f->glyphs_changed
|
|
846 is non-zero. Clear d->glyphs_changed after successful
|
|
847 redisplay of all frames on device
|
|
848
|
|
849 (redisplay_without_hooks): Redisplay devices if
|
|
850 glyphs_changed is non-zero. Redisplay an individual
|
|
851 device if d->glyphs_changed is non-zero. Clear
|
|
852 glyphs_changed after successful redisplay of all
|
|
853 devices.
|
|
854
|
|
855 (redisplay_glyphs_changed): Dropped use of
|
|
856 MARK_CLIP_CHANGED. Call MARK_FRAME_GLYPHS_CHANGED for
|
|
857 all affected frames. For locales that are not device
|
|
858 related, mark all frames.
|
|
859
|
|
860 * redisplay-output.c (compare_display_blocks):
|
|
861 Output the whole display block if f->glyphs_changed is
|
|
862 non-nil.
|
|
863
|
|
864 1998-03-27 Kyle Jones <kyle_jones@wonderworks.com>
|
|
865
|
|
866 * callproc.c (Fcall_process_internal): In the case where
|
|
867 fd_error and fd1 are the same don't close that
|
|
868 descriptor twice.
|
|
869
|
|
870 1998-03-27 SL Baur <steve@altair.xemacs.org>
|
|
871
|
|
872 * frame-x.c (x_update_frame_external_traits): Need a Lisp_Object
|
|
873 frame as well as a struct frame.
|
|
874
|
|
875 1998-03-27 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de>
|
|
876
|
|
877 * emacs.c (main_1): Reinstated PATH searching for invocation data.
|
|
878
|
|
879 1998-03-26 Kirill M. Katsnelson <kkm@kis.ru>
|
|
880
|
|
881 * menubar.c (Fmenu_find_real_submenu): See the entry for gui.h.
|
|
882
|
|
883 * menubar-msw.c (populate_menu_add_item): Used GCPRO_GUI_ITEM
|
|
884 macro to aviod warnings, in 2 places.
|
|
885 (populate_or_checksum_helper): Ditto
|
|
886 (populate_or_checksum_helper): Added placeholder for menu right
|
|
887 flash customization.
|
|
888
|
|
889 * gui.h (GCPRO_GUI_ITEM): Code which warning-free GC protects a
|
|
890 GUI_ITEM structure moved into this macro from menubar.c
|
|
891
|
|
892 * frame-x.c (x_update_frame_external_traits): Moved part of the
|
|
893 former update_EmacsFrame() here.
|
|
894 (console_type_create_frame_x): Declared the above method.
|
|
895
|
|
896 * frame-msw.c (mswindows_set_frame_properties): Do not try to
|
|
897 resize the frame if called from Fmake_frame the first time
|
|
898 (potential race condition).
|
|
899 (mswindows_init_frame_1): Fixed support for popup frames.
|
|
900 (mswindows_delete_frame): Fixed memory leak.
|
|
901 (mswindows_get_frame_parent): Implemented.
|
|
902 (mswindows_update_frame_external_traits): Moved part of the former
|
|
903 update_EmacsFrame() here.
|
|
904 (console_type_create_frame_mswindows): Declare get_frame_parent
|
|
905 and update_frame_external_traits methods.
|
|
906
|
|
907 * faces.c (update_EmacsFrame): Converted into a device method
|
|
908 `update_frame_external_traits'.
|
|
909
|
|
910 * event-msw.c (mswindows_wnd_proc, WM_SIZE): Rewrote to avoid
|
|
911 relying on an assumption on when Windows calls this handler.
|
|
912 (mswindows_find_frame): Return the frame being created if the
|
|
913 windows does not yet have associated frame object
|
|
914 (mswindows_find_frame): Casted long to Lisp_Object properly.
|
|
915
|
|
916 * device.c (window_system_pixelated_geometry): Changed to call the
|
|
917 device_implementation_flags device method.
|
|
918
|
|
919 * device-msw.c (mswindows_device_implementation_flags):
|
|
920 Implemented.
|
|
921 (console_type_create_device_mswindows): Declared the above.
|
|
922
|
|
923 * console.h (struct console_methods): Added
|
|
924 device_implementation_flags_method and
|
|
925 update_frame_external_traits_method.
|
|
926 Defined flags retuned by device_implementation_flags_method.
|
|
927
|
|
928 * console-msw.h (struct mswindows_frame): Added charheight and
|
|
929 charwidth fields.
|
|
930 Added macros for referring to these two, Rvalue.
|
|
931 Moved Windows-specific macros from frame.h here.
|
|
932 (typedef struct XEMACS_RECT_WH): Added.
|
|
933 Declared global variables.
|
|
934
|
|
935 1998-03-19 Kirill M. Katsnelson <kkm@kis.ru>
|
|
936
|
|
937 * console-msw.h: Added prototypes for
|
|
938 mswindows_protect_modal_loop() and
|
|
939 mswindows_unmodalize_signal_maybe().
|
|
940
|
|
941 * scrollbar-msw.c (mswindows_update_scrollbar_instance_status):
|
|
942 Removed redundant call to set_frame_size method.
|
|
943
|
|
944 * frame.c (Fframe_property): For a window system with pixel-based
|
|
945 geometry, convert passed char-based metrics to pixels.
|
|
946 (Fframe_properties): Ditto.
|
|
947 (Fset_frame_height): Ditto.
|
|
948 (Fset_frame_width): Ditto.
|
|
949 (Fset_frame_size): Ditto.
|
|
950 (frame_conversion_internal): Added a parameter, controlling
|
|
951 whether the function uses real char metrics or 1 when geometry is
|
|
952 pixel-based.
|
|
953 Allow NULL for output int* params.
|
|
954 (pixel_to_char_size): frame_conversion_internal() is called with
|
|
955 indication to fake font size to 1.
|
|
956 (char_to_pixel_size): Ditto.
|
|
957 (round_size_to_char): Ditto.
|
|
958 (pixel_to_real_char_size):
|
|
959 (char_to_real_pixel_size):
|
|
960 (round_size_to_real_char): New three counterparts of the above
|
|
961 metioned functions, which always use real character metrics.
|
|
962 (change_frame_size_1): Use real character metrics when computing
|
|
963 minibuffer height.
|
|
964
|
|
965 * frame.h: Prototypes for pixel_to_real_char_size(),
|
|
966 char_to_real_pixel_size(), round_size_to_real_char().
|
|
967
|
|
968 * frame-msw.c (mswindows_init_frame_1): Rewritten to support
|
|
969 system-default new window width and height.
|
|
970 (mswindows_init_frame_2): Commented out, unused.
|
|
971 (mswindows_after_init_frame): Added frame method.
|
|
972 (mswindows_set_frame_size): Reworked to support pixel base
|
|
973 geometry.
|
|
974 (mswindows_set_frame_position): Cahnged to use SetWindowPos.
|
|
975 (mswindows_lower_frame): Ditto.
|
|
976 (mswindows_set_frame_properties): Fixed to perform correct
|
|
977 calculation, and to support pixel geometry.
|
|
978 (console_type_create_frame_mswindows): init_frame_2 removed,
|
|
979 after_init_frame added.
|
|
980
|
|
981 * faces.c (default_face_height_and_width_1): Added.
|
|
982 (update_EmacsFrame): Changed method of notifying mswindwows frame,
|
|
983 so modeline border gets redrawn.
|
|
984
|
|
985 * faces.h: Prototype for default_face_height_and_width_1().
|
|
986
|
|
987 * event-msw.c (mswindows_wnd_proc, WM_SIZE): Redisplay after
|
|
988 maximize/restore window.
|
|
989 (mswindows_wnd_proc, WM_WINDOWPOSCHANGING): Do not round size to
|
|
990 char if window is maximized.
|
|
991 Use real char metrics for rounding.
|
|
992 Call DefWindowProc to process WM_GETMINMAXINFO
|
|
993 (mswindows_set_chord_timer): Changed chord timeout from 1/2 to 1/3
|
|
994 system double click time
|
|
995
|
|
996 * device.c (domain_device_type): New function.
|
|
997 (window_system_pixelated_geometry): New function.
|
|
998 (Fdomain_device_type): New function, lisp interface to
|
|
999 domain_device_type().
|
|
1000 (syms_of_device): DEFSUBRed the above.
|
|
1001
|
|
1002 * device.h: Ptorotypes for domain_device_type() and
|
|
1003 window_system_pixelated_geometry().
|
|
1004
|
|
1005 * menubar-msw.c (mswindows_update_frame_menubars): Call
|
|
1006 update_frame_menubar_maybe always.
|
|
1007
|
|
1008 1998-03-27 SL Baur <steve@altair.xemacs.org>
|
|
1009
|
|
1010 * s/hpux11.h:
|
|
1011 * s/hpux11-shr.h: New files.
|
|
1012 From Marcus Thiessel <marcus_thiessel@hp.com>
|
|
1013
|
|
1014 * Makefile.in.in: temporarily comment -lmcheck support.
|
|
1015 Suggested by Marcus Thiessel <marcus_thiessel@hp.com>
|
|
1016
|
|
1017 1998-03-26 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de>
|
|
1018
|
|
1019 * emacs.c (vars_of_emacs): Fixed bug: Now respects configure
|
|
1020 setting of inhibit-site-lisp.
|
|
1021 (main_1): inhibit-site-lisp is now exclusively
|
|
1022 configure-initialized.
|
|
1023
|
|
1024 1998-03-27 Hrvoje Niksic <hniksic@srce.hr>
|
|
1025
|
|
1026 * events.c (WRONG_EVENT_TYPE_FOR_PROPERTY): Don't feed
|
|
1027 error_with_frob() with LispObjects.
|
|
1028
|
|
1029 1998-03-26 Kirill M. Katsnelson <kkm@kis.ru>
|
|
1030
|
|
1031 * redisplay-msw.c (mswindows_output_cursor): Added parameters for
|
|
1032 character under cursor, and a flag indicating whether the cursir
|
|
1033 is over an image. Draw bar cursor always over an image glyph.
|
|
1034 Callers are changed accross the file.
|
|
1035 Honor the value of window::text_cursor_visible_p.
|
|
1036 (mswindows_output_pixmap): Cursor drawing code #if0ed.
|
|
1037 (mswindows_output_display_block): Call to output cursor after
|
|
1038 drawind an image.
|
|
1039
|
|
1040 1998-03-27 P. E. Jareth Hein <jareth@camelot-soft.com>
|
|
1041
|
|
1042 * glyphs-x.c:
|
|
1043 * imgproc.c:
|
|
1044 * imgproc.h:
|
|
1045 * glyphs-x.h: Added in a colormap variable in the X specific image
|
|
1046 struct to handle IMAGE_POINTER images which must be allocated in the
|
|
1047 default colormap of the screen. Also reformated the code to follow
|
|
1048 coding standards.
|
|
1049
|
|
1050 * glyphs.h:
|
|
1051 * glyphs.c:
|
|
1052 * glyphs-x.c: added image-conversion-error type
|
|
1053
|
|
1054 * objects-x.c (allocate_nearest_color): Corrected a minor bug involving
|
|
1055 setting the values into XColor.
|
|
1056
|
|
1057 1998-03-25 P. E. Jareth Hein <jareth@camelot-soft.com>
|
|
1058
|
|
1059 * free-hook.c (check_realloc): Handle the degerate case of realloc with
|
|
1060 a NULL value acting the same as malloc.
|
|
1061
|
|
1062 1998-03-24 Kyle Jones <kyle_jones@wonderworks.com>
|
|
1063
|
|
1064 * redisplay-x.c (x_output_eol_cursor): Use x_clear_region
|
|
1065 instead of XClearArea to erase the cursor so that background
|
|
1066 pixmaps are handled properly. New fourth parameter findex
|
|
1067 added so that it can be passed to x_clear_region.
|
|
1068
|
267
|
1069 1998-03-25 Kirill M. Katsnelson <kkm@kis.ru>
|
|
1070
|
|
1071 * process.c (Fprocess_send_eof): Close output stream before
|
|
1072 deleting stream pair.
|
|
1073 (deactivate_process): Ditto, both input and output streams.
|
|
1074
|
|
1075 * event-unixoid.c (event_stream_unixoid_delete_stream_pair): Do
|
|
1076 not close passed lstreams.
|
|
1077
|
|
1078 1998-03-24 Kirill M. Katsnelson <kkm@kis.ru>
|
|
1079
|
|
1080 * fileio.c (Ffile_readable_p): GC protect fix, MS Windows specific.
|
|
1081
|
|
1082 Mon Mar 23 22:14:12 1998 Andy Piper <andyp@parallax.co.uk>
|
|
1083
|
|
1084 * configure.in: compile in glyphs-msw.o when compiling fopr
|
|
1085 mswindows.
|
|
1086
|
|
1087 Mon Mar 23 22:14:12 1998 Andy Piper <andyp@parallax.co.uk>
|
|
1088
|
|
1089 * msw-glyphs.el: add support for xpm and bmp. change
|
|
1090 eval-and-compile to progn.
|
|
1091
|
|
1092 Mon Mar 23 22:14:12 1998 Andy Piper <andyp@parallax.co.uk>
|
|
1093
|
|
1094 * Makefile.in.in: fastdump - new target for dumping bypassing
|
|
1095 bytecompilation, DOC. Add dependencies for glyphs-msw.o. Move
|
|
1096 imgproc.o to object list.
|
|
1097
|
|
1098 * glyphs-msw.h:
|
|
1099 * glyphs-msw.c: new files adding support for xpm and bmp and
|
|
1100 EImages.
|
|
1101
|
|
1102 * redisply-msw.c: add support for outputing color pixmaps.
|
|
1103
|
|
1104 * console-msw.h: add bitspixel field to mswindows frame.
|
|
1105
|
|
1106 * device-msw.c: initialise bitspixel field in mswindows frame.
|
|
1107
|
|
1108 * glyphs-x.c (xpm_instantiate): call mswindows_xpm_instantiate if
|
|
1109 the device type is mswindows.
|
|
1110
|
|
1111 * emacs.c: call glyphs-msw.c init functions if compiling with
|
|
1112 mswindows.
|
|
1113
|
|
1114 * symsinit.h: add prototypes for glyphs-msw.c functions.
|
|
1115
|
|
1116 * sheap.c: make includes src-dir compliant.
|
|
1117
|
|
1118 * events.c: remove cygwin ^H <-> erase hack.
|
|
1119
|
|
1120 * s/cygwin32.h: remove NOMULTIPLEJOBS defn.
|
|
1121
|
|
1122 1998-03-24 P. E. Jareth Hein <jareth@camelot-soft.com>
|
|
1123
|
|
1124 * glyphs-x.c (my_jpeg_output_message): Added new function to redirect
|
|
1125 any error/warning messages from the jpeg library to XEmacs. Also
|
|
1126 get rid of an unneeded temp variable in the tiff code.
|
|
1127
|
|
1128 1998-03-14 Hrvoje Niksic <hniksic@srce.hr>
|
|
1129
|
|
1130 * insdel.c (fixup_internal_substring): Protect asserts with #ifdef
|
|
1131 ERROR_CHECK_BUFPOS.
|
|
1132
|
|
1133 * minibuf.c (scmp_1): c1 and c2 are Emchar, not Bufbyte.
|
|
1134 (Ftry_completion): Fixed typo.
|
|
1135
|
|
1136 * dired.c (file_name_completion): Removed `readfunc', a remnant of
|
|
1137 dead VMS code.
|
|
1138
|
|
1139 1998-03-13 Hrvoje Niksic <hniksic@srce.hr>
|
|
1140
|
|
1141 * dired.c (Fdirectory_files): Simplify logic.
|
|
1142
|
|
1143 * symbols.c (reject_constant_symbols): Allow setting a keyword's
|
|
1144 function slot.
|
|
1145
|
|
1146 1998-03-23 Hrvoje Niksic <hniksic@srce.hr>
|
|
1147
|
|
1148 * lread.c (readevalloop): Don't specbind Qstandard_input to
|
|
1149 READCHARFUN.
|
|
1150
|
|
1151 1998-03-09 Hrvoje Niksic <hniksic@srce.hr>
|
|
1152
|
|
1153 * lread.c (read_atom): Ditto.
|
|
1154
|
|
1155 * symbols.c (reject_constant_symbols): Do the keyword stunts only
|
|
1156 if the symbol is in Vobarray.
|
|
1157
|
|
1158 * symbols.c (reject_constant_symbols): Signal error when
|
|
1159 attempting to assign a value to a keyword, unless the value is the
|
|
1160 keyword itself.
|
|
1161
|
|
1162 * symbols.c (Fintern): Initialize symbol's ->obarray to t only
|
|
1163 when OBARRAY is Vobarray.
|
|
1164
|
|
1165 1998-03-21 Hrvoje Niksic <hniksic@srce.hr>
|
|
1166
|
|
1167 * events.c (Fmake_event): Allow creation of misc-user-events.
|
|
1168
|
|
1169 1998-03-23 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de>
|
|
1170
|
|
1171 * config.h.in, emacs.c: Changed allow-site-lisp to
|
|
1172 inhibit-site-lisp. Made -no-autoloads set inhibit-site-lisp.
|
|
1173
|
|
1174 1998-03-22 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de>
|
|
1175
|
|
1176 * <Today>: The Big Path Searching Overhaul.
|
|
1177
|
|
1178 * symsinit.h: Added declaration for complex_vars_of_emacs in
|
|
1179 emacs.c.
|
|
1180
|
|
1181 * paths.h.in: Adjusted the comments to reality as dictated by
|
|
1182 configure.
|
|
1183
|
|
1184 * filelock.c (complex_vars_of_filelock): Added support for lock
|
|
1185 directories passed in from configure.
|
|
1186
|
|
1187 * emacs.c (complex_vars_of_emacs): Added all relevant installation
|
|
1188 paths passed from configure. They all have the prefix "configure-" now.
|
|
1189
|
|
1190 * config.h.in: Added HAVE_SITE_LISP configuration option.
|
|
1191
|
|
1192 * callproc.c (init_callproc): Ripped out all the bogus path setup.
|
|
1193
|
|
1194 * Makefile.in.in: Updated all calls of "temacs -l" with absolute
|
|
1195 file names because auf the more minimalistic load-path setup in
|
|
1196 lread.c. Also set EMACSBOOTSTRAPLOADPATH on calling temacs rather
|
|
1197 than EMACSLOADPATH because EMACSLOADPATH is now more persistent than
|
|
1198 before.
|
|
1199
|
|
1200 * lread.c (init_lread): Ripped out bogus load-path setup.
|
|
1201
|
|
1202 1998-03-21 Kyle Jones <kyle_jones@wonderworks.com>
|
|
1203
|
|
1204 * frame.h: Move the check for an initialize_frame_toolbars
|
|
1205 method into FRAME_RAW_REAL_TOOLBAR_VISIBLE to avoid getting
|
|
1206 clunked by toolbar-less builds.
|
|
1207
|
|
1208 1998-03-20 SL Baur <steve@altair.xemacs.org>
|
|
1209
|
|
1210 * m/powerpc.h (LD_SWITCH_MACHINE): Fix path to ppc.ldscript.
|
|
1211
|
|
1212 1998-03-16 Hrvoje Niksic <hniksic@srce.hr>
|
|
1213
|
|
1214 * redisplay.c (window_line_number_buf): Made it larger.
|
|
1215
|
|
1216 * opaque.c (print_opaque): Ditto.
|
|
1217
|
|
1218 * lstream.c (print_lstream): Avoid `%p'.
|
|
1219
|
|
1220 * keymap.c (ensure_meta_prefix_char_keymapp): Use
|
|
1221 error_with_frob().
|
|
1222
|
|
1223 * input-method-xlib.c (EmacsXtCvtStringToXIMStyles): Allocate buf
|
|
1224 dynamically.
|
|
1225
|
|
1226 * event-Xt.c (describe_event_window): Allocate buf dynamically.
|
|
1227
|
|
1228 * doc.c (Fsubstitute_command_keys): Warn of sprintf().
|
|
1229
|
|
1230 * device-x.c (x_init_device): Allocate path dynamically.
|
|
1231 (x_init_device): Allocate buf1 and buf2 dynamically.
|
|
1232
|
|
1233 1998-03-14 Hrvoje Niksic <hniksic@srce.hr>
|
|
1234
|
|
1235 * ExternalShell.c (GetGeometry): Use a larger buffer for
|
|
1236 sprintf().
|
|
1237
|
|
1238 1998-03-19 Kirill M. Katsnelson <kkm@kis.ru>
|
|
1239
|
|
1240 * redisplay.c (point_would_be_visible): Fix
|
|
1241 window::line_cache_validation_override reference counter.
|
|
1242 (start_with_line_at_pixpos): Ditto.
|
|
1243
|
|
1244 1998-03-20 Olivier Galibert <olivier.galibert@mines.u-nancy.fr>
|
|
1245
|
|
1246 * insdel.c (bytecount_to_charcount): Use 'L' suffix on long
|
|
1247 constants probably too large for an int.
|
|
1248
|
|
1249 1998-03-18 Hrvoje Niksic <hniksic@srce.hr>
|
|
1250
|
|
1251 * lread.c (read_atom_0): Signal Qend_of_file if readcharfun
|
|
1252 returned -1.
|
|
1253 (read_escape): Ditto.
|
|
1254 (FSF_LOSSAGE): Ditto.
|
|
1255
|
|
1256 1998-03-20 SL Baur <steve@altair.xemacs.org>
|
|
1257
|
|
1258 * emacs.c: path-separator (and parse-colon-path) moved from Lisp
|
|
1259 into C because we need it for early initialization.
|
|
1260
|
|
1261 * Makefile.in.in (libmcheck): Add.
|
|
1262
|
|
1263 * config.h.in: Add HAVE_LIBMCHECK and HAVE_MCHECK_H.
|
|
1264
|
|
1265 * hash.c (grow_hashtable): Fix tests to compare against
|
|
1266 Qnull_pointer since this function may be called before any symbols
|
|
1267 or the Lisp engine is initialized.
|
|
1268
|
|
1269 * emacs.c (main_1): Restore usage of free-hook.c.
|
|
1270
|
|
1271 * free-hook.c (check_realloc): Change aborts to printfs.
|
|
1272 (check_free): Ditto.
|
|
1273
|
|
1274 1998-03-18 SL Baur <steve@altair.xemacs.org>
|
|
1275
|
|
1276 * emacs.c (Fkill_emacs): Use LIST_LOOP_DELETING because our
|
|
1277 control variable is being modified underneath us.
|
|
1278 - Avoid calling delete_console_internal on stream consoles.
|
|
1279
|
|
1280 * console-tty.c (free_tty_console_struct): NULL out pointers after
|
|
1281 xfree'ing.
|
|
1282
|
|
1283 * console-stream.c (allocate_stream_console_struct): Fix memory
|
|
1284 leak -- if the stream_console struct is already allocated, don't
|
|
1285 reallocate it.
|
|
1286 (free_stream_console_struct): Don't leave dangling freed pointer
|
|
1287 around.
|
|
1288
|
|
1289 * redisplay-output.c (redisplay_redraw_cursor): Fully bracket.
|
|
1290
|
|
1291 1998-03-17 SL Baur <steve@altair.xemacs.org>
|
|
1292
|
|
1293 * frame.c (delete_frame_internal): Correct check.
|
|
1294
|
|
1295 * imgproc.c: Include <config.h>.
|
|
1296
|
265
|
1297 1998-03-13 P. E. Jareth Hein <jareth@camelot-soft.com>
|
|
1298
|
|
1299 * glyphs-x.c: fix for upside-down TIFFs.
|
|
1300
|
|
1301 1998-03-14 Kirill M. Katsnelson <kkm@kis.ru>
|
|
1302
|
|
1303 * fileio.c (Finsert_file_contents_internal): Removed all DOS_NT
|
|
1304 specific code; rely on FILE_CODING streams instead.
|
|
1305 (Fwrite_region_internal): Ditto.
|
|
1306 (decide_buffer_type): Function removed.
|
|
1307 (buf_decide_buffer_type): Function removed.
|
|
1308 (Many places): References to DOS_NT replaced with WINDOWSNT. MSDOS-
|
|
1309 specific code removed.
|
|
1310
|
|
1311 * lread.c (Fload_internal): Removed ugly DOS style re-opening a
|
|
1312 file in text mode. '\r' is perfectly handled in readevallop().
|
|
1313
|
|
1314 * redisplay.c (decode_mode_spec): Made %t decode to "T" unconditionally.
|
|
1315
|
|
1316 * s/windowsnt.h (FILE_CODING): Define always.
|
|
1317
|
|
1318 1998-03-15 Kirill M. Katsnelson <kkm@kis.ru>
|
|
1319
|
|
1320 * s/windowsnt.h: Added prototypes for generally used functions
|
|
1321 implemented in nt.c
|
|
1322
|
|
1323 * fileio.c (Ffile_readable_p): Conditionalized declared never used
|
|
1324 variables.
|
|
1325 (Fexpand_file_name): Ditto.
|
|
1326 (check_executable): Ditto.
|
|
1327
|
|
1328 * lread.c (parse_integer): Eliminated a warning resulted from
|
|
1329 applying unary minus to unsigned int.
|
|
1330
|
|
1331 1998-03-15 Oscar Figueiredo <Oscar.Figueiredo@di.epfl.ch>
|
|
1332
|
|
1333 * eldap.c: (Fldap_search_internal): Print error information from
|
|
1334 errno when connection fails
|
|
1335
|
|
1336 1998-03-16 Hrvoje Niksic <hniksic@srce.hr>
|
|
1337
|
|
1338 * lread.c: New macro, to avoid exposing an lstream to Lisp error
|
|
1339 handlers.
|
|
1340 (reader_nextchar): Use it.
|
|
1341 (read1): Ditto.
|
|
1342
|
|
1343 1998-03-15 Kyle Jones <kyle_jones@wonderworks.com>
|
|
1344
|
|
1345 * cmds.c (Fforward_char): Dropped support for
|
|
1346 signal-error-on-buffer-boundary. Added details to
|
|
1347 doc string.
|
|
1348
|
|
1349 (Fbackward_char): Dropped support for
|
|
1350 signal-error-on-buffer-boundary by way of change to
|
|
1351 Fforward_char. Added details to doc string.
|
|
1352
|
|
1353 Definition of signal-error-on-buffer-boundary moved to
|
|
1354 lisp/simple.el.
|
|
1355
|
|
1356 * window.c (Fscroll_up): Dropped support for
|
|
1357 signal-error-on-buffer-boundary. Added details to
|
|
1358 doc string.
|
|
1359
|
|
1360 (Fscroll_down): Dropped support for
|
|
1361 signal-error-on-buffer-boundary. Added details to doc
|
|
1362 string.
|
|
1363
|
|
1364 1998-03-15 Kyle Jones <kyle_jones@wonderworks.com>
|
|
1365
|
|
1366 * redisplay-tty.c (tty_clear_frame): Record that the
|
|
1367 real location of teh cursor has been moved to 0,0.
|
|
1368 Failure to do this makes the display code believe the
|
|
1369 cursor is in a place where it is not.
|
|
1370
|
|
1371 1998-03-15 Kyle Jones <kyle_jones@wonderworks.com>
|
|
1372
|
|
1373 * console.h: Added set_final_cursor_coords method to console
|
|
1374 struct.
|
|
1375
|
|
1376 * console-tty.h: Added final_cursor_x and final_cursor_y
|
|
1377 slots to console struct. Added CONSOLE_TTY_FINAL_CURSOR
|
|
1378 macros to access them.
|
|
1379
|
|
1380 * redisplay.c (create_text_block): No longer
|
|
1381 turn off the cursor if computing a block when
|
|
1382 cursor_in_echo_area is 0 and the echo area is
|
|
1383 inactive. Needed so that the cursor will not be
|
|
1384 frozen in the minibuffer when cursor_in_echo_area
|
|
1385 is non-zero.
|
|
1386
|
|
1387 * redisplay-output.c (redisplay_move_cursor): Don't
|
|
1388 bail if we're moving the cursor in a selected
|
|
1389 minibuffer window. Needed so that simple cursor
|
|
1390 optimization can be done in the minibuffer even when
|
|
1391 cursor_in_echo_area is non-zero.
|
|
1392
|
|
1393 (redraw_cursor_in_window): Set final cursor coordinates
|
|
1394 as a special case for cursor_in_echo_area != 0, since
|
|
1395 the buffer switching between minibuffer and echo area
|
|
1396 buffer seems to confuse the normal cursor positiong
|
|
1397 code otherwise. Set final cursor coordinates in the
|
|
1398 general case before calling output_display_line.
|
|
1399
|
|
1400 * redisplay-tty.c: New function tty_set_final_cursor_coords.
|
|
1401
|
|
1402 (tty_output_end): Set logical cursor position to the final
|
|
1403 cursor position as specified in CONSOLE_TTY_CURSOR_{X,Y},
|
|
1404 and then go to it.
|
|
1405
|
|
1406 (tty_redisplay_shutdown): Changed code to use
|
|
1407 tty_set_final_cursor_coords() to go to the bottom
|
|
1408 left of the screen instead of using cmgoto()
|
|
1409
|
|
1410 (console_type_create_redisplay_tty): Declare that tty
|
|
1411 consoles have the set_final_cursor_coords method.
|
|
1412
|
|
1413 1998-03-13 Hrvoje Niksic <hniksic@srce.hr>
|
|
1414
|
|
1415 * emacs.c (main_1): Avoid snprintf(); allocate the buffer
|
|
1416 dynamically.
|
|
1417
|
|
1418 1998-03-13 P. E. Jareth Hein <jareth@camelot-soft.com>
|
|
1419
|
|
1420 * glyphs-x.c (png_instantiate): Added in override support
|
|
1421 for png backgrounds.
|
|
1422
|
|
1423 1998-03-13 P. E. Jareth Hein <jareth@camelot-soft.com>
|
|
1424
|
|
1425 * glyphs-x.c (png_instantiate): Fixed a bug that was causing
|
|
1426 overruns when attempting to display transparent pngs
|
|
1427
|
|
1428 1998-03-13 P. E. Jareth Hein <jareth@camelot-soft.com>
|
|
1429
|
|
1430 * glyphs-x.c (png_instantiate): Fix brainfart in error handling code.
|
|
1431
|
|
1432 1998-03-13 SL Baur <steve@altair.xemacs.org>
|
|
1433
|
|
1434 * emacs.c (main_1): Guard call to snprintf.
|
|
1435
|
|
1436 * config.h.in: Add HAVE_SNPRINTF.
|
|
1437
|
|
1438 1998-03-13 Kirill M. Katsnelson <kkm@kis.ru>
|
|
1439
|
|
1440 * event-stream.c (init_event_stream): Initialize mswindows event
|
|
1441 loop in stream mode if no other window systems available. Thanks
|
|
1442 to Darryl Okahata.
|
|
1443
|
|
1444 1998-03-04 Kirill M. Katsnelson <kkm@kis.ru>
|
|
1445
|
|
1446 * alloc.c (garbage_collect_1): Removed #ifndef WINDOWSNT around
|
|
1447 mark_profiling_info().
|
|
1448
|
|
1449 1998-03-11 SL Baur <steve@altair.xemacs.org>
|
|
1450
|
|
1451 * console-tty.c (Fset_console_tty_coding_system): Guard against
|
|
1452 terminal-coding-system being left unitialized by a locale.
|
|
1453 From Kazuyuki IENAGA <ienaga@jsys.co.jp>
|
|
1454
|
|
1455 1998-03-11 P. E. Jareth Hein <jareth@camelot-soft.com>
|
|
1456
|
|
1457 * config.h.in: Added in new feature check HAVE_VSNPRINT to check
|
|
1458 for safe ways to deal with vsprintf and friends.
|
|
1459
|
|
1460 * glyphs-x.c (gif_instantiate): Changed gif support to call external
|
|
1461 library Giflib 3.1. Altered GIF/JPEG/PNG formats to use new EImage
|
|
1462 format for dealing with images to better support color handling, and
|
|
1463 facilitate the change to a device-neutral implementation. Added TIFF
|
|
1464 support.
|
|
1465
|
|
1466 * Makefile.in.in: Removed all gif related files
|
|
1467
|
|
1468 * emacs.c (main_1): Removed reference to init_gif_err
|
|
1469 * symsinit.h: ditto
|
|
1470
|
|
1471 * dgif_lib.c: Removed from the source distribution
|
|
1472 * gif_err.c: ditto
|
|
1473 * gif_lib.h: ditto
|
|
1474 * gifalloc.c: ditto
|
|
1475
|
|
1476 Mon Mar 09 13:00:55 1998 Andy Piper <andyp@parallax.co.uk>
|
|
1477
|
|
1478 * file-coding.c: warning elimination
|
|
1479
|
|
1480 * ntplay.c: new file. basic implementation of sound support.
|
|
1481
|
|
1482 * redisplay-msw.c (mswindows_update_dc): cachel bug is gone so we
|
|
1483 don't need this code under cygwin.
|
|
1484
|
|
1485 * sheap.c: need large heap slop for byte compiling with three
|
|
1486 display types.
|
|
1487
|
|
1488 * sound.c: eliminate warnings. enable sound under mswindows.
|
|
1489
|
|
1490 * s/cygwin32.h: miscellaneous updates for sound support.
|
|
1491
|
|
1492 1998-03-09 SL Baur <steve@altair.xemacs.org>
|
|
1493
|
|
1494 * config.h.in: Add BITMAPDIR.
|
|
1495
|
|
1496 * glyphs-x.c (locate_pixmap_file): Assume BITMAPDIR is a
|
|
1497 colon-separated path.
|
|
1498
|
|
1499 * emacs.c (main_1): Initialize dll support with the path the
|
|
1500 binary.
|
|
1501 (make_arg_list_1): Ditto.
|
|
1502
|
|
1503 * sysdll.h: Add legalese.
|
|
1504 * sysdll.c: Ditto.
|
|
1505
|
|
1506 * sysdll.c: sysdll.h needs to be included with double quotes not
|
|
1507 angle brackets.
|
|
1508 Use RTLD_GLOBAL as an open flag if it exists.
|
|
1509
|
|
1510 1998-03-09 Martin Buchholz <Martin Buchholz <martin@xemacs.org>>
|
|
1511
|
|
1512 * eldap.c (Fldap_search_internal): call garbage_collect_1 instead
|
|
1513 of Fgarbage_collect. The two are identical except the latter
|
|
1514 generates some `fresh' garbage :)
|
|
1515
|
|
1516 1998-03-09 SL Baur <steve@altair.xemacs.org>
|
|
1517
|
|
1518 * keymap.c: Add symbols for mouse-4 and mouse-5.
|
|
1519 (define_key_check_and_coerce_keysym): Mouse-4, Mouse-5 keysym support.
|
|
1520 (syms_of_keymap): Ditto.
|
|
1521
|
|
1522 1998-01-26 Hrvoje Niksic <hniksic@srce.hr>
|
|
1523
|
|
1524 * marker.c (print_marker): Print marker's lheader.uid.
|
|
1525 (Fbuffer_has_markers_at): New function, synched with FSFmacs 20.2.
|
|
1526 (Fbuffer_has_markers_at): Disabled by default.
|
|
1527
|
|
1528 1998-01-25 Hrvoje Niksic <hniksic@srce.hr>
|
|
1529
|
|
1530 * sound.c (Fplay_sound_file): Place the result of continuable
|
|
1531 error back to FILE.
|
|
1532
|
|
1533 1998-03-09 SL Baur <steve@altair.xemacs.org>
|
|
1534
|
|
1535 * emacs.c, config.h.in: New DLL support.
|
|
1536 * sysdll.h, sysdll.c: New files.
|
|
1537 * dll.c: renamed from dlopen.c, use interface defined in sysdll.c.
|
|
1538 From William Perry <wmperry@aventail.com>
|
|
1539
|
|
1540 * eldap.h: Fix copyright.
|
|
1541 * eldap.c: Ditto.
|
|
1542
|
|
1543 1998-03-08 SL Baur <steve@altair.xemacs.org>
|
|
1544
|
|
1545 * Makefile.in.in: Add dependencies for process-unix.o.
|
|
1546
|
|
1547 1998-03-08 Kyle Jones <kyle_jones@wonderworks.com>
|
|
1548
|
|
1549 * glyphs-x.c (write_lisp_string_to_temp_file):
|
|
1550 Don't explicitly initialize conversion_out_dynarr, because
|
|
1551 doing so may cause it to be put into read-only space
|
|
1552 and modifying it later would make XEmacs crash.
|
|
1553
|
263
|
1554 1998-03-07 Kyle Jones <kyle_jones@wonderworks.com>
|
|
1555
|
|
1556 * events.h: Add do_backspace_mapping parameter to
|
|
1557 function prototype of character_to_event.
|
|
1558
|
|
1559 * events.c: Add fifth parameter to character_to_event to
|
|
1560 control the backspace mapping. In character_to_event map most
|
|
1561 characters that match tty-erase-char to the backspace keysym,
|
|
1562 but only if do_backspace_mapping paramter is non-zero.
|
|
1563
|
|
1564 (Fcharacter_to_event): Tell character_to_event() to DO
|
|
1565 backspace mapping.
|
|
1566
|
|
1567 * event-stream.c:
|
|
1568 (maybe_read_quit_event): Tell character_to_event() to DO
|
|
1569 backspace mapping.
|
|
1570
|
|
1571 (maybe_kbd_translate): Tell character_to_event() to DO backspace
|
|
1572 mapping.
|
|
1573
|
|
1574 (lookup_command_event): Tell character_to_event() to DO backspace
|
|
1575 mapping.
|
|
1576
|
|
1577 * event-unixoid.c:
|
|
1578 (read_event_from_tty_or_stream_desc): Tell character_to_event()
|
|
1579 to DO backspace mapping.
|
|
1580
|
|
1581 * keymap.c:
|
|
1582 (get_keyelt): Tell character_to_event() to NOT DO backspace
|
|
1583 mapping.
|
|
1584
|
|
1585 (define_key_parser): Tell character_to_event() to NOT DO backspace
|
|
1586 mapping.
|
|
1587
|
|
1588 (Fsingle_key_description): Tell character_to_event() to DO
|
|
1589 backspace mapping.
|
|
1590
|
|
1591 1998-03-04 Kirill M. Katsnelson <kkm@kis.ru>
|
|
1592
|
|
1593 * alloc.c (Fpurecopy): Do not mark symbols through
|
|
1594 Vpure_uninterned_symbol_table twice: hash (OBJ, nil) instead of
|
|
1595 (OBJ, OBJ).
|
|
1596
|
|
1597 1998-03-07 SL Baur <steve@altair.xemacs.org>
|
|
1598
|
|
1599 * emacs.c (shut_down_emacs): Disable forced auto-save in a crash.
|
|
1600 It causes more problems than it solves.
|
|
1601
|
|
1602 1998-03-02 Greg Klanderman <greg@alphatech.com>
|
|
1603
|
|
1604 * window.c (Fwindow_displayed_pixel_height) New function.
|
|
1605 (Fenlarge_window_pixels): New function.
|
|
1606 (Fshrink_window_pixels): New function.
|
|
1607 (window_displayed_pixel_height): New, helper for
|
|
1608 Fwindow_displayed_pixel_height.
|
|
1609 (change_window_height): Add `inpixels' argument.
|
|
1610 (syms_of_window): 3 new DEFSUBR's.
|
|
1611
|
|
1612 Thu Mar 05 12:01:35 1998 Andy Piper <andyp@parallax.co.uk>
|
|
1613
|
|
1614 * redisplay-msw.c (mswindows_output_cursor): separate getting
|
|
1615 cachel index from retrieving cachel to work around apparent bug in
|
|
1616 gcc.
|
|
1617
|
|
1618 1998-03-06 Kyle Jones <kyle_jones@wonderworks.com>
|
|
1619
|
|
1620 * events.c (character_to_event): The tty_erase_char test
|
|
1621 doesn't do anything because it's in the wrong place.
|
|
1622 Moved it to where it can take effect.
|
|
1623
|
|
1624 * dired.c (Fdirectory_files): Initialize GCPRO'ed variable.
|
|
1625
|
|
1626 * events.c (character_to_event): Never map '(control
|
|
1627 foo) to QKbackspace. Only map ASCII 8 to QKbackspace;
|
|
1628 don't map any other key.
|
|
1629
|
|
1630 1998-03-05 Kyle Jones <kyle_jones@wonderworks.com>
|
|
1631
|
|
1632 * src/redisplay-output.c (redisplay_move_cursor): Bail if
|
|
1633 cursor_in_echo_area is non-zero and we're fiddling
|
|
1634 with the cursor in a minibuffer window, since that is a
|
|
1635 special case that is handled elsewhere and this function
|
|
1636 need not handle it. Return 1 so the caller will assume we
|
|
1637 succeeded.
|
|
1638
|
|
1639 Wed Mar 04 08:55:12 1998 Andy Piper <andyp@parallax.co.uk>
|
|
1640
|
|
1641 * device.c (init_global_resources): compile in based on window
|
|
1642 system not just x.
|
|
1643
|
|
1644 * console.c (select_console_1): add mswindows console type.
|
|
1645
|
|
1646 1998-03-04 Kyle Jones <kyle_jones@wonderworks.com>
|
|
1647
|
|
1648 * redisplay-output.c (redisplay_redraw_cursor): Redraw
|
|
1649 the cursor in the minibuffer window if cursor_in_echo_area
|
|
1650 is non-zero.
|
|
1651
|
|
1652 Wed Mar 04 08:55:12 1998 Andy Piper <andyp@parallax.co.uk>
|
|
1653
|
|
1654 * emacs.c (main_1): predicate display_use to mswindows only if x
|
|
1655 is not already selected.
|
|
1656
|
|
1657 * event-msw.c: comment out non-code for HAVE_TOOLBAR case. don't
|
|
1658 compile debug_process_finalisation if x is compiled in.
|
|
1659
|
|
1660 * event-stream.c (init_event_stream): don't make X and mswindows
|
|
1661 mutually exclusive. Select msw event loop if started that way,
|
|
1662 X/tty event loop otherwise.
|
|
1663
|
|
1664 * frame.h: protect toolbar #defines from assuming ints are in
|
|
1665 toolbar_data. This happens if you have two display types compiled
|
|
1666 in and one supports toolbars and the other doesn't.
|
|
1667
|
|
1668 * s/cygwin32.h: warning elimination.
|
|
1669
|
|
1670 1998-03-03 SL Baur <steve@altair.xemacs.org>
|
|
1671
|
|
1672 * editfns.c (Ftemp_directory): New function.
|
|
1673 From Glynn Clements <glynn@sensei.co.uk>
|
|
1674
|
|
1675 * editfns.c (Ftemp_directory): Use build_ext_string.
|
|
1676
|
|
1677 1998-03-02 Martin Buchholz <Martin Buchholz <martin@xemacs.org>>
|
|
1678
|
|
1679 * symsinit.h: add prototype for syms_of_dlopen
|
|
1680
|
|
1681 1998-03-02 Kyle Jones <kyle_jones@wonderworks.com>
|
|
1682
|
|
1683 * window.c (save_window_save): save value of
|
|
1684 default_toolbar_height slot.
|
|
1685
|
|
1686 (Fset_window_configuration): restore value of
|
|
1687 default_toolbar_height slot.
|
|
1688
|
|
1689 Fri Feb 20 21:22:34 1998 Darryl Okahata <darrylo@sr.hp.com>
|
|
1690
|
|
1691 * "Fast" dired-in-C enhancements for Windows 95/NT:
|
|
1692
|
|
1693 * ntproc.c:
|
|
1694 * device-msw.c:
|
|
1695 Moved definition of `Vwin32_downcase_file_names' from ntproc.c
|
|
1696 to device-msw.c, and renamed it to
|
|
1697 `Vmswindows_downcase_file_names'. It doesn't really belong
|
|
1698 here, but I didn't want to create a new file, just for this one
|
|
1699 variable. This fixes a bug in `expand-file-name' that caused
|
|
1700 all returned filenames to be lowercased (this was supposed to be
|
|
1701 conditional upon Vmswindows_downcase_file_names, but wasn't, as
|
|
1702 it was never initialized due to obsolescence of ntproc.c). This
|
|
1703 variable is also used by the dired-in-C enhancements.
|
|
1704
|
|
1705 Also moved and renamed `Vwin32_get_true_file_attributes' to
|
|
1706 `Vmswindows_get_true_file_attributes'. This affects stat() in
|
|
1707 nt.c, and so it really does need to be initialized.
|
|
1708
|
|
1709 However, there's still one more variable in ntproc.c that still
|
|
1710 needs to be moved/renamed, `Vwin32_pipe_read_delay', but I
|
|
1711 didn't touch this, as this is a subprocess issue.
|
|
1712
|
|
1713 * dired-msw.c: New file for dired-in-C enhancements for
|
|
1714 Windows 96/NT.
|
|
1715
|
|
1716 * emacs.c: Initialization calls for dired-msw.c.
|
|
1717
|
|
1718 * nt.c (convert_time): make into public function (dired-in-C
|
|
1719 functions use it).
|
|
1720
|
|
1721 1998-02-28 Kirill M. Katsnelson <kkm@kis.ru>
|
|
1722
|
|
1723 * sysdep.h: Prototypes for the above 2 functions
|
|
1724
|
|
1725 * sysdep.c (get_pty_max_bytes): Moved here from process.c
|
|
1726 (get_eof_char): Ditto
|
|
1727
|
|
1728 * symsinit.h: Prototypes for initialization functions called from
|
|
1729 emacs.c: process_type_create_mswindows, process_type_create_unix,
|
|
1730 vars_of_process_mswindows, vars_of_process_unix.
|
|
1731
|
|
1732 * procimpl.h: New file. Includes prototypes and other stuff shared
|
|
1733 by process.c and implementation files (process-unix.c,
|
|
1734 process-msw.c in future).
|
|
1735
|
|
1736 * process.h (PROCESS_LIVE_P): Changed to test against stream
|
|
1737 existence, to avoid dependency on fds.
|
|
1738
|
|
1739 * process.c: Only process implementation independent code is now
|
|
1740 in this file. Moved the rest into process-unix.c
|
|
1741 (Fopen_network_stream_internal): Added 5th parameter, protocol
|
|
1742 family. Defaults to 'tcp/ip when unspecified.
|
|
1743
|
|
1744 * process-unix.c: New file, implementation of UNIX
|
|
1745 processes. UNIX-specific code from the old process.c is here.
|
|
1746
|
|
1747 * Lstream.c (Lstream_was_blocked_p): New function. Replaces
|
|
1748 filedesc_stream_was_blocked_p.
|
|
1749 (filedesc_was_blocked_p): Implementation of the method for
|
|
1750 filedesc stream
|
|
1751 (filedesc_stream_set_pty_flushing): set pty_flushing flag
|
|
1752 (filedesc_stream_fd): New function, returns fd of the stream
|
|
1753
|
|
1754 * lstream.h (lstream_implementation): was_blocked_p is a new
|
|
1755 optional lstream method.
|
|
1756 Added prototypes for functions in lstream.c
|
|
1757
|
|
1758 * lisp.h: (USID): Typedef for Unique Stream IDentifier. Reuqired
|
|
1759 by the new code in many places.
|
|
1760
|
|
1761 * events.h (struct event_stream): Declaration of the two mandatory
|
|
1762 event stream methods, required by process support.
|
|
1763
|
|
1764 * event-unixoid.c (event_stream_unixoid_create_stream_pair):
|
|
1765 Implementation of the method shared by TTY and X
|
|
1766 (event_stream_unixoid_delete_stream_pair): Ditto
|
|
1767
|
|
1768 * event-tty.c (emacs_tty_next_event): get_process_from_usid()
|
|
1769 instead of get_process_from_fd()
|
|
1770 (emacs_tty_create_stream_pair): New events tream method
|
|
1771 (emacs_tty_delete_stream_pair): New events tream method
|
|
1772
|
|
1773 * event-stream.c (event_stream_create_stream_pair): New event
|
|
1774 stream method
|
|
1775 (event_stream_delete_stream_pair): Ditto
|
|
1776
|
|
1777 * event-msw.c (debug_process_finalization): Although if0'ed,
|
|
1778 removed obsolete code
|
|
1779
|
|
1780 * event-Xt.c (emacs_Xt_create_stream_pair): Implementation if the
|
|
1781 new event stream method
|
|
1782 (emacs_Xt_delete_stream_pair): Ditto
|
|
1783
|
|
1784 * emacs.c (main_1): Added calls to process_type_create*() and
|
|
1785 vars_of_process()
|
|
1786
|
|
1787 * callproc.c: (many places): removed DOS support
|
|
1788
|
|
1789 1998-03-02 SL Baur <steve@altair.xemacs.org>
|
|
1790
|
|
1791 * process.c (Fprocess_status): Restore old behavior -- call
|
|
1792 Fget_process on a string argument.
|
|
1793
|
|
1794 Mon Mar 02 11:37:36 1998 Andy Piper <andyp@parallax.co.uk>
|
|
1795
|
|
1796 * file-coding.h:
|
|
1797 * file-coding.c: more cleanup by only including iso2022 stuff in a
|
|
1798 mule build. (setup_eol_coding_systems) move (T) -> :T etc.
|
|
1799
|
|
1800 * event-stream.c: (Fopen_dribble_file) Qescape_quoted only exists in
|
|
1801 mule.
|
|
1802
|
|
1803 * md5.c: remove warning.
|
|
1804
|
|
1805 * unexcw.c: move .idata -> .rdata for cygwin b19.
|
|
1806
|
|
1807 * Makefile.in.in: add msw dependencies.
|
|
1808
|
|
1809 * sheap.c: up static heap parameters.
|
|
1810
|
|
1811 * s/cygwin32.h: add prototypes to eliminate warnings.
|
|
1812
|
|
1813 1998-03-02 SL Baur <steve@altair.xemacs.org>
|
|
1814
|
|
1815 * Makefile.in.in (blddir): Import blddir.
|
|
1816 Add blddir to dump-time load-path.
|
|
1817
|
|
1818 * nas.c (play_sound_data): Add braces for clarity.
|
|
1819 (play_sound_file): Ditto.
|
|
1820
|
261
|
1821 1998-03-01 SL Baur <steve@altair.xemacs.org>
|
|
1822
|
263
|
1823 * alloc.c: Boost static vector size for breathing room. Double
|
|
1824 the size if we may be dynamically linking.
|
|
1825
|
|
1826 * dlopen.c (Fdl_open): Use RTLD_GLOBAL flag on dlopen if available.
|
|
1827
|
|
1828 * device-x.c (x_init_device): Hardcode `Emacs' as the filename
|
|
1829 containing localized menubars.
|
|
1830
|
261
|
1831 * config.h.in: Add HAVE_UNIX_PROCESSES for 20.6.
|
|
1832
|
|
1833 * alloc.c (init_alloc_once_early): Document movement of mmap
|
|
1834 enabling code to emacs.c.
|
|
1835
|
|
1836 * Makefile.in.in: Update FILE_CODING dependencies.
|
|
1837
|
|
1838 1998-03-01 Kyle Jones <kyle_jones@wonderworks.com>
|
|
1839
|
|
1840 * file-coding.c (setup_eol_coding_systems): Don't try
|
|
1841 to copy the mnemonic property of the coding system
|
|
1842 unless it is a string.
|
|
1843
|
|
1844 (allocate_coding_system): Initialize coding system
|
|
1845 struct member 'mnemonic' to Qnil. Leaving its value
|
|
1846 set to 0 causes a crash.
|
|
1847
|
|
1848 1998-03-01 SL Baur <steve@altair.xemacs.org>
|
|
1849
|
|
1850 * file-coding.c (DEFINE_SUB_CODESYS): Undo previous patch.
|
|
1851
|
|
1852 1998-03-01 Kyle Jones <kyle_jones@wonderworks.com>
|
|
1853
|
|
1854 * callint.c: Read coding system names for the 'z' and
|
|
1855 'Z' interactive specs if FILE_CODING or MULE is defined.
|
|
1856 Previously, coding system names were read only if MULE was
|
|
1857 defined.
|
|
1858
|
|
1859 * file-coding.h: Removed charset-based category types
|
|
1860 from enumerated coding_category_type if not building
|
|
1861 with MULE.
|
|
1862
|
|
1863 * file-coding.c (syms_of_mule_coding): Don't define
|
|
1864 symbols for charset-based coding systems unless
|
|
1865 building with MULE.
|
|
1866
|
|
1867 1998-02-28 SL Baur <steve@altair.xemacs.org>
|
|
1868
|
|
1869 * alloc.c (garbage_collect_1): Guard call to selected_frame so it
|
|
1870 cannot be called during GC.
|
|
1871 - Update current count of staticpro'ed objects.
|
|
1872
|
|
1873 1998-02-28 Kyle Jones <kyle_jones@wonderworks.com>
|
|
1874
|
|
1875 * menubar.c (Fmenu_find_real_submenu): Document the
|
|
1876 "use struct as array" hack. Convert struct pointer to
|
|
1877 array to avoid compiler warnings.
|
|
1878
|
|
1879 1998-02-26 SL Baur <steve@altair.xemacs.org>
|
|
1880
|
|
1881 * buffer.c (complex_vars_of_buffer): Fix DOC string for
|
|
1882 buffer-file-coding-system.
|
|
1883
|
|
1884 1998-02-26 Damon Lipparelli <lipp@primus.com>
|
|
1885
|
|
1886 * symsinit.h: syms_of_ldap() is actually syms_of_eldap().
|
|
1887
|
|
1888 * eldap.c: removed duplicates.
|
|
1889
|
|
1890 1998-02-26 SL Baur <steve@altair.xemacs.org>
|
|
1891
|
|
1892 * file-coding.c (setup_eol_coding_systems): Disable SUB_CODESYS
|
|
1893 feature -- it causes stack corruption in Mule.
|
|
1894
|
|
1895 1998-02-27 Kirill M. Katsnelson <kkm@kis.ru>
|
|
1896
|
|
1897 * events.c (character_to_event): The code which guesses TTY
|
|
1898 backspace character is conditionalized on HAVE_TTY
|
|
1899
|
|
1900 1998-02-26 SL Baur <steve@altair.xemacs.org>
|
|
1901
|
|
1902 * console.c (complex_vars_of_console): Guard tty_erase_char with
|
|
1903 HAVE_TTY.
|
|
1904 * conslots.h: Ditto.
|
|
1905
|
259
|
1906 1998-02-25 SL Baur <steve@altair.xemacs.org>
|
|
1907
|
261
|
1908 * events.c (character_to_event): Correct operations on tty_erase_char.
|
|
1909 From Martin Buchholz <martin@xemacs.org>
|
|
1910
|
259
|
1911 * file-coding.c (setup_eol_coding_systems): Unix/Binary sub
|
|
1912 coding-system display should default to the empty string.
|
|
1913 - Use '(t)' for Mac/Text mode.
|
|
1914
|
|
1915 Tue Feb 17 12:50:37 1998 Andy Piper <andyp@parallax.co.uk>
|
|
1916
|
|
1917 * Makefile.in.in: make sure clean removes msw executables. This
|
|
1918 prevents the build stalling after puresize has been adjusted. Add
|
|
1919 file-coding.o to list of objects.
|
|
1920
|
|
1921 * buffer.c:
|
|
1922 * buffer.h:
|
|
1923 * bufslots.h:
|
|
1924 * callproc.c:
|
|
1925 * console-tty.c:
|
|
1926 * emacs.c:
|
|
1927 * event-Xt.c:
|
|
1928 * event-stream.c:
|
|
1929 * glyphs-x.c:
|
|
1930 * lread.c:
|
|
1931 * md5.c:
|
|
1932 * mule-canna.c:
|
|
1933 * mule-ccl.c:
|
|
1934 * process.c:
|
|
1935 * redisplay-x.c:
|
|
1936 * redisplay.c: remove #ifdef MULE's from stuff that relates to
|
|
1937 file-coding. include file-coding.h rather than mule-coding.h
|
|
1938 where applicable.
|
|
1939
|
|
1940 * mule-coding.c: #if 0 out functionality until file-coding is
|
|
1941 split up.
|
|
1942
|
|
1943 * file-coding.h:
|
|
1944 * file-coding.c: new files. copies of mule-coding.h and
|
|
1945 mule-coding.c. The mule case is unchanged. The non-mule case
|
|
1946 removes coding relating to other charsets - iso2022, big5, sjis,
|
|
1947 ccl. (setup_eol_coding_systems) add the eol type to the subsidiary
|
|
1948 coding system mnemonics so that it shows on the modeline,
|
|
1949 currently (B) for unix style (T) for mac and dos styles.
|
|
1950
|
|
1951 * fileio.c: remove #ifdef MULE's from stuff that relates to
|
|
1952 file-coding. include file-coding.h rather than mule-coding.h where
|
|
1953 applicable. FSFMACS_SPEEDY_INSERT is gone since file coding is
|
|
1954 always on.
|
|
1955
|
|
1956 * sheap.c: (more_static_core) remove spurious \n's from error
|
|
1957 message.
|
|
1958
|
|
1959 1998-02-25 Kyle Jones <kyle_jones@wonderworks.com>
|
|
1960
|
|
1961 * lisp-disunion.h: Added XUINT macro.
|
|
1962
|
|
1963 * lisp-union.h: Added XUINT macro.
|
|
1964
|
|
1965 * data.c (Flsh): Used XUINT instead of XINT to
|
|
1966 extract the value of the first argument to avoid sign
|
|
1967 extension of the result.
|
|
1968
|
|
1969 1998-02-25 SL Baur <steve@altair.xemacs.org>
|
|
1970
|
|
1971 * s/decosf4-0.h: Add -D_BSD.
|
|
1972 From Tore Olsen <toreo@tihlde.hist.no>
|
|
1973
|
|
1974 1998-02-21 Greg Klanderman <greg@alphatech.com>
|
|
1975
|
|
1976 * device-x.c (x_init_device): allow `x-emacs-application-class' to
|
|
1977 be nil prior to connecting to the X server. When this is the
|
|
1978 case, the application class is chosen based on whether the user
|
|
1979 has any resources with application class `XEmacs' set in the
|
|
1980 resource database.
|
|
1981 (vars_of_device_x): make x-emacs-application-class nil by default
|
|
1982 and document new behavior in its doc string.
|
|
1983
|
|
1984 1998-02-23 Aki Vehtari <Aki.Vehtari@hut.fi>
|
|
1985
|
|
1986 * menubar.c: Doc fix: suffix can be form.
|
|
1987
|
|
1988 * gui.c (gui_parse_item_keywords): Allow button descriptors
|
|
1989 at least 2 long.
|
|
1990 (gui_item_display_flush_left): Suffix can be form.
|
|
1991
|
|
1992 * gui-x.c (button_item_to_widget_value): Allow button descriptors
|
|
1993 at least 2 long.
|
|
1994 (button_item_to_widget_value): Suffix can be form.
|
|
1995
|
|
1996 1998-02-24 SL Baur <steve@altair.xemacs.org>
|
|
1997
|
|
1998 * s/sol2.h: define HAVE_GETLOADAVG for late edition Solaris
|
|
1999 From Georg Nikodym <georgn@Canada.Sun.COM>
|
|
2000
|
|
2001 1998-02-24 Didier Verna <verna@inf.enst.fr>
|
|
2002
|
|
2003 * redisplay.c (generate_fstring_runes): fixed the modeline
|
|
2004 scrolling lossage (the % constructs appearing in the
|
|
2005 modeline). Now that we can have negative positions and boundaries,
|
|
2006 max_pos == -1 can't mean 'no limit' anymore. Me, stupido!
|
|
2007 (add_string_to_fstring_db_runes): Ditto.
|
|
2008 (add_glyph_to_fstring_db_runes): Ditto.
|
|
2009
|
|
2010 1998-02-19 Jim Radford <radford@robby.caltech.edu>
|
|
2011
|
|
2012 * sysdep.c: Don't clobber SIGIO event flags we don't care about.
|
|
2013 * device.h: removed old_sigio_flag, sigio_enabled from device
|
|
2014 Secretly (on Solaris) F_SETOWN calls I_SETSIG. We unknowingly
|
|
2015 clobbered the changes so restoring the owner would cause
|
|
2016 F_SETOWN's I_SETSIG to fail therby causing an annoying syslog
|
|
2017 message. Changed FASYNC version to match (untested).
|
|
2018
|
|
2019 1998-02-22 SL Baur <steve@altair.xemacs.org>
|
|
2020
|
|
2021 * emacs.c (main): Enable mmap for glibc-2.1 and Linux libc5.
|
|
2022 Enable mmap only for non-Mule for glibc-2.0.
|
|
2023
|
|
2024 1998-02-21 SL Baur <steve@altair.xemacs.org>
|
|
2025
|
|
2026 * config.h.in: Define _NO_MALLOC_WARNING_ if using dlmalloc from
|
|
2027 Linux libc5.
|
|
2028
|
257
|
2029 1998-02-19 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
|
2030
|
|
2031 * emacs.c: declare hooks only if !DOUG_LEA_MALLOC since the
|
|
2032 declaration conflicts with glibc's own.
|
|
2033
|
|
2034 1998-02-19 SL Baur <steve@altair.xemacs.org>
|
|
2035
|
|
2036 * config.h.in: Remove HAVE_TERM, add USE_MINIMAL_TAGBITS and
|
|
2037 USE_INDEXED_LRECORD_IMPLEMENTATION.
|
|
2038
|
|
2039 * process.c (Fopen_network_stream_internal): Remove TERM support.
|
|
2040
|
|
2041 * sysproc.h: Remove TERM support.
|
|
2042
|
|
2043 1998-02-20 Kazuyuki IENAGA <ienaga@jsys.co.jp>
|
|
2044
|
|
2045 * input-method-xfs.c: add setlocale(LC_CTYPE, "") right after
|
|
2046 setlocale(LC_NUMERIC, "C"). Because, without this, the LC_CTYPE
|
|
2047 got a side effect of LC_NUMERIC then set to "C".
|
|
2048
|
|
2049 1998-02-19 SL Baur <steve@altair.xemacs.org>
|
|
2050
|
|
2051 * emacs.c (main): Enable mmap'ing with XEmacs/Mule.
|
|
2052
|
|
2053 * redisplay.c (add_string_to_fstring_db_runes): Fix infloop
|
|
2054 problem with long modelines and glyphs.
|
|
2055
|
|
2056 * unexelf.c: The proper way to check for GNU libc is with __GLIBC__.
|
|
2057 Suggested by Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
|
2058
|
255
|
2059 1998-02-18 SL Baur <steve@altair.xemacs.org>
|
|
2060
|
|
2061 * Makefile.in.in: Remove all references to prefix-args.
|
|
2062
|
|
2063 1998-02-18 Kirill M. Katsnelson <kkm@kis.ru>
|
|
2064
|
|
2065 * sysdep.c (mswindows_set_errno): New function
|
|
2066 (mswindows_set_last_errno): Ditto
|
|
2067 These convert Win32 error code to ANSI C errno.
|
|
2068
|
|
2069 * sysdep.h: Prototypes for the above 2 functions.
|
|
2070
|
|
2071 * menubar-msw.c (vars_of_menubar_mswindows): Fprovide
|
|
2072 ('mswindows-menubar) removed. See the entry of 1998-01-03
|
|
2073
|
|
2074 * process.c: FSFmacs proc_buffered_char static array
|
|
2075 #if0'ed in 2 places. It is never used.
|
|
2076
|
|
2077 1998-02-01 Kyle Jones <kyle_jones@wonderworks.com>
|
|
2078
|
|
2079 * window.c (save_window_save): Save window-cached
|
|
2080 speciifer values.
|
|
2081 (saved_window_equal): Added comparisons of window-cached
|
|
2082 specifier values.
|
|
2083 (Fset-window-configuration): Restore window-cached
|
|
2084 specifier values.
|
|
2085
|
|
2086 1998-02-18 Didier Verna <verna@inf.enst.fr>
|
|
2087
|
|
2088 * modeline.el (mouse-drag-modeline): added the horizontal
|
|
2089 scrolling functionality for the modeline. This could still be
|
|
2090 improved, for instance when the mouse goes out of the modeline.
|
|
2091
|
|
2092 1998-02-18 Didier Verna <verna@inf.enst.fr>
|
|
2093
|
|
2094 * redisplay.c:
|
|
2095 (generate_formatted_string_db): new flag to distinguish a modeline
|
|
2096 string from a title or icon one, plus use a negative first pos to
|
|
2097 indicate the modeline hscroll ammount.
|
|
2098 (add_string_to_fstring_db_runes): completely rewrote this function
|
|
2099 to handle the case of scrolled modelines.
|
|
2100 (add_glyph_to_fstring_db_runes): handle the case of scrolled
|
|
2101 modelines.
|
|
2102
|
|
2103 * window.c:
|
|
2104 (Fmodeline_hscroll): new function to return the modeline current
|
|
2105 horizontal scroll ammount.
|
|
2106 (Fset_modeline_hscroll): new function to scroll the modeline
|
|
2107 horizontaly.
|
|
2108 Plus some updates related to this new functionality (windows
|
|
2109 configuration, notably).
|
|
2110
|
|
2111 * window.h (struct window): added the new field modeline_hscroll.
|
|
2112
|
|
2113 1998-02-18 SL Baur <steve@altair.xemacs.org>
|
|
2114
|
|
2115 * m/alpha.h:
|
|
2116 * unexelf.c: Synched with Emacs 20.2.
|
|
2117 From Aki Vehtari <Aki.Vehtari@hut.fi>
|
|
2118
|
|
2119 * emacs.c (main): Don't call __sbrk().
|
|
2120 * gmalloc.c (__sbrk): Ditto.
|
|
2121 Suggested by Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
|
2122
|
|
2123 1998-02-17 SL Baur <steve@altair.xemacs.org>
|
|
2124
|
|
2125 * console-tty.c (Fset_console_tty_coding_system): New function.
|
|
2126 From Kazuyuki IENAGA <ienaga@jsys.co.jp>
|
|
2127
|
|
2128 1998-02-15 SL Baur <steve@altair.xemacs.org>
|
|
2129
|
|
2130 * ralloc.c (init_ralloc): DOUG_LEA_MALLOC support.
|
|
2131 (r_alloc_reinit): Ditto.
|
|
2132 [All non-HAVE_MMAP code]: Synched with Emacs 20.2.
|
|
2133
|
|
2134 * emacs.c: Synch DOUG_LEA_MALLOC support from Emacs 20.2.
|
|
2135 (main): Ditto.
|
|
2136 Add LINUX_SBRK_BUG workaround, what is it?
|
|
2137 (Fdump_emacs): DOUG_LEA_MALLOC support from Emacs 20.2.
|
|
2138
|
|
2139 * alloc.c: Synch DOUG_LEA_MALLOC support from Emacs 20.2.
|
|
2140 (init_alloc_once_early): Ditto.
|
|
2141
|
|
2142 * config.h.in: Add DOUG_LEA_MALLOC symbol.
|
|
2143
|
|
2144 * unexfreebsd.c (run_time_remap): Change printf format string to
|
|
2145 match parameters given.
|
|
2146
|
253
|
2147 1998-02-14 SL Baur <steve@altair.xemacs.org>
|
|
2148
|
|
2149 * s/sco5.h: Define LIB_GCC as -lgcc for gcc 2.8 and egcs.
|
|
2150 Suggested by Robert Lipe <robertl@dgii.com>
|
|
2151
|
|
2152 1998-02-14 Martin Buchholz <martin@xemacs.org>
|
|
2153
|
|
2154 * event-Xt.c (x_reset_key_mapping):
|
|
2155 * device-x.c:
|
|
2156 (x-keysym-on-keyboard-p):
|
|
2157 (x-keysym-on-keyboard-sans-modifiers-p):
|
|
2158 Use x-keysym-on-keyboard-sans-modifiers-p instead of
|
|
2159 x-keysym-on-keyboard-p to detect backspace.
|
|
2160 Use symbols instead of strings (now deprecated) with x-keysym-*-p.
|
|
2161 Clean up symbols used with dead keys, checking Linux and solaris
|
|
2162 keysyms.
|
|
2163 Simplify x-win-*.el using above methods.
|
|
2164 Change documentation for x-keysym-*-p functions.
|
|
2165
|
|
2166 1998-02-13 SL Baur <steve@altair.xemacs.org>
|
|
2167
|
|
2168 * unexelfsgi.c: Various changes.
|
|
2169 From Olivier Galibert <galibert@pobox.com>
|
|
2170
|
|
2171 * s/freebsd.h: Avoid redefining BSD.
|
|
2172 From Kazuyuki IENAGA <ienaga@jsys.co.jp>
|
|
2173
|
|
2174 * extents.c (extent_fragment_update): Break up a line to avoid a
|
|
2175 Digital UNIX 3.2g C compiler bug.
|
|
2176 From Tonny Madsen <tma@nettest.dk>
|
|
2177
|
|
2178 * process.c (create_process): Restore save_environ hackery.
|
|
2179
|
|
2180 1998-02-10 SL Baur <steve@altair.xemacs.org>
|
|
2181
|
|
2182 * emacsfns.h: Remove mocklisp declarations.
|
|
2183
|
|
2184 * redisplay-msw.c (mswindows_update_dc): Enable evil kludge for
|
|
2185 cygwin.
|
|
2186 From Andy Piper <andyp@parallax.co.uk>
|
|
2187
|
251
|
2188 1998-02-09 SL Baur <steve@altair.xemacs.org>
|
|
2189
|
253
|
2190 * menubar-msw.c (vars_of_menubar_mswindows): Fix patch failure.
|
|
2191 Suggested by: kny@tekla.fi
|
|
2192
|
251
|
2193 * data.c (Fold_eq): PC-ize.
|
|
2194
|
|
2195 * chartab.c: PC-ize.
|
|
2196
|
|
2197 * window.c (toplevel): PC-ize.
|
|
2198 (syms_of_window): Ditto.
|
|
2199
|
|
2200 * search.c (Freplace_match): PC-ize.
|
|
2201
|
|
2202 * lread.c: PC-ize.
|
|
2203
|
|
2204 * buffer.c (Fbuffer_enable_undo): PC-ize.
|
|
2205 (Fbuffer_disable_undo): ditto.
|
|
2206
|
|
2207 * eval.c (return_from_signal): PC-ize.
|
|
2208
|
|
2209 * casetab.c: PC-ize.
|
|
2210
|
|
2211 * callproc.c (Fcall_process_internal): PC-ize.
|
|
2212
|
|
2213 1998-02-02 Kirill M. Katsnelson <kkm@kis.ru>
|
|
2214
|
|
2215 * gui.h (struct gui_item): Menu item, submenu or GUI button
|
|
2216 properties are abstracted into this new structure.
|
|
2217 Added prototypes for the following functions
|
|
2218
|
|
2219 * gui.c (gui_item_init): New function
|
|
2220 (gui_item_add_keyval_pair): Ditto
|
|
2221 (gui_parse_item_keywords): Ditto
|
|
2222 (gui_item_active_p): Ditto
|
|
2223 (gui_item_included_p): Ditto
|
|
2224 (gui_item_display_flush_left): Ditto
|
|
2225 (gui_item_display_flush_right): Ditto. The above listen new
|
|
2226 functions manipulate on properties common to menu items and GUI
|
|
2227 buttons.
|
|
2228
|
|
2229 * menubar.c (current_frame_menubar): Moved from menubar-msw.c
|
|
2230 (menu_parse_submenu_keywords): New function
|
|
2231 (Fmenu_find_real_submenu): Ditto, lisp accessible. The last two
|
|
2232 functions operate on menu properties stored in struct gui_item,
|
|
2233 but are specific to menus only.
|
|
2234
|
|
2235 * menubar.h: Prototypes for the above functions.
|
|
2236
|
|
2237 * menubar-msw.c: Modified to utilize struct gui_item instead of
|
|
2238 plists, to reduce garbage. Suggested by Ben Wing.
|
|
2239 Unreachable menus are fixed.
|
|
2240
|
|
2241 1998-01-03 Kirill M. Katsnelson <kkm@kis.ru>
|
|
2242
|
|
2243 * menubar-msw.c (allocate_menu_item_id): Added third parameter to
|
|
2244 hash, suffix. Menus tend to put non-localizable items into suffix
|
|
2245 with empty name.
|
|
2246 (update_frame_menubar_maybe): top_level_menu is now set here.
|
|
2247 (mswindows_popup_menu): Ditto. It was incorrect to set it from
|
|
2248 populate.
|
|
2249 (vars_of_menubar_mswindows): Fprovide ('mswindows-menubar) removed:
|
|
2250 (featurep (and 'mswindows 'menubars)) tests the same.
|
|
2251 (mswindows_update_frame_menubars): update_..._maybe () now called
|
|
2252 only if frame->menubar_changed is set. Is it right to patch
|
|
2253 menubar.c instead?
|
|
2254
|
|
2255 1998-02-08 Jonathan Harris <jhar@tardis.ed.ac.uk>
|
|
2256
|
|
2257 * objects-msw.c:
|
|
2258 Updated color database to X11R6. Also added support for
|
|
2259 "#RRRGGGBBB" and "#RRRRGGGGBBBB" in addition to "#RRGGBB".
|
|
2260
|
|
2261 1998-02-08 Jonathan Harris <jhar@tardis.ed.ac.uk>
|
|
2262
|
|
2263 * console.h:
|
|
2264 * console-stream.c:
|
|
2265 * redisplay.c:
|
|
2266 * redisplay-msw.c:
|
|
2267 * redisplay-tty.c:
|
|
2268 * redisplay-x.c:
|
|
2269 Added the frame as a parameter to the text_width device
|
|
2270 method.
|
|
2271
|
|
2272 * redisplay-msw.c:
|
|
2273 Support for proportional fonts.
|
|
2274
|
|
2275 1998-02-07 Hrvoje Niksic <hniksic@srce.hr>
|
|
2276
|
|
2277 * window.c (map_windows): Don't return the value of map_windows_1.
|
|
2278 (map_windows): If F is NULL, map through all the windows.
|
|
2279 (mark_windows_in_use): Use map_windows(); made it static.
|
|
2280 (mark_windows_in_use_closure): New function.
|
|
2281
|
|
2282 1998-02-01 Hrvoje Niksic <hniksic@srce.hr>
|
|
2283
|
|
2284 * alloc.c (Fpurecopy): Check for non-`nil'-ness instead of
|
|
2285 checking for Vobarray.
|
|
2286
|
|
2287 * dlopen.c (Fdl_open): Indirect FUNCTION explicitly, for clarity.
|
|
2288
|
|
2289 * elhash.c: Removed broken hashtable_hash().
|
|
2290
|
|
2291 1998-01-28 Hrvoje Niksic <hniksic@srce.hr>
|
|
2292
|
|
2293 * symbols.c (Fintern): Use Qt instead of the actual obarray.
|
|
2294 (init_symbols_once_early): Ditto.
|
|
2295
|
|
2296 1998-01-27 Hrvoje Niksic <hniksic@srce.hr>
|
|
2297
|
|
2298 * lisp.h (DO_REALLOC): Name the variable `do_realloc_newsize'
|
|
2299 instead of `newsize', to avoid name collisions.
|
|
2300
|
|
2301 1998-01-26 Hrvoje Niksic <hniksic@srce.hr>
|
|
2302
|
|
2303 * print.c (print_symbol): Be more wary about the contents of
|
|
2304 Vprint_gensym_alist.
|
|
2305
|
|
2306 1998-02-06 SL Baur <steve@altair.xemacs.org>
|
|
2307
|
|
2308 * emacs.c (Frun_emacs_from_temacs): Disable largely meaning-free
|
|
2309 purity/impurity summary. Compile with -DREPORT_PURE_USAGE to get
|
|
2310 it back.
|
|
2311
|
|
2312 * process.c (create_process): Unused variable elimination.
|
|
2313
|
|
2314 * lread.c (Fload_internal): Compiler warning suppression.
|
|
2315
|
|
2316 * alloc.c (report_pure_usage): Remove unused variable.
|
|
2317
|
|
2318 Wed Jan 28 13:41:22 1998 Andy Piper <andyp@parallax.co.uk>
|
|
2319
|
|
2320 * Makefile.in.in: add support for sheap-adjust.h generation for
|
|
2321 static heap.
|
|
2322
|
|
2323 Wed Jan 28 13:41:22 1998 Andy Piper <andyp@parallax.co.uk>
|
|
2324
|
|
2325 * Makefile.in.in: add sheap-adjust.h support, basically copied
|
|
2326 from puresize-adjust.h. predicate sheap.o on HEAP_IN_DATA. fix
|
|
2327 xemacs target slightly to not be a single shell command, this
|
|
2328 fixes an obscure bug in cygwin gmake.
|
|
2329
|
|
2330 * alloc.c (report_pure_usage): call sheap_adjust_h if HEAP_IN_DATA
|
|
2331 is defined.
|
|
2332
|
|
2333 * sysfile.h: add abstracted OPEN_BINARY, OPEN_TEXT etc defines. On
|
|
2334 Unix these are all 0 and have no effect. On systems defining
|
|
2335 O_BINARY these use it. WINDOWSNT is currently unaffected because
|
|
2336 there are individual #ifdefs in each source file, but with this
|
|
2337 change they could be removed.
|
|
2338
|
|
2339 * emacs.c:
|
|
2340 * doc.c:
|
|
2341 * lread.c:
|
|
2342 * process.c: generalize open() calls with OPEN_BINARY. Does
|
|
2343 nothing under Unix.
|
|
2344
|
|
2345 * emacs.c: predicate inclusion of windows.h on WINDOWSNT not
|
|
2346 _WIN32.
|
|
2347
|
|
2348 * process.c:
|
|
2349 * sysdep.c:
|
|
2350 * signal.c: predicate SIGIO stuff also on !BROKEN_SIGIO, this is
|
|
2351 required for building on cygwin32 b19 which has SIGIO that only
|
|
2352 works on sockets.
|
|
2353
|
|
2354 * fileio.c:
|
|
2355 * event-stream.c: generalize open() calls with OPEN_BINARY. Does
|
|
2356 nothing under Unix. Use open() instead of creat() to make this
|
|
2357 possible. use CREAT_MODE from sysfile.h
|
|
2358
|
|
2359 * config.h.in: add MULE_CODING, currently not used. add support
|
|
2360 for HAVE_A_OUT_H.
|
|
2361
|
|
2362 * elhash.c:
|
|
2363 * menubar-msw.c:
|
|
2364 * mule-ccl.c:
|
|
2365 * device-msw.c: warning elimination.
|
|
2366
|
|
2367 * event-msw.c: add undeclared Dde calls for cygwin.
|
|
2368
|
|
2369 * redisplay-msw.c: warning elimination under mule.
|
|
2370
|
|
2371 * gmalloc.c: make initalize() really do that. If HEAP_IN_DATA is
|
|
2372 defined catch free() & realloc() calls with addresses in the data
|
|
2373 space. __morecore calls more_static_core for temacs, when dumped
|
|
2374 switches to sbrk().
|
|
2375
|
|
2376 * console-msw.h: undef CONST after windows.h inclusion since this
|
|
2377 defines CONST. #ifdef out shellapi under cygwin.
|
|
2378
|
|
2379 * device-msw.c: include sysdep.h
|
|
2380
|
|
2381 * objects-msw.c: add dummy mswindows_font_spec_matches_charset and
|
|
2382 mswindows_find_charset_font so that we can build with mule.
|
|
2383
|
|
2384 * mem-limits: return -1 for get_lim_data() when HEAP_IN_DATA is
|
|
2385 defined.
|
|
2386
|
|
2387 * sheap.c: new file. defines sheap_adjust_h and more_static_core
|
|
2388 so that data space can be used by gmalloc before dumping when
|
|
2389 HEAP_IN_DATA is defined. beef up error message about what to do if
|
|
2390 sheap space runs out.
|
|
2391
|
|
2392 * sysdep.c: make start_of_data reurn something sensible for
|
|
2393 HEAP_IN_DATA.
|
|
2394
|
|
2395 * systime.h: don't use itimer stuff on cygwin b19.
|
|
2396
|
|
2397 * unexcw.c: new file. Full unexec() support for cygwin using the
|
|
2398 HEAP_IN_DATA setup provided by sheap.c and friends. No run-time
|
|
2399 remapping is performed. This could be generalized to support many
|
|
2400 platforms that use COFF. you need a.out.h from my website to build
|
|
2401 this. cygwin b19 will have this.
|
|
2402
|
|
2403 * s/cygwin32.h: fixed commentary. compile in unexcw.o for dumping
|
|
2404 support. removed irrelevent things. define BROKEN_SIGIO. remove
|
|
2405 include of windows.h. add correct process support defines, process
|
|
2406 support might work when non-blocking io is implemented in cygwin.
|
|
2407
|
|
2408 1998-02-02 P. E. Jareth Hein <jareth@camelot-soft.com>
|
|
2409
|
|
2410 * glyphs.c: Removed ImageMagick support, re-instituted the previous
|
|
2411 support for JPEG, GIF and PNG with the new color system.
|
|
2412
|
|
2413 1998-02-05 Olivier Galibert <galibert@pobox.com>
|
|
2414
|
|
2415 * unexelf.c: Fix alignment problems on Linux.
|
|
2416
|
249
|
2417 1998-02-01 Kyle Jones <kyle_jones@wonderworks.com>
|
|
2418
|
|
2419 * redisplay.c (redisplay_window): After outputting
|
|
2420 the window, invalidate its the line start cache if the
|
|
2421 we're displaying the minibuffer window and the echo
|
|
2422 area is active. The cache is only valid for the echo
|
|
2423 area buffer, and that buffer isn't associated with the
|
|
2424 minibuffer window anymore.
|
|
2425
|
|
2426 1998-01-31 SL Baur <steve@altair.xemacs.org>
|
|
2427
|
|
2428 * alloc.c (disksave_object_finalization): Additional checking for
|
|
2429 sanity when zeroing out unused portions of string_chars_block's.
|
|
2430 (Fpurecopy): Spelling fixes in comment.
|
|
2431 (PURESIZE_SLOP): Set default slop to 0.
|
|
2432
|
|
2433 1998-01-31 Kyle Jones <kyle_jones@wonderworks.com>
|
|
2434
|
|
2435 * chartab.c (make_char_table): Initialize mirror
|
|
2436 tables with Spunct in all the slots. Syntax table
|
|
2437 initialization doesn't touch slots for nonexistent
|
|
2438 characters sets. If character sets corresponding to
|
|
2439 those slots are created later Qnil values in the slots
|
|
2440 will cause crashes.
|
|
2441 (copy_char_table_entry): Return copy not original.
|
|
2442
|
|
2443 1998-01-28 Jonathon Harris <jhar@tardis.ed.ac.uk>
|
|
2444
|
|
2445 * msw-proc.c:
|
|
2446 * event-msw.h:
|
|
2447 * event-msw.c:
|
|
2448 * console-msw.h:
|
|
2449 Deleted the first two and merged them into the last two files.
|
|
2450
|
|
2451 * device-msw.c:
|
|
2452 * event-msw.c:
|
|
2453 * frame-msw.c:
|
|
2454 Added file-based drag and drop support. The "System/Open" DDE command
|
|
2455 is also implemented as if it were a drag and drop operation.
|
|
2456
|
|
2457 * emacsfns.h:
|
|
2458 * event-stream.c:
|
|
2459 * events.c:
|
|
2460 * events.h:
|
|
2461 * frame.c:
|
|
2462 * keymap.c:
|
|
2463 Replaced all "#ifdef HAVE_OFFIX_DND" with
|
|
2464 "#if defined(HAVE_OFFIX_DND) || defined(HAVE_MS_WINDOWS)"
|
|
2465
|
|
2466 * device.h: Added DEVICE_MSWINDOWS_P and related macros.
|
|
2467
|
|
2468 * objects-msw.c:
|
|
2469 * select-msw.c:
|
|
2470 Eliminated warnings.
|
|
2471
|
|
2472 * redisplay-msw.c: Changed color of "dead" box between scrollbars
|
|
2473 to windows' "button" color for compatibility with other windows apps.
|
|
2474
|
|
2475 1998-01-20 Stephen Turnbull <turnbull@sk.tsukuba.ac.jp>
|
|
2476
|
|
2477 * Makefile.in.in: move `rm puresize-adjust.h' from distclean
|
|
2478 to mostlyclean
|
|
2479
|
|
2480 1998-01-29 SL Baur <steve@altair.xemacs.org>
|
|
2481
|
|
2482 * Makefile.in.in (dlopen.o): Add dependencies.
|
|
2483
|
|
2484 * s/sunos4-0.h: Conditionalize use of broken-sun.h for old Gccs.
|
|
2485 Suggested by Amir J Katz <amir@ndsoft.com>
|
|
2486
|
|
2487 1998-01-28 SL Baur <steve@altair.xemacs.org>
|
|
2488
|
|
2489 * faces.c (init_device_faces): This function can call lisp.
|
|
2490
|
|
2491 1998-01-28 P. E. Jareth Hein <jareth@camelot-soft.com>
|
|
2492
|
|
2493 * mule-coding.h:
|
|
2494 * mule-coding.c: (determine_real_coding_system): removed the
|
|
2495 static declaration to allow reuse.
|
|
2496
|
|
2497 * md5.c (Fmd5): Rewrote to fully support MULE, as well as streamline
|
|
2498 the code.
|
|
2499
|
|
2500 * mule-ccl.c (ccl_driver): Set initial values of variables to shut up
|
|
2501 the compiler and to give better error message if a quit happens before
|
|
2502 any ccl_code is generated.
|
|
2503
|
|
2504 1998-01-28 SL Baur <steve@altair.xemacs.org>
|
|
2505
|
|
2506 * glyphs.c (allocate_glyph): This function can GC.
|
|
2507 Wrap GCPRO around unprotected function calls.
|
|
2508 (specifier_vars_of_glyphs): Comment change -- Can we GC here?
|
|
2509
|
247
|
2510 1998-01-27 SL Baur <steve@altair.xemacs.org>
|
|
2511
|
249
|
2512 * lread.c (Fload_internal): Add extra GCPRO around call to
|
|
2513 Fassoc.
|
|
2514 Enable purespace usage counts always.
|
|
2515
|
247
|
2516 * m/powerpc.h: Isolate changes for mklinux from AIX.
|
|
2517
|
|
2518 1998-01-27 Hrvoje Niksic <hniksic@srce.hr>
|
|
2519
|
|
2520 * symbols.c (init_symbols_once_early): Decreased default size of
|
|
2521 Vpure_uninterned_symbol_table to 50.
|
|
2522
|
|
2523 1998-01-27 SL Baur <steve@altair.xemacs.org>
|
|
2524
|
|
2525 * redisplay-x.c (x_output_string): Correction for handling underlined
|
|
2526 fonts when XGetFontProperty fails.
|
|
2527 From Chris Felaco <felaco@iatcmail.ed.ray.com>
|
|
2528
|
|
2529 1998-01-27 Kyle Jones <kyle_jones@wonderworks.com>
|
|
2530
|
|
2531 * alloc.c (Fpurecopy): Store symbols that aren't
|
|
2532 interned in Vobarray into Vpure_uninterned_symbol_table.
|
|
2533
|
|
2534 * symbols.c (init_symbols_once_early): Initialize
|
|
2535 Vpure_uninterned_symbol_table.
|
|
2536
|
|
2537 * emacsfns.h: Declare Vpure_uninterned_symbol_table.
|
|
2538
|
|
2539 1998-01-26 SL Baur <steve@altair.xemacs.org>
|
|
2540
|
|
2541 * alloc.c (report_pure_usage): New macro PURESIZE_SLOP to allow
|
|
2542 for extra pure space.
|
|
2543
|
245
|
2544 1998-01-23 SL Baur <steve@altair.xemacs.org>
|
|
2545
|
|
2546 * sound.c (Fplay_sound_file): Use NILP for comparison of
|
|
2547 Lisp_Object.
|
|
2548
|
|
2549 Wed Jan 21 10:49:47 1998 Andy Piper <andyp@parallax.co.uk>
|
|
2550
|
|
2551 * unexcw.cc: new file for cygwin32 unexec() requires cygwin32
|
|
2552 b19. Predicated on HAVE_COFF_H.
|
|
2553
|
|
2554 * console.c:
|
|
2555 * device-msw.c:
|
|
2556 * event-msw.c:
|
|
2557 * frame-msw.c:
|
|
2558 * msw-proc.c:
|
|
2559 * objects-msw.c:
|
|
2560 Eliminate warnings.
|
|
2561
|
|
2562 * redisplay-msw.c (mswindows_update_gc): eliminate warnings and
|
|
2563 extend hack for bogus bg values.
|
|
2564
|
|
2565 * symsinit.h: add msw headers to eliminate warnings.
|
|
2566
|
|
2567 * s/cygwin32.h: various updates for unexec() support.
|
|
2568
|
|
2569 * lastfile.c: add my_ebss for cygwin32 unexec() support.
|
|
2570
|
|
2571 * gmalloc.c: made __malloc_initialized non-static so that
|
|
2572 it goes into the bss where we expect it.
|
|
2573
|
|
2574 * emacs.c: put run_time_remap() in a place where initialized is
|
|
2575 not always true.
|
|
2576
|
|
2577 * Makefile.in.in: add support for compiling .cc files.
|
|
2578
|
|
2579 * config.h.in: added HAVE_COFF_H support.
|
|
2580
|
|
2581 1998-01-23 Hrvoje Niksic <hniksic@srce.hr>
|
|
2582
|
|
2583 * print.c (print_cons): Use XCAR/XCDR.
|
|
2584 (print_string): Fix up so it Vprint_string_length works under Mule
|
|
2585 correctly.
|
|
2586
|
|
2587 * eval.c (Feval): Increase profile call count.
|
|
2588
|
|
2589 * keymap.c: Fixed typo.
|
|
2590
|
|
2591 1998-01-22 Hrvoje Niksic <hniksic@srce.hr>
|
|
2592
|
|
2593 * symbols.c (Funintern): Reset symbol's obarray property.
|
|
2594
|
|
2595 1998-01-22 Karl M. Hegbloom <karlheg@bittersweet.inetarena.com>
|
|
2596
|
|
2597 * alloc.c (size_vector): Declare *p as CONST to eliminate warning.
|
|
2598
|
|
2599 1998-01-22 Hrvoje Niksic <hniksic@srce.hr>
|
|
2600
|
|
2601 * print.c (print_symbol): Recognize Vprint_gensym being a cons;
|
|
2602 use Vprint_gensym_alist.
|
|
2603
|
|
2604 * symbols.c (init_symbols_once_early): Ditto.
|
|
2605
|
|
2606 * alloc.c (Fmake_symbol): Reset it.
|
|
2607
|
|
2608 * symbols.c (Fintern): Set it.
|
|
2609
|
|
2610 * lisp.h (struct Lisp_Symbol): New element `obarray'.
|
|
2611
|
|
2612 * print.c (print_prepare): Reset Vprint_gensym_alist.
|
|
2613 (print_finish): Ditto.
|
|
2614
|
|
2615 * lread.c: Recognize #n= and #n#.
|
|
2616 (readevalloop): Reset read_objects to nil.
|
|
2617 (Fread): Ditto.
|
|
2618
|
|
2619 1998-01-23 SL Baur <steve@altair.xemacs.org>
|
|
2620
|
|
2621 * toolbar.c (update_toolbar_button): Eliminate redundant NILP
|
|
2622 checks.
|
|
2623 From Martin Buchholz <martin@xemacs.org>
|
|
2624
|
|
2625 1998-01-21 Hrvoje Niksic <hniksic@srce.hr>
|
|
2626
|
|
2627 * dlopen.c: New file.
|
|
2628
|
|
2629 1998-01-19 Steven L Baur <steve@altair.xemacs.org>
|
|
2630
|
|
2631 * eval.c (prog1): Don't GCPRO unitialized variable.
|
|
2632 (prog2): Ditto.
|
|
2633 From Martin Buchholz <martin@xemacs.org>
|
|
2634
|
|
2635 1998-01-19 Hrvoje Niksic <hniksic@srce.hr>
|
|
2636
|
|
2637 * sound.c (Fplay_sound_file): Use
|
|
2638 signal_simple_continuable_error() instead of error().
|
|
2639
|
|
2640 1998-01-18 Hrvoje Niksic <hniksic@srce.hr>
|
|
2641
|
|
2642 * README: Updated.
|
|
2643
|
243
|
2644 1998-01-18 SL Baur <steve@altair.xemacs.org>
|
|
2645
|
|
2646 * glyphs-x.c (imagick_instantiate): Dynamically allocate pixar
|
|
2647 with alloca.
|
|
2648 From Damon Lipparelli <lipp@primus.com>
|
|
2649
|
|
2650 1998-01-14 Martin Buchholz <martin@xemacs.org>
|
|
2651
|
|
2652 * eval.c (For, Fand, Fif, Fcond, Fprogn, Fprog1, Fprog2):
|
|
2653 Modernize and streamline.
|
|
2654 Replace Fcdr with XCDR, Fcar with XCAR for efficiency.
|
|
2655 Remove REGISTER declarations.
|
|
2656
|
|
2657 1998-01-13 Martin Buchholz <martin@xemacs.org>
|
|
2658
|
|
2659 * emacsfns.h:
|
|
2660 * alloc.c:
|
|
2661 Add proper prototypes for print_cons, print_vector, print_string.
|
|
2662
|
|
2663 * dired.c (directory-files):
|
|
2664 * elhash.c (elisp_maphash):
|
|
2665 * elhash.h (elisp_maphash):
|
|
2666 * lrecord.h:
|
|
2667 * mule-ccl.c (setup_ccl_program):
|
|
2668 * mule-coding.c (coding_system_charset):
|
|
2669 * offix-cursors.h (cursor_bits):
|
|
2670 Warning elimination.
|
|
2671
|
|
2672 * redisplay.c (add_blank_rune):
|
|
2673 * redisplay.c (add_glyph_rune):
|
|
2674 * redisplay.c (add_emchar_rune):
|
|
2675 Warning elimination. Avoid useless computation in non-mule case.
|
|
2676
|
|
2677 * config.h.in:
|
|
2678 Define HAVE_INVERSE_HYPERBOLIC using 1 configure test, not 3.
|
|
2679 * src/alloc.c:
|
|
2680 * src/events.c:
|
|
2681 Rearrange order of declarations and definitions to avoid forward
|
|
2682 * src/mem-limits.h: Add motivating comment for future cleanup.
|
|
2683
|
|
2684 * s/linux.h: Cleanup. Remove old cruft.
|
|
2685
|
|
2686 * config.h.in:
|
|
2687 Always define _GNU_SOURCE when using GNU libc.
|
|
2688 Support --without-FOO as a synonym for --with-FOO=no.
|
|
2689 Always use $srcdir to locate config.guess.
|
|
2690 Make it clear that CONFIGURATION is optional.
|
|
2691 De-emphasize CONFIGURATION parameter. Random cleanup.
|
|
2692 More compatible with standard GNU install instructions.
|
|
2693 --with-menubars=athena3d ==> --with-menubars=lucid.
|
|
2694
|
|
2695 1998-01-14 Hrvoje Niksic <hniksic@srce.hr>
|
|
2696
|
|
2697 * fileio.c (Fexpand_file_name): Synched with FSF.
|
|
2698
|
|
2699 1998-01-13 Hrvoje Niksic <hniksic@srce.hr>
|
|
2700
|
|
2701 * objects-msw.c (mswindows_color_instance_rgb_components):
|
|
2702 Multiply components by 257 instead of shifting by 8.
|
|
2703
|
|
2704 1998-01-15 Hrvoje Niksic <hniksic@srce.hr>
|
|
2705
|
|
2706 * elhash.c (Fhashtable_type): New function.
|
|
2707 (Fhashtable_test_function): Ditto.
|
|
2708
|
241
|
2709 1998-01-12 SL Baur <steve@altair.xemacs.org>
|
|
2710
|
|
2711 * profile.c (Fclear_profiling_info): Fix typing error.
|
|
2712
|
|
2713 * elhash.c (elisp_map_remhash): Fix typing error.
|
|
2714 (elisp_maphash): Ditto.
|
|
2715
|
|
2716 1998-01-12 Hrvoje Niksic <hniksic@srce.hr>
|
|
2717
|
|
2718 * mule-ccl.c (Fccl_execute_on_string): Use Dynar_free to free a
|
|
2719 Dynarr.
|
|
2720
|
|
2721 1998-01-13 Hrvoje Niksic <hniksic@srce.hr>
|
|
2722
|
|
2723 * profile.c (vars_of_profile): New variable
|
|
2724 `call-count-profile-table'.
|
|
2725 (Fclear_profiling_info): Clear call-count-profile-table.
|
|
2726
|
|
2727 * eval.c (funcall_recording_as): Use it.
|
|
2728
|
|
2729 * profile.c (profile_increase_call_count): New function.
|
|
2730
|
|
2731 * lstream.c (stdio_flusher): Comment addition.
|
|
2732
|
|
2733 * objects-msw.c (mswindows_string_to_color): Support #RRRGGGBBB,
|
|
2734 as well as #RRGGBB.
|
|
2735 (mswindows_X_color_map): Reformatted.
|
|
2736
|
|
2737 1998-01-12 Hrvoje Niksic <hniksic@srce.hr>
|
|
2738
|
|
2739 * line-number.c (invalidate_line_number_cache): Comment fixup.
|
|
2740
|
|
2741 * symbols.c (Fapropos_internal): Docstring fix.
|
|
2742
|
|
2743 * fns.c (Fstring_equal): Docstring fix.
|
|
2744
|
|
2745 1998-01-12 Hrvoje Niksic <hniksic@srce.hr>
|
|
2746
|
|
2747 * profile.c (get_profiling_info_maphash): Return int.
|
|
2748 (mark_profiling_info_maphash): Ditto.
|
|
2749
|
|
2750 * elhash.c (Finternal_hash_value): New debugging function,
|
|
2751 undefined by default.
|
|
2752
|
|
2753 1998-01-11 Hrvoje Niksic <hniksic@srce.hr>
|
|
2754
|
|
2755 * mule-coding.c (add_coding_system_to_list_mapper): Ditto.
|
|
2756
|
|
2757 * mule-charset.c (add_charset_to_list_mapper): Return int.
|
|
2758
|
|
2759 * faces.c (add_face_to_list_mapper): Return int.
|
|
2760 (mark_face_as_clean_mapper): Ditto.
|
|
2761 (update_face_inheritance_mapper): Ditto.
|
|
2762
|
|
2763 * keymap.c (keymap_submaps_mapper_0): Return int.
|
|
2764 (keymap_submaps_mapper): Ditto.
|
|
2765 (copy_keymap_inverse_mapper): Ditto.
|
|
2766 (copy_keymap_mapper): Ditto.
|
|
2767 (map_keymap_unsorted_mapper): Ditto.
|
|
2768 (map_keymap_sorted_mapper): Ditto.
|
|
2769
|
|
2770 * elhash.c (hashtable): Added a hash method.
|
|
2771 (hashtable_hash): New function.
|
|
2772
|
|
2773 1998-01-09 Hrvoje Niksic <hniksic@srce.hr>
|
|
2774
|
|
2775 * elhash.c (lisp_maphash_function): Return 0.
|
|
2776 (hashtable_equal_mapper): Bail out when an element is not `equal'.
|
|
2777
|
|
2778 * hash.c (maphash): Bail out if map function returns non-zero.
|
|
2779
|
|
2780 1998-01-11 SL Baur <steve@altair.xemacs.org>
|
|
2781
|
|
2782 * eval.c (Fbacktrace): Treat first parameter to byte-code
|
|
2783 specially.
|
|
2784
|
|
2785 Sat Jan 10 11:36:11 1998 Andy Piper <andyp@parallax.co.uk>
|
239
|
2786
|
|
2787 * config.h.in: undef HAVE_SYS_UN_H so that it gets defined by
|
|
2788 configure for gnuserv with UNIX_DOMAIN_SOCKETS.
|
|
2789
|
|
2790 1998-01-09 SL Baur <steve@altair.xemacs.org>
|
|
2791
|
|
2792 * buffer.c (reset_buffer_local_variables): Synch case-table
|
|
2793 resetting stuffs from Emacs 20.2.
|
|
2794 Suggested by Aki Vehtari <Aki.Vehtari@hut.fi>
|
|
2795
|
|
2796 * src/symbols.c (Fsetq_default): Fix docstring.
|
|
2797 From Didier Verna <verna@inf.enst.fr>
|
|
2798
|
|
2799 1998-01-07 Kirill M. Katsnelson <kkm@kis.ru>
|
|
2800
|
|
2801 * msw-proc.c (mswindows_wnd_proc): Calls to redisplay() from out
|
|
2802 of WM_SIZE handler limited to the case of dragging frame borders.
|
|
2803
|
|
2804 * redisplay-msw.c (mswindows_bevel_modeline): Added support for
|
|
2805 negative modeline height.
|
|
2806 (mswindows_output_cursor): Added bar cursor drawing
|
|
2807 (mswindows_flash): Flash frame by inverting client area.
|
|
2808
|
|
2809 1998-01-08 Andy Piper <andyp@parallax.co.uk>
|
|
2810
|
|
2811 * lread.c: guess load path if its not set just like the dumped
|
|
2812 version does.
|
|
2813
|
|
2814 * doc.c: guess doc path if its not set just like the dumped
|
|
2815 version does
|
|
2816
|
|
2817 Thu Jan 08 09:42:36 1998 Andy Piper <andyp@parallax.co.uk>
|
|
2818
|
|
2819 * emacs.c: don't load loadup.el when CANNOT_DUMP is set, this
|
|
2820 is almost never right on XEmacs.
|
|
2821
|
|
2822 * s/cygwin32.h: add comments about how to buid. Move some
|
|
2823 variables into configure so that we don't have to set them.
|
|
2824
|
|
2825 * config.h.in: define HAVE_WINDOW_SYSTEM if HAVE_MS_WINDOWS is
|
|
2826 set.
|
|
2827
|
|
2828 1998-01-06 Kirill M. Katsnelson <kkm@kis.ru>
|
|
2829
|
|
2830 * lread.c (Fload_internal): On Win32, this reopened the file
|
|
2831 without first closing the handle. This caused running out of
|
|
2832 handles.
|
|
2833
|
|
2834 * nt.c (sys_open): This one made big mess when opening a handle
|
|
2835 next after MAXDESC-1. Fixed.
|
|
2836
|
|
2837 1998-01-06 Kirill M. Katsnelson <kkm@kis.ru>
|
|
2838
|
|
2839 * objects-msw.c (mswindows_string_to_color): Patched not to modify
|
|
2840 const char* parameter.
|
|
2841 (hexval): Modified to accept uppercase hex digits.
|
|
2842
|
|
2843 * ntproc.c (sys_spawnve): char* arguments made CONST, to comply
|
|
2844 with standard header declaration.
|
|
2845
|
|
2846 * sysdep.c: Fixed ugly prototypes copied from system headers. Who
|
|
2847 says the solution is as ugly, is right.
|
|
2848 Added a couple of #include directives to avoid undefined functions.
|
|
2849 (struct save_signal): Added parameter to function pointer
|
|
2850 prototype when compiled under ANSI C.
|
|
2851 (save_signal_handlers): Ditto
|
|
2852
|
|
2853 * s/windowsnt.h: Added prototypes for functions defined via
|
|
2854 sys_<name> which are not found or differ on Win32: pipe, sleep,
|
|
2855 spawnve, wait, kill
|
|
2856 Macros created from former nt.c functions: random srandom setpgrp
|
|
2857 Defined HAVE_STRCASECMP, and strcasecmp defined to _stricmp which
|
|
2858 is provided by the compiler.
|
|
2859 Removed hack which prevented winsock.h from including.
|
|
2860
|
|
2861 * nt.c (random): Removed and made a macro in s/windowsnt.h
|
|
2862 (srandom): Ditto
|
|
2863 (setpgrp): Ditto
|
|
2864 (unrequest_sigio): #if0'ed. It is unreferenced; in XEmacs, calls
|
|
2865 to it seem to be controlled by HAVE_SIGIO.
|
|
2866 (request_sigio): Ditto
|
|
2867
|
|
2868 * nt.h: Removed FD_* macros. Rely on definitions in winsock.h.
|
|
2869 Changed EMACSDEBUG references to DEBUG_XEMACS
|
|
2870
|
|
2871 * event-msw.c (mswindows_cancel_dispatch_event): Returns Qnil when
|
|
2872 event not found in the queue. Used to return undefined value.
|
|
2873
|
|
2874 1998-01-07 SL Baur <steve@altair.xemacs.org>
|
|
2875
|
|
2876 * emacs.c (main_1): Add `-no-autoloads' to suppress loading
|
|
2877 autoloads at startup.
|
|
2878
|
|
2879 * Makefile.in.in (xemacs): Fix call to list load-path shadows.
|
|
2880
|
235
|
2881 1998-01-02 Charles G. Waldman <cgw@pgt.com>
|
|
2882
|
|
2883 * frame.h: fix erroneous FRAME_RIGHT_BORDER_START macro.
|
|
2884 Corrects display glitch when toolbar is on the right.
|
|
2885
|
|
2886 1998-01-02 Kirill M. Katsnelson <kkm@kis.ru>
|
|
2887
|
|
2888 * emacs.c (make_arg_list_1): On Win32 platforms, GetModuleFileName
|
|
2889 is consulted instead of argv[0] to get full path to the xemacs
|
|
2890 executable.
|
|
2891
|
|
2892 1998-01-01 SL Baur <steve@altair.xemacs.org>
|
|
2893
|
|
2894 * m/sparc.h: Cleans up some warnings about unused variables in
|
|
2895 getloadavg.c under Sparc/Linux.
|
|
2896 From Stephen J. Turnbull <turnbull@sk.tsukuba.ac.jp>
|
|
2897
|
|
2898 * fileio.c (vars_of_fileio): Enable directory-sep-char always for
|
|
2899 compatibility.
|
|
2900
|
|
2901 * emacs.c (main_1): Inhibit reloading dumped lisp when using
|
|
2902 `-batch' or `-vanilla'.
|
|
2903
|
|
2904 1997-12-31 SL Baur <steve@altair.xemacs.org>
|
|
2905
|
|
2906 * emacs.c: New variables `inhibit-update-dumped-lisp' and
|
|
2907 `inhibit-update-autoloads'.
|
|
2908 (vars_of_emacs): Initialize them.
|
|
2909
|
233
|
2910 1997-12-29 Kirill M. Katsnelson <kkm@kis.ru>
|
|
2911
|
|
2912 * msw-proc.c (mswindows_enqueue_magic_event): Made extern. User by
|
|
2913 menubar-msw.c
|
|
2914
|
|
2915 * event-msw.h: Prototype for mswindows_enqueue_magic_event
|
|
2916
|
|
2917 * event-msw.c (mswindows_wm_timer_callback): Fixed counter of
|
|
2918 outstanding timer events (decremented only when KillTimer
|
|
2919 succeeds)
|
|
2920 (emacs_mswindows_remove_timeout): Ditto
|
|
2921
|
|
2922 * console-msw.h: Added frame structure field for menu checksum
|
|
2923
|
|
2924 * menubar-msw.c: Miscellaneous patches and bug fixes.
|
|
2925
|
|
2926 1997-12-30 SL Baur <steve@altair.xemacs.org>
|
|
2927
|
|
2928 * emacs.c (main): Clarify calls to main_1.
|
|
2929
|
|
2930 * data.c (Fcompiled_function_annotation): Hide DEFUN from
|
|
2931 make-docfile.
|
|
2932
|
|
2933 * emacs.c (main_1): The invocation name requires recomputing when
|
|
2934 running after dumping.
|
|
2935
|
|
2936 1997-12-29 SL Baur <steve@altair.xemacs.org>
|
|
2937
|
|
2938 * free-hook.c (check_free): Added explicit braces to avoid
|
|
2939 dangling else clause.
|
|
2940 * sound.c (Fplay_sound_file): Ditto.
|
|
2941 * process.c (set_process_filter): Ditto.
|
|
2942 * linuxplay.c (linux_play_data_or_file): Ditto.
|
|
2943 * regex.c (regex_compile): Ditto.
|
|
2944
|
|
2945 1997-12-28 SL Baur <steve@altair.xemacs.org>
|
|
2946
|
|
2947 * emacs.c (main_1): Fix logic to run in place when XEmacs is a
|
|
2948 login shell.
|
|
2949 (main_1): New parameter restart.
|
|
2950 (main): Use it.
|
|
2951
|
|
2952 * bytecode.h: Disable COMPILED_FUNCTION_ANNOTATION_HACK.
|
|
2953
|
|
2954 * print.c (debug_short_backtrace): Guard call to
|
|
2955 Fcompiled_function_annotation.
|
|
2956
|
|
2957 * alloc.c (disksave_object_finalization): Don't zero out
|
|
2958 load-history if history of pure symbols is desired.
|
|
2959
|
|
2960 * lread.c (build_load_history): If LOADHIST_DUMPED is defined, add
|
|
2961 pure symbols to load-history.
|
|
2962
|
|
2963 * emacsfns.h: New symbols added -- LOADHIST_DUMPED, define to get
|
|
2964 a history of dumped lisp. LOADHIST_BUILTIN, define to get a
|
|
2965 history of symbols defined in C source.
|
|
2966
|
231
|
2967 1997-12-23 Andy Piper <andyp@parallax.co.uk>
|
|
2968
|
|
2969 * Conditionals to enable XEmacs to compile (not run!) under
|
|
2970 CygWin32. Files touched:
|
|
2971 events.c
|
|
2972 getloadavg.c
|
|
2973 mem-limits.h
|
|
2974 objects-msw.c
|
|
2975 select-msw.c
|
|
2976 sysdep.c
|
|
2977 * s/cygwin.h: New file.
|
|
2978
|
|
2979 1997-12-26 Kirill M. Katsnelson <kkm@kis.ru>
|
|
2980
|
|
2981 * menubar-msw.c, menubar-msw.h: New files. Menus support.
|
|
2982
|
|
2983 * console-msw.h: Added frame menu hashtable variable.
|
|
2984
|
|
2985 * gui.c: popup_up_p variable and Fpopup_up_p and
|
|
2986 separator_string_p functions are moved from gui-x.c
|
|
2987
|
|
2988 * gui.h: New file declaring the above. It is #included into the
|
|
2989 following files:
|
|
2990 dialog-x.c
|
|
2991 gui-x.c
|
|
2992 menubar-x.c
|
|
2993
|
|
2994 * emacs.c: Added calls to *_of_menubar_mswindows()
|
|
2995
|
|
2996 * event-msw.c: Generalization of modal pump interface so it may be
|
|
2997 used bu menubars also. Some functions and vars renamed, to
|
|
2998 reflect more general approach (event_pump -> modal_loop)
|
|
2999
|
|
3000 * frame-msw.c: Initialization and marking of menu hashtable.
|
|
3001
|
|
3002 * msw-proc.c: Added handling for menu window messages.
|
|
3003
|
|
3004 * opaque.c: opaque objects given hash and equal methods, so they
|
|
3005 can be compared with 'equal. Menubar uses opaque pointers as
|
|
3006 hash keys in an 'equal style hastable.
|
|
3007
|
|
3008 * Most of the above touched files: Eliminated compiler warnings.
|
|
3009
|
|
3010 1997-12-18 Hrvoje Niksic <hniksic@srce.hr>
|
|
3011
|
|
3012 * elhash.c (print_hashtable): Use `%u' for fullness.
|
|
3013 (hashtable_equal): New function.
|
|
3014 (hashtable_equal_mapper): Ditto.
|
|
3015
|
|
3016 * lread.c (vars_of_lread): Initialize Vread_buffer_stream here
|
|
3017 instead of in init_lread.
|
|
3018
|
|
3019 1997-12-26 P. E. Jareth Hein <jareth@camelot-soft.com>
|
|
3020
|
|
3021 * glyphs-x.c (imagick_instantiate): Add in error and
|
|
3022 warning handling for ImageMagick files
|
|
3023
|
|
3024 1997-12-26 SL Baur <steve@altair.xemacs.org>
|
|
3025
|
|
3026 * Makefile.in.in (distclean): Remove `xemacs.*'.
|
|
3027
|
229
|
3028 1997-12-22 SL Baur <steve@altair.xemacs.org>
|
|
3029
|
|
3030 * device.c (vars_of_device): Provide `devices' feature so W3's
|
|
3031 devices.el emulation won't bloat XEmacs.
|
|
3032
|
|
3033 * lread.c (Fload_internal): Strip path and extension when
|
|
3034 considering a file as a candidate for running after-load functions.
|
|
3035
|
227
|
3036 1997-12-20 Kirill M. Katsnelson <kkm@kis.ru>
|
|
3037
|
|
3038 * s/windowsnt.h: SIZEOF_SHORT set to 16 bits instead of 32, to get
|
|
3039 real.
|
|
3040
|
|
3041 * redisplay-msw.c: (many functions): FillRect replaced with
|
|
3042 ExtTextOut where possible, which is much faster.
|
|
3043 (mswindows_redisplay_deadbox_maybe): New function which fixes
|
|
3044 deadbox, a square bounded by scrollbar ends and window corner
|
|
3045 (usually the lower right corner).
|
|
3046
|
|
3047 * emacs.c (assert_failed): On Win32 platforms, when assertion
|
|
3048 fails, debugger break occurs if DEBUG_XEMACS is defined.
|
|
3049
|
|
3050 * event-msw.c (mswindows_pump_outstanding_events): Fixed so two
|
|
3051 consequtive Fsignals are not lost.
|
|
3052
|
|
3053 * scrollbar-msw.c (mswindows_update_scrollbar_instance_values):
|
|
3054 Added SBF_DISABLENOSCROLL flag so the bar is greyed out when
|
|
3055 all lines are visible.
|
|
3056 (mswindows_update_scrollbar_instance_status): Ditto for freshly
|
|
3057 assigned scrollbar.
|
|
3058
|
|
3059 * scrollbar.c (Fscrollbar_set_hscroll): Fixed fitting scroll
|
|
3060 limits into range.
|
|
3061
|
|
3062 1997-12-18 Kirill M. Katsnelson <kkm@kis.ru>
|
|
3063
|
|
3064 * events-msw.c: Added support for modal event dispatch pump.
|
|
3065 This mechanism is for scrollbars and menus.
|
|
3066
|
|
3067 * events-msw.h: Public declaration for the pump function.
|
|
3068
|
|
3069 * msw-proc.c: Pump scrollbar misc user events through the
|
|
3070 brand new pump. Pumps!
|
|
3071
|
|
3072 * scrollbar-msw.c: Minor range fixes. Added misc events for
|
|
3073 horizontal bar, which did not fix it...
|
|
3074
|
|
3075 Thu Dec 18 09:53:12 1997 <jsparkes@internetivity.com (Jeff Sparkes)>
|
|
3076
|
|
3077 * objects-msw.c (mswindows_print_color_instance): Scale 8 bit RGB
|
|
3078 components up to 16 bit X sizes.
|
|
3079 (mswindows_string_to_color): numeric colors are #RRGGBB not #BBGGRR.
|
|
3080
|
|
3081 * objects-msw.c (mswindows_color_instance_rgb_components): ditto
|
|
3082
|
|
3083 * objects.c (Fcolor_instance_rgb_components): Document range of
|
|
3084 components as 0-65535.
|
|
3085
|
|
3086 1997-12-18 SL Baur <steve@altair.xemacs.org>
|
|
3087
|
|
3088 * doc.c (verify_doc_mapper): Fix return value and argument list
|
|
3089 for map_obarray.
|
|
3090
|
|
3091 * device-x.c: New variable -- Vx_app_defaults_directory.
|
|
3092 (x_init_device): Use locale directory searched from package-path.
|
|
3093
|
|
3094 1997-12-18 Kyle Jones <kyle_jones@wonderworks.com>
|
|
3095
|
|
3096 * EmacsFrame.c: Added foregroundToolBarColor and
|
|
3097 foreground resources to the resources[] definition.
|
|
3098 Moved default gray8o color value from the
|
|
3099 bcakgroundToolBarCOlor resource to th background
|
|
3100 resource since the override order is now reversed in
|
|
3101 toolbar-x.c. Don't provide a default value for the
|
|
3102 foreground resource that the toolbar code looks at.
|
|
3103
|
|
3104 * EmacsFrame.h: Define foregroundToolBarColor string
|
|
3105 for use in the resoruces code.
|
|
3106
|
|
3107 * EmacsFrameP.h: Added foreground_toolbar_pixel slot
|
|
3108 to EmacsFramePart struct.
|
|
3109
|
|
3110 * toolbar-x.c: Let the toolbar specific background
|
|
3111 resource override the global background resource. Added
|
|
3112 support for a toolbar specific foreground resource,
|
|
3113 which is not currently used for anything internally.
|
|
3114
|
|
3115 1997-12-17 Hrvoje Niksic <hniksic@srce.hr>
|
|
3116
|
|
3117 * redisplay.c (decode_mode_spec): Comment fixup.
|
|
3118
|
|
3119 * tooltalk.c (Freceive_tooltalk_message): Ditto.
|
|
3120
|
|
3121 * search.c (Freplace_match): Ditto.
|
|
3122
|
|
3123 * frame-x.c (x_frame_property): Ditto.
|
|
3124
|
|
3125 * console.c (Fcurrent_input_mode): Ditto.
|
|
3126
|
|
3127 * callint.c (Fcall_interactively): Ditto.
|
|
3128
|
|
3129 * abbrev.c (Fexpand_abbrev): Ditto.
|
|
3130
|
|
3131 * dired.c (file_name_completion): Use Qzero instead of
|
|
3132 make_int(0).
|
|
3133
|
|
3134 * fileio.c (Finsert_file_contents_internal): Use
|
|
3135 report_file_error() to report reading error.
|
|
3136
|
|
3137 * cmds.c (internal_self_insert): Don't self-insert if the expanded
|
|
3138 symbol's hook has a non-nil `no-self-insert' property; synch with
|
|
3139 FSF 20.2.
|
|
3140
|
|
3141 * abbrev.c (Fexpand_abbrev): Return Vlast_abbrev, like in FSF
|
|
3142 20.2.
|
|
3143
|
|
3144 1997-12-16 Hrvoje Niksic <hniksic@srce.hr>
|
|
3145
|
|
3146 * abbrev.c (abbrev_match): User map_obarray() instead of
|
|
3147 crockishly copying it.
|
|
3148 (abbrev_match_mapper): New function.
|
|
3149 (Fexpand_abbrev): Check whether `pre-abbrev-expand-hook' has
|
|
3150 killed the buffer.
|
|
3151
|
|
3152 * symbols.c (map_obarray): Accept a void * argument.
|
|
3153 (mapatoms_1): Adapt.
|
|
3154 (apropos_accum): Use fast_lisp_string_match().
|
|
3155 (Fapropos_internal): Don't cons.
|
|
3156 (map_obarray): Stop mapping if FN returns non-zero.
|
|
3157
|
|
3158 * marker.c (unchain_marker): Guard assert() with ERROR_CHECK_GC.
|
|
3159 (bi_marker_position): Guard assert() with ERROR_CHECK_BUFPOS.
|
|
3160 (set_bi_marker_position): Ditto.
|
|
3161
|
|
3162 1997-12-15 Hrvoje Niksic <hniksic@srce.hr>
|
|
3163
|
|
3164 * fileio.c (Finsert_file_contents_internal): Use make_int when
|
|
3165 checking for overflow.
|
|
3166 (Finsert_file_contents_internal): Use EXTERNAL_LIST_LOOP.
|
|
3167 (Ffind_file_name_handler): Ditto.
|
|
3168
|
|
3169 * dired.c (file_name_completion): Use noseeum_cons.
|
|
3170 (file_name_completion_unwind): Free the cons.
|
|
3171
|
225
|
3172 1997-12-16 <jsparkes@internetivity.com (Jeff Sparkes)>
|
|
3173
|
|
3174 * scrollbar.c: Add HAVE_MS_WINDOWS to scrollbar-page functions.
|
|
3175
|
|
3176 * msw-proc.c: Handle scrolling events.
|
|
3177
|
|
3178 * frame-msw.c: Initialize scrollbar width and height. This should
|
|
3179 not be necessary, since the window shouldn't be created until
|
|
3180 init_frame_2
|
|
3181
|
|
3182 * emacs.c: Call mswindows scrolbar setup when appropriate.
|
|
3183
|
|
3184 * scrollbar-msw.c: Created for mswindows-scrollbar support.
|
|
3185
|
|
3186 * scrollbar-msw.h: Ditto.
|
|
3187
|
|
3188 1997-12-16 Kirill M. Katsnelson <kkm@kis.ru>
|
|
3189
|
|
3190 * msw-proc.c: Minor bug in the middle button emulation code
|
|
3191 exterminated.
|
|
3192
|
|
3193 * msw-proc.c: Character translation procedure reworked, so C-M-char
|
|
3194 keys now work properly. Keyboard layouts that use AltGr for
|
|
3195 third register characters are detected and handled. The code
|
|
3196 has been tested on French and UK keyboard layouts.
|
|
3197
|
|
3198 * msw-proc.c: #if 0'ed remains of threaded code are removed.
|
|
3199
|
|
3200 * event-msw.c: Mouse motion was incorrectly counted for a user event.
|
|
3201
|
|
3202 * event-msw.c: lisp variables beginnig with w32- are renamed to
|
|
3203 begin with mswindows-.
|
|
3204
|
|
3205 1997-12-15 Hrvoje Niksic <hniksic@srce.hr>
|
|
3206
|
|
3207 * fileio.c (Finsert_file_contents_internal): Use it.
|
|
3208 (Fcopy_file): Ditto.
|
|
3209
|
|
3210 * sysdep.c (interruptible_open): New function.
|
|
3211
|
|
3212 1997-12-16 Kyle Jones <kyle_jones@wonderworks.com>
|
|
3213
|
|
3214 * frame-x.c (x_init_frame_2): Don't call
|
|
3215 update_frame_title. Some modeline specs depend on
|
|
3216 f->device->selected_frame being non-nil and that will
|
|
3217 not be true during initialization of the first frame on
|
|
3218 a device.
|
|
3219
|
|
3220 1997-12-16 SL Baur <steve@altair.xemacs.org>
|
|
3221
|
|
3222 * fileio.c: clean up paren levels between ifdefs.
|
|
3223 From Hrvoje Niksic <hniksic@srce.hr>
|
|
3224
|
|
3225 1997-12-15 P. E. Jareth Hein <jareth@camelot-soft.com>
|
|
3226
|
|
3227 * glyphs-x.c (imagick_instantiate): Remove an assumption that
|
|
3228 all machines have LSB XImage support.
|
|
3229
|
|
3230 1997-12-14 Kyle Jones <kyle_jones@wonderworks.com>
|
|
3231
|
|
3232 * Makefile.in.in: Moved $(OFFIX_O) from x_objs to
|
|
3233 X11_objs to avoid having its initialized global
|
|
3234 variables be dumped read-only.
|
|
3235
|
|
3236 1997-12-14 SL Baur <steve@altair.xemacs.org>
|
|
3237
|
|
3238 * offix.c (DndSetData): Use standard INT_MAX instead of MAXINT.
|
|
3239 Replace <values.h> with <limits.h>
|
|
3240
|
223
|
3241 1997-12-13 Kirill M. Katsnelson <kkm@kis.ru>
|
|
3242
|
|
3243 * msw-proc.c: added emulation for middle mouse button by chording
|
|
3244 left and right buttons
|
|
3245 * event-msw.c: added lisp variables for resize behavior and middle
|
|
3246 button emulation thresholds
|
|
3247 * msw-proc.c: {un}map-frame-hook now are not called directly from
|
|
3248 the window procedure, rather from magic event handler.
|
|
3249 * Formulated golden rule for calling lisp from window procedure:
|
|
3250 "NOOOOOO!". May be violated under circumstances although.
|
|
3251 * frame-msw.c: corrected problem with setting frame width and height
|
|
3252 properties, introduced by 95-style look.
|
|
3253
|
|
3254 1997-12-12 SL Baur <steve@altair.xemacs.org>
|
|
3255
|
|
3256 * input-method-xlib.c (describe_XIC): Add casts, use unsigned long
|
|
3257 int.
|
|
3258
|
|
3259 * eval.c (funcall_subr): Ifdef out as it is now unused.
|
|
3260
|
|
3261 * emacsfns.h: Declare Fdisplay_error.
|
|
3262
|
|
3263 * callint.c (Fquote_maybe): Don't use `==' on Lisp_Objects.
|
|
3264
|
|
3265 1997-12-12 Michael Sperber <sperber@informatik.uni-tuebingen.de>
|
|
3266
|
|
3267 * fileio.c: Removed stillborn set-buffer-modtime.
|
|
3268
|
|
3269 1997-12-10 Hrvoje Niksic <hniksic@srce.hr>
|
|
3270
|
|
3271 * elhash.c (hashtable_instantiate): If SIZE is nil, set it to
|
|
3272 length of DATA.
|
|
3273 (print_hashtable): Would bogusly print #(hashtable).
|
|
3274 (verify_function): Use XCAR.
|
|
3275
|
|
3276 1997-12-12 Hrvoje Niksic <hniksic@srce.hr>
|
|
3277
|
|
3278 * elhash.c (print_hashtable_data_mapper): Use a C structure
|
|
3279 instead of consing.
|
|
3280
|
|
3281 1997-12-12 Hrvoje Niksic <hniksic@srce.hr>
|
|
3282
|
|
3283 * callint.c (quotify_arg): Don't quotify vectors, keywords,
|
|
3284 bit-vectors and lambdas.
|
|
3285 (Fquote_maybe): New subr, from quotify_arg.
|
|
3286 (quotify_args): Use it.
|
|
3287 (Fcall_interactively): Ditto.
|
|
3288
|
|
3289 1997-12-11 Hrvoje Niksic <hniksic@srce.hr>
|
|
3290
|
|
3291 * window.c (Fset_window_point): Ditto for Fgoto_char.
|
|
3292 (Fset_window_configuration): Ditto.
|
|
3293
|
|
3294 * undo.c (Fprimitive_undo): Ditto for Fset_buffer_modified_p,
|
|
3295 Fgoto_char and Fdelete_region.
|
|
3296
|
|
3297 * print.c (temp_output_buffer_setup): Ditto.
|
|
3298
|
|
3299 * glyphs.c (make_string_from_file): Ditto.
|
|
3300
|
|
3301 * glyphs-x.c (pixmap_to_lisp_data): Ditto for Ferase_buffer.
|
|
3302 (pixmap_to_lisp_data): Ditto for Fbuffer_substring.
|
|
3303
|
|
3304 * bytecode.c (Fbyte_code): Use Qnil instead of Fcurrent_buffer()
|
|
3305 when calling functions that use decode_buffer() internally -- it
|
|
3306 is faster.
|
|
3307
|
|
3308 Change done for Fgoto_char, Fchar_after, Ffollowing_char,
|
|
3309 Fpreceding_char, Findent_to, Feolp, Feobp, Fbolp, Fbobp,
|
|
3310 Fforward_char, Fforward_word, Fskip_chars_forward,
|
|
3311 Fskip_chars_backward, Fforward_line, Fbuffer_substring,
|
|
3312 Fdelete_region, Fnarrow_to_region, Fwiden, Fend_of_line, Fupcase
|
|
3313 and Fdowncase.
|
|
3314
|
|
3315 1997-12-11 Jonathan Harris <jhar@tardis.ed.ac.uk>, Kirill M. Katsnelson <kkm@kis.ru>
|
|
3316
|
|
3317 * The first collegial patch in the xemacs-nt history. Well...
|
|
3318 * device-msw.c, event-msw.c, event-msw.h, frame-msw.c, msw-proc.c:
|
|
3319 xemacs is now single-threaded application. Due to this, the
|
|
3320 problem with crash during input events in GC got resolved.
|
|
3321 * xemacs frames are given "95ish" look with raised border.
|
|
3322 * stop character (ctrl+g) now works. SIGINT (ctrl+c or ctrl+break
|
|
3323 at the console) is still broken although.
|
|
3324 * frame "as lisp object" is now stored in window-associated space
|
|
3325 provided by the system. This enables obtaining frame object given
|
|
3326 window handle in constant time.
|
|
3327 * mswindows_cancel_dispatch_event() now has limited handling
|
|
3328 for key_press_event's in addition to timeout_event's.
|
|
3329
|
|
3330 1997-12-11 SL Baur <steve@altair.xemacs.org>
|
|
3331
|
|
3332 * intl.c (init_intl_very_early): Force LC_NUMERIC to "C".
|
|
3333 * input-method-xfs.c (Initialize_Locale): Ditto.
|
|
3334 * input-method-motif.c (Initialize_Locale): Ditto.
|
|
3335 * input-method-xlib.c (Initialize_Locale): Ditto.
|
|
3336 Suggested by Didier Verna <verna@inf.enst.fr> and
|
|
3337 Martin Buchholz <martin@xemacs.org>
|
|
3338
|
|
3339 1997-12-10 Karl M. Hegbloom <karlheg@bittersweet.inetarena.com>
|
|
3340
|
|
3341 * config.h.in: #undef MAGICK_HEADERS_ARE_UNDER_X11
|
|
3342
|
|
3343 * glyphs-x.c: #ifdef MAGICK_HEADERS_ARE_UNDER_X11 added.
|
|
3344
|
|
3345 1997-12-11 SL Baur <steve@altair.xemacs.org>
|
|
3346
|
|
3347 * glyphs-x.c (_XOS_H_): Try to avoid including Xos.h on Solaris.
|
|
3348 Suggested by Samuel Tardieu <sam@inf.enst.fr>
|
|
3349
|
|
3350 1997-12-11 David Hobley <davidh@wr.com.au>
|
|
3351
|
|
3352 * pure.c: Removed WINDOWSNT conditional.
|
|
3353
|
|
3354 1997-12-10 SL Baur <steve@altair.xemacs.org>
|
|
3355
|
|
3356 * Makefile.in.in: Doc changes, update dependencies.
|
|
3357
|
|
3358 * frame-x.c (x_init_frame_1): Remove unused variable.
|
|
3359
|
|
3360 * fns.c (internal_equal): Guard label with ifdef.
|
|
3361 (internal_old_equal): Ditto.
|
|
3362
|
|
3363 * symsinit.h: Declare structure_type_create_hashtable.
|
|
3364
|
|
3365 * elhash.c (finish_marking_weak_hashtables): Move unused variable
|
|
3366 so gcc doesn't complain about it.
|
|
3367
|
|
3368 * elhash.h: Declare new weak hashtables.
|
|
3369
|
|
3370 * elhash.c (print_hashtable): Fix format.
|
|
3371
|
|
3372 1997-12-10 Hrvoje Niksic <hniksic@srce.hr>
|
|
3373
|
|
3374 * frame-tty.c (tty_raise_frame_no_select): Use LIST_LOOP.
|
|
3375 (tty_lower_frame): Ditto.
|
|
3376
|
|
3377 * faces.c (face_validate): Don't check for doubly defined
|
|
3378 keywords; the reader does that.
|
|
3379
|
|
3380 * emacs.c (main_1): Call structure_type_create_hashtable().
|
|
3381
|
|
3382 * general.c (syms_of_general): Added Qtest and Qsize.
|
|
3383
|
|
3384 * elhash.c (structure_type_create_hashtable): New function.
|
|
3385 (hashtable_type_validate): Ditto.
|
|
3386 (hashtable_test_validate): Ditto.
|
|
3387 (hashtable_size_validate): Ditto.
|
|
3388 (hashtable_data_validate): Ditto.
|
|
3389 (hashtable_instantiate): Ditto.
|
|
3390
|
|
3391 * extents.c (extent_putprop): Made it work.
|
|
3392 (extent_remprop): Ditto.
|
|
3393
|
221
|
3394 1997-12-08 Kirill M. Katsnelson <kkm@kis.ru>
|
|
3395
|
|
3396 * device.h: device::fdin and device::fdout are now defined for
|
|
3397 systems which do not HAVE_UNIXOID_EVENT_LOOP.
|
|
3398 * device-tty.c, process.c, signal.c: call to signal_fake_event()
|
|
3399 bracketed out by #ifdef HAVE_UNIXOID_EVENT_LOOP / #endif
|
|
3400 directives.
|
|
3401 * signal.c: For Win32 systems, longjmp in signal handler excluded
|
|
3402 * nt.c, syssignal.h, systime.h: emulation for SIGALRM and SIGPROF
|
|
3403 and setitimer for Win32 platforms. Profiling now works.
|
|
3404 * emacs.c: calls to syms_of_profile and vars_of_profile enabled
|
|
3405 on Win32 platforms.
|
|
3406 * ntproc.c: handling of SIGCHLD now done by the common signal
|
|
3407 faking mechanism. (To no avail - subprocesses still broken)
|
|
3408 * s/windowsnt.h: Signal constants added
|
|
3409 * redisplay-msw.c: "Sticky" beep which blocked XEmacs until the
|
|
3410 sound finishes is now repaired
|
|
3411
|
|
3412 1997-12-06 Jonathan Harris <jhar@tardis.ed.ac.uk>
|
|
3413
|
|
3414 * frame-msw.c, msw-proc.c
|
|
3415 Further changes to resizing code so that changing default
|
|
3416 font, either in .emacs or later, works properly.
|
|
3417
|
|
3418 * msw-proc.c
|
|
3419 Minor optimization: Mouse movement events aren't generated
|
|
3420 while the user is resizing the frame.
|
|
3421 Function keys are returned lower-case.
|
|
3422
|
|
3423 1997-12-09 P. E. Jareth Hein <jareth@camelot-soft.com>
|
|
3424
|
|
3425 * glyphs-x.c (imagick_instantiate): fix it so that it works
|
|
3426 properly for PseudoClass files. Still needs some thinking for
|
|
3427 full color... Also added support for old image instantiators
|
|
3428 in various places using the OLDCOMPAT define
|
|
3429
|
|
3430 1997-12-08 Kyle Jones <kyle_jones@wonderworks.com>
|
|
3431
|
|
3432 * event-stream.c (Faccelerate_menu): Check for the
|
|
3433 existence of a menubar associated with the selected frame
|
|
3434 before trying to use it. Signal an error if there is
|
|
3435 no menubar.
|
|
3436
|
219
|
3437 1997-12-06 P E Jareth Hein <jareth@camelot-soft.com>
|
|
3438
|
|
3439 * device-x.c: Change -privcmap to -privatecolormap.
|
|
3440 * events.c: corret minor think-o.
|
|
3441
|
|
3442 1997-12-04 Jonathon Harris <jhar@tardis.ed.ac.uk>
|
|
3443
|
|
3444 * event-msw.c, faces.c, msw-proc.c:
|
|
3445 Frame resizing happens in multiples of the default character size.
|
|
3446 * frame-msw.c:
|
|
3447 mswindows_set_frame_size() and
|
|
3448 mswindows_set_frame_properties() now call AdjustWindowRect to
|
|
3449 set the correct window size.
|
|
3450
|
|
3451 1997-12-04 Jeff Sparkes <jsparkes@internetivity.com>
|
|
3452
|
|
3453 * frame-msw.c: added frame functions for move, resize,
|
|
3454 iconify, raise, lower, visible_p, iconified_p, focus,
|
|
3455 make visible, make invisible, set title.
|
|
3456
|
|
3457 1997-12-01 Jonathon Harris <jhar@tardis.ed.ac.uk>
|
|
3458
|
|
3459 * event-msw.c, event-msw.h, frame-msw.c, msw-proc.c:
|
|
3460 - Implemeted simple emacs_mswindows_event_pending_p().
|
|
3461 - Fixed deleting frames.
|
|
3462 - Rewrote timeout code, eliminating "!NILP(rest)" bug.
|
|
3463 - Special processing for 'Ctrl-@' keystroke.
|
|
3464 - Support for some new keysyms.
|
|
3465
|
|
3466 1997-12-03 Hrvoje Niksic <hniksic@srce.hr>
|
|
3467
|
|
3468 * lstream.c (make_stdio_stream_1): Set it.
|
|
3469 (make_filedesc_stream_1): Ditto.
|
|
3470 (finalize_lstream): Use it.
|
|
3471
|
|
3472 * lstream.h: New flag LSTREAM_FL_CLOSE_AT_DISKSAVE.
|
|
3473
|
|
3474 1997-11-29 Jeff Miller <jmiller@smart.net>
|
|
3475
|
|
3476 * menubar-x.c: define restore_in_menu_callback() when motif
|
|
3477 menubars are used.
|
|
3478
|
|
3479 * menubar-x.c: change #ifdef LWLIB_MENUBARS_MOTIF to
|
|
3480 #if defined LWLIB_MENUBARS_LUCID || defined LWLIB_MENUBARS_MOTIF
|
|
3481 around code for incremental menu build.
|
|
3482
|
|
3483 * event-stream.c: Changed HAVE_MENUBARS to HAVE_MENUBARS_LUCID in
|
|
3484 the #ifdef wrappers around menubar accelerator stuff.
|
|
3485
|
|
3486 1997-12-05 SL Baur <steve@altair.xemacs.org>
|
|
3487
|
|
3488 * keymap.h: update describe_map_tree prototype
|
|
3489
|
|
3490 1997-12-03 Hrvoje Niksic <hniksic@srce.hr>
|
|
3491
|
|
3492 * lstream.c (make_stdio_stream_1): Set it.
|
|
3493 (make_filedesc_stream_1): Ditto.
|
|
3494 (finalize_lstream): Use it.
|
|
3495
|
|
3496 * lstream.h: New flag LSTREAM_FL_CLOSE_AT_DISKSAVE.
|
|
3497
|
|
3498 1997-12-03 Hrvoje Niksic <hniksic@srce.hr>
|
|
3499
|
|
3500 * editfns.c (save_excursion_restore): Fix comment.
|
|
3501
|
|
3502 * fns.c (Fmapvector): GCPRO the vector.
|
|
3503
|
|
3504 1997-12-01 Hrvoje Niksic <hniksic@srce.hr>
|
|
3505
|
|
3506 * cmdloop.c (default_error_handler): Respect
|
|
3507 errors-deactivate-region; use display-error.
|
|
3508
|
|
3509 * editfns.c (vars_of_editfns): New variable user-full-name.
|
|
3510 (init_editfns): Initialize it.
|
|
3511 (Fuser_full_name): Use it.
|
|
3512 (vars_of_editfns): Docfixes.
|
|
3513
|
|
3514 * dired.c (Fdirectory_files): Use FORMAT_FILENAME instead of
|
|
3515 FORMAT_BINARY.
|
|
3516 (make_directory_hash_table): Ditto.
|
|
3517 (file_name_completion): Bind `completion-ignore-case' to t under
|
|
3518 MS Windows.
|
|
3519 (file_name_completion): Signal an error if a member of
|
|
3520 `completion-ignored-extensions' is not a string.
|
|
3521
|
|
3522 1997-11-30 Hrvoje Niksic <hniksic@srce.hr>
|
|
3523
|
|
3524 * doc.c (Fsubstitute_command_keys): Don't use
|
|
3525 Vprin1_to_string_buffer.
|
|
3526
|
|
3527 * keymap.c (describe_map_tree): Accept a BUFFER argument.
|
|
3528 (describe_map): Ditto.
|
|
3529 (describe_command): Ditto.
|
|
3530
|
|
3531 1997-11-29 Hrvoje Niksic <hniksic@srce.hr>
|
|
3532
|
|
3533 * insdel.c (signal_before_change): Don't treat
|
|
3534 Vprin1_to_string_buffer specially.
|
|
3535 (signal_after_change): Ditto.
|
|
3536
|
|
3537 * buffer.c (Fkill_buffer): Don't treat Vprin1_to_string_buffer
|
|
3538 specially.
|
|
3539 (complex_vars_of_buffer): Ditto.
|
|
3540
|
|
3541 * print.c (Ferror_message_string): Use Vprin1_to_string_stream.
|
|
3542
|
|
3543 * events.c (Fmake_event): Changed error message.
|
|
3544
|
|
3545 * print.c (Fprin1_to_string): Use a resizing-buffer stream.
|
|
3546
|
|
3547 1997-12-03 Hrvoje Niksic <hniksic@srce.hr>
|
|
3548
|
|
3549 * buffer.c (Fkill_buffer): Use EXTERNAL_LIST_LOOP.
|
|
3550 (Fget_file_buffer): Use LIST_LOOP.
|
|
3551
|
|
3552 1997-12-02 Hrvoje Niksic <hniksic@srce.hr>
|
|
3553
|
|
3554 * editfns.c (save_excursion_save): Don't save VISIBLE-P.
|
|
3555 (save_excursion_restore): Changed accordingly.
|
|
3556 (save_excursion_restore): Free the markers and conses even if the
|
|
3557 buffer is dead.
|
|
3558 (save_restriction_restore): Use XCAR/XCDR.
|
|
3559 (Fencode_time): Use XCAR/XCDR, when safe.
|
|
3560
|
|
3561 * menubar.c (Fnormalize_menu_item_name): Use INC_CHARPTR; allow
|
|
3562 `%%' to mean `%'.
|
|
3563
|
|
3564 * minibuf.c (regexp_ignore_completion_p): Use EXTERNAL_LIST_LOOP;
|
|
3565 check type of list elements.
|
|
3566
|
|
3567 * dired.c (file_name_completion): Set up a proper unwind form.
|
|
3568 (file_name_completion_unwind): New function.
|
|
3569 (file_name_completion): Allow errors.
|
|
3570
|
|
3571 * line-number.c (invalidate_line_number_cache): Would lose in
|
|
3572 precence of Finsert_before_markers.
|
|
3573 (narrow_line_number_cache): Only mark LINE_NUMBER_BEGV as dirty.
|
|
3574 (buffer_line_number): Recalculate LINE_NUMBER_BEGV on demand.
|
|
3575 (buffer_line_number): Would ignore LINE_NUMBER_FAR.
|
|
3576
|
|
3577 1997-12-01 Hrvoje Niksic <hniksic@srce.hr>
|
|
3578
|
|
3579 * fns.c (Fmapvector): Don't stack-allocate args; allocate the
|
|
3580 vector and call mapcar1 with its data.
|
|
3581
|
|
3582 1997-12-02 P E Jareth Hein <jareth@camelot-soft.com>
|
|
3583
|
|
3584 * objects-x.c: Added colormap/visual support, rewrote
|
|
3585 allocate_nearest_color, and changed the x-color-instance to deal
|
|
3586 with possibly not freeing a color.
|
|
3587
|
|
3588 * objects-x.h: Added dealloc_on_gc flag for x-color-instances.
|
|
3589
|
|
3590 * redisplay-x.c: Added colormap/visual support.
|
|
3591
|
|
3592 * balloon-x.c: Added colormap/visual support.
|
|
3593
|
|
3594 * console-x.h: Added colormap/visual support by adding visual,
|
|
3595 depth and colormap slots to a device.
|
|
3596
|
|
3597 * device-x.c: Added colormap/visual support with the command line
|
|
3598 options "-privcmap" and "-visual" and Xresources
|
|
3599 ".privateColormap" and ".EmacsVisual". Also changed the
|
|
3600 device-init so that the app-shell is always realized to properly
|
|
3601 deal with GCs (previously only realized when OFFIX was
|
|
3602 supported), and added the x-display-visual-depth lisp function to
|
|
3603 complement x-display-visual-class.
|
|
3604
|
|
3605 * event-Xt.c: Added colormap/visual support, and stuck in a
|
|
3606 patch/hack to change the way Xt inherits visuals to match the way
|
|
3607 it inherits colormaps.
|
|
3608
|
|
3609 * frame-x.c: Added colormap/visual support.
|
|
3610
|
|
3611 * glyphs-x.c: Added colormap/visual support. Will probably need a
|
|
3612 lot more work.
|
|
3613
|
217
|
3614 1997-11-27 Kyle Jones <kyle_jones@wonderworks.com>
|
|
3615
|
|
3616 * src/keymap.c (munging_key_map_event_binding): Don't do
|
|
3617 the meta char hack when processing key-translation-map.
|
|
3618 Return nil if the map to be processed (function-key-map
|
|
3619 or key-translation-map) is not a keymap.
|
|
3620
|
|
3621 1997-11-27 SL Baur <steve@altair.xemacs.org>
|
|
3622
|
|
3623 * device-msw.c: Turn on italic flag if appropriate
|
|
3624 * objects-msw.c: Set device-class to color.
|
|
3625 From Jeff Sparkes <jsparkes@internetivity.com>
|
|
3626
|
|
3627 * glyphs-x.c: Should include <magick/magick.h> since that is what
|
|
3628 is autodetected by configure.
|
|
3629
|
|
3630 1997-11-26 SL Baur <steve@altair.xemacs.org>
|
|
3631
|
|
3632 * events.c (Fmake_event): correct type bug.
|
|
3633 From Colin Rafferty <craffert@ml.com>
|
|
3634
|
|
3635 1997-11-26 Kyle Jones <kyle_jones@wonderworks.com>
|
|
3636
|
|
3637 * lisp-disunion.h (VALMASK): Use 1UL instead of 1L to
|
|
3638 shut up Sun's niggling compiler warnings about integer
|
|
3639 overflow.
|
|
3640
|
|
3641 * print.c (Fprin1_to_string): Don't change and
|
|
3642 restore the current buffer; no buffer change is needed
|
|
3643 to accomplish the task.
|
|
3644
|
|
3645 1997-11-23 Jeff Miller <jmiller@smart.net>
|
|
3646
|
|
3647 * Makefile.in.in removed energize support
|
|
3648 * buffer.c removed energize support
|
|
3649 * config.h.in removed energize support
|
|
3650 * console-x.h removed energize support
|
|
3651 * doc.c removed energize support
|
|
3652 * emacs.c removed energize support
|
|
3653 * extents.c removed energize support
|
|
3654 * extents.h removed energize support
|
|
3655 * frame-x.c removed energize support
|
|
3656 * gui-x.c removed energize support
|
|
3657 * menubar-x.c removed energize support
|
|
3658 * process.c removed energize support
|
|
3659 * puresize.h removed energize support
|
|
3660 * symsinit.h removed energize support
|
|
3661 * sysproc.h removed energize support
|
|
3662 * syssignal.h removed energize support
|
|
3663 * undo.c removed energize support
|
|
3664 * window.c removed energize support
|
|
3665
|
|
3666 * energize.c removed
|
|
3667 * energize.h removed
|
|
3668
|
|
3669 1997-11-23 Kyle Jones <kyle_jones@wonderworks.com>
|
|
3670
|
|
3671 * faces.c (face_property_was_changed): Don't call
|
|
3672 update_faces_inheritance, it isn't needed.
|
|
3673
|
|
3674 1997-11-22 Kyle Jones <kyle_jones@wonderworks.com>
|
|
3675
|
|
3676 * redisplay-x.c (x_flash): Flash the root window
|
|
3677 area instead of the entire frame area.
|
|
3678
|
|
3679 * frame.h: Added echo_area_garbaged field to frame
|
|
3680 struct.
|
|
3681
|
|
3682 * frame.c (change_frame_size_1): Set the
|
|
3683 echo_area_garbaged flag in a frame that has been
|
|
3684 resized.
|
|
3685
|
|
3686 * redisplay.c (redisplay_frame): Clear echo_area_garbaged
|
|
3687 flag on frame after displaying the frame.
|
|
3688
|
|
3689 (Fredisplay_echo_area): Clear echo_area_garbaged
|
|
3690 flag on frame after displaying in echo area.
|
|
3691
|
|
3692 * redisplay.c: Added hscroll_glyph_width_adjust field
|
|
3693 to position_redisplay_data_type struct.
|
|
3694
|
|
3695 (add_hscroll_rune): Compute the difference in width
|
|
3696 between the hscroll glyph and a canonical space; store
|
|
3697 it in data->hscroll_glyph_width_adjust.
|
|
3698
|
|
3699 (create_text_block): In tab field computation, adjust
|
|
3700 left margin to account for the difference between the
|
|
3701 width of the hscroll glyph and the width of a canonical
|
|
3702 space.
|
|
3703
|
215
|
3704 1997-11-19 Kyle Jones <kyle_jones@wonderworks.com>
|
|
3705
|
|
3706 * Emacs.ad: Change uses of Gray75 to Gray80.
|
|
3707 Don't set modeline colors here.
|
|
3708
|
|
3709 * EmacsFrame.c: Fetch "background" resource for use by
|
|
3710 the toolbar initialization code; default this fetched
|
|
3711 value to -1 if it is unspecified, which is different
|
|
3712 from what is found in ef->core.background_pixel in that
|
|
3713 case.
|
|
3714
|
|
3715 * EmacsFrame.h: Define macros for "Background" and
|
|
3716 "background" resource strings.
|
|
3717
|
|
3718 * EmacsFrameP.h: Added background_pixel field to
|
|
3719 EmascFrmaePart struct.
|
|
3720
|
|
3721 * toolbar-x.c (x_initialize_frame_toolbar_gcs): Added
|
|
3722 code to use the global background resource as the
|
|
3723 toolbar background color if it is sepcified. Otherwise
|
|
3724 fall back to the backgroundToolBarColor resource.
|
|
3725
|
|
3726 1997-11-17 Marc Paquette <marcpa@cam.org>
|
|
3727
|
|
3728 * callproc.c (Fcall_process_internal): Fix for bug in
|
|
3729 CRLF -> LF conversion.
|
|
3730
|
|
3731 1997-11-19 Jonathan Harris <jhar@tardis.ed.ac.uk>
|
|
3732
|
|
3733 * redisplay-msw.c: Calls GdiFlush() in _ouput_end, _clear_frame and
|
|
3734 _redraw_exposed_area
|
|
3735
|
|
3736 * frame-msw.c: mswindows_init_frame_2
|
|
3737 Sets frame's pixel width and height
|
|
3738
|
|
3739 1997-11-19 Kyle Jones <kyle_jones@wonderworks.com>
|
|
3740
|
|
3741 * callproc.c (call_process_cleanup): Actaully wait
|
|
3742 for the process, rather than not doing it and saying we
|
|
3743 did.
|
|
3744
|
|
3745 1997-11-20 Hrvoje Niksic <hniksic@srce.hr>
|
|
3746
|
|
3747 * callproc.c (Fcall_process_internal): Close fd_error.
|
|
3748
|
|
3749 1997-11-19 Didier Verna <verna@inf.enst.fr>
|
|
3750
|
|
3751 * emacs.c (main_1): Added the missing argmatch call to check
|
|
3752 for the '-h' option.
|
|
3753
|
|
3754 1997-11-18 SL Baur <steve@altair.xemacs.org>
|
|
3755
|
|
3756 * mule-coding.h: Replace freshly broken ENCODE_SJIS and
|
|
3757 DECODE_SJIS macros with working versions from beta4.
|
|
3758
|
|
3759 1997-11-17 Kyle Jones <kyle_jones@wonderworks.com>
|
|
3760
|
|
3761 * frame-x.c (x_init_frame_1): Set frame visibility
|
|
3762 flag to 1 immediately so that echo area message are
|
|
3763 displayed in it promptly.
|
|
3764
|
|
3765 * redisplay.c (Fredisplay_echo_area): If frame has
|
|
3766 changed, clear it to avoid garbled messages.
|
|
3767
|
|
3768 * window.c (set_window_pixsize): Restore the bail out
|
|
3769 if no size change, but do it after the loop that recomputers
|
|
3770 major child corner coordinates.
|
|
3771
|
|
3772 * keymap.c (describe_map_mapper): Recognize the
|
|
3773 buttonXup keysyms as mouse bindings.
|
|
3774
|
|
3775 1997-11-17 Tor Arntsen <tor@spacetec.no>
|
|
3776
|
|
3777 * Makefile.in.in (update-elc.stamp): Add temacs to dependency.
|
|
3778
|
|
3779 1997-11-16 Kyle Jones <kyle_jones@wonderworks.com>
|
|
3780
|
|
3781 * Added suport for toolbar borders.
|
|
3782
|
|
3783 * EmacsFrame.c: Added X resources for new toolbar
|
|
3784 borders.
|
|
3785
|
|
3786 (EmacsFrameSetValues): Added Fadd_spec_to_specifier
|
|
3787 calls to move resourced toolbar border width data
|
|
3788 into the speciifers.
|
|
3789
|
|
3790 * EmacsFrame.h: Defined X resource strings for
|
|
3791 toolbar border width resources.
|
|
3792
|
|
3793 * EmacsFrameP.h: Added toolbar border width fields
|
|
3794 to the EmacsFramePart struct.
|
|
3795
|
|
3796 * console.h: Added toolbar_border_width_changed_in_frame_method
|
|
3797 field to struct console.
|
|
3798
|
|
3799 * events.c (event_x_y_pixel_internal): Factor the
|
|
3800 toolbar border into pixel offset.
|
|
3801
|
|
3802 * frame.c: Document new toolbar border width
|
|
3803 speciifer as being usable as frame properties.
|
|
3804
|
|
3805 (frame_conversion_internal): Factor the toolbar border
|
|
3806 widths into the geometry calculations.
|
|
3807
|
|
3808 (change_frame_size_1): Ditto.
|
|
3809
|
|
3810 * frame.h: Added field to struct frame for toolbar
|
|
3811 border widths. Modified geomtry macros and created
|
|
3812 others in support of the new toolbar border widths.
|
|
3813
|
|
3814 * frameslot.h: Added a default_toolbar_border_width
|
|
3815 slot.
|
|
3816
|
|
3817 * redisplay-x.c (x_clear_frame): Factor the toolbar
|
|
3818 border widths into the geometry calculations.
|
|
3819
|
|
3820 * toolbar-x.c (x_draw_blank_toolbar_button): Add
|
|
3821 support for drawing a border along with the blank
|
|
3822 button. Accept border_width and vertical args.
|
|
3823
|
|
3824 (x_output_toolbar_button): Added support for drawing a
|
|
3825 border along with the button.
|
|
3826
|
|
3827 (X_OUTPUT_BUTTONS_LOOP): Pass border_width and vert
|
|
3828 args to x_draw_blank_toolbar_button. Set vertical and
|
|
3829 border_width fields in toolbar button.
|
|
3830
|
|
3831 (x_output_toolbar): Support toolbar border widths.
|
|
3832
|
|
3833 (x_toolbar_size_changed_in_frame_1): Mark all toolbar
|
|
3834 buttons in the change toolbar as dirty so that they
|
|
3835 are refreshed if had been painted over.
|
|
3836
|
|
3837 New function: x_toolbar_border_width_changed_in_frame.
|
|
3838 Used it as a console method.
|
|
3839
|
|
3840 * toolbar.c: New function: mark_frame_toolbar_buttons_dirty.
|
|
3841
|
|
3842 New function: toolbar_border_width_changed_in_frame.
|
|
3843 Used it as a specifier frame slot change method.
|
|
3844
|
|
3845 (get_toolbar_coords): Factor the toolbar border
|
|
3846 widths into the geometry calculations.
|
|
3847
|
|
3848 (Fset_default_toolbar_position): Update the fallback
|
|
3849 border width specifiers for the affected toolbar
|
|
3850 positions.
|
|
3851
|
|
3852 (specifier_vars_of_toolbar): Added specifiers for the
|
|
3853 toolbar border widths.
|
|
3854
|
|
3855 * toolbar.h: Added vertical and border_width field
|
|
3856 to the toolbar button struct.
|
|
3857
|
|
3858 * window.h: Added default_toolbar_border_width slot
|
|
3859 to window struct, along with four slots for the four
|
|
3860 window local toolbar border width values.
|
|
3861
|
|
3862 1997-11-16 Kyle Jones <kyle_jones@wonderworks.com>
|
|
3863
|
|
3864 * frame-x.c: Fixed typo in the documentation of the
|
|
3865 top-toolbar-shadow-color frame property.
|
|
3866
|
|
3867 1997-11-16 Skip Montanaro <skip@calendar.com>
|
|
3868
|
|
3869 * redisplay.c: suppress buffer computation in several places if
|
|
3870 MULE is not defined.
|
|
3871
|
|
3872 1997-11-16 Hrvoje Niksic <hniksic@srce.hr>
|
|
3873
|
|
3874 * events.c (print_event): Use `event-x-pixel' and `event-y-pixel',
|
|
3875 to be consistent with `make-event' and `event-properties'.
|
|
3876 (Fmake_event): Allow nil dnd-data.
|
|
3877
|
213
|
3878 1997-11-15 Jonathan Harris <jhar@tardis.ed.ac.uk>
|
|
3879
|
|
3880 * console.h
|
|
3881 mswindows is now a window-system according to
|
|
3882 CONSOLE_TYPESYM_WIN_P
|
|
3883
|
|
3884 * device.msw.c
|
|
3885 Now calls init_baud_rate & init_one_device
|
|
3886
|
|
3887 * msw-proc.c
|
|
3888 Fixed C-key so key is returned unshifted
|
|
3889
|
|
3890 * redisplay-msw.c
|
|
3891 Modeline and vertical divider appearance tweaks
|
|
3892
|
|
3893
|
|
3894 1997-11-14 SL Baur <steve@altair.xemacs.org>
|
|
3895
|
|
3896 * console.c (Fsuspend_emacs): Fix docstring. Evaluating
|
|
3897 `suspend-hook' cannot stop suspension.
|
|
3898
|
|
3899 1997-11-14 Marc Paquette <marcpa@cam.org>
|
|
3900
|
|
3901 * callproc.c (Fcall_process_internal): Do CRLF -> LF
|
|
3902 conversion when reading process output.
|
|
3903
|
|
3904 1997-11-14 Hrvoje Niksic <hniksic@srce.hr>
|
|
3905
|
|
3906 * redisplay.c (init_redisplay): Handle not having DISPLAY and not
|
|
3907 having TTY support.
|
|
3908
|
|
3909 1997-11-14 Hrvoje Niksic <hniksic@srce.hr>
|
|
3910
|
|
3911 * events.c (Fmake_event): Support DND events.
|
|
3912
|
|
3913 1997-11-10 Hrvoje Niksic <hniksic@srce.hr>
|
|
3914
|
|
3915 * events.c (Fmake_event): Reenable the event creation code.
|
|
3916 (Fmake_event): Canonicalize the plist.
|
|
3917
|
|
3918 1997-11-13 SL Baur <steve@altair.xemacs.org>
|
|
3919
|
|
3920 * mule-charset.c (Fcharset_id): Typecast result to Lisp_Object.
|
|
3921
|
|
3922 * mule-ccl.c (CCL_WRITE_STRING): Reorder parens to avoid compiler
|
|
3923 barf on Lisp_Object.
|
|
3924 (Fregister_ccl_program): Remove unused variable idx.
|
|
3925
|
|
3926 * mule-canna.c: Fix declaration of mule_strlen().
|
|
3927
|
|
3928 * mule-coding.h (ENCODE_SJIS): Parenthesize first two params to
|
|
3929 avoid compilation problems.
|
|
3930
|
|
3931 1997-11-13 Olivier Galibert <olivier.galibert@mines.u-nancy.fr>
|
|
3932
|
|
3933 * mule-charset.h: Added preliminary support for charset Ids.
|
|
3934
|
|
3935 * mule-charset.c: Added preliminary support for charset Ids.
|
|
3936
|
|
3937 * redisplay-msw.c (separate_textual_runs): Synched with FSF 20.2
|
|
3938 ccl API.
|
|
3939
|
|
3940 * redisplay-x.c (separate_textual_runs): Synched with FSF 20.2 ccl
|
|
3941 API.
|
|
3942
|
|
3943 * mule-coding.c: Synched with FSF 20.2 ccl API.
|
|
3944
|
|
3945 * mule-coding.h: Moved ccl part to mule-ccl.h.
|
|
3946
|
|
3947 * mule-ccl.c: Synched with FSF 20.2.
|
|
3948
|
|
3949 * mule-ccl.h: New file.
|
|
3950
|
|
3951 Thu Nov 13 21:34:13 1997 Marc Paquette <marcpa@cam.org>
|
|
3952
|
|
3953 * nt.c (REG_ROOT): Use a registry key different that the one for
|
|
3954 NTEmacs.
|
|
3955
|
|
3956 1997-11-12 SL Baur <steve@altair.xemacs.org>
|
|
3957
|
|
3958 * lrecord.h: Fix typo in set_lheader_implementation.
|
|
3959 From: Robert Pluim <Robert_Pluim@BayNetworks.COM>
|
|
3960
|
|
3961 1997-11-13 Olivier Galibert <galibert@renaissance.loria.fr>
|
|
3962
|
|
3963 * configure.in: Remove HAVE_TIMEZONE_DECL test.
|
|
3964
|
|
3965 1997-11-13 Olivier Galibert <galibert@renaissance.loria.fr>
|
|
3966
|
|
3967 * s/freebsd.h: Remove HAVE_TIMEZONE_DECL forced value.
|
|
3968
|
|
3969 * config.h.in: Remove HAVE_TIMEZONE_DECL reference.
|
|
3970
|
|
3971 * systime.h: Remove timezone conditional declaration.
|
|
3972
|
|
3973 1997-11-12 Kyle Jones <kyle_jones@wonderworks.com>
|
|
3974
|
|
3975 * console.c: Use symbol_value_forward_lheader_initializer
|
|
3976 in various DEFVAR* macros. Forgot this in previous
|
|
3977 related patch.
|
|
3978
|
|
3979 * lisp-disunion.h: Provide a no-op XUNMARK macro for
|
|
3980 the GC error checking code even if GCMARKBITS is not
|
|
3981 greater than 0.
|
|
3982
|
|
3983 * lisp-union.h: Ditto.
|
|
3984
|
211
|
3985 1997-11-10 Hrvoje Niksic <hniksic@srce.hr>
|
|
3986
|
|
3987 * event-stream.c: Make echo_keystrokes a Lisp_Object.
|
|
3988 (maybe_echo_keys): Adapt to that.
|
|
3989
|
|
3990 1997-11-11 SL Baur <steve@altair.xemacs.org>
|
|
3991
|
|
3992 * eval.c (throw_or_bomb_out): Remove abort.
|
|
3993 Suggested by: Kyle Jones <kyle_jones@wonderworks.com>
|
|
3994
|
|
3995 1997-11-11 Kyle Jones <kyle_jones@wonderworks.com>
|
|
3996
|
|
3997 * Added support for referencing lrecord_implementations
|
|
3998 via an index in an lrecord_header rather than a raw
|
|
3999 pointer. Also added a mark bit and a pure bit.
|
|
4000
|
|
4001 * alloc.c: Made lrecord_type_index() and
|
|
4002 lrecord_implementations_table[] global, previously they
|
|
4003 were static. Used new XRECORD_LHEADER_IMPLEMENTATION
|
|
4004 and LHEADER_IMPLEMENTATION macros to access
|
|
4005 lrecord_implementations found in Lisp_Objects and
|
|
4006 lrecord_headers instead of referencing ->implementation.
|
|
4007
|
|
4008 (gc_record_type_p): For USE_INDEXED_LRECORD_IMPLEMENTATION,
|
|
4009 there's no need to check for equality to type or type + 1.
|
|
4010 lrecords are no longer marked by incrementing the
|
|
4011 implementation pointer.
|
|
4012
|
|
4013 (init_alloc_once_early): Initialized subr and
|
|
4014 symbol_value_forward lrecord indexes early so that the
|
|
4015 staticly defined subrs and symbol_value_forward object
|
|
4016 indexes match the lrecord_implementations_table.
|
|
4017
|
|
4018 * buffer.c: Used symbol_value_forward_lheader_initializer in
|
|
4019 various DEFVAR* macros. Used new XRECORD_LHEADER_IMPLEMENTATION
|
|
4020 macro.
|
|
4021
|
|
4022 * elhash.c: Used new XRECORD_LHEADER_IMPLEMENTATION
|
|
4023 macro.
|
|
4024
|
|
4025 * fns.c: Used new XRECORD_LHEADER_IMPLEMENTATION macro.
|
|
4026
|
|
4027 * lisp.h: Defined subr_lheader_initializer macro, used it in
|
|
4028 DEFUN macro.
|
|
4029
|
|
4030 * lrecord.h: For USE_INDEXED_LRECORD_IMPLEMENTATION,
|
|
4031 changed lrecord_header to contain an index into
|
|
4032 lrecord_implementations_table[], plus a mark bit and a pure
|
|
4033 bit. Added support code for this. Defined new
|
|
4034 XRECORD_LHEADER_IMPLEMENTATION and LHEADER_IMPLEMENTATION
|
|
4035 macros to be used to find the lrecord_implementation
|
|
4036 of a Lisp_Object.
|
|
4037
|
|
4038 * print.c: Used new XRECORD_LHEADER_IMPLEMENTATION and
|
|
4039 LHEADER_IMPLEMENTATION macros.
|
|
4040
|
|
4041 * symbols.c: Used symbol_value_forward_lheader_initializer in
|
|
4042 definition of guts_of_unbound_marker.
|
|
4043
|
|
4044 * symeval.h: Defined symbol_value_forward_lheader_initializer
|
|
4045 macro. Used symbol_value_forward_lheader_initializer in various
|
|
4046 macros. Used new XRECORD_LHEADER_IMPLEMENTATION macro.
|
|
4047
|
|
4048
|
|
4049 1997-11-10 SL Baur <steve@altair.xemacs.org>
|
|
4050
|
|
4051 * window.c (set_window_pixsize): Remove unused variable.
|
|
4052
|
|
4053 * extents.c (print_extent_1): Fix type check error in sprintf.
|
|
4054
|
|
4055 * doc.c (Fsnarf_documentation): Remove unused label weird_function.
|
|
4056
|
|
4057 * symsinit.h: Restore declaration of vars_of_dialog_x.
|
|
4058
|
|
4059 * database.c (Fopen_database): Fix unused variable message.
|
|
4060
|
|
4061 * sysdep.c (sys_subshell): vfork() is a demented, obsolete hack.
|
|
4062
|
|
4063 * offix.c (struct): Make ImageData, MaskData be unsigned char *.
|
|
4064
|
|
4065 * event-Xt.c (x_event_to_emacs_event): Clean up typecasting.
|
|
4066 * frame-x.c (Foffix_start_drag_internal): Ditto.
|
|
4067
|
|
4068 1997-11-09 Kyle Jones <kyle_jones@wonderworks.com>
|
|
4069
|
|
4070 * extents.c (print_extent_1): Use %lx instead of %p
|
|
4071 to get the same output on all compilers.
|
|
4072
|
|
4073 1997-11-09 Hrvoje Niksic <hniksic@srce.hr>
|
|
4074
|
|
4075 * line-number.c: Use markers.
|
|
4076
|
|
4077 * redisplay.c (window_line_number): Restored.
|
|
4078
|
|
4079 * line-number.c (allocate_line_number_cache): Account for
|
|
4080 narrowing.
|
|
4081 (buffer_line_number): New function.
|
|
4082
|
|
4083 * line-number.c (get_nearest_line_number): New function.
|
|
4084 (window_line_number): Use it.
|
|
4085 (narrow_line_number_cache): New function.
|
|
4086 (invalidate_line_number_cache): Ditto.
|
|
4087 (insert_invalidate_line_number_cache): Ditto.
|
|
4088 (delete_invalidate_line_number_cache): Ditto.
|
|
4089 (add_line_number): Ditto.
|
|
4090
|
|
4091 * editfns.c (widen_buffer): Update line number cache.
|
|
4092 (Fnarrow_to_region): Ditto.
|
|
4093 (save_restriction_restore): Ditto.
|
|
4094
|
|
4095 * insdel.c (buffer_insert_string_1): Invalidate cache for
|
|
4096 insertion.
|
|
4097 (buffer_delete_range): Invalidate cache for deletion.
|
|
4098
|
|
4099 * line-number.c: New file.
|
|
4100 (window_line_number): Moved from redisplay.c.
|
|
4101
|
|
4102 * print.c (debug_print): Print a carriage return, too.
|
|
4103
|
|
4104 * bufslots.h: New slot `line_number_cache'.
|
|
4105
|
|
4106 1997-11-09 Kyle Jones <kyle_jones@wonderworks.com>
|
|
4107
|
|
4108 * event-stream.c: New Lisp variable: last-command-event-time.
|
|
4109
|
209
|
4110 1997-11-08 SL Baur <steve@altair.xemacs.org>
|
|
4111
|
|
4112 * lread.c (init_lread): start from lisp, not lisp/prim.
|
|
4113
|
|
4114 * Makefile.in.in: lisp/prim does exist any more.
|
|
4115
|
|
4116 1997-11-07 Kyle Jones <kyle_jones@wonderworks.com>
|
|
4117
|
|
4118 * abbrev.c (abbrev_lookup): Don't delete dash at the
|
|
4119 abbrev start location; abbrev-prefix-mark no longer
|
|
4120 inserts one.
|
|
4121
|
|
4122 Wed November 05 23:40:00 1997 <jhar@tardis.ed.ac.uk>
|
|
4123
|
|
4124 * fileio.c: insert-file-contents-internal
|
|
4125 Added a bodge to do CRLF->LF conversion of text files,
|
|
4126 conditioned on DOS_NT. This is currently only one-way, so all
|
|
4127 text files written by XEmacs will be UNIXified. CRLF conversion
|
|
4128 is required to make bytecompile work.
|
|
4129
|
|
4130 * Added file headers to:
|
|
4131 console-w32.c, console-w32.h,
|
|
4132 device-w32.c, event-w32.c, event-w32.h, frame-w32.c,
|
|
4133 objects-w32.c, objects-w32.h, redisplay-w32.c, w32-proc.c
|
|
4134
|
|
4135 Sun November 01 12:00:00 1997 <jhar@tardis.ed.ac.uk>
|
|
4136
|
|
4137 * redisplay-x.c: x_output_vertical_divider:
|
|
4138 If HAVE_SCROLLBARS was not defined, coordinate of the right of
|
|
4139 the divider was being used unitialised.
|
|
4140
|
|
4141 * console.h: Added Qw32 and CONSOLE_W32* macros, conditioned on
|
|
4142 HAVE_W32GUI.
|
|
4143
|
|
4144 * emacs.c: Added calls to the following, conditioned on HAVE_W32GUI:
|
|
4145 syms_of_*_w32, vars_of_*_w32, console_type_create_*w32.
|
|
4146
|
|
4147 * event-stream.c: Conditioned on HAVE_W32GUI:
|
|
4148 - vars_of_event_stream calls vars_of_event_w32.
|
|
4149 - init_event_stream calls init_event_w32_late.
|
|
4150
|
|
4151 * events-mod.h: Removed comment about having alternative making
|
|
4152 MOD_* constants for different windowing systems.
|
|
4153
|
|
4154 * events.c: Conditioned on HAVE_W32GUI:
|
|
4155 - event-equal: Added case for w32 magic events.
|
|
4156 - event-hash: Added case for w32 magic events.
|
|
4157
|
|
4158 * events.h: Conditioned on HAVE_W32GUI:
|
|
4159 Added struct underlying_w32_event to magic_data.
|
|
4160
|
|
4161 * faces.c: complex_vars_of_faces
|
|
4162 Added fallbacks for w32 faces, conditioned on HAVE_W32GUI.
|
|
4163
|
|
4164 * frame.c: set-frame-properties
|
|
4165 Added reference to default-w32-frame-plist to docstring.
|
|
4166
|
|
4167 * general.c: Added new Lisp_Object Qw32 and defsymbol.
|
|
4168
|
|
4169 * redisplay-output.c: redisplay_update_line
|
|
4170 Conditioned reference to stupid_vertical_scrollbar_drag_hack on
|
|
4171 HAVE_X_WINDOWS. This will need a proper fix when w32 gets
|
|
4172 scrollbars.
|
|
4173
|
|
4174 * redisplay-tty.c: init_tty_for_redisplay
|
|
4175 Conditioned blocking and unblocking of SIGTTOU on !WIN32 because
|
|
4176 these signals don't exist under win32.
|
|
4177
|
|
4178 * redisplay.c: init_redisplay
|
|
4179 Initialise window system to w32, conditioned on HAVE_W32GUI.
|
|
4180
|
|
4181 * symsinit.h: Added syms_of_*_w32, vars_of_*_w32 and
|
|
4182 init_event_w32_late.
|
|
4183
|
|
4184 * sysdep.c: Conditioned various things on WIN32 in addition to
|
|
4185 MSDOS.
|
|
4186
|
|
4187 * New files:
|
|
4188 console-w32.c, console-w32.h,
|
|
4189 device-w32.c, event-w32.c, event-w32.h, frame-w32.c,
|
|
4190 objects-w32.c, objects-w32.h, redisplay-w32.c, w32-proc.c
|
|
4191
|
|
4192 1997-11-07 Hrvoje Niksic <hniksic@srce.hr>
|
|
4193
|
|
4194 * doc.c (Fdocumentation_property): GCPRO doc.
|
|
4195 (Fsubstitute_command_keys): Disallow zero bsize.
|
|
4196
|
|
4197 1997-11-06 Hrvoje Niksic <hniksic@srce.hr>
|
|
4198
|
|
4199 * events.c (Fevent_modeline_position): Return nil if event is not
|
|
4200 over modeline, as the docstring says.
|
|
4201
|
|
4202 1997-11-05 Martin Buchholz <Martin Buchholz <martin@xemacs.org>>
|
|
4203
|
|
4204 * s/aix3-1.h: Remove ^L character wich confuses AIX make.
|
|
4205
|
|
4206 1997-11-06 Tomasz Cholewo <tjchol01@mecca.spd.louisville.edu>
|
|
4207
|
|
4208 * event-stream.c (Fnext_command_event): Document keystroke echoing.
|
|
4209
|
|
4210 1997-11-06 Hrvoje Niksic <hniksic@srce.hr>
|
|
4211
|
|
4212 * fns.c (Ffeaturep): Use call1, to prevent stack thrashing with
|
|
4213 circular lists.
|
|
4214 - Update docstring.
|
|
4215
|
|
4216 1997-11-06 Kyle Jones <kyle_jones@wonderworks.com>
|
|
4217
|
|
4218 * frame-x.c (x_delete_frame): Removed code that
|
|
4219 blocked the deletion of popup frames. No need for it.
|
|
4220
|
|
4221 1997-11-05 SL Baur <steve@altair.xemacs.org>
|
|
4222
|
|
4223 * balloon_help.h: Replace <X11/Intrinsic.h> with "xintrinsic.h"
|
|
4224 * balloon_help.c: Ditto.
|
|
4225 * offix.h: Ditto.
|
|
4226
|
|
4227 * mule-coding.c (coding_system_charset): Add prototype.
|
|
4228
|
|
4229 1997-11-04 Kazuyuki IENAGA <ienaga@jsys.co.jp>
|
|
4230
|
|
4231 * s/freebsd.h: Add HAVE_TIMEZONE_DECL. Configure will fail at
|
|
4232 checking for the existence of `extern long timezone'.
|
|
4233 FreeBSD actualy has the `timezone', but due to its <time.h> and
|
|
4234 <sys/time.h>, it cannot be recognized by configure.
|
|
4235
|
|
4236 1997-11-03 Hrvoje Niksic <hniksic@srce.hr>
|
|
4237
|
|
4238 * data.c (Fsubr_interactive): New function.
|
|
4239
|
|
4240 1997-11-03 Kyle Jones <kyle_jones@wonderworks.com>
|
|
4241
|
|
4242 * frame.c (change_frame_size_1): Added explanatory
|
|
4243 comment.
|
|
4244
|
|
4245 * window.c (set_window_pixsize): Don't bail out
|
|
4246 before looping over the major children if there is no
|
|
4247 size change indicated. The top and left coordinates
|
|
4248 may need to be recomputed, e.g. in toolbar visibility
|
|
4249 updates.
|
|
4250
|
|
4251 1997-11-02 Kyle Jones <kyle_jones@wonderworks.com>
|
|
4252
|
|
4253 * fileio.c (Ffile_truename): Make the errno == EACCES case
|
|
4254 behave the same as errno == ENOENT.
|
|
4255
|
|
4256 1997-11-03 Kyle Jones <kyle_jones@wonderworks.com>
|
|
4257
|
|
4258 * frame.c (Fframe_property, Fframe_properties): Check
|
|
4259 for minibuffer-onlyness of frame before checking whether
|
|
4260 it has a minibuffer. This makes the minibuffer property
|
|
4261 value be reported as 'only when that is appropriate. The
|
|
4262 check order was reversed which resulted in minibuffer-only
|
|
4263 frames having the minibuffer property reported as t.
|
|
4264
|
|
4265 1997-11-02 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
|
4266
|
|
4267 * m/vax.h:
|
|
4268 * s/cxux.h:
|
|
4269 * s/xenix.h:
|
|
4270 * s/umax.h:
|
|
4271 * s/msdos.h:
|
|
4272 * s/template.h:
|
|
4273 * termcap.c:
|
|
4274 * signal.c:
|
|
4275 * lread.c:
|
|
4276 * callproc.c
|
|
4277 * buffer.c: Remove VMS dependent code.
|
|
4278
|
|
4279 1997-11-02 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
|
4280
|
|
4281 * syspwd.h:
|
|
4282 * systty.h:
|
|
4283 * systime.h:
|
|
4284 * syssignal.h:
|
|
4285 * sysproc.h:
|
|
4286 * sysfloat.h:
|
|
4287 * sysfile.h:
|
|
4288 * regex.h:
|
|
4289 * process.h:
|
|
4290 * ndir.h:
|
|
4291 * mule-mcpath.h:
|
|
4292 * getpagesize.h:
|
|
4293 * sysdep.h:
|
|
4294 * fileio.c:
|
|
4295 * process.c: Remove old VMS code.
|
|
4296
|
|
4297 1997-11-02 SL Baur <steve@altair.xemacs.org>
|
|
4298
|
|
4299 * glyphs-x.c: Use <magick/magick.h> instead of <magick.h>
|
|
4300
|
|
4301 1997-11-02 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
|
4302
|
|
4303 * sysdep.c:
|
|
4304 * getloadavg.c:
|
|
4305 * malloc.c: Remove old VMS code.
|
|
4306
|
|
4307 1997-11-02 Hrvoje Niksic <hniksic@srce.hr>
|
|
4308
|
|
4309 * database.c (print_database): Don't use a static buffer to store
|
|
4310 file name.
|
|
4311
|
|
4312 * dired.c (make_directory_hash_table): Ditto.
|
|
4313
|
|
4314 * fileio.c (Ffile_truename): Use `make_ext_string' instead of
|
|
4315 `make_string'.
|
|
4316
|
|
4317 1997-11-01 Hrvoje Niksic <hniksic@srce.hr>
|
|
4318
|
|
4319 * database.c (CONCHECK_DATABASE): Define.
|
|
4320
|
|
4321 * dired.c (Fdirectory_files): Use `make_ext_string' instead of
|
|
4322 `make_string', to avoid crashes under Mule.
|
|
4323 (file_name_completion): Use `make_ext_string'.
|
|
4324
|
|
4325 * database.c (new_database): Renamed to `allocate_database', as
|
|
4326 per coding conventions.
|
|
4327
|
|
4328 1997-11-02 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
|
4329
|
|
4330 * dired.c: Remove VMS dependent code.
|
|
4331
|
|
4332 1997-11-01 Kyle Jones <kyle_jones@wonderworks.com>
|
|
4333
|
|
4334 * buffer.h: Change XCHAR_OR_CHAR_INT to use XCHAR or
|
|
4335 XINT as appropriate instead of using XREALINT.
|
|
4336
|
|
4337 * regex.c (re_search_2): cast translate[*d] to
|
|
4338 unsigned char when indexing fastmap to avoid sign
|
|
4339 change when value has the 0x80 bit set.
|
|
4340
|
|
4341 1997-10-31 SL Baur <steve@altair.xemacs.org>
|
|
4342
|
|
4343 * linuxplay.c (audio_init): Update for newer Linux kernels.
|
|
4344 From Robert Bihlmeyer <robbe@orcus.priv.at>
|
|
4345
|
|
4346 1997-11-01 Hrvoje Niksic <hniksic@srce.hr>
|
|
4347
|
|
4348 * fileio.c (Finsert_file_contents_internal): Fix misleading
|
|
4349 comment.
|
|
4350
|
|
4351 1997-10-31 Kyle Jones <kyle_jones@wonderworks.com>
|
|
4352
|
|
4353 * callproc.c: GC protect current_dir while infile and
|
|
4354 error_file are being initialized.
|
|
4355
|
207
|
4356 1997-10-30 SL Baur <steve@altair.xemacs.org>
|
|
4357
|
|
4358 * config.h.in: Remove HAVE_GIF, HAVE_JPEG, HAVE_PNG, HAVE_TIFF and
|
|
4359 replace with HAVE_IMAGEMAGICK.
|
|
4360
|
|
4361 1997-10-30 Kyle Jones <kyle_jones@wonderworks.com>
|
|
4362
|
|
4363 * process.c (Fprocess_send_string): Protect against
|
|
4364 SIGPIPE when flushing outstream.
|
|
4365
|
|
4366 1997-10-30 SL Baur <steve@altair.xemacs.org>
|
|
4367
|
|
4368 * input-method-xfs.c: Xlocale.h must be included after config.h.
|
|
4369 * input-method-motif.c: ditto.
|
|
4370 * input-method-xlib.c: ditto.
|
|
4371
|
|
4372 1997-10-28 Kyle Jones <kyle_jones@wonderworks.com>
|
|
4373
|
|
4374 * Under LRECORD_VECTOR, moved vectors from being an basic
|
|
4375 lrecord tpye to an lcrecord.
|
|
4376 Added support for 31 bits Lisp integers.
|
|
4377 Added support for maskless pointers to Lisp objects.
|
|
4378
|
|
4379 * alloc.c
|
|
4380
|
|
4381 (allocate_lisp_storage): Use XSETOBJ instead of
|
|
4382 XSETCONS to avoid tripping the ERROR_CHECK_TYPECHECK
|
|
4383 code with uninitialized data. XSETCONS used to work
|
|
4384 until it became an lrecord type.
|
|
4385
|
|
4386 Removed sweep_vectors_1, all_vectors and other vector
|
|
4387 specific GC related objects in the LRECORD_VECTOR
|
|
4388 case, as they are unneeded now that lrecord-based
|
|
4389 vectors are lcrecords.
|
|
4390
|
|
4391 Added `equal' methods for lrecord-based conses, vectors
|
|
4392 and strings. I was mistaken before; they are needed.
|
|
4393
|
|
4394 (pure_cons): moved XSETCONS call to after the
|
|
4395 set_lheader_implementation call, to avoid tripping the
|
|
4396 type checking code on an uninitialized implementation
|
|
4397 pointer.
|
|
4398
|
|
4399 (make_pure_vector): moved XSETVECTOR call to after the
|
|
4400 set_lheader_implementation call, to avoid tripping the
|
|
4401 type checking code on an uninitialized implementation
|
|
4402 pointer.
|
|
4403
|
|
4404 (Fpurecopy): return if given a null pointer. THis can
|
|
4405 happen when initializing Qnil.
|
|
4406
|
|
4407 (mark_object): return if passed a null pointer. I
|
|
4408 think this can happen when marking through some kind of
|
|
4409 objects that contain Lisp_Objects and null pointers.
|
|
4410
|
|
4411 (marked_p): Ditto
|
|
4412
|
|
4413 * buffer.c
|
|
4414
|
|
4415 (mark_buffer): Don't mark conses in the indirect children
|
|
4416 list is said list is in fact a null pointer. The
|
|
4417 indirect children list gets reset to a null pointer
|
|
4418 when a bfufer is killed.
|
|
4419
|
|
4420 (complex_vars_of_buffer): initialize indirect_children
|
|
4421 slow of Vbuffer_local_symbols and Vbuffer_defaults to
|
|
4422 nil.
|
|
4423
|
|
4424 * chartab.c
|
|
4425
|
|
4426 (Fcheck_category_at): Don't use XREALINT to extract a
|
|
4427 char from a Lisp_Object, use XCHAR instead.
|
|
4428
|
|
4429 (Fchar_in_category): Ditto.
|
|
4430
|
|
4431 * data.c
|
|
4432
|
|
4433 (eq_with_ebola_notice): Use XCHAR_OR_INT instead of
|
|
4434 XREALINT to extract data from a Lisp_Object that could
|
|
4435 contain a charater or an integer.
|
|
4436
|
|
4437 (make_int): use XSETINT in the USE_MINIMAL_TAGBITS
|
|
4438 case.
|
|
4439
|
|
4440 (make_char): use XSETINT in the USE_MINIMAL_TAGBITS
|
|
4441 case.
|
|
4442
|
|
4443 (Flsh): XUINT is gone; use XINT instead.
|
|
4444
|
|
4445 * elhash.c
|
|
4446
|
|
4447 (elisp_hvector_malloc): Use Qnull_pointer instead of
|
|
4448 Qzero, as Qzero is no longer guaranteed to contain an
|
|
4449 all-zero bit pattern.
|
|
4450
|
|
4451 (make_lisp_hashtable): Ditto.
|
|
4452
|
|
4453 (Fcopy_hashtable): Ditto.
|
|
4454
|
|
4455 * emacsfns.h
|
|
4456
|
|
4457 Conditionalize the declaration of make_char() on
|
|
4458 whether a make_char macro exists or not.
|
|
4459
|
|
4460 * fns.c
|
|
4461
|
|
4462 (internal_equal): Conditionalize existence of cons,
|
|
4463 string and vector comparison code on whether they are
|
|
4464 lrecord-based.
|
|
4465
|
|
4466 (internal_old_equal): Ditto.
|
|
4467
|
|
4468 * lisp-disunion.h
|
|
4469
|
|
4470 USE_MINIMAL_TAGBITS support.
|
|
4471
|
|
4472 31 bit Lisp integer support.
|
|
4473
|
|
4474 Conditionalized existence of markbit related macros on
|
|
4475 the existence of a markbit in a Lisp_Object. There are
|
|
4476 no markbits in the USE_MINIMAL_TAGBITS implementation
|
|
4477 of a Lisp_Object.
|
|
4478
|
|
4479 Replaced XUINT with XPNTRVAL.
|
|
4480
|
|
4481 Added declaration for Qnull_pointer.
|
|
4482
|
|
4483 * lisp-union.h
|
|
4484
|
|
4485 USE_MINIMAL_TAGBITS support.
|
|
4486
|
|
4487 31 bit Lisp integer support.
|
|
4488
|
|
4489 Conditionalized existence of markbit related macros on
|
|
4490 the existence of a markbit in a Lisp_Object. There are
|
|
4491 no markbits in the USE_MINIMAL_TAGBITS implementation
|
|
4492 of a Lisp_Object.
|
|
4493
|
|
4494 Replaced XUINT with XPNTRVAL.
|
|
4495
|
|
4496 Added a make_char macro, similar to the make_int
|
|
4497 macro, for use with the GCC-specific XMAKE_LISP hack.
|
|
4498
|
|
4499 * lisp.h
|
|
4500
|
|
4501 USE_MINIMAL_TAGBITS support.
|
|
4502
|
|
4503 31 bit Lisp integer support.
|
|
4504
|
|
4505 Added GCMARKBITS macro to specify how many markbits a
|
|
4506 Lisp_Object contains.
|
|
4507
|
|
4508 Support for lcrecord-based vectors.
|
|
4509
|
|
4510 Added XCHAR_OR_INT for accessing data in an object
|
|
4511 that might contain either a character or an integer.
|
|
4512
|
|
4513 Made HACKEQ_UNSAFE use XCHAR_OR_INT instead of
|
|
4514 XREALINT during its Ebola check.
|
|
4515
|
|
4516 * print.c
|
|
4517
|
|
4518 Made the printing code undestand the split Lisp integer type.
|
|
4519
|
|
4520 * symbols.c
|
|
4521
|
|
4522 Added declaration for Qnull_pointer.
|
|
4523
|
|
4524 1997-10-27 Martin Buchholz <mrb@eng.sun.com>
|
|
4525
|
215
|
4526 * m/ibmrs6000.h:
|
|
4527 * s/aix3-2.h: C_SWITCH_SYSTEM ==> configure.in
|
|
4528 * s/aix4-1.h: -li18n ==> configure.in
|
|
4529 * s/aix4.h: Always include strings.h
|
|
4530 * config.h.in: Add AIXV3 define, suggested by xmkmf. Remove
|
207
|
4531 AIX_SMT_EXP.
|
215
|
4532 * unexaix.c: Fix nested comments compiler warning
|
207
|
4533
|
|
4534 1997-10-27 Kyle Jones <kyle_jones@wonderworks.com>
|
|
4535
|
215
|
4536 * profile.c (sigprof_handler): Don't call XUNMARK on
|
207
|
4537 fun, it isn't needed.
|
|
4538
|
215
|
4539 * faces.c (face_property_matching_instance): Check
|
207
|
4540 for charset == Qunbound, which it can be if the
|
|
4541 character set is unspecified.
|
|
4542
|
|
4543 1997-10-27 SL Baur <steve@altair.xemacs.org>
|
|
4544
|
|
4545 * mule-wnnfns.c (vars_of_mule_wnn): Provide 'wnn feature.
|
|
4546
|
|
4547 * mule-canna.c (vars_of_mule_canna): Provide 'CANNA feature.
|
|
4548
|
|
4549 1997-10-27 Kazuyuki IENAGA <ienaga@jsys.co.jp>
|
|
4550
|
|
4551 * device-x.c (x_init_device): To avoid crazy menubars due to
|
|
4552 lack of suitable font loading. Disabled locale based app-defaults
|
|
4553 loading when menubars=motif or menubars=lucid + xfs feature is not
|
|
4554 used. Currently, the menubar resource has no effect for tty use.
|
|
4555
|
|
4556 1997-10-25 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
|
4557
|
|
4558 * README: Remove references to VMS.
|
|
4559
|
|
4560 * vlimit.h:
|
|
4561 * s/vms5-5.h:
|
|
4562 * s/vms4-4.h:
|
|
4563 * s/vms4-2.h:
|
|
4564 * s/vms4-0.h:
|
|
4565 * s/vms.h: Remove files since VMS isn't supported any more.
|
|
4566
|
|
4567 1997-10-25 Kyle Jones <kyle_jones@wonderworks.com>
|
|
4568
|
|
4569 * toolbar.h: Reduce MINIMUM_SHADOW_THICKNESS to 1.
|
|
4570
|
|
4571 1997-10-24 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
|
4572
|
|
4573 * database.c: Added support for Berkeley DB 2.x.
|
|
4574
|
|
4575 1997-10-23 SL Baur <steve@altair.xemacs.org>
|
|
4576
|
|
4577 * alloc.c: Disable purespace statistics unless --debug is in
|
|
4578 effect.
|
|
4579
|
|
4580 * console-stream.c (init_console_stream): At the price of a tiny
|
|
4581 memory leak, reinitialize FILE fields of the console.
|
|
4582 From Tonny Madsen <tma@nettest.dk>
|
|
4583
|
|
4584 * emacs.c: New variable `inhibit_package_init'.
|
|
4585 (vars_of_emacs): Use it.
|
|
4586 (main_1): Initialize from command line.
|
|
4587
|
|
4588 * Makefile.in.in (xemacs): Specify -vanilla when searching for
|
|
4589 shadows.
|
|
4590
|
|
4591 * emacs.c: Remove VMS ifdefs.
|
|
4592 (standard_args): Added -no-packages, --no-packages.
|
|
4593 Added -vanilla, --vanilla.
|
|
4594 (Frun_emacs_from_temacs): Guard pure usage report with DEBUG_XEMACS
|
|
4595 (Fdump_emacs): Ditto.
|
|
4596
|
|
4597 1997-10-22 Hrvoje Niksic <hniksic@srce.hr>
|
|
4598
|
|
4599 * fns.c (Ffeaturep): Use `Fcar' with `or'.
|
|
4600
|
|
4601 1997-10-22 Kyle Jones <kyle_jones@wonderworks.com>
|
|
4602
|
|
4603 * alloc.c: drop the Lisp_Type_Record case clause
|
|
4604 that I added to the switch statement in a previous
|
|
4605 patch. The string, vector and cons cases belong in
|
|
4606 the `default' clause with the other lrecord types.
|
|
4607
|
|
4608 1997-10-22 Kyle Jones <kyle_jones@wonderworks.com>
|
|
4609
|
|
4610 * Added support for strings as lrecords.
|
|
4611
|
|
4612 * lisp.h: #ifdef'd out Lisp_Type_String enum value
|
|
4613 if LRECORD_STRING is defined.
|
|
4614
|
|
4615 * alloc.c: Added allocation and garbage collection
|
|
4616 code for lrecord-based strings.
|
|
4617
|
|
4618 * print.c: move Lisp_String printing code to a
|
|
4619 separate function so that it could be used as a
|
|
4620 `print' method for lrecord-based strings.
|
|
4621
|
|
4622 1997-10-20 Jan Vroonhof <vroonhof@math.ethz.ch>
|
|
4623
|
|
4624 * extents.c: Renamed shot property to initial-redisplay-function
|
|
4625 (extent_fragment_update): Changed the bookkeeping whether an event
|
|
4626 has been spawned. The initial-redisplay-function property is no
|
|
4627 longer set to nil.
|
|
4628
|
|
4629 * extents.h: ditto
|
|
4630
|
|
4631 1997-10-20 Kyle Jones <kyle_jones@wonderworks.com>
|
|
4632
|
|
4633 * Added support for conses and vectors to be lrecords.
|
|
4634
|
|
4635 * alloc.c: Modified allocation and GC code for
|
|
4636 LRECORD_CONS and LRECORD_VECTOR support. Moved some
|
|
4637 macros to lrecord.h.
|
|
4638
|
|
4639 * bytecode.c: Warning comment about LRECORD_CONS.
|
|
4640
|
|
4641 * elhash.c: Let internal_hash handle vector hashing
|
|
4642 if LRECORD_VECTOR is defined, just as it does when
|
|
4643 LRECORD_VECTOR is not defined. The code could have
|
|
4644 been copied into an `hash' method function but I don't
|
|
4645 see any point to it. Added lrecord style marking code
|
|
4646 to finish_marking_weak_hashtables. Bracketed code
|
|
4647 that groks the non-lrecord method of marking vectors
|
|
4648 with #ifdefs.
|
|
4649
|
|
4650 * fns.c: Let internal_equal and internal_old_equal
|
|
4651 handle vector comparisons when LRECORD_VECTOR is
|
|
4652 defined, just as it does when LRECORD_VECTOR is not
|
|
4653 defined. The code could have been copied into an
|
|
4654 `equal' method function but I don't see any point to
|
|
4655 it.
|
|
4656
|
|
4657 * lisp.h: Added typecheck macros for LRECORD_CONS
|
|
4658 support. LRECORD_VECTOR macros were already present.
|
|
4659
|
|
4660 * print.c: New functions print_cons and print_vector
|
|
4661 for LRECORD_CONS and LRECORD_VECTOR support.
|
|
4662 Some GC protection also added.
|
|
4663
|
|
4664 * lrecord.h: Received some macros from alloc.c, so
|
|
4665 that they could be used in lisp.h.
|
|
4666
|
|
4667 1997-10-20 Hrvoje Niksic <hniksic@srce.hr>
|
|
4668
|
|
4669 * fns.c (Ffeaturep): Handle `not' correctly.
|
|
4670
|
|
4671 * lread.c (vars_of_lread): Use defsymbol for featurep.
|
|
4672
|
|
4673 1997-10-15 Olivier Galibert <olivier.galibert@mines.u-nancy.fr>
|
|
4674
|
|
4675 * s/irix5-0.h: Removed -G 0 from LD_SWITCH_SYSTEM. .sbss sections
|
|
4676 are supported since unexelfsgi.c upgrade.
|
|
4677
|
|
4678 1997-10-16 Kyle Jones <kyle_jones@wonderworks.com>
|
|
4679
|
|
4680 * lstream.c (Lstream_close): Don't return early if the
|
|
4681 closer method reports failure. Doing so caused GC and
|
|
4682 memory corruption crashes.
|
|
4683
|
|
4684 1997-10-14 Hrvoje Niksic <hniksic@srce.hr>
|
|
4685
|
|
4686 * extents.c (Fset_extent_property): Allow `keymap' property to be
|
|
4687 set to nil.
|
|
4688
|
|
4689 1997-10-15 SL Baur <steve@altair.xemacs.org>
|
|
4690
|
|
4691 * mule-coding.c (acceptable_control_char_p): Add C-_ for info.
|
|
4692 (detect_coding_iso2022): Ditto.
|
|
4693 From SENDA Shigeya <senda@ic.rdc.ricoh.co.jp>
|
|
4694
|
|
4695 1997-10-09 MORIOKA Tomohiko <morioka@jaist.ac.jp>
|
|
4696
|
|
4697 * mule-coding.c (make-coding-system, detect-coding-region): Modify
|
|
4698 DOC-string because of renaming `automatic-conversion' ->
|
|
4699 `undecided' to sync with Emacs 20.2.
|
|
4700
|
|
4701 (make-coding-system, coding-system-type, detect-coding-region):
|
|
4702 Rename `Qautomatic_conversion' -> `Qundecided'.
|
|
4703
|
|
4704 * general.c (syms_of_general): Rename `automatic-conversion' ->
|
|
4705 `undecided' to sync with Emacs 20.2.
|
|
4706
|
|
4707 * emacsfns.h, event-Xt.c (x_to_emacs_keysym): Rename
|
|
4708 `Qautomatic_conversion' -> `Qundecided'.
|
|
4709
|
|
4710 * buffer.c (buffer-file-coding-system): Modify DOC-string because
|
|
4711 of renaming `automatic-conversion' -> `undecided' to sync with
|
|
4712 Emacs 20.2.
|
|
4713
|
|
4714 1997-10-15 Olivier Galibert <olivier.galibert@mines.u-nancy.fr>
|
|
4715
|
|
4716 * lisp.h (MANY): Bump SUBR_MAX_ARGS to 12 and add corresponding
|
|
4717 DEFUN_n macros.
|
|
4718
|
|
4719 1997-10-13 Stephen J. Turnbull <turnbull@sk.tsukuba.ac.jp>
|
|
4720
|
|
4721 * console-tty.c: Include gpmevent.h
|
|
4722 * gpmevent.c (connect_to_gpm): change to void
|
|
4723 * gpmevent.h: Ditto.
|
|
4724
|
|
4725 1997-10-13 Kyle Jones <kyle_jones@wonderworks.com>
|
|
4726
|
|
4727 * lisp-disunion.h (XSETOBJ): cast Lisp type enum to
|
|
4728 an EMACS_UINT quantity to avoid a compiler warning about
|
|
4729 integer overflow when the most significat bit of the
|
|
4730 type tag is shifted into the sign bit position of an
|
|
4731 EMACS_INT.
|
|
4732
|
205
|
4733 1997-10-12 SL Baur <steve@altair.xemacs.org>
|
|
4734
|
207
|
4735 * s/freebsd.h: Add X11 guard for building without X11.
|
205
|
4736 From Hrvoje Niksic <hniksic@srce.hr>
|
|
4737
|
|
4738 1997-10-12 Kyle Jones <kyle_jones@wonderworks.com>
|
|
4739
|
207
|
4740 * doprnt.c (emacs_doprnt_1): if forwarded field width
|
205
|
4741 is negative, set minus_flag and make the field width
|
|
4742 positive. Makes (format "%*s" -10 "abc") work like
|
|
4743 (format "%-*s" 10 "abc").
|
|
4744
|
|
4745 1997-10-12 SL Baur <steve@altair.xemacs.org>
|
|
4746
|
|
4747 * unexsol2.c (unexec): CONST isn't defined here.
|
|
4748 From Adrian Aichner <aichner@ecf.teradyne.com>
|
207
|
4749
|
203
|
4750 1997-10-11 SL Baur <steve@altair.xemacs.org>
|
|
4751
|
205
|
4752 * realpath.c (realpath): CONST IS LOSING but removing it conflicts
|
|
4753 with system headers.
|
|
4754
|
203
|
4755 * callproc.c: New variable infopath-internal.
|
|
4756 (complex_vars_of_callproc): Declare and initialized it.
|
|
4757
|
|
4758 * paths.h.in: New variable PATH_INFOPATH.
|
|
4759
|
|
4760 1997-10-10 Martin Buchholz <mrb@eng.sun.com>
|
|
4761
|
|
4762 * systty.h:
|
|
4763 - change Xemacs --> XEmacs
|
|
4764
|
|
4765 * buffer.c:
|
|
4766 * editfns.c:
|
|
4767 * msdos.c:
|
|
4768 - Remove bogus FSF-origin \n\ sequences.
|
|
4769
|
|
4770 1997-10-09 Kyle Jones <kyle_jones@wonderworks.com>
|
|
4771
|
|
4772 * doprnt.c (parse_doprnt_spec): parse `*' field width
|
|
4773 and precision specs and set up spec forwarding.
|
|
4774
|
|
4775 * doprnt.c (emacs_doprnt_1): implement `*' by
|
|
4776 forwarding flags, precision and field width data from a
|
|
4777 spec to a subsequent spec.
|
|
4778
|
|
4779 * editfns.c: document new `*' field width and
|
|
4780 precision spec.
|
|
4781
|
|
4782 1997-10-09 SL Baur <steve@altair.xemacs.org>
|
|
4783
|
|
4784 * database.c (Fclose_database): Rename C function.
|
|
4785 (Fdatabase_last_error): Ditto.
|
|
4786 (Fopen_database): Ditto.
|
|
4787 (Fput_database): Ditto.
|
|
4788 (Fremove_database): Ditto.
|
|
4789 (Fget_database): Ditto.
|
|
4790 (syms_of_dbm): Reflect above changes.
|
|
4791 From Martin Buchholz <mrb@Eng.Sun.COM>
|
|
4792
|
|
4793 1997-10-08 Hrvoje Niksic <hniksic@srce.hr>
|
|
4794
|
|
4795 * events.c (Fmake_event): Allow only frames as channel.
|
|
4796
|
|
4797 1997-10-07 Hrvoje Niksic <hniksic@srce.hr>
|
|
4798
|
|
4799 * extents.c (print_extent_1): Fixed typo.
|
|
4800
|
|
4801 1997-10-07 Kyle Jones <kyle_jones@wonderworks.com>
|
|
4802
|
|
4803 * insdel.c (buffer_replace_char): if doing delete/insert
|
|
4804 because of characters with deiffering byte lengths,move
|
|
4805 point forward with the insertion if it was moved backwrad
|
|
4806 to equal the insertion point by the earlier deletion.
|
|
4807
|
|
4808 1997-10-06 SL Baur <steve@altair.xemacs.org>
|
|
4809
|
|
4810 * window.c (Fset_window_dedicated_p): register -> REGISTER.
|
|
4811
|
|
4812 * unexalpha.c (update_dynamic_symbols): register-> REGISTER.
|
|
4813
|
|
4814 * sysdep.c: Global change: register -> REGISTER.
|
|
4815
|
|
4816 * strcat.c (strcat): register -> REGISTER.
|
|
4817
|
|
4818 * search.c: Global change: register -> REGISTER.
|
|
4819
|
|
4820 * regex.c: Global change: register -> REGISTER.
|
|
4821 - Ensure REGISTER is always defined.
|
|
4822
|
|
4823 * nt.c: Global change: register -> REGISTER.
|
|
4824
|
|
4825 * linuxplay.c: Global change: register -> REGISTER.
|
|
4826
|
|
4827 * input-method-xlib.c (best_style): register -> REGISTER.
|
|
4828
|
|
4829 * gifalloc.c: Global change: register -> REGISTER.
|
|
4830 - Ensure REGISTER is always defined.
|
|
4831
|
|
4832 * getloadavg.c (getloadavg): register -> REGISTER.
|
|
4833
|
|
4834 * eval.c (unwind_to_catch): [Unused variable] register -> REGISTER.
|
|
4835
|
|
4836 * cmds.c (Fpoint_at_bol): register -> REGISTER.
|
|
4837
|
|
4838 * chartab.c (check_category_char): register -> REGISTER.
|
|
4839
|
|
4840 * buffer.c (assoc_ignore_text_properties): [Unused function]
|
|
4841 register -> REGISTER.
|
|
4842
|
|
4843 * alloca.c: Global change: register -> REGISTER.
|
|
4844
|
|
4845 * xmu.h (XmuCopyISOLatin1Lowered): Global change: const -> CONST.
|
|
4846
|
|
4847 * gif_lib.h: Global change: const -> CONST.
|
|
4848
|
|
4849 * balloon_help.h (balloon_help_move_to_pointer): const -> CONST.
|
|
4850
|
|
4851 * xmu.c: Global change: const -> CONST.
|
|
4852
|
|
4853 * unexsol2.c (unexec): const -> CONST.
|
|
4854
|
|
4855 * unexhp9k3.c (unexec_error): const -> CONST.
|
|
4856
|
|
4857 * unexfreebsd.c (unexec_error): const -> CONST.
|
|
4858
|
|
4859 * sunOS-fix.c (mbstowcs): const-> CONST.
|
|
4860 (wcstombs): Ditto.
|
|
4861
|
|
4862 * strcpy.c (strcpy): const -> CONST.
|
|
4863
|
|
4864 * strcmp.c: Global change: const -> CONST.
|
|
4865
|
|
4866 * strcat.c (strcat): const -> CONST.
|
|
4867
|
|
4868 * realpath.c (realpath): const -> CONST.
|
|
4869
|
|
4870 * keymap.c (where_is_recursive_mapper): const -> CONST.
|
|
4871
|
|
4872 * extents.c (extent_priority_sort_function): const -> CONST.
|
|
4873
|
|
4874 * dgif_lib.c (DGifOpenFileName): const -> CONST.
|
|
4875
|
|
4876 * balloon_help.c: Global change: const -> CONST.
|
|
4877
|
201
|
4878 1997-10-03 SL Baur <steve@altair.xemacs.org>
|
|
4879
|
|
4880 * lisp.h: Nuke register declarations.
|
|
4881
|
|
4882 1997-10-03 Karl M. Hegbloom <karlheg@inetarena.com>
|
|
4883
|
|
4884 * window.c (Frecenter): Correct variable names in docstring.
|
|
4885
|
|
4886 1997-10-03 Karl M. Hegbloom <karlheg@inetarena.com>
|
|
4887
|
|
4888 * fns.c: Add some cross references between destructive and
|
|
4889 non-destructive versions of similar functions.
|
|
4890
|
|
4891 Fri Oct 3 12:28:08 1997 Kyle Jones <kyle_jones@wonderworks.com>
|
|
4892
|
|
4893 * lisp-disunion.h: Move markbit to be between the
|
|
4894 type bits and the value bits. Previously it was always
|
|
4895 the sign bit of a EMACS_INT, unless modified by a
|
|
4896 #define in a machine dependent .h file.
|
199
|
4897
|
|
4898 1997-10-02 Hrvoje Niksic <hniksic@srce.hr>
|
|
4899
|
|
4900 * profile.c (Fclear_profiling_info): Made interactive.
|
|
4901
|
|
4902 1997-10-02 SL Baur <steve@altair.xemacs.org>
|
|
4903
|
|
4904 * glyphs-x.c (USE_TEMP_FILES_FOR_PNG_IMAGES): Move outside of
|
|
4905 HAVE_JPEG ifdef.
|
|
4906
|
|
4907 1997-10-01 SL Baur <steve@altair.xemacs.org>
|
|
4908
|
|
4909 * lisp.h (min): Fully parenthize.
|
|
4910 (max): Ditto.
|
|
4911
|
|
4912 * Makefile.in.in (widget.o): Insert dependencies.
|
|
4913 - Insert HAVE_OFFIX_DND dependencies.
|
|
4914
|
|
4915 * casefiddle.c (casify_object): Back out bogus undocumented patch
|
|
4916 from 20.3-beta18.
|
|
4917
|
|
4918 1997-09-30 SL Baur <steve@altair.xemacs.org>
|
|
4919
|
|
4920 * events.c (Fevent_type): Add OffiX guard.
|
|
4921 (command_event_p): Ditto.
|
|
4922 (mark_event): Ditto.
|
|
4923 (print_event): Ditto.
|
|
4924
|
197
|
4925 1997-09-30 SL Baur <steve@altair.xemacs.org>
|
|
4926
|
|
4927 * mule-canna.c (Fcanna_set_bunsetsu): Return a value.
|
|
4928 (Fcanna_parse): Remove unused variables `ks' and `ksv'.
|
|
4929 (Fcanna_henkan_begin): Remove unused variable `res'.
|
|
4930 (Fcanna_henkan_next): Remove unused variable `nbun'.
|
|
4931 (count_char): Change return type to void.
|
|
4932
|
|
4933 * event-Xt.c (x_event_to_emacs_event): Remove unused variable
|
|
4934 `event-size'.
|
|
4935
|
|
4936 * menubar.c (Fnormalize_menu_item_name): Remove unused variable
|
|
4937 `res'.
|
|
4938
|
|
4939 * redisplay-x.c (x_flash): Reorganize test to prefer select over
|
|
4940 poll.
|
|
4941
|
|
4942 * xselect.c (Fx_store_cutbuffer_internal): Remove unused variable
|
|
4943 `encoding'.
|
|
4944
|
|
4945 1997-09-30 Hrvoje Niksic <hniksic@srce.hr>
|
|
4946
|
|
4947 * frame.c (Fmake_frame): Call `custom-initialize-frame'.
|
|
4948
|
|
4949 1997-09-24 MORIOKA Tomohiko <morioka@jaist.ac.jp>
|
|
4950
|
|
4951 * mule-coding.c: Rename `pathname-coding-system' to
|
|
4952 `file-name-coding-system' to sync with Emacs 20.2.
|
|
4953
|
195
|
4954 1997-09-26 Hrvoje Niksic <hniksic@srce.hr>
|
|
4955
|
|
4956 * window.c (saved_window_equal): Ditto.
|
|
4957
|
|
4958 * process.c (Fget_process): Use internal_equal.
|
|
4959
|
|
4960 * lread.c (build_load_history): Use internal_equal.
|
|
4961 (build_load_history): Use XCAR/XCDR where safe.
|
|
4962
|
|
4963 * events.c (event_equal): Ditto.
|
|
4964
|
|
4965 * event-stream.c (Fdispatch_event): Ditto.
|
|
4966
|
|
4967 * elhash.c (lisp_object_eql_equal): Ditto.
|
|
4968 (lisp_object_equal_equal): Ditto.
|
|
4969
|
|
4970 * device.c (find_device_of_type): Ditto.
|
|
4971
|
|
4972 * console.c (find_console_of_type): Ditto.
|
|
4973
|
|
4974 * console-tty.c (tty_init_console): Ditto.
|
|
4975
|
|
4976 * console-stream.c (stream_init_console): Use internal_equal.
|
|
4977 (stream_canonicalize_console_connection): Ditto.
|
|
4978
|
|
4979 * fns.c (Fmember): Use internal_equal, to avoid a necessary
|
|
4980 funcall and NILP check.
|
|
4981 (Fold_member): Ditto for internal_old_equal.
|
|
4982 (Fassoc): Use XCAR when we know we deal with a cons. Use
|
|
4983 internal_equal. Removed tem.
|
|
4984 (Fold_assoc): Ditto.
|
|
4985 (Fassq): Use XCAR.
|
|
4986 (Frassoc): Use internal_equal; remove tem.
|
|
4987 (Fold_rassoc): Ditto for internal_old_equal.
|
|
4988 (Frassq): Use XCDR with what we know is a cons.
|
|
4989 (Fold_rassq): Ditto.
|
|
4990 (Fdelete): Use internal_equal.
|
|
4991 (Fold_delete): Ditto for internal_old_equal.
|
|
4992 (Fremassoc): Use internal_equal; use XCAR/XCDR with what we know
|
|
4993 is a cons.
|
|
4994 (Fremrassoc): Ditto.
|
|
4995
|
|
4996 * dired.c (Fdirectory_files): Nreverse the list only if it will be
|
|
4997 sorted.
|
|
4998
|
|
4999 Fri Sep 26 13:55:28 1997 Kyle Jones <kyle_jones@wonderworks.com>
|
|
5000
|
|
5001 * faces.c (update_face_cachel_data): Don't allow the
|
|
5002 background pixmap of the default face to override the
|
|
5003 background of a face if that color has been specified.
|
|
5004
|
|
5005 1997-09-26 Hrvoje Niksic <hniksic@srce.hr>
|
|
5006
|
|
5007 * dired.c (close_directory_fd): New function.
|
|
5008 (Fdirectory_files): Use it to set up an unwind-protection to close
|
|
5009 the descriptor.
|
|
5010 (Fdirectory_files): Allow QUIT in re_search.
|
|
5011 (Fdirectory_files): If the file is too big, allocate necessary
|
|
5012 data with malloc.
|
|
5013 (Fdirectory_files): Use simple Fcons to build the list.
|
|
5014 (close_directory_fd): Free the opaque pointer.
|
|
5015
|
|
5016 1997-09-25 Hrvoje Niksic <hniksic@srce.hr>
|
|
5017
|
|
5018 * extents.c (Fset_extent_properties): New function.
|
|
5019
|
|
5020 1997-09-24 SL Baur <steve@altair.xemacs.org>
|
|
5021
|
|
5022 * dired.c (Fdirectory_files): Remove broken VMS stuff.
|
|
5023 (file_name_completion_stat): Ditto.
|
|
5024 (file_name_completion): Ditto.
|
|
5025 (Top Level): Ditto.
|
|
5026 (syms_of_dired): Ditto.
|
|
5027
|
|
5028 1997-09-25 Hrvoje Niksic <hniksic@srce.hr>
|
|
5029
|
|
5030 * widget.c (Fwidget_apply): Don't GCPRO result of Fwidget_get.
|
|
5031
|
|
5032 1997-09-24 SL Baur <steve@altair.xemacs.org>
|
|
5033
|
|
5034 * symsinit.h: Declare syms_of_widget.
|
|
5035
|
|
5036 * emacsfns.h: Declare Fchar_syntax.
|
|
5037
|
|
5038 * bytecode.c (Fbyte_code): Call Fchar_syntax for the Bchar_syntax
|
|
5039 bytecode.
|
|
5040
|
|
5041 * syntax.c (Fchar_syntax): convert nil input to \000 for
|
|
5042 compatibility.
|
|
5043
|
|
5044 * alloc.c (report_pure_usage): Increase slop to 512 bytes in betas
|
|
5045 and reduce it to 4 bytes in releases.
|
|
5046
|
|
5047 1997-09-23 SL Baur <steve@altair.xemacs.org>
|
|
5048
|
|
5049 * Makefile.in.in (objs): Add new C file widget.o.
|
|
5050
|
|
5051 1997-09-22 SL Baur <steve@altair.xemacs.org>
|
|
5052
|
|
5053 * editfns.c (vars_of_editfns): New feature 'ampersand-full-name
|
|
5054 declared if AMPERSAND_FULL_NAME configuration option is enabled.
|
|
5055
|
|
5056 * callproc.c (vars_of_callproc): Update docstring of `data-directory'.
|
|
5057
|
|
5058 Sun Sep 21 14:14:44 1997 Kyle Jones <kyle_jones@wonderworks.com>
|
|
5059
|
|
5060 * lisp.h: underspecify lisp_fn_t function prototype
|
|
5061 to avoid compiler errors in inline_funcall_subr().
|
|
5062
|
|
5063 * eval.c (Fprogn): Walk forms list with XCDR, access
|
|
5064 with XCAR. Check forms list CONSP, so that XCDR and XCAR are
|
|
5065 safe.
|
|
5066
|
|
5067 * eval.c (Fsetq): replace Flength call with for-loop
|
|
5068 to compute list length. Walk arg list with XCDR,
|
|
5069 access with XCAR. Check arg list with CONSP, so that
|
|
5070 XCDR and XCAR are safe.
|
|
5071
|
|
5072 * eval.c: New macro inline_funcall_subr, an inline
|
|
5073 version of funcall_subr + primitive_funcall.
|
|
5074
|
|
5075 * eval.c (Feval): replace Flength call with for-loop
|
|
5076 to compute list length. Use XCAR and XCDR in some
|
|
5077 places where it is safe to do so. Use
|
|
5078 inline_funcall_subr() in place of funcall_subr().
|
|
5079
|
|
5080 * eval.c (funcall_recording_as): Use XCAR instead of
|
|
5081 Fcar where it was safe.
|
|
5082
|
|
5083 * eval.c (Fapply): replace Flength call with for-loop
|
|
5084 to compute list length.
|
|
5085
|
|
5086 * eval.c (apply_lambda):Use XCAR and XCDR in some
|
|
5087 places where it is safe to do so.
|
|
5088
|
|
5089 * eval.c (funcall_lambda): Walk param list with XCDR, access
|
|
5090 with XCAR. Check param list CONSP, so that XCDR and XCAR are
|
|
5091 safe.
|
|
5092
|
|
5093 * symbols.c (find_symbol_value): return quickly if no
|
|
5094 symbol magic is involved, to avoid the expensive call
|
|
5095 to find_symbol_value_1.
|
|
5096
|
|
5097 * symbols.c (store_symval_forwarding): don't call
|
|
5098 reject_constant_symbols unless there is a chance a
|
|
5099 constant symbol is involved. This break the
|
|
5100 encapsulation of the constants check, but symbol stores
|
|
5101 are used heavily and speed is most important than
|
|
5102 cleanliness in this case.
|
|
5103
|
|
5104 1997-09-21 Joel Peterson <tarzan@aosi.com>
|
|
5105
|
|
5106 * menubar.c (normalize-menu-item-name): New function.
|
|
5107
|
|
5108 1997-09-21 SL Baur <steve@altair.xemacs.org>
|
|
5109
|
|
5110 * keymap.c (get_relevant_extent_keymaps): Previous patch reversed.
|
|
5111
|
193
|
5112 1997-09-20 SL Baur <steve@altair.xemacs.org>
|
|
5113
|
|
5114 * Makefile.in.in (xemacs): Adoption of shadow.el to print
|
|
5115 load-path shadowings after successful dump.
|
|
5116
|
|
5117 1997-09-20 Hrvoje Niksic <hniksic@srce.hr>
|
|
5118
|
|
5119 * redisplay.c (scroll_conservatively): New variable.
|
|
5120 (redisplay_window): Use it.
|
|
5121
|
189
|
5122 1997-09-16 SL Baur <steve@altair.xemacs.org>
|
|
5123
|
|
5124 * events.c (Fmake_event): Add default case, remove unused variables.
|
|
5125
|
|
5126 1997-08-21 Jan Vroonhof <vroonhof@math.ethz.ch>
|
|
5127
|
|
5128 * extents.c (extent_fragment_update): Trigger one_shot_function
|
|
5129
|
|
5130 * extents.c (set-extent-one-shot-function): New function
|
|
5131
|
|
5132 * extents.h (struct extent_auxiliary): Added one_shot_function
|
|
5133
|
|
5134 * extens.c: Added one_shot_function to assesor functions.
|
|
5135
|
|
5136 1997-09-14 Hrvoje Niksic <hniksic@srce.hr>
|
|
5137
|
|
5138 * fileio.c (Fexpand_file_name): Don't treat "//" and "~/" in the
|
|
5139 middle of path specially.
|
|
5140
|
187
|
5141 1997-09-10 Hrvoje Niksic <hniksic@srce.hr>
|
|
5142
|
|
5143 * event-stream.c (inhibit_input_event_recording): New boolean
|
|
5144 variable.
|
|
5145 (Fnext_event): Use it.
|
|
5146
|
|
5147 1997-09-13 Hrvoje Niksic <hniksic@srce.hr>
|
|
5148
|
|
5149 * fns.c (Fmapc): Renamed from Fmapc_internal.
|
|
5150
|
|
5151 1997-09-10 Hrvoje Niksic <hniksic@srce.hr>
|
|
5152
|
|
5153 * database.c (Fmake_database): Expand FILE.
|
|
5154
|
|
5155 * redisplay.c (window-system): Warn against using it.
|
|
5156
|
|
5157 1997-09-08 SL Baur <steve@altair.xemacs.org>
|
|
5158
|
|
5159 * emacs.c (PACKAGE_PATH): Reverse PACKAGE_PATH.
|
|
5160 Suggested by Colin Rafferty <craffert@ml.com>
|
|
5161
|
|
5162 1997-09-03 SL Baur <steve@altair.xemacs.org>
|
|
5163
|
|
5164 * print.c (print_internal): Special treatment for C-\.
|
|
5165
|
183
|
5166 1997-08-13 P E Jareth Hein <jareth@camelot-soft.com>
|
|
5167
|
|
5168 * insdel.c (buffer_delete_range): Changed the location where point
|
|
5169 was actually moved to after all other movement handling. This
|
|
5170 prevents a MULE related crash in VALID_BYTIND.
|
|
5171
|
|
5172 1997-08-11 SL Baur <steve@altair.xemacs.org>
|
|
5173
|
|
5174 * doc.c (Fsnarf_documentation): Semi-clarify types of weird
|
|
5175 functions.
|
|
5176
|
181
|
5177 1997-08-05 Jens-Ulrik Holger Petersen <petersen@kurims.kyoto-u.ac.jp>
|
|
5178
|
|
5179 * eval.c (vars_of_eval): Updated docstring for `debug_on_error' to
|
|
5180 mention `debug-ignored-errors'.
|
|
5181
|
|
5182 1997-08-01 SL Baur <steve@altair.xemacs.org>
|
|
5183
|
|
5184 * emacsfns.h: Fix declaration.
|
|
5185
|
|
5186 * event-stream.c (syms_of_event_stream): HAVE_MENUBARS not
|
|
5187 HAVE_MENUBAR.
|
|
5188
|
179
|
5189 1997-07-31 SL Baur <steve@altair.xemacs.org>
|
|
5190
|
|
5191 * frame-x.c (x_offix_drop_event_handler): Use stderr_out instead
|
|
5192 of fprintf.
|
|
5193
|
|
5194 * mule-coding.c (parse_iso2022_esc): Add abort() trap on unhandled
|
|
5195 condition.
|
|
5196
|
|
5197 * mule-wnnfns.c (Fwnn_dict_search): Remove unused variable.
|
|
5198 (Fwnn_hindo_update): Ditto.
|
|
5199 (Fwnn_inspect): Ditto.
|
|
5200 (Fwnn_bunsetu_henkou): Ditto.
|
|
5201
|
|
5202 * eval.c (call_with_suspended_errors): Fix Gcc warning:
|
|
5203 argument `retval' might be clobbered by `longjmp' or `vfork'
|
|
5204
|
|
5205 1997-07-30 SL Baur <steve@altair.xemacs.org>
|
|
5206
|
|
5207 * redisplay.c: `window-system' isn't going away any time soon.
|
|
5208
|
|
5209 1997-07-29 SL Baur <steve@altair.xemacs.org>
|
|
5210
|
|
5211 * callint.c (Fcall_interactively): Allow floating point numbers
|
|
5212 for `n' and `N' interactive specs.
|
|
5213
|
|
5214 1997-07-27 SL Baur <steve@altair.xemacs.org>
|
|
5215
|
|
5216 * event-stream.c (command_builder_find_leaf): Fix typo in
|
|
5217 HAVE_MENUBARS.
|
|
5218
|
|
5219 * gui-x.c (popup_selection_callback): Fix typo in HAVE_MENUBARS.
|
|
5220
|
|
5221 * event-stream.c (syms_of_event_stream): accelerate_menu needed
|
|
5222 guards.
|
|
5223
|
|
5224 * emacs.c (vars_of_emacs): Main default package directory is now
|
|
5225 ${prefix}/lib/xemacs/packages.
|
|
5226
|
177
|
5227 1997-07-25 David Moore <dmoore@ucsd.edu>
|
|
5228
|
|
5229 * alloc.c (Fmake_byte_code): GC protect newly allocated function
|
|
5230 when looking up filename.
|
|
5231
|
|
5232 1997-07-25 SL Baur <steve@altair.xemacs.org>
|
|
5233
|
|
5234 * Makefile.in.in: Added support for linking with dmalloc.
|
|
5235
|
|
5236 1997-07-25 P E Jareth Hein <jareth@camelot-soft.com>
|
|
5237
|
|
5238 * xselect.c (x_atom_to_symbol): Fixed a memory corruption bug
|
|
5239 where a possibly MULEified string was getting freed before use.
|
|
5240
|
|
5241 1997-07-21 SL Baur <steve@altair.xemacs.org>
|
|
5242
|
|
5243 * callproc.c: New variable Vdata_directory_list.
|
|
5244 * emacsfns.h: Declare it.
|
|
5245
|
|
5246 * fns.c (Frequire): Undo previous change.
|
|
5247
|
|
5248 * print.c (print_internal): Handle circular objects like Emacs
|
|
5249 handles them (and as documented in the Lispref).
|
|
5250
|
|
5251 * database.c (Fputdatabase): Complain when `val' is not a string.
|
|
5252
|
|
5253 * event-stream.c (command_builder_find_leaf): Guard menubar
|
|
5254 accelerator stuffs with HAVE_MENUBAR.
|
|
5255 * gui-x.c (popup_selection_callback): Ditto.
|
|
5256
|
|
5257 1997-07-20 SL Baur <steve@altair.xemacs.org>
|
|
5258
|
|
5259 * event-stream.c (menu_move_up): Guard menubar accelerator code
|
|
5260 with HAVE_MENUBARS.
|
|
5261
|
|
5262 * emacs.c (decode_path): New function, derived from latter portion
|
|
5263 of decode_env_path.
|
|
5264 (decode_env_path): Break out the naughty bits -- shouldn't do
|
|
5265 getenv and separator parsing in one function.
|
|
5266 New variable Vpackage_path.
|
|
5267 (vars_of_emacs): Use it.
|
|
5268
|
|
5269 * editfns.c (Fstring_to_char): Return nil instead of `0' for empty
|
|
5270 string.
|
|
5271
|
173
|
5272 1997-07-10 Hrvoje Niksic <hniksic@srce.hr>
|
|
5273
|
|
5274 * fileio.c (Finsert_file_contents_internal): Handle non-regular
|
|
5275 files.
|
|
5276
|
|
5277 1997-07-12 Steven L Baur <steve@altair.xemacs.org>
|
|
5278
|
|
5279 * Makefile.in.in (LOCK_OBJ): Only include filelock.[co] when
|
|
5280 CLASH_DETECTION is defined.
|
|
5281
|
|
5282 1997-07-11 Steven L Baur <steve@altair.xemacs.org>
|
|
5283
|
|
5284 * emacs.c (main_1): Spelling fix.
|
|
5285
|
|
5286 1997-07-10 Steven L Baur <steve@altair.xemacs.org>
|
|
5287
|
|
5288 * Makefile.in.in (dump-elcs): Shouldn't use SATISFIED hack.
|
|
5289 (xemacs-no-site-file): Not supported any more.
|
|
5290 (binary): New dependency for dumping XEmacs.
|
|
5291 (xemacs): Attempt to be a little smarter about not dumping a new
|
|
5292 XEmacs if it is not needed.
|
|
5293 (temacs): Remove `xemacs' after success.
|
|
5294
|
171
|
5295 1997-07-09 Hrvoje Niksic <hniksic@srce.hr>
|
|
5296
|
|
5297 * extents.c: Allow non-symbol properties of extents.
|
|
5298
|
|
5299 1997-07-08 Hrvoje Niksic <hniksic@srce.hr>
|
|
5300
|
|
5301 * data.c (Fstring_to_number): Use `check_int_range'.
|
|
5302 (Fstring_to_number): Would bug out on wrong type check.
|
|
5303
|
|
5304 1997-07-07 Steven L Baur <steve@altair.xemacs.org>
|
|
5305
|
|
5306 * data.c (Fcompiled_function_doc_string): Implement correctly.
|
|
5307 Was forgotten cut & paste identical clone to
|
|
5308 Fcompiled_function_interactive?
|
|
5309
|
|
5310 * Makefile.in.in (alloc.o): Remove dependency on puresize_adjust.h
|
|
5311 so alloc.c need not be recompiled when puresize changes.
|
|
5312
|
|
5313 * alloc.c (PURIFIED): Use get_PURESIZE() instead of constant.
|
|
5314 (check_purespace): Ditto.
|
|
5315 (alloc_pure_lrecord): Ditto.
|
|
5316 (report_pure_usage): Ditto.
|
|
5317 (disksave_object_finalization): Ditto.
|
|
5318 (report_pure_usage): Modify message reported when Build is
|
|
5319 restarted due to change in PURESIZE_ADJUSTMENT.
|
|
5320
|
|
5321 * puresize.h: Remove dependency on puresize_adjust.h.
|
|
5322 (get_PURESIZE): New function -- declare it.
|
|
5323
|
|
5324 * pure.c: Move final PURESIZE computation and include of
|
|
5325 puresize_adjust.h into here so alloc.c need not be recompiled each
|
|
5326 time the puresize is adjusted.
|
|
5327 (get_PURESIZE): New function.
|
|
5328
|
169
|
5329 1997-07-06 Steven L Baur <steve@altair.xemacs.org>
|
|
5330
|
171
|
5331 * data.c (Fstring_to_number): Wrong parameter was being checked.
|
|
5332
|
169
|
5333 * emacs.c (vars_of_emacs): Fprovide the system type as a feature.
|
|
5334
|
|
5335 1997-07-03 Steven L Baur <steve@altair.xemacs.org>
|
|
5336
|
|
5337 * data.c (Fstring_to_number): Fix typo. base isn't an integer.
|
|
5338
|
|
5339 1997-07-01 Steven L Baur <steve@altair.xemacs.org>
|
|
5340
|
|
5341 * data.c, emacsfns.h: This is the port of GNU Emacs capability.
|
|
5342 I am still not sure what this buys us, but I guess it doesn't hurt
|
|
5343 to have it.
|
|
5344 From Hrvoje Niksic <hniksic@srce.hr>
|
|
5345
|
|
5346 * glyphs.c (make_string_from_file): Use
|
|
5347 insert-file-contents-literally instead of
|
|
5348 insert-file-contents-internal.
|
|
5349
|
|
5350 1997-06-30 Steven L Baur <steve@altair.xemacs.org>
|
|
5351
|
|
5352 * fns.c (check_losing_bytecode): Correct reported version.
|
|
5353
|
|
5354 * Makefile.in.in (${libsrc}DOC): Break up line length for stupid
|
|
5355 make programs.
|
|
5356
|
|
5357 1997-06-29 Steven L Baur <steve@altair.xemacs.org>
|
|
5358
|
|
5359 * emacsfns.h: Put void in prototype.
|
|
5360 Suggested by Ben Wing.
|
|
5361
|
|
5362 1997-07-01 MORIOKA Tomohiko <morioka@jaist.ac.jp>
|
|
5363
|
|
5364 * glyphs.c (make_string_from_file): must protect from
|
|
5365 `format-alist'.
|
|
5366
|
167
|
5367 1997-06-28 Steven L Baur <steve@altair.xemacs.org>
|
|
5368
|
|
5369 * config.h.in: Back out previous change to LOSING_BYTECODE. It's
|
|
5370 just not worth it.
|
|
5371
|
|
5372 1997-06-27 Mike Scheidler <c23mts@eng.delcoelect.com>
|
|
5373
|
|
5374 * s/sol2.h: Undefined _XOPEN_SOURCE for Solaris 2.4.
|
|
5375
|
|
5376 1997-06-28 Hrvoje Niksic <hniksic@srce.hr>
|
|
5377
|
|
5378 * abbrev.c (abbrev_match): New function.
|
|
5379 (abbrev_oblookup): New function.
|
|
5380 (obarray_has_blank_p): New function.
|
|
5381 (abbrev_count_case): New function.
|
|
5382 (Fexpand_abbrev): Use them. Allow abbreviations to contain
|
|
5383 arbitrary characters.
|
|
5384
|
|
5385 1997-06-28 Steven L Baur <steve@altair.xemacs.org>
|
|
5386
|
|
5387 * config.h.in: LOSING_BYTECODE will not be compiled into XEmacs.
|
|
5388
|
|
5389 * doc.c (Fsnarf_documentation): Remove VMS dependent stuff for
|
|
5390 cleanliness.
|
|
5391
|
|
5392 1997-06-28 Hrvoje Niksic <hniksic@srce.hr>
|
|
5393
|
|
5394 * print.c (Ferror_message_string): Simplify.
|
|
5395
|
|
5396 1997-06-27 Steven L Baur <steve@altair.xemacs.org>
|
|
5397
|
|
5398 * symbols.c (Fdefine_function): Correct docstring.
|
|
5399 (Fsetplist): Ditto.
|
|
5400 (Ffset): Ditto.
|
|
5401 (Fsetq_default): Ditto.
|
|
5402
|
|
5403 1997-06-27 Hrvoje Niksic <hniksic@srce.hr>
|
|
5404
|
|
5405 * eval.c (skip_debugger): Removed comment and #ifdef-ed code.
|
|
5406 (signal_call_debugger): Call skip_debugger after wants_debugger.
|
|
5407 (signal_call_debugger): Gcpro cons sent to skip_debugger.
|
|
5408
|
|
5409 1997-06-26 Steven L Baur <steve@altair.xemacs.org>
|
|
5410
|
|
5411 * process.c (create_process): Default to fork instead of vfork.
|
|
5412
|
|
5413 * callproc.c (Fcall_process_internal): Default to fork instead of
|
|
5414 vfork.
|
|
5415
|
|
5416 * emacsfns.h: Add declarations of Ferror_message_string(),
|
|
5417 Frunning_temacs_p().
|
|
5418
|
|
5419 * eval.c: Remove declarations of Ferror_message_string(),
|
|
5420 Frunning_temacs_p().
|
|
5421
|
|
5422 * Makefile.in.in (${libsrc}DOC): Correct dependency for the docfile.
|
|
5423 (${mo_dir}emacs.po): Remove obsolete references to lisp source.
|
|
5424
|
|
5425 1997-06-29 MORIOKA Tomohiko <morioka@jaist.ac.jp>
|
|
5426
|
|
5427 * mule-charset.c: Modify charset DOC-strings to be more detailed.
|
|
5428
|
165
|
5429 1997-06-25 Steven L Baur <steve@altair.xemacs.org>
|
|
5430
|
|
5431 * alloc.c (Flist): Optimize.
|
|
5432 From Hrvoje Niksic.
|
|
5433
|
|
5434 1997-06-23 Steven L Baur <steve@altair.xemacs.org>
|
|
5435
|
|
5436 * lisp.h: Get uintptr_t stuffs because it is needed for including
|
|
5437 emacsfns.h.
|
|
5438
|
|
5439 * sysdep.h: Removed uintptr_t stuffs.
|
|
5440
|
|
5441 1997-06-22 Steven L Baur <steve@altair.xemacs.org>
|
|
5442
|
|
5443 * fns.c (concat): Replace Fcar/Fcdr with XCAR/XCDR.
|
|
5444 (Fnreverse): Ditto.
|
|
5445 (internal_equal): Ditto.
|
|
5446 (internal_old_equal): Ditto.
|
|
5447 (Fnconc): Ditto.
|
|
5448 (Freverse): Saner implementation.
|
|
5449 From Hrvoje Niksic <hniksic@srce.hr>
|
|
5450
|
|
5451 * s/linux.h: getpgrp with glibc is now properly detected by
|
|
5452 configure.
|
|
5453 Suggested by Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
|
5454
|
163
|
5455 1997-06-20 Steven L Baur <steve@altair.xemacs.org>
|
|
5456
|
|
5457 * events.c: Remove declaration of Qempty.
|
|
5458
|
|
5459 1997-06-20 Olivier Galibert <Olivier.Galibert@mines.u-nancy.fr>
|
|
5460
|
|
5461 * frame-x.c, EmacsFrame.c, menubar-x.c, redisplay-x.c, scrollbar-x.c:
|
|
5462 Make 64 bit clean.
|
|
5463
|
|
5464 1997-06-19 Martin Buchholz <mrb@eng.sun.com>
|
|
5465
|
|
5466 * config.h.in:
|
|
5467 - Autodetect X defines using xmkmf.
|
|
5468 - Compute rpath on *bsd* systems as well.
|
|
5469 - rewrite PRINT_VAR m4 macro.
|
|
5470 - detect sizes of void* and long long for future use by unex*.c
|
|
5471 * regex.c: _GNU_SOURCE may be defined by config.h; don't redefine.
|
|
5472
|
|
5473 1997-06-18 Martin Buchholz <mrb@eng.sun.com>
|
|
5474
|
|
5475 * Makefile.in:
|
|
5476 * s/*.h:
|
|
5477 * m/*.h:
|
203
|
5478 * config.h.in:
|
215
|
5479 * emacs.c:
|
163
|
5480 * version.sh:
|
|
5481 * configure.in: Another rewrite.
|
|
5482 - support powerpcle (Solaris on ppc)
|
|
5483 - Now just have one s/sol2.h for all Solaris versions
|
|
5484 - Specifying colon-separated directories actually works now.
|
|
5485 - OS_RELEASE is a new define to avoid proliferation of s&m files.
|
|
5486 - extract more stuff from s&m files.
|
|
5487 - more debugging info
|
|
5488 - More changes to avoid the `echo -e' problem
|
|
5489 - Add more tests: fcntl.h AC_TYPE_*, AC_FUNC_GETPGRP
|
|
5490 - Back out -lPW test.
|
|
5491 - More paranoid xpm test
|
|
5492 - Put version information in version.sh instead of version.el
|
|
5493 - Make quoted pre-processor string tokens out of all macro values
|
|
5494 to be used only by configure.
|
|
5495 * xmu.c: DON'T use Xos.h
|
|
5496 * sysdep.c (wait_for_termination):
|
|
5497 * search.c:
|
|
5498 * editfns.c:
|
|
5499 * console-*:
|
|
5500
|
|
5501 1997-06-18 Steven L Baur <steve@altair.xemacs.org>
|
|
5502
|
|
5503 * unexelfsgi.c: Some things that Needed To Be Done(tm) into
|
|
5504 unexelfsgi:
|
|
5505 - support for .sbss section (no more -G 0 needed, 0.00001% speed
|
|
5506 increase)
|
|
5507 - support for Elf64 (64bits executables)
|
|
5508 From Olivier Galibert <Olivier.Galibert@mines.u-nancy.fr>
|
|
5509
|
|
5510 * fns.c (Fmapvector): New function converted from Lisp.
|
|
5511 From Hrvoje Niksic <hniksic@srce.hr>
|
|
5512
|
|
5513 Wed Jun 18 16:42:10 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
5514
|
|
5515 * Makefile.in.in: Convert two missed C style comments.
|
|
5516 (LIBES): Remove LIBS_DEBUG which is no longer defined.
|
|
5517 (LIBES): lwlibs_libs was misspelled.
|
|
5518
|
|
5519 1997-06-17 Hrvoje Niksic <hniksic@srce.hr>
|
|
5520
|
|
5521 * eval.c (vars_of_eval): New variable Vdebug_ignored_errors.
|
|
5522 (skip_debugger): New function; use Vdebug_ignored_errors.
|
|
5523 (signal_call_debugger): Use it.
|
|
5524
|
|
5525 1997-06-17 Steven L Baur <steve@altair.xemacs.org>
|
|
5526
|
|
5527 * emacs.c (vars_of_emacs): Moved symbols emacs-version,
|
|
5528 emacs-major-version, and emacs-minor-version from version.el to
|
|
5529 here.
|
|
5530
|
|
5531 * general.c (syms_of_general): New symbols and, not, and or.
|
|
5532
|
|
5533 * emacsfns.h: New symbols Qand, Qnot, Qor.
|
|
5534
|
|
5535 * Makefile.in.in: Call temacs to compute lisp libraries to
|
|
5536 include in the DOC file.
|
|
5537
|
|
5538 1997-06-15 Steven L Baur <steve@altair.xemacs.org>
|
|
5539
|
|
5540 * Makefile.in.in (lisp): Remove explicit mention of auto-autoloads.el.
|
|
5541
|
|
5542 Sat Jun 14 21:55:27 1997 Kyle Jones <kyle_jones@wonderworks.com>
|
|
5543
|
|
5544 * console.c (Fselect_console):
|
|
5545 Check DEVICE_SELECTED_FRAME of console's selected
|
|
5546 device for non-nil value before using it as a frame.
|
|
5547
|
161
|
5548 1997-06-13 Steven L Baur <steve@altair.xemacs.org>
|
|
5549
|
|
5550 * data.c (eq_with_ebola_notice): Remove horrible hack to avoid
|
|
5551 unavoidable Ebola notices in the bytecompiler.
|
|
5552
|
|
5553 * emacsfns.h: Fextent_in_region_p: Move.
|
|
5554
|
|
5555 * keymap.c Fextent_in_region_p: Move.
|
|
5556
|
|
5557 Fri Jun 13 00:38:29 1997 Kyle Jones <kyle_jones@wonderworks.com>
|
|
5558
|
215
|
5559 * console.c (Fsuspend_console):
|
161
|
5560 Disable input on ttys. Hide unhidden frames.
|
|
5561
|
215
|
5562 * console.c (Fresume_console):
|
161
|
5563 Enable input on ttys. Raise the device selected frame.
|
|
5564
|
|
5565 Fri Jun 13 00:25:46 1997 Kyle Jones <kyle_jones@wonderworks.com>
|
|
5566
|
|
5567 * process.c (status_notify):
|
|
5568 Revert back to the code that does not use
|
|
5569 save_excursion_restore. Just bounds check opoint
|
|
5570 instead.
|
|
5571
|
|
5572 * process.c (read_process_output):
|
|
5573 Bounds check saved clip region and point values for
|
|
5574 validity before using them. Call Fwiden before calling
|
|
5575 Fnarrow_to_region to insure values will not be out of
|
|
5576 range.
|
|
5577
|
|
5578 1997-06-12 Steven L Baur <steve@altair.xemacs.org>
|
|
5579
|
|
5580 * alloc.c: Make the GC cursor appear on all frames.
|
|
5581 From Hrvoje Niksic <hniksic@srce.hr>
|
|
5582
|
|
5583 1997-06-11 Steven L Baur <steve@altair.xemacs.org>
|
|
5584
|
|
5585 * data.c (eq_with_ebola_notice): Add byte-optimize-logmumble and
|
|
5586 byte-compile-push-constant to list of ignored functions.
|
|
5587
|
|
5588 1997-06-11 Hrvoje Niksic <hniksic@srce.hr>
|
|
5589
|
|
5590 * bytecode.c (Bsave_current_buffer): Register.
|
|
5591 (Fbyte_code): Do action.
|
|
5592
|
|
5593 * editfns.c (Fsave_current_buffer): New SUBR.
|
|
5594
|
159
|
5595 1997-06-11 Steven L Baur <steve@altair.xemacs.org>
|
|
5596
|
|
5597 * syntax.c (Fchar_syntax): Handle case of being passed nil.
|
|
5598
|
|
5599 * data.c (eq_with_ebola_notice): Add more legitimate places in the
|
|
5600 bytecompiler that should not get Ebola notices.
|
|
5601
|
|
5602 Tue Jun 10 00:34:40 1997 Kyle Jones <kyle_jones@wonderworks.com>
|
|
5603
|
|
5604 * process.c (status_notify):
|
|
5605 Use record_unwind_protect and save_excursion_restore to
|
|
5606 handle the point and buffer restoration. Cleaner. Doesn't
|
|
5607 crash the editor if before/after-change-functions change
|
|
5608 things behind our back.
|
|
5609
|
|
5610 1997-06-10 Steven L Baur <steve@altair.xemacs.org>
|
|
5611
|
|
5612 * data.c (vars_of_data): Set Ebola warning backtrace limit to 16.
|
|
5613 (eq_with_ebola_notice): Bypass Ebola warnings for special
|
|
5614 bytecompiler functions where they are 100% spurioius.
|
|
5615
|
|
5616 1997-06-11 MORIOKA Tomohiko <morioka@jaist.ac.jp>
|
|
5617
|
|
5618 * Makefile.in.in: Use lisp/mule/language/misc-lang.el instead of
|
|
5619 lisp/mule/ipa-hooks.el.
|
|
5620
|
|
5621 1997-06-10 MORIOKA Tomohiko <morioka@jaist.ac.jp>
|
|
5622
|
|
5623 * Makefile.in.in: Use lisp/mule/language/thai.elc instead of
|
|
5624 lisp/mule/thai-hooks.elc.
|
|
5625
|
|
5626 1997-06-09 MORIOKA Tomohiko <morioka@jaist.ac.jp>
|
|
5627
|
|
5628 * Makefile.in.in: Use lisp/mule/language/chinese.el,
|
|
5629 lisp/mule/language/cyrillic.el, lisp/mule/language/european.el,
|
|
5630 lisp/mule/language/greek.el, lisp/mule/language/japanese.el and
|
|
5631 lisp/mule/language/korean.el instead of
|
|
5632 lisp/mule/chinese-hooks.el, lisp/mule/cyrillic-hooks.el,
|
|
5633 lisp/mule/european-hooks.el, lisp/mule/greek-hooks.el,
|
|
5634 lisp/mule/japanese-hooks.el and lisp/mule/korean-hooks.el.
|
|
5635
|
157
|
5636 1997-06-09 Steven L Baur <steve@altair.xemacs.org>
|
|
5637
|
|
5638 * keymap.c: Declare Fextent_in_region_p.
|
|
5639
|
|
5640 * s/linux.h: Can't use ORDINARY_LINK in linux until usage of -lPW
|
|
5641 is determined more sensibly.
|
|
5642
|
|
5643 1997-06-09 Hrvoje Niksic <hniksic@srce.hr>
|
|
5644
|
|
5645 * keydefs.c (get_relevant_extent_keymaps): Choose correct keymap
|
|
5646 at extent boundaries.
|
|
5647
|
|
5648 Mon Jun 9 19:35:19 1997 Kyle Jones <kyle_jones@wonderworks.com>
|
|
5649
|
|
5650 * redisplay.c (pixel_to_glyph_translation):
|
|
5651 Fixed off by one error in computation of closest
|
|
5652 position when mouse is in the frame's right-side
|
|
5653 border area.
|
|
5654
|
|
5655 Sat Jun 7 22:07:41 1997 Kyle Jones <kyle_jones@wonderworks.com>
|
|
5656
|
|
5657 * frame.c (delete_frame_internal):
|
|
5658 Calling Fselect_frame isn't sufficient to set the
|
|
5659 frame device's selected frame if the frame we're
|
|
5660 selecting is on a different device. Call
|
|
5661 set_device_selected_frame apprpriately in that case.
|
|
5662 Also don't set the frame device's selected frame to a
|
|
5663 frame that's on another device.
|
|
5664
|
|
5665 1997-06-09 Steven L Baur <steve@altair.xemacs.org>
|
|
5666
|
|
5667 * sysdep.c: MS Windows NT doesn't (yet) do child TTY processes.
|
|
5668 From David Hobley <davidh@wr.com.au>
|
|
5669
|
|
5670 Sat Jun 7 22:00:54 1997 Kyle Jones <kyle_jones@wonderworks.com>
|
|
5671
|
215
|
5672 * device-x.c (x_delete_device):
|
157
|
5673 Add an EQ check so that we don't set Vdefault_x_device
|
|
5674 back to the device we're deleting.
|
|
5675
|
155
|
5676 1997-06-05 Steven L Baur <steve@altair.xemacs.org>
|
|
5677
|
|
5678 * frame.c (Fmake_frame): Correct checking of first_frame_on_device.
|
|
5679 From Hrvoje Niksic <hniksic@srce.hr>
|
|
5680
|
|
5681 1997-06-04 Steven L Baur <steve@altair.xemacs.org>
|
|
5682
|
|
5683 * device.c (delete_deviceless_console): New function.
|
|
5684 (Fmake_device): Use it. Fix problem of creation of a frame on a
|
|
5685 tty where something fails during initialization.
|
|
5686 From Kyle Jones <kyle_jones@wonderworks.com>
|
|
5687
|
|
5688 * specifier.c (Fboolean_specifier_p): Correct spelling in
|
|
5689 Docstring (synch from Infodock 3.5).
|
|
5690
|
|
5691 * frame.c: Update docstring.
|
|
5692
|
|
5693 1997-06-03 Hrvoje Niksic <hniksic@srce.hr>
|
|
5694
|
|
5695 * sysdep.c (tty_init_sys_modes_on_device): Initialize it.
|
|
5696
|
|
5697 * console.c (complex_vars_of_console): New variable
|
|
5698 `tty-erase-char'.
|
|
5699
|
|
5700 * conslots.h (MARKED_SLOT): New slot.
|
|
5701
|
|
5702 Mon Jun 2 02:49:44 1997 Kyle Jones <kyle_jones@wonderworks.com>
|
|
5703
|
|
5704 * frame.c, frame-tty.c
|
|
5705 Treat tty frames like a cross between stacked window
|
|
5706 system frames and frames on virtual displays. All
|
|
5707 frames but the top frame are visible but hidden by
|
|
5708 default. next-frame and previous-frame now skip
|
|
5709 invisible tty frames by default. raise-frame and
|
|
5710 lower-frame now control whether a frame is hidden
|
|
5711 instead of whether it is visible. Frames are no
|
|
5712 longer automatically raised when they are selected.
|
|
5713 After a raise/lower operation selection of the new
|
|
5714 topmost frame is deferred until a selection magic
|
|
5715 event is read.
|
|
5716
|
|
5717 Sat May 31 19:59:49 1997 Kyle Jones <kyle_jones@wonderworks.com>
|
|
5718
|
|
5719 * frame-tty.c (tty_init_frame_3:
|
|
5720 Defer selection of the newly created frame until
|
|
5721 an event is read.
|
|
5722
|
|
5723 1997-06-02 Steven L Baur <steve@altair.xemacs.org>
|
|
5724
|
|
5725 * search.c (REGEXP_CACHE_SIZE): Bump to 20.
|
|
5726 Suggested by Karl M. Hegbloom <karlheg@inetarena.com>
|
|
5727
|
|
5728 1997-05-30 Steven L Baur <steve@altair.xemacs.org>
|
|
5729
|
|
5730 * device-tty.c (tty_asynch_device_change):
|
|
5731 * gpmevent.c (connect_to_gpm): Makes it so it doesn't **ck up the
|
|
5732 mouse stuff on an XTerm, and resets the internal GPM variables for
|
|
5733 the width and height of the screen when we get a sigwinch.
|
|
5734 From William M. Perry <wmperry@aventail.com>
|
|
5735
|
153
|
5736 1997-05-29 Steven L Baur <steve@altair.xemacs.org>
|
|
5737
|
|
5738 * eval.c (Fprogn): Delete mocklisp support.
|
|
5739 (Fwhile): Ditto.
|
|
5740 (Fcommandp): Ditto.
|
|
5741 (Feval): Ditto.
|
|
5742 (funcall_recording_as): Ditto.
|
|
5743 (funcall_lambda): Ditto.
|
|
5744
|
|
5745 * elhash.c (verify_function): Delete mocklisp support.
|
|
5746
|
|
5747 * doc.c (Fdocumentation): Delete mocklisp support.
|
|
5748
|
|
5749 * data.c (wrong_type_argument): Delete mocklisp support.
|
|
5750
|
|
5751 * config.h.in: Delete mocklisp support.
|
|
5752
|
|
5753 * callint.c (Fcall_interactively): Delete mocklisp support.
|
|
5754
|
|
5755 * emacs.c (main_1): Delete mocklisp initialization.
|
|
5756
|
|
5757 * symsinit.h: Delete mocklisp.c decls.
|
|
5758
|
|
5759 * Makefile.in.in: Delete mocklisp stuffs.
|
|
5760
|
|
5761 Thu May 29 03:00:16 1997 Kyle Jones <kyle@crystal.wonderworks.com>
|
|
5762
|
|
5763 * frame.c (change_frame_size_1):
|
|
5764 Drop code that returns immediately if the old frame
|
|
5765 size is equal to the new.
|
|
5766 Leave the minibuffer height the same if the frame has
|
|
5767 been initialized, and the minibuffer height is tall
|
|
5768 enough to display at least one line of text in the default
|
|
5769 font, and the old minibuffer height is a multiple of the
|
|
5770 default font height. This should cause the minibuffer
|
|
5771 height to be recomputed on font changes but not for
|
|
5772 other frame size changes, which seems reasonable.
|
|
5773
|
|
5774 1997-05-26 Steven L Baur <steve@altair.xemacs.org>
|
|
5775
|
|
5776 * event-stream.c (Frecent_keys): Take optional parameter to
|
|
5777 indicate how many keystrokes to return.
|
|
5778 (Frecent_keys_ring_size): New function returns the maximum number
|
|
5779 of events `recent-keys' can return.
|
|
5780 (Fset_recent_keys_ring_size): New function. Modifies the above.
|
|
5781
|
|
5782 From Hrvoje Niksic <hniksic@srce.hr>
|
|
5783
|
|
5784 * event-stream.c: New variable recent_keys_ring_size replacing a
|
|
5785 hard-coded macro.
|
|
5786
|
|
5787 1997-05-23 Steven L Baur <steve@altair.xemacs.org>
|
|
5788 From Hrvoje Niksic <hniksic@srce.hr>
|
|
5789
|
|
5790 * sysdep.c: Correction of subprocess support when compiling
|
|
5791 without ttys.
|
|
5792
|
151
|
5793 1997-05-21 Steven L Baur <steve@altair.xemacs.org>
|
|
5794
|
|
5795 * editfns.c (format-time-string): Update DOCstring. Make time
|
|
5796 parameter optional.
|
|
5797
|
|
5798 Wed May 21 11:58:17 1997 Kyle Jones <kyle@crystal.wonderworks.com>
|
|
5799
|
215
|
5800 * insdel.c (signal_first_change):
|
151
|
5801 record the current buffer for the unwind instead of the
|
|
5802 buffer that's about to become the current buffer.
|
|
5803
|
|
5804 Tue May 20 23:23:39 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
5805
|
|
5806 * frame.c: Correct spelling typo in docstring.
|
|
5807
|
|
5808 Mon May 19 03:40:46 1997 Kyle Jones <kyle@crystal.WonderWorks.COM>
|
|
5809
|
215
|
5810 * redisplay.c: (window_line_number)
|
151
|
5811 don't prefer buffer point value over window point
|
|
5812 value unless window, frame, device and console are
|
|
5813 all selected.
|
|
5814
|
215
|
5815 * redisplay.c: (redisplay_window)
|
151
|
5816 don't prefer buffer point value over window point
|
|
5817 value unless window, frame, device and console are
|
|
5818 all selected.
|
|
5819
|
215
|
5820 * redisplay.c: (create_text_block)
|
151
|
5821 don't prefer buffer point value over window point
|
|
5822 value unless window, frame, device and console are
|
|
5823 all selected.
|
|
5824
|
|
5825 Sun May 18 13:03:50 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
5826
|
|
5827 * Makefile.in.in (distclean): remove xemacs-version.h.
|
|
5828
|
149
|
5829 Sun May 11 13:38:46 1997 Kyle Jones <kyle@crystal.WonderWorks.COM>
|
|
5830
|
215
|
5831 * frame.c (change_frame_size_1):
|
149
|
5832 return without doing anything if the frame has benn
|
|
5833 initialized and the new frame size is same as the
|
|
5834 current frame size.
|
|
5835
|
|
5836 Sat May 17 19:35:48 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
5837
|
|
5838 * device-tty.c (tty_asynch_device_change): Make
|
|
5839 `no-redraw-on-reenter' work. Patch from Hrvoje Niksic.
|
|
5840
|
|
5841 Sat May 17 23:39:03 1997 Hrvoje Niksic <hniksic@srce.hr>
|
|
5842
|
|
5843 * frame-tty.c: Support multiple frames.
|
|
5844
|
|
5845 * redisplay.c (decode_mode_spec): New coding `%N'.
|
|
5846
|
146
|
5847 Sun May 11 23:36:08 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
5848
|
|
5849 * buffer.c: Rename Vdelete_auto_save_files to coding standards.
|
|
5850
|
|
5851 * frame.c: Rename Vallow_deletion_of_last_visible_frame to coding
|
|
5852 standards.
|
|
5853
|
142
|
5854 Thu May 8 19:10:03 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
5855
|
|
5856 * frame.c: Change internal type of
|
|
5857 `allow-deletion-of-last-visible-frame' to boolean.
|
|
5858
|
|
5859 * buffer.c: Change internal type of `delete-auto-save-files' to
|
|
5860 boolean.
|
|
5861
|
|
5862 Sat May 3 15:28:56 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
5863
|
|
5864 * redisplay.c: `column-number-start-at-one' is a user customizable
|
|
5865 variable.
|
|
5866
|
|
5867 * event-stream.c (vars_of_event_stream): `focus-follows-mouse' is
|
|
5868 a user customizable variable.
|
|
5869
|
|
5870 * cmds.c (vars_of_cmds): `signal-error-on-buffer-boundary' is a
|
|
5871 user customizable variable.
|
|
5872
|
|
5873 * lread.c (parse_integer): Fix incorrect upper bounds on loop.
|
|
5874
|
140
|
5875 Thu May 1 18:59:20 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
5876
|
|
5877 * glyphs-x.c (Fmake_subwindow): Update error message.
|
|
5878
|
|
5879 Wed Apr 30 18:07:18 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
5880
|
|
5881 * lread.c: New variable featurep.
|
|
5882 (read1): Add processing for #- and #+.
|
|
5883 (read_list_conser): Handle case where a feature test has removed a
|
|
5884 portion of the input stream.
|
|
5885 (vars_of_lread): New feature `xemacs'.
|
|
5886
|
|
5887 * fns.c (Ffeaturep): Remove function when using #-, #+ feature
|
|
5888 reader syntax.
|
|
5889
|
|
5890 * Makefile.in.in (lisp): Put features.elc in the dump list.
|
|
5891
|
|
5892 Thu May 1 05:24:25 1997 Hrvoje Niksic <hniksic@srce.hr>
|
|
5893
|
|
5894 * buffer.c (Fmake_indirect_buffer): Don't pretend it's there.
|
|
5895
|
138
|
5896 Fri Apr 25 10:53:07 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
5897
|
|
5898 * glyphs-x.c: libpng already includes setjmp.h, so don't attempt
|
|
5899 to include it twice.
|
|
5900
|
|
5901 Thu Apr 24 09:14:13 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
5902
|
|
5903 * balloon-x.c (vars_of_balloon_x): Don't override advertised and
|
|
5904 supported balloon-help.
|
|
5905
|
136
|
5906 Tue Apr 22 11:54:02 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
5907
|
|
5908 * emacs.c (main_1): Add syms_of_balloon_x and guard with
|
|
5909 HAVE_X_WINDOWS.
|
|
5910 (main_1): Add vars_of_balloon_x and guard with HAVE_X_WINDOWS.
|
|
5911
|
|
5912 * process.c (get_process): This function can be passed a BUFFER as
|
|
5913 a parameter.
|
|
5914
|
|
5915 Tue Apr 22 01:32:00 1997 Kyle Jones <kyle@crystal.WonderWorks.COM>
|
|
5916
|
215
|
5917 * menubar-x.c (pre_activate_hook):
|
136
|
5918 set in_menu_callback around call to call to
|
|
5919 menu_item_descriptor_to_widget_value.
|
|
5920
|
215
|
5921 * event-stream.c (Fnext_event):
|
136
|
5922 signal error if in_menu_callback non-nil to avoid
|
|
5923 reentering the menubar code and causing a crash later.
|
|
5924
|
215
|
5925 * cmdloop.c (command_loop_3):
|
136
|
5926 signal error if in_menu_callback non-nil to avoid
|
|
5927 inflooping calling Fnext_event, which will signal an
|
|
5928 error if the situation is not caught earlier.
|
|
5929
|
|
5930 Tue Apr 22 08:22:22 1997 Hrvoje Niksic <hniksic@srce.hr>
|
|
5931
|
|
5932 * balloon-x.c, balloon_help.c, balloon_help.h: Modified to conform
|
|
5933 to XEmacs coding standards.
|
|
5934
|
134
|
5935 Thu Apr 17 17:16:34 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
5936
|
|
5937 * balloon-x.c: New file from Douglas Keller.
|
|
5938
|
|
5939 * balloon_help.c: New file from Douglas Keller.
|
|
5940
|
|
5941 * balloon_help.h: New file from Douglas Keller.
|
|
5942
|
126
|
5943 Sun Apr 13 09:56:54 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
5944
|
|
5945 * emacs.c (shut_down_emacs): Advertise using send-pr as the
|
|
5946 mechanism for submitting a bug report.
|
|
5947
|
|
5948 * Makefile.in.in: Handle pathological case of mis-autodetected
|
|
5949 TOOLTALK.
|
|
5950
|
|
5951 Sun Apr 13 11:33:34 1997 David Moore <dmoore@ucsd.edu>
|
|
5952
|
|
5953 * regex.c (re_search_2): Prevent incorrect matching and infinite
|
|
5954 loop with \\` and MULE.
|
|
5955
|
124
|
5956 Sat Apr 12 05:57:51 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
5957
|
|
5958 * Makefile.in.in (lisp): Dump cus-start.elc with XEmacs.
|
|
5959
|
|
5960 * event-Xt.c (x_to_emacs_keysym): Allow for dead keys. (Patch
|
|
5961 from Joachim Schnitter).
|
|
5962
|
|
5963 * Makefile.in.in: Allow native sound for BSD/I.
|
|
5964
|
|
5965 * linuxplay.c: Rename global sndbuf to linuxplay_sndbuf.
|
|
5966 Make sndbuf, mix_fd, audio_vol, audio_fd, audio_dev non-static to
|
|
5967 avoid dump time lossage.
|
|
5968 (sndcnv8U_2mono): Rename global sndbuf to linuxplay_sndbuf.
|
|
5969 (sndcnv8S_2mono): Ditto.
|
|
5970 (sndcnv2monounsigned): Ditto.
|
|
5971 (sndcnv2unsigned): Ditto.
|
|
5972 (sndcnvULaw_2mono): Ditto.
|
|
5973 (sndcnv16_2monoLE): Ditto.
|
|
5974 (sndcnv16_2monoBE): Ditto.
|
|
5975 (sndcnv2byteLE): Ditto.
|
|
5976 (sndcnv2byteBE): Ditto.
|
|
5977 (sndcnv2monobyteLE): Ditto.
|
|
5978 (sndcnv2monobyteBE): Ditto.
|
|
5979 (linux_play_data_or_file): Ditto.
|
|
5980 (linux_play_data_or_file): Ditto.
|
|
5981 (linux_play_data_or_file): Ditto.
|
|
5982
|
|
5983 Sat Apr 12 01:59:14 1997 Kyle Jones <kyle_jones@WonderWorks.COM>
|
|
5984
|
|
5985 * glyphs-x.c, glyphs.c, glyphs.h: Added domain parameter to all
|
|
5986 image *_instantiate functions so that the domsin is available to
|
|
5987 specifier lookups in the various instantiator functions. Passed
|
|
5988 domain argument to extract_xpm_color_names for the
|
|
5989 Fspecifier_instance call.
|
|
5990
|
|
5991 Fri Apr 11 20:02:40 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
5992
|
|
5993 * glyphs-x.c (extract_xpm_color_names): Add checking to handle
|
|
5994 case for when XEmacs is in initialization.
|
|
5995
|
|
5996 * events.c (Fevent_type): Remove handling for dead_event.
|
|
5997 (Fevent_properties): Remove handling for dead_event.
|
|
5998
|
|
5999 Thu Apr 10 20:41:53 1997 David Moore <dmoore@ucsd.edu>
|
|
6000
|
|
6001 * ntproc.c (sys_spawnve): Clean up GC protection.
|
|
6002
|
|
6003 * fileio.c (Ffile_executable_p): Clean up GC protection.
|
|
6004
|
122
|
6005 Thu Apr 10 12:48:49 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6006
|
|
6007 * glyphs.c: Undo duplicate declaration of display_table.
|
|
6008
|
|
6009 * glyphs.h: Back out name change of autodetect to
|
|
6010 automatic_conversion.
|
|
6011
|
|
6012 * glyphs.c: Back out name change of autodetect to
|
|
6013 automatic_conversion.
|
|
6014
|
|
6015 * glyphs-x.c (image_instantiator_format_create_glyphs_x): Back out
|
|
6016 name change of autodetect to automatic_conversion.
|
|
6017
|
|
6018 * events.c (Fevent_properties): Do something sensible for
|
|
6019 dead_event and empty_event.
|
|
6020
|
|
6021 * general.c: Restore autodetect symbol.
|
|
6022
|
|
6023 * emacsfns.h: Declare new symbol Qempty.
|
|
6024
|
|
6025 * general.c: Add symbol to identify empty events.
|
|
6026
|
|
6027 * events.c (Fevent_type): Don't abort() when presented with an
|
|
6028 empty_event or a dead_event.
|
|
6029
|
120
|
6030 Mon Apr 7 18:12:26 1997 David Moore <dmoore@ucsd.edu>
|
|
6031
|
|
6032 * xmu.c: Renamed local `initialized' variable to `hex_initialized'
|
|
6033 and don't assign to static, as some compilers crash.
|
|
6034 (initHexTable): Use it.
|
|
6035 (XmuReadBitmapData): Use it.
|
|
6036
|
|
6037 Sun Apr 6 18:03:47 1997 David Moore <dmoore@ucsd.edu>
|
|
6038
|
|
6039 * fileio.c (Fexpand_file_name): Clean up GC protection.
|
|
6040
|
|
6041 * dired.c (Fdirectory_files): Clean up GC protection.
|
|
6042
|
|
6043 * insdel.c (signal_after_change): Don't run after_change_functions
|
|
6044 on special Vprin1_to_string_buffer.
|
|
6045 (signal_before_change): Ditto for before_change_functions.
|
|
6046
|
|
6047 Fri Apr 4 14:41:17 1997 David Moore <dmoore@ucsd.edu>
|
|
6048
|
|
6049 * buffer.c (Fkill_buffer): Don't kill special
|
|
6050 Vprin1_to_string_buffer.
|
|
6051
|
|
6052 Mon Apr 7 19:13:40 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6053
|
|
6054 * Makefile.in.in (xemacs-version.h): Added to rename main_1 to
|
|
6055 something reflecting the XEmacs version in use (for lusers
|
|
6056 reporting crashes who forget to include the version number).
|
|
6057
|
|
6058 * toolbar.c (specifier_vars_of_toolbar): Strip HAVE_NEXTSTEP.
|
|
6059
|
|
6060 * sound.c: Strip HAVE_NEXTSTEP.
|
|
6061
|
|
6062 * redisplay.c (init_redisplay): Strip HAVE_NEXTSTEP.
|
|
6063
|
|
6064 * faces.c: Strip HAVE_NEXTSTEP.
|
|
6065 (update_EmacsFrame): Ditto.
|
|
6066
|
|
6067 * events.c (event_equal): Strip HAVE_NEXTSTEP.
|
|
6068 (event_hash): Ditto.
|
|
6069 (format_event_object): Ditto.
|
|
6070
|
|
6071 * event-stream.c (init_event_stream): Strip HAVE_NEXTSTEP.
|
|
6072
|
|
6073 * emacs.c (main_1): Strip HAVE_NEXTSTEP.
|
|
6074 Attempt hack to change name of main_1 to something reflecting the
|
|
6075 current version for lusers who don't include version numbers with
|
|
6076 stack backtraces.
|
|
6077
|
|
6078 * device.c: Strip HAVE_NEXTSTEP.
|
|
6079
|
|
6080 * console.c (Fconsole_type): Remove reference to unimplemented ns
|
|
6081 windows type.
|
|
6082
|
|
6083 Sun Apr 6 08:08:33 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6084
|
|
6085 * frame.h: Strip NeXTStep stuff.
|
|
6086
|
|
6087 * device.h: Strip NeXTStep stuff.
|
|
6088
|
|
6089 * console.h: More NeXTStep trimming.
|
|
6090
|
|
6091 * console-x.h: Strip Epoch stuff.
|
|
6092
|
|
6093 * symsinit.h (init_sunpro): Strip vms/Epoch stuff.
|
|
6094
|
|
6095 * events.h (union magic_data): Strip NeXTStep stuff.
|
|
6096
|
|
6097 * console.h: Strip NeXTStep stuff.
|
|
6098
|
|
6099 * config.h.in: Strip unimplemented NeXTStep/Epoch stuff out.
|
|
6100
|
|
6101 * Makefile.in.in: Remove unused NeXTStep support. It's all in the
|
|
6102 cvs attic if someone wishes to revive it.
|
|
6103 (epoch.o): Remove last vestiges of non-existent epoch support.
|
|
6104
|
|
6105 Sat Apr 5 17:16:49 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6106
|
|
6107 * fns.c: Correct DOC string to not equate integers and
|
|
6108 characters.
|
|
6109
|
118
|
6110 Thu Apr 3 08:01:50 1997 Steve Carney <carney@gvc.dec.com>
|
|
6111
|
|
6112 * s/decosf4.0-static.h: New file.
|
|
6113
|
|
6114 Tue Apr 1 12:22:32 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6115
|
|
6116 * config.h.in: MAIL_USE_POP, KERBEROS, HESIOD -- new parameters to
|
|
6117 deal with upgraded movemail.c.
|
|
6118
|
|
6119 Fri Mar 28 19:25:22 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6120
|
|
6121 * inline.c: Restore this blasphemous file.
|
|
6122
|
|
6123 * Makefile.in.in (inline.o): Restore the bletcherous
|
|
6124 inline.c.
|
|
6125
|
116
|
6126 Tue Mar 25 11:36:08 1997 David Moore <dmoore@ucsd.edu>
|
|
6127
|
|
6128 * fileio.c (barf_or_query_if_file_exists): GC fixes.
|
|
6129 (Ffile_readable_p): ditto.
|
|
6130 (Ffile_writable_p): ditto.
|
|
6131 (Ffile_symlink_p): ditto.
|
|
6132 (Ffile_accessible_directory_p): ditto.
|
|
6133
|
|
6134 * sound.c (Fplay_sound_file): Fix up gc problems with file
|
|
6135 handlers.
|
|
6136
|
|
6137 * buffer.c (Fkill_buffer): Fix up buffer killing problems with
|
|
6138 file handlers.
|
|
6139
|
|
6140 * sysdep.c (sys_subshell): Fix up gc problems with file handlers.
|
|
6141
|
|
6142 * callproc.c (Fcall_process_internal): Fix up gc problems with
|
|
6143 file handlers.
|
|
6144 Tue Mar 25 17:16:14 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6145
|
|
6146 * ralloc.c (MHASH): Make 64bit Alpha happier.
|
|
6147
|
|
6148 Tue Mar 25 11:36:08 1997 David Moore <dmoore@ucsd.edu>
|
|
6149
|
|
6150 * fileio.c (auto_save_expand_name_error): New function.
|
|
6151 (auto_save_expand_name): Ditto.
|
|
6152 (Fdo_auto_save): Protect against an error in Fexpand_file_name
|
|
6153 from kicking us inappropriately out of auto-save.
|
|
6154
|
|
6155 Mon Mar 24 21:50:13 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6156
|
|
6157 * s/linux.h (GETPGRP_NEEDS_ARG): Define if compiling with glibc
|
|
6158 2.1 (suggested by Andreas Jaeger).
|
|
6159
|
|
6160 Mon Mar 24 12:40:56 1997 David Moore <dmoore@ucsd.edu>
|
|
6161
|
|
6162 * profile.c: Fixed some comments about GC status of functions.
|
|
6163
|
|
6164 * profile.c (inside_profiling): New variable to lock the
|
|
6165 profiling table.
|
|
6166 (sigprof_handler): Check it.
|
|
6167 (Fget_profiling_info): Set it.
|
|
6168 (mark_profiling_info): Set it.
|
|
6169 (Fclear_profiling_info): Set it.
|
|
6170
|
|
6171 * eval.c (PUSH_BACKTRACE): New macro.
|
|
6172 (POP_BACKTRACE): Ditto.
|
|
6173
|
|
6174 * eval.c (Fcommand_execute): Use them and fix problem with
|
|
6175 backtrace_list build ordering requirements for profiling code.
|
|
6176 (Feval): Ditto.
|
|
6177 (funcall_recording_as): Ditto.
|
|
6178
|
114
|
6179 Fri Mar 21 20:19:09 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6180
|
|
6181 * Makefile.in.in: strip inline.o.
|
|
6182
|
|
6183 Fri Mar 21 18:54:04 1997 David Moore <dmoore@ucsd.edu>
|
|
6184
|
|
6185 * fileio.c (call2_check_string_or_nil): New function.
|
|
6186 (Ffile_name_directory): Use it.
|
|
6187 (Fsubstitute_in_file_name): Use it.
|
|
6188
|
|
6189 * fileio.c (Fexpand_file_name): GC protect against file handlers.
|
|
6190 (Fdelete_file): ditto
|
|
6191 (Ffile_writable_p): ditto
|
|
6192 (Ffile_directory_p): ditto
|
|
6193 (Ffile_regular_p): ditto
|
|
6194 (Fset_file_modes): ditto
|
|
6195 (Ffile_newer_than_file_p): ditto
|
|
6196 (Fset_visited_file_modtime): ditto
|
|
6197
|
|
6198 *fileio.c (Ffile_truename): Unneccessary GC protection.
|
|
6199 (Fdelete_directory): Fix broken caller-must-GC-protect call.
|
|
6200
|
|
6201 * filelock.c (lock_file): New comments warning that this function
|
|
6202 may kill the current buffer.
|
|
6203 (unlock_file): ditto
|
|
6204 (Flock_buffer): ditto
|
|
6205 (Funlock_buffer): ditto
|
|
6206 (unlock_buffer): ditto
|
|
6207
|
|
6208 * filelock.c (unlock_all_files): GC protect against unlock_file
|
|
6209 killing random buffers.
|
|
6210
|
|
6211 * buffer.c (Fkill_buffer): GC protect against unlock_file killing
|
|
6212 the buffer.
|
|
6213
|
|
6214 * insdel.c (prepare_to_modify_buffer): GC protect against
|
|
6215 lock_file() killing the buffer.
|
|
6216
|
|
6217 Fri Mar 21 19:11:15 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6218
|
|
6219 * mule-coding.c (vars_of_mule_coding): Add
|
|
6220 enable-multibyte-characters for MULE compatibility.
|
|
6221
|
|
6222 Thu Mar 20 13:25:26 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6223
|
|
6224 * glyphs-x.c: Implement a dummy function to insert a fake EOI
|
|
6225 marker if called. Based on code from William Perry.
|
|
6226
|
|
6227 Wed Mar 19 10:49:05 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6228
|
|
6229 * menubar-x.c (pre_activate_callback): Attempt to avoid recursive
|
|
6230 expansion of submenus via :filter expansion.
|
|
6231
|
|
6232 * glyphs-x.c (x_print_image_instance): Move define of
|
|
6233 HAVE_SUBWINDOWS to glyphs-x.h.
|
|
6234 (our_skip_input_data): Implement with some error checking based on
|
|
6235 patch by Dominic Froud.
|
|
6236
|
|
6237 * glyphs-x.h (HAVE_SUBWINDOWS): Define to keep inline.c from
|
|
6238 barfing.
|
|
6239
|
|
6240 Tue Mar 18 11:15:23 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6241
|
|
6242 * glyphs-x.c: Strip unimplemented subwindows code.
|
|
6243
|
112
|
6244 Mon Mar 17 15:40:12 1997 David Moore <dmoore@ucsd.edu>
|
|
6245
|
|
6246 * glyphs-x.c (our_own_dgif_slurp_from_gif2x11_c): Only get the
|
|
6247 first image out of a multi-image or animated gif.
|
|
6248
|
|
6249 Mon Mar 17 15:27:26 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6250
|
|
6251 * Makefile.in.in (xemacs): Invert sense of test for successful
|
|
6252 completion of XEmacs dump.
|
|
6253
|
110
|
6254 Sat Mar 15 14:21:39 1997 David Moore <dmoore@ucsd.edu>
|
|
6255
|
|
6256 * fileio.c (Fdo_auto_save): Protect against file handlers which
|
|
6257 may kill the buffer being saved or otherwise modify Vbuffer_alist.
|
|
6258
|
|
6259 Sat Mar 15 15:32:51 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6260
|
|
6261 * Makefile.in.in (lisp): Add auto-customize.elc.
|
|
6262
|
|
6263 Fri Mar 14 19:10:37 1997 David Moore <dmoore@ucsd.edu>
|
|
6264
|
|
6265 * extents.c (extent_changed_for_redisplay): New parameter.
|
|
6266 (extent_changed_for_redisplay): Notify redisplay if invisible text
|
|
6267 has become visible.
|
|
6268 (extent_maybe_changed_for_redisplay): New parameter.
|
|
6269 (extent_attach): Use it.
|
|
6270 (extent_detach): Use it.
|
|
6271 (Fset_extent_parent): Use it.
|
|
6272 (set_extent_invisible): Use visibility change parameter.
|
|
6273 (Fset_extent_face): Ditto.
|
|
6274 (Fset_extent_mouse_face): Ditto.
|
|
6275 (set_extent_glyph): Ditto.
|
|
6276 (do_highlight): Ditto.
|
|
6277
|
|
6278 Thu Mar 13 10:40:37 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6279
|
|
6280 * s/sunos4-1-4-shr.h: New file.
|
|
6281
|
|
6282 * s/sunos4-1-4.h: New file.
|
|
6283
|
|
6284 * s/sunos4-1.h (BROKEN_SIGIO): Define.
|
|
6285
|
|
6286 Wed Mar 12 14:29:40 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6287
|
|
6288 * emacs.c (fatal_error_signal): (mostly) useless check on
|
|
6289 /usr/proc/bin/pstack removed.
|
|
6290
|
|
6291 * s/bsdos3.h: New file for BSDI 3.0.
|
|
6292
|
|
6293 * editfns.c (Fchar_equal): Correct DOC string.
|
|
6294 (Fchar_Equal): (char=) CL Case sensitve comparison added.
|
|
6295
|
|
6296 * data.c (Fcharacterp): Make DOC string less confrontational.
|
|
6297
|
|
6298 Mon Mar 10 23:51:04 1997 Martin Buchholz <mrb@eng.sun.com>
|
|
6299
|
|
6300 * input-method-motif.c (XIM_init_frame): Fix XIM crash on some
|
|
6301 versions of X11R6 XIM.
|
|
6302
|
|
6303 Sun Mar 9 21:46:53 1997 Tomasz J. Cholewo <t.cholewo@ieee.org>
|
|
6304
|
|
6305 * minibuf.c (regexp_ignore_completion_p): Reverse meaning of
|
|
6306 completion-regexp-list.
|
|
6307
|
108
|
6308 Thu Mar 6 19:15:29 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6309
|
|
6310 * data.c (eq_with_ebola_notice): Unobfuscate Ebola warning!!!
|
|
6311 message.
|
|
6312
|
|
6313 Wed Mar 5 16:11:22 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6314
|
|
6315 * process.c (get_internet_address): Put upper bounds on attempting
|
|
6316 to get system name (similar to nearly identical processing in
|
|
6317 sysdep.c.
|
|
6318
|
|
6319 Tue Mar 4 17:30:48 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6320
|
|
6321 * puresize.h (PURESIZE): *Must* use angle brackets for
|
|
6322 puresize_adjust.h or build will lose with --srcdir.
|
|
6323
|
|
6324 * alloc.c (report_pure_usage): Adjust error message printed when
|
|
6325 too low on PURESIZE.
|
|
6326
|
|
6327 * Makefile.in.in: Move site-packages.
|
|
6328 Add vpath correction for puresize_adjust.h.
|
|
6329
|
106
|
6330 Mon Mar 3 20:37:54 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6331
|
|
6332 * Makefile.in.in (lisp): Remove custom-xmas.elc.
|
|
6333
|
104
|
6334 Sat Mar 1 01:20:39 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6335
|
|
6336 * doc.c (weird_doc): Don't print `duplicate' messages as they are
|
|
6337 almost always due to symbols that are both autoloaded and dumped.
|
|
6338
|
|
6339 * data.c (syms_of_data): char-int and int-char -> char-to-int and
|
|
6340 int-to-char.
|
|
6341
|
|
6342 Thu Feb 27 21:48:32 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6343
|
|
6344 * Makefile.in.in (xemacs): Loop when dumping until SATISFIED.
|
|
6345
|
|
6346 * lstream.c (signal_simple_internal_error): Remove the abort().
|
|
6347
|
|
6348 * alloc.c (Fpurecopy): Make it work for byte compiled functions.
|
|
6349 (Fgarbage_collect): Disable garbage collection if we're dumping
|
|
6350 XEmacs and we've overflowed purespace.
|
|
6351
|
|
6352 Thu Feb 27 14:14:53 1997 Darrell Kindred <dkindred@cmu.edu>
|
|
6353
|
|
6354 * event-Xt.c (change_frame_visibility): New function.
|
|
6355 (handle_map_event): Use it.
|
|
6356 (emacs_Xt_handle_magic_event): Correction of handling of
|
|
6357 VisibilityNotify.
|
|
6358
|
|
6359 Thu Feb 27 14:12:57 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6360
|
|
6361 * frame-x.c (x_frame_visible_p): Reverse previous change.
|
|
6362
|
|
6363 Sun Mar 2 14:01:32 1997 David Moore <dmoore@ucsd.edu>
|
|
6364
|
|
6365 * regex.c (re_search_2): Properly handle crossing the buffer gap
|
|
6366 when doing a backwards search under MULE.
|
|
6367
|
102
|
6368 Wed Feb 26 10:24:40 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6369
|
|
6370 * Makefile.in.in: make-docfile takes a "-i" parameter to pass
|
|
6371 site-loaded lisp files.
|
|
6372
|
|
6373 * alloc.c (report_pure_usage): Adjust restart message.
|
|
6374
|
|
6375 Tue Feb 25 10:58:12 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6376
|
|
6377 * Makefile.in.in: Add PURESIZE.h to special treatment in vpath.
|
|
6378
|
|
6379 * alloc.c (PURESIZE_h): New function.
|
|
6380 (report_pure_usage): Use it. If PURESIZE is not the right amount,
|
|
6381 use the correct value.
|
|
6382
|
|
6383 * puresize.h: Use dynamic computation of PURESIZE.
|
|
6384
|
|
6385 * PURESIZE.h: New file.
|
|
6386
|
|
6387 * fns.c (Frandom): Fix docstring.
|
|
6388
|
|
6389 Mon Feb 24 17:35:05 1997 Jonathan Edwards <edwards@intranet.com>
|
|
6390
|
|
6391 * process.c (record_exited_processes): Fix obvious typo in
|
|
6392 checking for SIGCLD.
|
|
6393
|
|
6394 Sun Feb 23 01:45:49 1997 Martin Buchholz <mrb@eng.sun.com>
|
|
6395
|
|
6396 * scrollbar.c (update_scrollbar_instance): Fix for
|
|
6397 all-hail-xemacs scrollbar drag bug.
|
|
6398
|
|
6399 * scrollbar.c (Fscrollbar_to_bottom): Now calls Frecenter(-3)
|
|
6400 as end-of-buffer does, instead of hostile Frecenter(0). Makes
|
|
6401 C-button-1 on down-arrow friendlier.
|
|
6402
|
100
|
6403 Sun Feb 23 16:56:17 1997 David Hobley <david@spook-le0.cia.com.au>
|
|
6404 Initial MS Windows NT support.
|
|
6405 * unexnt.c: New file.
|
|
6406
|
|
6407 * ntproc.c: New file.
|
|
6408
|
|
6409 * ntheap.h: New file.
|
|
6410
|
|
6411 * ntheap.c: New file.
|
|
6412
|
|
6413 * nt.h: New file.
|
|
6414
|
|
6415 * nt.c: New file.
|
|
6416
|
|
6417 Sun Feb 23 15:56:58 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6418
|
|
6419 * floatfns.c (_GNU_SOURCE): Define if compiling with glibc 2.
|
|
6420
|
|
6421 * gmalloc.c: Guard __getpagesize definition against glibc 2.
|
|
6422
|
|
6423 Sat Feb 22 17:12:47 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6424
|
|
6425 * Makefile.in.in (lisp): Snarf docstrings from new file
|
|
6426 itimer-autosave.elc.
|
|
6427
|
|
6428 Fri Feb 21 18:21:32 1997 Jan Vroonhof <vroonhof@math.ethz.ch>
|
|
6429
|
|
6430 * event-Xt.c (emacs_Xt_handle_magic_event): Correction for frame
|
|
6431 freezing bug.
|
|
6432
|
|
6433 Wed Feb 19 12:54:32 1997 Per Abrahamsen <abraham@dina.kvl.dk>
|
|
6434
|
|
6435 * buffer.c (Fbuffer_disable_undo): Default to current buffer.
|
|
6436
|
|
6437 Tue Feb 18 12:37:28 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6438
|
|
6439 * Makefile.in.in (lisp): Dump new file custom-xmas.elc.
|
|
6440
|
|
6441 Mon Feb 17 11:29:07 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6442
|
|
6443 * print.c (Ferror_message_string): New function, ported from Emacs
|
|
6444 19.34.
|
|
6445 (print_error_message): Ditto.
|
|
6446
|
|
6447 * extents.c (verify_extent_mapper): Experimental deletion of code
|
|
6448 to allow deletion of read-only extents.
|
|
6449
|
|
6450 * symbols.c (hash_string): Replace algorithm with one given in
|
|
6451 Aho, Sethi & Ullman.
|
|
6452
|
|
6453 Sun Feb 16 14:53:58 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6454
|
|
6455 * keymap.c (lookup_keys): Wrong sense in test.
|
|
6456
|
|
6457 * Makefile.in.in: Dont dump font.elc.
|
|
6458
|
98
|
6459 Sat Feb 15 02:30:51 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6460
|
|
6461 * cmds.c: Define new symbol signal-error-on-buffer-boundary.
|
|
6462 (Fforward_char): Use it.
|
|
6463 (Fbackward_char): Use it.
|
|
6464
|
|
6465 * window.c (Fscroll_up): Use it.
|
|
6466 (Fscroll_down): Use it.
|
|
6467
|
|
6468 * keymap.c (syms_of_keymap): define mouse-[123] and
|
|
6469 down-mouse-[123] pseudo-keysym aliases for Emacs compatibility.
|
|
6470
|
|
6471 Thu Feb 13 21:28:35 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6472
|
|
6473 * Makefile.in.in: Don't dump tm with XEmacs under any
|
|
6474 circumstances.
|
|
6475
|
|
6476 * puresize.h: Remove extra SunPro puresize for MULE+tm.
|
|
6477
|
|
6478 Sun Feb 9 04:40:36 1997 Axel Seibert <aseibert@cybernet-ag.net>
|
|
6479
|
|
6480 * emacs.c (main_1): Fix NeXT malloc initialization.
|
|
6481
|
96
|
6482 Fri Feb 7 11:36:56 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6483
|
|
6484 * mule-coding.c (Fdecode_coding_region): Make explicit call to
|
|
6485 `barf_if_buffer_read_only'.
|
|
6486 (Fencode_coding_region): Ditto.
|
|
6487
|
|
6488 Thu Feb 6 22:39:39 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6489
|
|
6490 * extents.c (syms_of_extents): Remove references to replicating
|
|
6491 extents.
|
|
6492
|
|
6493 * extents.h (struct extent): Remove references to replicating
|
|
6494 extents.
|
|
6495
|
|
6496 Thu Feb 6 01:11:43 1997 Jareth Hein <jhod@po.iijnet.or.jp>
|
|
6497
|
|
6498 * mule-coding.c (ENCODE_SJIS): Correct typo.
|
|
6499
|
|
6500 Thu Feb 6 01:10:22 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6501
|
|
6502 * frame.c (delete_frame_internal): Protect against deletion of
|
|
6503 frames with living popup children.
|
|
6504
|
94
|
6505 Wed Feb 5 17:13:17 1997 David Moore <dmoore@UCSD.EDU>
|
|
6506
|
|
6507 * emacs.c (main_1): Try to avoid collisions against potentially
|
|
6508 incompatible system mallocs.
|
|
6509
|
|
6510 Mon Feb 3 23:04:41 1997 Joel Peterson <tarzan@aosi.com>
|
|
6511
|
|
6512 * redisplay.c: Activate face/charset redisplay caching.
|
|
6513
|
|
6514 Mon Feb 3 22:01:09 1997 Kyle Jones <kyle_jones@wonderworks.com>
|
|
6515
|
|
6516 * eval.c (do_debug_on_exit): Don't restore old value of
|
|
6517 debug_on_next_call improperly.
|
|
6518
|
88
|
6519 Fri Jan 31 10:28:47 1997 David Byers <davby@ida.liu.se>
|
|
6520
|
|
6521 * frame.c (frame_matches_frametype): Fix next-window when the next
|
|
6522 window is on another frame.
|
|
6523
|
|
6524 Thu Jan 30 20:25:00 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6525
|
|
6526 * syntax.c (scan_sexps_forward): Change test on targetdepth to
|
|
6527 match Emacs 19.34.
|
|
6528
|
|
6529 Wed Jan 29 22:11:53 1997 James LewisMoss <dres@scsn.net>
|
|
6530
|
|
6531 * gmalloc.c: Corrections for namespace collision with Linux libc
|
|
6532 malloc.
|
|
6533
|
86
|
6534 Mon Jan 27 21:46:53 1997 Tomasz J. Cholewo <tjchol01@mecca.spd.louisville.edu>
|
|
6535
|
|
6536 * fileio.c (Fwrite_region_internal): pack lockname to write-region
|
|
6537 handler.
|
|
6538
|
|
6539 Mon Jan 27 04:50:50 1997 David Moore <dmoore@UCSD.EDU>
|
|
6540
|
|
6541 * gmalloc.c (malloc): Guard against incompatible system mallocs
|
|
6542 with conflicting symbols.
|
|
6543
|
|
6544 Sun Jan 26 12:27:04 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6545
|
|
6546 * redisplay.c (add_emchar_rune): Back out optimization change of
|
|
6547 caching last_charset.
|
|
6548
|
|
6549 Sun Jan 26 09:10:45 1997 Hrvoje Niksic <hniksic@srce.hr>
|
|
6550
|
|
6551 * s/decosf4-0.h: Digital Unix 4.0 has a realpath, but it's buggy.
|
|
6552 And I *do* mean buggy.
|
|
6553
|
84
|
6554 Thu Jan 23 10:41:19 1997 Steven L. Baur <steve@altair.xemacs.org>
|
|
6555
|
|
6556 * puresize.h: Increase SUNPRO usage to reflect tm & cc-mode.
|
|
6557 Decrease BASE_PURESIZE and increase MULE_PURESIZE_EXTRA.
|
|
6558
|
82
|
6559 Wed Jan 22 21:09:52 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6560 * puresize.h (BASE_PURESIZE): Tighten up.
|
|
6561
|
|
6562 * scrollbar.c (scrollbar-page-up): Add Athena3d to Lucid/Motif
|
|
6563 code.
|
|
6564 (scrollbar-page-down): Ditto.
|
|
6565
|
|
6566 * scrollbar-x.c (x_create_scrollbar_instance): Add Athena3d to
|
|
6567 Lucid/Motif code.
|
|
6568 (x_update_vertical_scrollbar_callback): Ditto.
|
|
6569 (x_update_horizontal_scrollbar_callback): Add Athena3d to Lucid
|
|
6570 special case code.
|
|
6571
|
|
6572 * scrollbar-x.h (struct x_scrollbar_data): Add start drag position
|
|
6573 for Athena3d.
|
|
6574
|
|
6575 * redisplay-output.c (redisplay_update_line): A vain attempt to
|
|
6576 get the Athena vertical thumb adjusted after drag.
|
|
6577
|
|
6578 * EmacsFrame.c: Default to lower/right with Athena3d libraries.
|
|
6579
|
|
6580 Wed Jan 22 18:38:52 1997 Ian Wells <I.Wells@tarragon-et.co.uk>
|
|
6581
|
|
6582 * m/aviion.h: Remove definition of m88k.
|
|
6583
|
|
6584 * s/dgux5-4r4.h: New file.
|
|
6585
|
|
6586 Wed Jan 22 18:32:49 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6587
|
|
6588 * buffer.h: Put proper typecasts on calls to alloca().
|
|
6589
|
|
6590 Tue Jan 21 22:25:23 1997 Steven L. Baur <steve@altair.xemacs.org>
|
|
6591
|
|
6592 * config.h.in: Add LWLIB_USES_ATHENA symbol
|
|
6593
|
|
6594 * Makefile.in.in (TOOLKIT_LIBS): It is possible to have both
|
|
6595 Athena and Motif in the same link.
|
|
6596
|
|
6597 Tue Jan 21 20:43:41 1997 Hrvoje Niksic <hniksic@srce.hr>
|
|
6598
|
|
6599 * redisplay-tty.c (tty_ring_bell): Don't ring tty bell if the
|
|
6600 volume is set to 0.
|
|
6601
|
|
6602 Tue Jan 21 20:38:58 1997 Axel Seibert <aseibert@cybernet-ag.net>
|
|
6603
|
|
6604 * s/nextstep.h (signal_handler_t): define as int.
|
|
6605
|
|
6606 Mon Jan 20 21:12:57 1997 Martin Buchholz <mrb@eng.sun.com>
|
|
6607
|
215
|
6608 * event-Xt.c (emacs_Xt_handle_magic_event):
|
82
|
6609 (frame-totally-visible-p) sometimes incorrectly returned nil.
|
|
6610
|
|
6611 Thu Jan 16 17:24:29 1997 Joel Peterson <tarzan@aosi.com>
|
|
6612
|
|
6613 * menubar-x.c (pre_activate_callback): Correctly handle buffer
|
|
6614 local variables in :included clauses.
|
|
6615 (compute_menubar_data): Ditto.
|
|
6616
|
|
6617 Wed Jan 15 21:44:53 1997 Joel Peterson <tarzan@aosi.com>
|
|
6618
|
|
6619 * redisplay.c (add_emchar_rune): Enable last_charset display
|
|
6620 optimization.
|
|
6621
|
|
6622 Wed Jan 15 19:06:27 1997 David Moore <dmoore@UCSD.EDU>
|
|
6623
|
|
6624 * event-stream.c (Faccept_process_output): Avoid checking an
|
|
6625 uninitialized variable.
|
|
6626
|
|
6627 Wed Jan 15 14:14:24 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6628
|
|
6629 * regex.c: Modify values of re_max_failures and MAX_FAILURE_ITEMS
|
|
6630 to match Emacs 19.34.
|
|
6631
|
|
6632 Mon Jan 13 00:36:01 1997 Martin Buchholz <mrb@eng.sun.com>
|
|
6633
|
|
6634 * sysdep.c (sys_execvp): Fix when compiled with
|
|
6635 --const-is-losing=no. Old code could crash if argv contained
|
|
6636 non-ascii characters and the execvp failed and then caller
|
|
6637 examined argv (for error message, for example).
|
|
6638
|
|
6639 Sun Jan 12 17:22:24 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6640
|
|
6641 * Makefile.in.in: TM .elcs moved to SUNPRO_LISP only.
|
|
6642
|
80
|
6643 Fri Jan 10 20:21:47 1997 Ben Wing <ben@666.com>
|
|
6644
|
|
6645 * minibuf.c (Ftry_completion): Don't crash if not given a proper
|
|
6646 obarray.
|
|
6647
|
|
6648 Fri Jan 10 09:49:44 1997 Ted Phelps <phelps@dstc.edu.au>
|
|
6649
|
|
6650 * objects-x.c (x_initialize_font_instance): Hardcode 'n' for
|
|
6651 default font width.
|
|
6652
|
|
6653 Mon Jan 6 15:16:46 1997 Carsten Leonhardt <leo@arioch.tng.oche.de>
|
|
6654
|
|
6655 * Makefile.in.in: Linking with canna requires -lRKC.
|
|
6656
|
|
6657 Mon Jan 6 12:22:57 1997 Frederic Poncin <fp@info.ucl.ac.be>
|
|
6658
|
|
6659 * gmalloc.c: Don't declare __sbrk on SparcLinux.
|
|
6660
|
|
6661 Sun Jan 5 18:04:47 1997 Soren Dayton <csdayton@cs.uchicago.edu>
|
|
6662
|
|
6663 * Makefile.in.in: IRIX6 can use sgiplay.c too.
|
|
6664
|
78
|
6665 Sat Jan 4 12:15:16 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
6666
|
|
6667 * toolbar.c (specifier_vars_of_toolbar): Clean up fallback
|
|
6668 specifiers so XEmacs can be built without tty support.
|
|
6669
|
|
6670 * console-stream.c: Moved function bodies of
|
|
6671 semi_canonicalize_console_connection,
|
|
6672 canonicalize_console_connection,
|
|
6673 semi_canonicalize_device_connection, and
|
|
6674 canonicalize_device_connection into this file from console-tty.c.
|
|
6675 Moved variable Vstdio_str into this file.
|
|
6676
|
|
6677 * console-tty.c: See above.
|
|
6678
|
|
6679 Fri Jan 3 18:07:11 1997 Axel Seibert <aseibert@cybernet-ag.net>
|
|
6680
|
|
6681 * m/next.h: Cleanup accumulated cruft.
|
|
6682
|
|
6683 * s/nextstep.h: Remove useless #undef REL_ALLOC/HAVE_MMAP.
|
|
6684
|
|
6685 * syssignal.h: Don't typedef SIGTYPE on NeXT.
|
|
6686
|
|
6687 Fri Jan 3 12:06:44 1997 Michael Sperber <sperber@informatik.uni-tuebingen.de>
|
|
6688
|
|
6689 * m/ibmrs6000.inp: Added various get.* symbols.
|
|
6690
|
|
6691 Sun Dec 29 20:16:08 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
6692
|
|
6693 * m/next.h: Remove signal_handler_t #define.
|
|
6694
|
|
6695 * s/nextstep.h: Remove signal_handler_t #define.
|
|
6696
|
76
|
6697 Fri Dec 27 21:13:33 1996 Martin Buchholz <mrb@Eng.Sun.COM>
|
|
6698
|
|
6699 * event-Xt.c (x_to_emacs_keysym): Corrections to SUNOS_GCC_LO_BUG.
|
|
6700
|
|
6701 Mon Dec 23 11:37:16 1996 Martin Buchholz <mrb@Eng.Sun.COM>
|
|
6702
|
|
6703 * fns.c (Ffillarray): Fix for (fillarray #*10 0)
|
|
6704
|
|
6705 Mon Dec 23 10:27:14 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
6706
|
|
6707 * bitmaps.h: Change to unsigned char.
|
|
6708
|
|
6709 * frame-x.c (x_cde_transfer_callback): Typecast fix.
|
|
6710
|
|
6711 * keymap.c (define_key_check_and_coerce_keysym): Typecast fix.
|
|
6712
|
74
|
6713 Fri Dec 20 19:21:56 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
6714
|
|
6715 * Makefile.in.in (lisp): Remove cc-mode as a dumped package.
|
|
6716
|
|
6717 * keymap.c (define_key_check_and_coerce_keysym): Make obsolete
|
|
6718 binding of kp_.* not lose.
|
|
6719
|
|
6720 * bitmaps.h: Add left & right arrows to show extended lines.
|
|
6721
|
|
6722 Fri Dec 20 15:32:53 1996 David Moore <dmoore@UCSD.EDU>
|
|
6723
|
|
6724 * event-stream.c (event_stream_wakeup_pending_p): New function.
|
|
6725 (Faccept_process_output): Fix timeout handling race conditions.
|
|
6726 (Fsleep_for): Ditto.
|
|
6727 (Fsit_for): Ditto.
|
|
6728
|
|
6729 Thu Dec 19 22:25:26 1996 Steve Carney <carney@gvc.dec.com>
|
|
6730
|
|
6731 * cmds.c (Fbeginning_of_line): Adjust for 64 bit machines.
|
|
6732
|
|
6733 Thu Dec 19 00:44:10 1996 Bart Robinson <lomew@cs.utah.edu>
|
|
6734
|
|
6735 * syssignal.h: The declaration of SIGTYPE shouldn't be protected
|
|
6736 by HAVE_SIGPROCMASK.
|
|
6737
|
|
6738 Wed Dec 18 20:40:21 1996 Martin Buchholz <mrb@eng.sun.com>
|
|
6739
|
|
6740 * dgif_lib.c: Miscellaneous cleanup, including removing signed
|
|
6741 bitfields.
|
|
6742
|
|
6743 * mule-charset.h: Change charset names.
|
|
6744
|
|
6745 * mule-coding.c (struct iso2022_decoder): Uniform unsigned bitfields.
|
|
6746 Change charset names.
|
|
6747
|
|
6748 * mule-charset.c: Change charset names.
|
|
6749
|
|
6750 * mule-canna.c: Change charset names.
|
|
6751
|
|
6752 * EmacsShell-sub.c: Ansify and reformat.
|
|
6753
|
|
6754 * console-tty.h (struct tty_console): Uniform unsigned bitfields.
|
|
6755
|
|
6756 * glyphs-x.c: Ansify.
|
|
6757
|
|
6758 * specifier.c: Use lisp_fn_t.
|
|
6759
|
|
6760 * EmacsShell.c: Ansify.
|
|
6761
|
|
6762 * vm-limit.c: Ansify.
|
|
6763
|
|
6764 * emacsfns.h: Use lisp_fn_t.
|
|
6765
|
|
6766 * lstream.c (struct filedesc_stream): Unsigned int bitfields.
|
|
6767
|
|
6768 * xselect.c (hack_motif_clipboard_selection): Change charset name.
|
|
6769 (Fx_store_cutbuffer_internal): Change charset name.
|
|
6770
|
|
6771 * ralloc.c: Ansify and clean up.
|
|
6772
|
|
6773 * frame.h (struct frame): Uniform unsigned bit fields.
|
|
6774
|
|
6775 * event-Xt.c: Documentation change.
|
|
6776
|
|
6777 * lisp.h: Introduce lisp_fn_t.
|
|
6778 Remove SunPro C compiler warning message workaround.
|
|
6779
|
|
6780 * xmu.c: Ansify.
|
|
6781
|
|
6782 * doprnt.c (struct printf_spec): Use unsigned bitfields.
|
|
6783
|
|
6784 * fileio.c: various code formatting changes.
|
|
6785
|
|
6786 * eval.c: reorganize primitive funcalls.
|
|
6787
|
|
6788 * config.h.in (NeedFunctionPrototypes): Force slightly better type
|
|
6789 checking in X header files.
|
|
6790
|
|
6791 * Makefile.in.in: #undef i386, move mime-setup.elc?.
|
|
6792
|
|
6793 * s/sunos4-0-shr.h: Documentation change.
|
|
6794
|
|
6795 * s/sol2.h (__EXTENSIONS__): Add.
|
|
6796 Include <setjmp.h> under certain conditions.
|
|
6797
|
|
6798 Mon Dec 16 19:13:10 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
6799
|
|
6800 * lstream.c (Lstream_pseudo_close): Return status on error.
|
|
6801 (Lstream_close): Ditto. (Fixes disk full-no error on write bug).
|
|
6802
|
|
6803 Sat Dec 14 16:54:52 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
6804
|
|
6805 * glyphs-x.c (jpeg_instantiate): Use file I/O for JPEG loading
|
|
6806 because the in-core code is broken.
|
|
6807
|
|
6808 Fri Dec 13 16:43:45 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
6809
|
|
6810 * device-x.c (x_init_device): Don't make nonexistent X server the
|
|
6811 default when running on a tty.
|
|
6812
|
|
6813 * event-Xt.c (x_to_emacs_keysym): Rename kp_.* keysyms to be kp-\1.
|
|
6814
|
|
6815 * redisplay-tty.c (keys): Rename kp_.* keynames to kp-\1.
|
|
6816
|
|
6817 Fri Dec 13 14:48:42 1996 Michael Sperber <sperber@informatik.uni-tuebingen.de>
|
|
6818
|
|
6819 * lread.c (Fload_internal): Change arity of call to
|
|
6820 file-name-handlers.
|
|
6821
|
|
6822 * fileio.c (Finsert_file_contents_internal): Ditto.
|
|
6823
|
|
6824 Thu Dec 12 16:55:34 1996 Lars Magne Ingebrigtsen <larsi@ifi.uio.no>
|
|
6825
|
|
6826 * cmds.c (Fpoint_at_eol, Fpoint_at_bol): New functions.
|
|
6827 (Fend_of_line, Fbeginning_of_line): Use them.
|
|
6828
|
72
|
6829 Tue Dec 10 11:17:32 1996 Shane Holder <holder@mordor.rsn.hp.com>
|
|
6830
|
|
6831 * s/hpux9shxr4.h: hpux9shr.h -> hpux9-shr.h
|
|
6832
|
|
6833 * s/hpux10.h: hpux9shr.h -> hpux9-shr.h
|
|
6834
|
|
6835 Sat Dec 7 18:29:34 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
6836
|
|
6837 * puresize.h (BASE_PURESIZE): Bumped up PURESIZE by 10k.
|
|
6838
|
|
6839 Sat Dec 7 16:26:34 1996 Martin Buchholz <mrb@Eng.Sun.COM>
|
|
6840
|
|
6841 * config.h.in: configure for POSIX getcwd if available.
|
|
6842
|
|
6843 Sat Dec 7 15:48:39 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
6844
|
|
6845 * s/sunos4-1-shr.h: Renamed from sunos4-1shr.h.
|
|
6846
|
|
6847 * s/sunos4-1-3-shr.h: Renamed from sunos4-1-3shr.h.
|
|
6848
|
|
6849 * s/sunos4-1-2-shr.h: Renamed from sunos4-1-2-shr.h.
|
|
6850
|
|
6851 * s/sunos4-0-shr.h: Renamed from sunos4-0shr.h.
|
|
6852
|
|
6853 * s/hpux9-shr.h: Renamed from hpux9shr.h.
|
|
6854
|
|
6855 * s/hpux8-shr.h: Renamed from hpux8shr.h.
|
|
6856
|
|
6857 * s/hpux10-shr.h: Renamed from hpux10shr.h.
|
|
6858
|
|
6859 Wed Dec 4 23:38:03 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
6860
|
|
6861 * redisplay.c: Allow column numbers in modeline to start from 1.
|
|
6862
|