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