211
|
1 1997-11-10 Hrvoje Niksic <hniksic@srce.hr>
|
|
2
|
|
3 * event-stream.c: Make echo_keystrokes a Lisp_Object.
|
|
4 (maybe_echo_keys): Adapt to that.
|
|
5
|
|
6 1997-11-11 SL Baur <steve@altair.xemacs.org>
|
|
7
|
|
8 * eval.c (throw_or_bomb_out): Remove abort.
|
|
9 Suggested by: Kyle Jones <kyle_jones@wonderworks.com>
|
|
10
|
|
11 1997-11-11 Kyle Jones <kyle_jones@wonderworks.com>
|
|
12
|
|
13 * Added support for referencing lrecord_implementations
|
|
14 via an index in an lrecord_header rather than a raw
|
|
15 pointer. Also added a mark bit and a pure bit.
|
|
16
|
|
17 * alloc.c: Made lrecord_type_index() and
|
|
18 lrecord_implementations_table[] global, previously they
|
|
19 were static. Used new XRECORD_LHEADER_IMPLEMENTATION
|
|
20 and LHEADER_IMPLEMENTATION macros to access
|
|
21 lrecord_implementations found in Lisp_Objects and
|
|
22 lrecord_headers instead of referencing ->implementation.
|
|
23
|
|
24 (gc_record_type_p): For USE_INDEXED_LRECORD_IMPLEMENTATION,
|
|
25 there's no need to check for equality to type or type + 1.
|
|
26 lrecords are no longer marked by incrementing the
|
|
27 implementation pointer.
|
|
28
|
|
29 (init_alloc_once_early): Initialized subr and
|
|
30 symbol_value_forward lrecord indexes early so that the
|
|
31 staticly defined subrs and symbol_value_forward object
|
|
32 indexes match the lrecord_implementations_table.
|
|
33
|
|
34 * buffer.c: Used symbol_value_forward_lheader_initializer in
|
|
35 various DEFVAR* macros. Used new XRECORD_LHEADER_IMPLEMENTATION
|
|
36 macro.
|
|
37
|
|
38 * elhash.c: Used new XRECORD_LHEADER_IMPLEMENTATION
|
|
39 macro.
|
|
40
|
|
41 * fns.c: Used new XRECORD_LHEADER_IMPLEMENTATION macro.
|
|
42
|
|
43 * lisp.h: Defined subr_lheader_initializer macro, used it in
|
|
44 DEFUN macro.
|
|
45
|
|
46 * lrecord.h: For USE_INDEXED_LRECORD_IMPLEMENTATION,
|
|
47 changed lrecord_header to contain an index into
|
|
48 lrecord_implementations_table[], plus a mark bit and a pure
|
|
49 bit. Added support code for this. Defined new
|
|
50 XRECORD_LHEADER_IMPLEMENTATION and LHEADER_IMPLEMENTATION
|
|
51 macros to be used to find the lrecord_implementation
|
|
52 of a Lisp_Object.
|
|
53
|
|
54 * print.c: Used new XRECORD_LHEADER_IMPLEMENTATION and
|
|
55 LHEADER_IMPLEMENTATION macros.
|
|
56
|
|
57 * symbols.c: Used symbol_value_forward_lheader_initializer in
|
|
58 definition of guts_of_unbound_marker.
|
|
59
|
|
60 * symeval.h: Defined symbol_value_forward_lheader_initializer
|
|
61 macro. Used symbol_value_forward_lheader_initializer in various
|
|
62 macros. Used new XRECORD_LHEADER_IMPLEMENTATION macro.
|
|
63
|
|
64
|
|
65 1997-11-10 SL Baur <steve@altair.xemacs.org>
|
|
66
|
|
67 * window.c (set_window_pixsize): Remove unused variable.
|
|
68
|
|
69 * extents.c (print_extent_1): Fix type check error in sprintf.
|
|
70
|
|
71 * doc.c (Fsnarf_documentation): Remove unused label weird_function.
|
|
72
|
|
73 * symsinit.h: Restore declaration of vars_of_dialog_x.
|
|
74
|
|
75 * database.c (Fopen_database): Fix unused variable message.
|
|
76
|
|
77 * sysdep.c (sys_subshell): vfork() is a demented, obsolete hack.
|
|
78
|
|
79 * offix.c (struct): Make ImageData, MaskData be unsigned char *.
|
|
80
|
|
81 * event-Xt.c (x_event_to_emacs_event): Clean up typecasting.
|
|
82 * frame-x.c (Foffix_start_drag_internal): Ditto.
|
|
83
|
|
84 1997-11-09 Kyle Jones <kyle_jones@wonderworks.com>
|
|
85
|
|
86 * extents.c (print_extent_1): Use %lx instead of %p
|
|
87 to get the same output on all compilers.
|
|
88
|
|
89 1997-11-09 Hrvoje Niksic <hniksic@srce.hr>
|
|
90
|
|
91 * line-number.c: Use markers.
|
|
92
|
|
93 * redisplay.c (window_line_number): Restored.
|
|
94
|
|
95 * line-number.c (allocate_line_number_cache): Account for
|
|
96 narrowing.
|
|
97 (buffer_line_number): New function.
|
|
98
|
|
99 * line-number.c (get_nearest_line_number): New function.
|
|
100 (window_line_number): Use it.
|
|
101 (narrow_line_number_cache): New function.
|
|
102 (invalidate_line_number_cache): Ditto.
|
|
103 (insert_invalidate_line_number_cache): Ditto.
|
|
104 (delete_invalidate_line_number_cache): Ditto.
|
|
105 (add_line_number): Ditto.
|
|
106
|
|
107 * editfns.c (widen_buffer): Update line number cache.
|
|
108 (Fnarrow_to_region): Ditto.
|
|
109 (save_restriction_restore): Ditto.
|
|
110
|
|
111 * insdel.c (buffer_insert_string_1): Invalidate cache for
|
|
112 insertion.
|
|
113 (buffer_delete_range): Invalidate cache for deletion.
|
|
114
|
|
115 * line-number.c: New file.
|
|
116 (window_line_number): Moved from redisplay.c.
|
|
117
|
|
118 * print.c (debug_print): Print a carriage return, too.
|
|
119
|
|
120 * bufslots.h: New slot `line_number_cache'.
|
|
121
|
|
122 1997-11-09 Kyle Jones <kyle_jones@wonderworks.com>
|
|
123
|
|
124 * event-stream.c: New Lisp variable: last-command-event-time.
|
|
125
|
209
|
126 1997-11-08 SL Baur <steve@altair.xemacs.org>
|
|
127
|
|
128 * lread.c (init_lread): start from lisp, not lisp/prim.
|
|
129
|
|
130 * Makefile.in.in: lisp/prim does exist any more.
|
|
131
|
|
132 1997-11-07 Kyle Jones <kyle_jones@wonderworks.com>
|
|
133
|
|
134 * abbrev.c (abbrev_lookup): Don't delete dash at the
|
|
135 abbrev start location; abbrev-prefix-mark no longer
|
|
136 inserts one.
|
|
137
|
|
138 Wed November 05 23:40:00 1997 <jhar@tardis.ed.ac.uk>
|
|
139
|
|
140 * fileio.c: insert-file-contents-internal
|
|
141 Added a bodge to do CRLF->LF conversion of text files,
|
|
142 conditioned on DOS_NT. This is currently only one-way, so all
|
|
143 text files written by XEmacs will be UNIXified. CRLF conversion
|
|
144 is required to make bytecompile work.
|
|
145
|
|
146 * Added file headers to:
|
|
147 console-w32.c, console-w32.h,
|
|
148 device-w32.c, event-w32.c, event-w32.h, frame-w32.c,
|
|
149 objects-w32.c, objects-w32.h, redisplay-w32.c, w32-proc.c
|
|
150
|
|
151 Sun November 01 12:00:00 1997 <jhar@tardis.ed.ac.uk>
|
|
152
|
|
153 * redisplay-x.c: x_output_vertical_divider:
|
|
154 If HAVE_SCROLLBARS was not defined, coordinate of the right of
|
|
155 the divider was being used unitialised.
|
|
156
|
|
157 * console.h: Added Qw32 and CONSOLE_W32* macros, conditioned on
|
|
158 HAVE_W32GUI.
|
|
159
|
|
160 * emacs.c: Added calls to the following, conditioned on HAVE_W32GUI:
|
|
161 syms_of_*_w32, vars_of_*_w32, console_type_create_*w32.
|
|
162
|
|
163 * event-stream.c: Conditioned on HAVE_W32GUI:
|
|
164 - vars_of_event_stream calls vars_of_event_w32.
|
|
165 - init_event_stream calls init_event_w32_late.
|
|
166
|
|
167 * events-mod.h: Removed comment about having alternative making
|
|
168 MOD_* constants for different windowing systems.
|
|
169
|
|
170 * events.c: Conditioned on HAVE_W32GUI:
|
|
171 - event-equal: Added case for w32 magic events.
|
|
172 - event-hash: Added case for w32 magic events.
|
|
173
|
|
174 * events.h: Conditioned on HAVE_W32GUI:
|
|
175 Added struct underlying_w32_event to magic_data.
|
|
176
|
|
177 * faces.c: complex_vars_of_faces
|
|
178 Added fallbacks for w32 faces, conditioned on HAVE_W32GUI.
|
|
179
|
|
180 * frame.c: set-frame-properties
|
|
181 Added reference to default-w32-frame-plist to docstring.
|
|
182
|
|
183 * general.c: Added new Lisp_Object Qw32 and defsymbol.
|
|
184
|
|
185 * redisplay-output.c: redisplay_update_line
|
|
186 Conditioned reference to stupid_vertical_scrollbar_drag_hack on
|
|
187 HAVE_X_WINDOWS. This will need a proper fix when w32 gets
|
|
188 scrollbars.
|
|
189
|
|
190 * redisplay-tty.c: init_tty_for_redisplay
|
|
191 Conditioned blocking and unblocking of SIGTTOU on !WIN32 because
|
|
192 these signals don't exist under win32.
|
|
193
|
|
194 * redisplay.c: init_redisplay
|
|
195 Initialise window system to w32, conditioned on HAVE_W32GUI.
|
|
196
|
|
197 * symsinit.h: Added syms_of_*_w32, vars_of_*_w32 and
|
|
198 init_event_w32_late.
|
|
199
|
|
200 * sysdep.c: Conditioned various things on WIN32 in addition to
|
|
201 MSDOS.
|
|
202
|
|
203 * New files:
|
|
204 console-w32.c, console-w32.h,
|
|
205 device-w32.c, event-w32.c, event-w32.h, frame-w32.c,
|
|
206 objects-w32.c, objects-w32.h, redisplay-w32.c, w32-proc.c
|
|
207
|
|
208 1997-11-07 Hrvoje Niksic <hniksic@srce.hr>
|
|
209
|
|
210 * doc.c (Fdocumentation_property): GCPRO doc.
|
|
211 (Fsubstitute_command_keys): Disallow zero bsize.
|
|
212
|
|
213 1997-11-06 Hrvoje Niksic <hniksic@srce.hr>
|
|
214
|
|
215 * events.c (Fevent_modeline_position): Return nil if event is not
|
|
216 over modeline, as the docstring says.
|
|
217
|
|
218 * utils/facemenu.el (facemenu-insert-menu-entry): Check for
|
|
219 menubar availability.
|
|
220
|
|
221 * utils/easymenu.el (easy-menu-change): Check for menubar
|
|
222 availability.
|
|
223
|
|
224 * custom/wid-edit.el (widget-echo-help): Use `help-echo' as label
|
|
225 for help-echo messages.
|
|
226
|
|
227 1997-11-05 Martin Buchholz <Martin Buchholz <martin@xemacs.org>>
|
|
228
|
|
229 * s/aix3-1.h: Remove ^L character wich confuses AIX make.
|
|
230
|
|
231 1997-11-06 Tomasz Cholewo <tjchol01@mecca.spd.louisville.edu>
|
|
232
|
|
233 * event-stream.c (Fnext_command_event): Document keystroke echoing.
|
|
234
|
|
235 1997-11-06 Hrvoje Niksic <hniksic@srce.hr>
|
|
236
|
|
237 * fns.c (Ffeaturep): Use call1, to prevent stack thrashing with
|
|
238 circular lists.
|
|
239 - Update docstring.
|
|
240
|
|
241 1997-11-06 Kyle Jones <kyle_jones@wonderworks.com>
|
|
242
|
|
243 * frame-x.c (x_delete_frame): Removed code that
|
|
244 blocked the deletion of popup frames. No need for it.
|
|
245
|
|
246 1997-11-05 SL Baur <steve@altair.xemacs.org>
|
|
247
|
|
248 * balloon_help.h: Replace <X11/Intrinsic.h> with "xintrinsic.h"
|
|
249 * balloon_help.c: Ditto.
|
|
250 * offix.h: Ditto.
|
|
251
|
|
252 * mule-coding.c (coding_system_charset): Add prototype.
|
|
253
|
|
254 1997-11-04 Kazuyuki IENAGA <ienaga@jsys.co.jp>
|
|
255
|
|
256 * s/freebsd.h: Add HAVE_TIMEZONE_DECL. Configure will fail at
|
|
257 checking for the existence of `extern long timezone'.
|
|
258 FreeBSD actualy has the `timezone', but due to its <time.h> and
|
|
259 <sys/time.h>, it cannot be recognized by configure.
|
|
260
|
|
261 1997-11-03 Hrvoje Niksic <hniksic@srce.hr>
|
|
262
|
|
263 * data.c (Fsubr_interactive): New function.
|
|
264
|
|
265 1997-11-03 Kyle Jones <kyle_jones@wonderworks.com>
|
|
266
|
|
267 * frame.c (change_frame_size_1): Added explanatory
|
|
268 comment.
|
|
269
|
|
270 * window.c (set_window_pixsize): Don't bail out
|
|
271 before looping over the major children if there is no
|
|
272 size change indicated. The top and left coordinates
|
|
273 may need to be recomputed, e.g. in toolbar visibility
|
|
274 updates.
|
|
275
|
|
276 1997-11-02 Kyle Jones <kyle_jones@wonderworks.com>
|
|
277
|
|
278 * fileio.c (Ffile_truename): Make the errno == EACCES case
|
|
279 behave the same as errno == ENOENT.
|
|
280
|
|
281 1997-11-03 Kyle Jones <kyle_jones@wonderworks.com>
|
|
282
|
|
283 * frame.c (Fframe_property, Fframe_properties): Check
|
|
284 for minibuffer-onlyness of frame before checking whether
|
|
285 it has a minibuffer. This makes the minibuffer property
|
|
286 value be reported as 'only when that is appropriate. The
|
|
287 check order was reversed which resulted in minibuffer-only
|
|
288 frames having the minibuffer property reported as t.
|
|
289
|
|
290 1997-11-02 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
|
291
|
|
292 * m/vax.h:
|
|
293 * s/cxux.h:
|
|
294 * s/xenix.h:
|
|
295 * s/umax.h:
|
|
296 * s/msdos.h:
|
|
297 * s/template.h:
|
|
298 * termcap.c:
|
|
299 * signal.c:
|
|
300 * lread.c:
|
|
301 * callproc.c
|
|
302 * buffer.c: Remove VMS dependent code.
|
|
303
|
|
304 1997-11-02 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
|
305
|
|
306 * syspwd.h:
|
|
307 * systty.h:
|
|
308 * systime.h:
|
|
309 * syssignal.h:
|
|
310 * sysproc.h:
|
|
311 * sysfloat.h:
|
|
312 * sysfile.h:
|
|
313 * regex.h:
|
|
314 * process.h:
|
|
315 * ndir.h:
|
|
316 * mule-mcpath.h:
|
|
317 * getpagesize.h:
|
|
318 * sysdep.h:
|
|
319 * fileio.c:
|
|
320 * process.c: Remove old VMS code.
|
|
321
|
|
322 1997-11-02 SL Baur <steve@altair.xemacs.org>
|
|
323
|
|
324 * glyphs-x.c: Use <magick/magick.h> instead of <magick.h>
|
|
325
|
|
326 1997-11-02 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
|
327
|
|
328 * sysdep.c:
|
|
329 * getloadavg.c:
|
|
330 * malloc.c: Remove old VMS code.
|
|
331
|
|
332 1997-11-02 Hrvoje Niksic <hniksic@srce.hr>
|
|
333
|
|
334 * database.c (print_database): Don't use a static buffer to store
|
|
335 file name.
|
|
336
|
|
337 * dired.c (make_directory_hash_table): Ditto.
|
|
338
|
|
339 * fileio.c (Ffile_truename): Use `make_ext_string' instead of
|
|
340 `make_string'.
|
|
341
|
|
342 1997-11-01 Hrvoje Niksic <hniksic@srce.hr>
|
|
343
|
|
344 * database.c (CONCHECK_DATABASE): Define.
|
|
345
|
|
346 * dired.c (Fdirectory_files): Use `make_ext_string' instead of
|
|
347 `make_string', to avoid crashes under Mule.
|
|
348 (file_name_completion): Use `make_ext_string'.
|
|
349
|
|
350 * database.c (new_database): Renamed to `allocate_database', as
|
|
351 per coding conventions.
|
|
352
|
|
353 1997-11-02 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
|
354
|
|
355 * dired.c: Remove VMS dependent code.
|
|
356
|
|
357 1997-11-01 Kyle Jones <kyle_jones@wonderworks.com>
|
|
358
|
|
359 * buffer.h: Change XCHAR_OR_CHAR_INT to use XCHAR or
|
|
360 XINT as appropriate instead of using XREALINT.
|
|
361
|
|
362 * regex.c (re_search_2): cast translate[*d] to
|
|
363 unsigned char when indexing fastmap to avoid sign
|
|
364 change when value has the 0x80 bit set.
|
|
365
|
|
366 1997-10-31 SL Baur <steve@altair.xemacs.org>
|
|
367
|
|
368 * linuxplay.c (audio_init): Update for newer Linux kernels.
|
|
369 From Robert Bihlmeyer <robbe@orcus.priv.at>
|
|
370
|
|
371 1997-11-01 Hrvoje Niksic <hniksic@srce.hr>
|
|
372
|
|
373 * fileio.c (Finsert_file_contents_internal): Fix misleading
|
|
374 comment.
|
|
375
|
|
376 1997-10-31 Kyle Jones <kyle_jones@wonderworks.com>
|
|
377
|
|
378 * callproc.c: GC protect current_dir while infile and
|
|
379 error_file are being initialized.
|
|
380
|
207
|
381 1997-10-30 SL Baur <steve@altair.xemacs.org>
|
|
382
|
|
383 * config.h.in: Remove HAVE_GIF, HAVE_JPEG, HAVE_PNG, HAVE_TIFF and
|
|
384 replace with HAVE_IMAGEMAGICK.
|
|
385
|
|
386 1997-10-30 Kyle Jones <kyle_jones@wonderworks.com>
|
|
387
|
|
388 * process.c (Fprocess_send_string): Protect against
|
|
389 SIGPIPE when flushing outstream.
|
|
390
|
|
391 1997-10-30 SL Baur <steve@altair.xemacs.org>
|
|
392
|
|
393 * input-method-xfs.c: Xlocale.h must be included after config.h.
|
|
394 * input-method-motif.c: ditto.
|
|
395 * input-method-xlib.c: ditto.
|
|
396
|
|
397 1997-10-28 Kyle Jones <kyle_jones@wonderworks.com>
|
|
398
|
|
399 * Under LRECORD_VECTOR, moved vectors from being an basic
|
|
400 lrecord tpye to an lcrecord.
|
|
401 Added support for 31 bits Lisp integers.
|
|
402 Added support for maskless pointers to Lisp objects.
|
|
403
|
|
404 * alloc.c
|
|
405
|
|
406 (allocate_lisp_storage): Use XSETOBJ instead of
|
|
407 XSETCONS to avoid tripping the ERROR_CHECK_TYPECHECK
|
|
408 code with uninitialized data. XSETCONS used to work
|
|
409 until it became an lrecord type.
|
|
410
|
|
411 Removed sweep_vectors_1, all_vectors and other vector
|
|
412 specific GC related objects in the LRECORD_VECTOR
|
|
413 case, as they are unneeded now that lrecord-based
|
|
414 vectors are lcrecords.
|
|
415
|
|
416 Added `equal' methods for lrecord-based conses, vectors
|
|
417 and strings. I was mistaken before; they are needed.
|
|
418
|
|
419 (pure_cons): moved XSETCONS call to after the
|
|
420 set_lheader_implementation call, to avoid tripping the
|
|
421 type checking code on an uninitialized implementation
|
|
422 pointer.
|
|
423
|
|
424 (make_pure_vector): moved XSETVECTOR call to after the
|
|
425 set_lheader_implementation call, to avoid tripping the
|
|
426 type checking code on an uninitialized implementation
|
|
427 pointer.
|
|
428
|
|
429 (Fpurecopy): return if given a null pointer. THis can
|
|
430 happen when initializing Qnil.
|
|
431
|
|
432 (mark_object): return if passed a null pointer. I
|
|
433 think this can happen when marking through some kind of
|
|
434 objects that contain Lisp_Objects and null pointers.
|
|
435
|
|
436 (marked_p): Ditto
|
|
437
|
|
438 * buffer.c
|
|
439
|
|
440 (mark_buffer): Don't mark conses in the indirect children
|
|
441 list is said list is in fact a null pointer. The
|
|
442 indirect children list gets reset to a null pointer
|
|
443 when a bfufer is killed.
|
|
444
|
|
445 (complex_vars_of_buffer): initialize indirect_children
|
|
446 slow of Vbuffer_local_symbols and Vbuffer_defaults to
|
|
447 nil.
|
|
448
|
|
449 * chartab.c
|
|
450
|
|
451 (Fcheck_category_at): Don't use XREALINT to extract a
|
|
452 char from a Lisp_Object, use XCHAR instead.
|
|
453
|
|
454 (Fchar_in_category): Ditto.
|
|
455
|
|
456 * data.c
|
|
457
|
|
458 (eq_with_ebola_notice): Use XCHAR_OR_INT instead of
|
|
459 XREALINT to extract data from a Lisp_Object that could
|
|
460 contain a charater or an integer.
|
|
461
|
|
462 (make_int): use XSETINT in the USE_MINIMAL_TAGBITS
|
|
463 case.
|
|
464
|
|
465 (make_char): use XSETINT in the USE_MINIMAL_TAGBITS
|
|
466 case.
|
|
467
|
|
468 (Flsh): XUINT is gone; use XINT instead.
|
|
469
|
|
470 * elhash.c
|
|
471
|
|
472 (elisp_hvector_malloc): Use Qnull_pointer instead of
|
|
473 Qzero, as Qzero is no longer guaranteed to contain an
|
|
474 all-zero bit pattern.
|
|
475
|
|
476 (make_lisp_hashtable): Ditto.
|
|
477
|
|
478 (Fcopy_hashtable): Ditto.
|
|
479
|
|
480 * emacsfns.h
|
|
481
|
|
482 Conditionalize the declaration of make_char() on
|
|
483 whether a make_char macro exists or not.
|
|
484
|
|
485 * fns.c
|
|
486
|
|
487 (internal_equal): Conditionalize existence of cons,
|
|
488 string and vector comparison code on whether they are
|
|
489 lrecord-based.
|
|
490
|
|
491 (internal_old_equal): Ditto.
|
|
492
|
|
493 * lisp-disunion.h
|
|
494
|
|
495 USE_MINIMAL_TAGBITS support.
|
|
496
|
|
497 31 bit Lisp integer support.
|
|
498
|
|
499 Conditionalized existence of markbit related macros on
|
|
500 the existence of a markbit in a Lisp_Object. There are
|
|
501 no markbits in the USE_MINIMAL_TAGBITS implementation
|
|
502 of a Lisp_Object.
|
|
503
|
|
504 Replaced XUINT with XPNTRVAL.
|
|
505
|
|
506 Added declaration for Qnull_pointer.
|
|
507
|
|
508 * lisp-union.h
|
|
509
|
|
510 USE_MINIMAL_TAGBITS support.
|
|
511
|
|
512 31 bit Lisp integer support.
|
|
513
|
|
514 Conditionalized existence of markbit related macros on
|
|
515 the existence of a markbit in a Lisp_Object. There are
|
|
516 no markbits in the USE_MINIMAL_TAGBITS implementation
|
|
517 of a Lisp_Object.
|
|
518
|
|
519 Replaced XUINT with XPNTRVAL.
|
|
520
|
|
521 Added a make_char macro, similar to the make_int
|
|
522 macro, for use with the GCC-specific XMAKE_LISP hack.
|
|
523
|
|
524 * lisp.h
|
|
525
|
|
526 USE_MINIMAL_TAGBITS support.
|
|
527
|
|
528 31 bit Lisp integer support.
|
|
529
|
|
530 Added GCMARKBITS macro to specify how many markbits a
|
|
531 Lisp_Object contains.
|
|
532
|
|
533 Support for lcrecord-based vectors.
|
|
534
|
|
535 Added XCHAR_OR_INT for accessing data in an object
|
|
536 that might contain either a character or an integer.
|
|
537
|
|
538 Made HACKEQ_UNSAFE use XCHAR_OR_INT instead of
|
|
539 XREALINT during its Ebola check.
|
|
540
|
|
541 * print.c
|
|
542
|
|
543 Made the printing code undestand the split Lisp integer type.
|
|
544
|
|
545 * symbols.c
|
|
546
|
|
547 Added declaration for Qnull_pointer.
|
|
548
|
|
549 1997-10-27 Martin Buchholz <mrb@eng.sun.com>
|
|
550
|
|
551 * src/m/ibmrs6000.h:
|
|
552 * src/s/aix3-2.h: C_SWITCH_SYSTEM ==> configure.in
|
|
553 * src/s/aix4-1.h: -li18n ==> configure.in
|
|
554 * src/s/aix4.h: Always include strings.h
|
|
555 * src/config.h.in: Add AIXV3 define, suggested by xmkmf. Remove
|
|
556 AIX_SMT_EXP.
|
|
557 * src/unexaix.c: Fix nested comments compiler warning
|
|
558
|
|
559 1997-10-27 Kyle Jones <kyle_jones@wonderworks.com>
|
|
560
|
|
561 * src/profile.c (sigprof_handler): Don't call XUNMARK on
|
|
562 fun, it isn't needed.
|
|
563
|
|
564 * src/faces.c (face_property_matching_instance): Check
|
|
565 for charset == Qunbound, which it can be if the
|
|
566 character set is unspecified.
|
|
567
|
|
568 1997-10-27 SL Baur <steve@altair.xemacs.org>
|
|
569
|
|
570 * mule-wnnfns.c (vars_of_mule_wnn): Provide 'wnn feature.
|
|
571
|
|
572 * mule-canna.c (vars_of_mule_canna): Provide 'CANNA feature.
|
|
573
|
|
574 1997-10-27 Kazuyuki IENAGA <ienaga@jsys.co.jp>
|
|
575
|
|
576 * device-x.c (x_init_device): To avoid crazy menubars due to
|
|
577 lack of suitable font loading. Disabled locale based app-defaults
|
|
578 loading when menubars=motif or menubars=lucid + xfs feature is not
|
|
579 used. Currently, the menubar resource has no effect for tty use.
|
|
580
|
|
581 1997-10-25 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
|
582
|
|
583 * README: Remove references to VMS.
|
|
584
|
|
585 * vlimit.h:
|
|
586 * s/vms5-5.h:
|
|
587 * s/vms4-4.h:
|
|
588 * s/vms4-2.h:
|
|
589 * s/vms4-0.h:
|
|
590 * s/vms.h: Remove files since VMS isn't supported any more.
|
|
591
|
|
592 1997-10-25 Kyle Jones <kyle_jones@wonderworks.com>
|
|
593
|
|
594 * toolbar.h: Reduce MINIMUM_SHADOW_THICKNESS to 1.
|
|
595
|
|
596 1997-10-24 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
|
597
|
|
598 * database.c: Added support for Berkeley DB 2.x.
|
|
599
|
|
600 1997-10-23 SL Baur <steve@altair.xemacs.org>
|
|
601
|
|
602 * alloc.c: Disable purespace statistics unless --debug is in
|
|
603 effect.
|
|
604
|
|
605 * console-stream.c (init_console_stream): At the price of a tiny
|
|
606 memory leak, reinitialize FILE fields of the console.
|
|
607 From Tonny Madsen <tma@nettest.dk>
|
|
608
|
|
609 * emacs.c: New variable `inhibit_package_init'.
|
|
610 (vars_of_emacs): Use it.
|
|
611 (main_1): Initialize from command line.
|
|
612
|
|
613 * Makefile.in.in (xemacs): Specify -vanilla when searching for
|
|
614 shadows.
|
|
615
|
|
616 * emacs.c: Remove VMS ifdefs.
|
|
617 (standard_args): Added -no-packages, --no-packages.
|
|
618 Added -vanilla, --vanilla.
|
|
619 (Frun_emacs_from_temacs): Guard pure usage report with DEBUG_XEMACS
|
|
620 (Fdump_emacs): Ditto.
|
|
621
|
|
622 1997-10-22 Hrvoje Niksic <hniksic@srce.hr>
|
|
623
|
|
624 * fns.c (Ffeaturep): Use `Fcar' with `or'.
|
|
625
|
|
626 1997-10-22 Kyle Jones <kyle_jones@wonderworks.com>
|
|
627
|
|
628 * alloc.c: drop the Lisp_Type_Record case clause
|
|
629 that I added to the switch statement in a previous
|
|
630 patch. The string, vector and cons cases belong in
|
|
631 the `default' clause with the other lrecord types.
|
|
632
|
|
633 1997-10-22 Kyle Jones <kyle_jones@wonderworks.com>
|
|
634
|
|
635 * Added support for strings as lrecords.
|
|
636
|
|
637 * lisp.h: #ifdef'd out Lisp_Type_String enum value
|
|
638 if LRECORD_STRING is defined.
|
|
639
|
|
640 * alloc.c: Added allocation and garbage collection
|
|
641 code for lrecord-based strings.
|
|
642
|
|
643 * print.c: move Lisp_String printing code to a
|
|
644 separate function so that it could be used as a
|
|
645 `print' method for lrecord-based strings.
|
|
646
|
|
647 1997-10-20 Jan Vroonhof <vroonhof@math.ethz.ch>
|
|
648
|
|
649 * extents.c: Renamed shot property to initial-redisplay-function
|
|
650 (extent_fragment_update): Changed the bookkeeping whether an event
|
|
651 has been spawned. The initial-redisplay-function property is no
|
|
652 longer set to nil.
|
|
653
|
|
654 * extents.h: ditto
|
|
655
|
|
656 1997-10-20 Kyle Jones <kyle_jones@wonderworks.com>
|
|
657
|
|
658 * Added support for conses and vectors to be lrecords.
|
|
659
|
|
660 * alloc.c: Modified allocation and GC code for
|
|
661 LRECORD_CONS and LRECORD_VECTOR support. Moved some
|
|
662 macros to lrecord.h.
|
|
663
|
|
664 * bytecode.c: Warning comment about LRECORD_CONS.
|
|
665
|
|
666 * elhash.c: Let internal_hash handle vector hashing
|
|
667 if LRECORD_VECTOR is defined, just as it does when
|
|
668 LRECORD_VECTOR is not defined. The code could have
|
|
669 been copied into an `hash' method function but I don't
|
|
670 see any point to it. Added lrecord style marking code
|
|
671 to finish_marking_weak_hashtables. Bracketed code
|
|
672 that groks the non-lrecord method of marking vectors
|
|
673 with #ifdefs.
|
|
674
|
|
675 * fns.c: Let internal_equal and internal_old_equal
|
|
676 handle vector comparisons when LRECORD_VECTOR is
|
|
677 defined, just as it does when LRECORD_VECTOR is not
|
|
678 defined. The code could have been copied into an
|
|
679 `equal' method function but I don't see any point to
|
|
680 it.
|
|
681
|
|
682 * lisp.h: Added typecheck macros for LRECORD_CONS
|
|
683 support. LRECORD_VECTOR macros were already present.
|
|
684
|
|
685 * print.c: New functions print_cons and print_vector
|
|
686 for LRECORD_CONS and LRECORD_VECTOR support.
|
|
687 Some GC protection also added.
|
|
688
|
|
689 * lrecord.h: Received some macros from alloc.c, so
|
|
690 that they could be used in lisp.h.
|
|
691
|
|
692 1997-10-20 Hrvoje Niksic <hniksic@srce.hr>
|
|
693
|
|
694 * fns.c (Ffeaturep): Handle `not' correctly.
|
|
695
|
|
696 * lread.c (vars_of_lread): Use defsymbol for featurep.
|
|
697
|
|
698 1997-10-15 Olivier Galibert <olivier.galibert@mines.u-nancy.fr>
|
|
699
|
|
700 * s/irix5-0.h: Removed -G 0 from LD_SWITCH_SYSTEM. .sbss sections
|
|
701 are supported since unexelfsgi.c upgrade.
|
|
702
|
|
703 1997-10-16 Kyle Jones <kyle_jones@wonderworks.com>
|
|
704
|
|
705 * lstream.c (Lstream_close): Don't return early if the
|
|
706 closer method reports failure. Doing so caused GC and
|
|
707 memory corruption crashes.
|
|
708
|
|
709 1997-10-14 Hrvoje Niksic <hniksic@srce.hr>
|
|
710
|
|
711 * extents.c (Fset_extent_property): Allow `keymap' property to be
|
|
712 set to nil.
|
|
713
|
|
714 1997-10-15 SL Baur <steve@altair.xemacs.org>
|
|
715
|
|
716 * mule-coding.c (acceptable_control_char_p): Add C-_ for info.
|
|
717 (detect_coding_iso2022): Ditto.
|
|
718 From SENDA Shigeya <senda@ic.rdc.ricoh.co.jp>
|
|
719
|
|
720 1997-10-09 MORIOKA Tomohiko <morioka@jaist.ac.jp>
|
|
721
|
|
722 * mule-coding.c (make-coding-system, detect-coding-region): Modify
|
|
723 DOC-string because of renaming `automatic-conversion' ->
|
|
724 `undecided' to sync with Emacs 20.2.
|
|
725
|
|
726 (make-coding-system, coding-system-type, detect-coding-region):
|
|
727 Rename `Qautomatic_conversion' -> `Qundecided'.
|
|
728
|
|
729 * general.c (syms_of_general): Rename `automatic-conversion' ->
|
|
730 `undecided' to sync with Emacs 20.2.
|
|
731
|
|
732 * emacsfns.h, event-Xt.c (x_to_emacs_keysym): Rename
|
|
733 `Qautomatic_conversion' -> `Qundecided'.
|
|
734
|
|
735 * buffer.c (buffer-file-coding-system): Modify DOC-string because
|
|
736 of renaming `automatic-conversion' -> `undecided' to sync with
|
|
737 Emacs 20.2.
|
|
738
|
|
739 1997-10-15 Olivier Galibert <olivier.galibert@mines.u-nancy.fr>
|
|
740
|
|
741 * lisp.h (MANY): Bump SUBR_MAX_ARGS to 12 and add corresponding
|
|
742 DEFUN_n macros.
|
|
743
|
|
744 1997-10-13 Stephen J. Turnbull <turnbull@sk.tsukuba.ac.jp>
|
|
745
|
|
746 * console-tty.c: Include gpmevent.h
|
|
747 * gpmevent.c (connect_to_gpm): change to void
|
|
748 * gpmevent.h: Ditto.
|
|
749
|
|
750 1997-10-13 Kyle Jones <kyle_jones@wonderworks.com>
|
|
751
|
|
752 * lisp-disunion.h (XSETOBJ): cast Lisp type enum to
|
|
753 an EMACS_UINT quantity to avoid a compiler warning about
|
|
754 integer overflow when the most significat bit of the
|
|
755 type tag is shifted into the sign bit position of an
|
|
756 EMACS_INT.
|
|
757
|
205
|
758 1997-10-12 SL Baur <steve@altair.xemacs.org>
|
|
759
|
207
|
760 * s/freebsd.h: Add X11 guard for building without X11.
|
205
|
761 From Hrvoje Niksic <hniksic@srce.hr>
|
|
762
|
|
763 1997-10-12 Kyle Jones <kyle_jones@wonderworks.com>
|
|
764
|
207
|
765 * doprnt.c (emacs_doprnt_1): if forwarded field width
|
205
|
766 is negative, set minus_flag and make the field width
|
|
767 positive. Makes (format "%*s" -10 "abc") work like
|
|
768 (format "%-*s" 10 "abc").
|
|
769
|
|
770 1997-10-12 SL Baur <steve@altair.xemacs.org>
|
|
771
|
|
772 * unexsol2.c (unexec): CONST isn't defined here.
|
|
773 From Adrian Aichner <aichner@ecf.teradyne.com>
|
207
|
774
|
203
|
775 1997-10-11 SL Baur <steve@altair.xemacs.org>
|
|
776
|
205
|
777 * realpath.c (realpath): CONST IS LOSING but removing it conflicts
|
|
778 with system headers.
|
|
779
|
203
|
780 * callproc.c: New variable infopath-internal.
|
|
781 (complex_vars_of_callproc): Declare and initialized it.
|
|
782
|
|
783 * paths.h.in: New variable PATH_INFOPATH.
|
|
784
|
|
785 1997-10-10 Martin Buchholz <mrb@eng.sun.com>
|
|
786
|
|
787 * systty.h:
|
|
788 - change Xemacs --> XEmacs
|
|
789
|
|
790 * buffer.c:
|
|
791 * editfns.c:
|
|
792 * msdos.c:
|
|
793 - Remove bogus FSF-origin \n\ sequences.
|
|
794
|
|
795 1997-10-09 Kyle Jones <kyle_jones@wonderworks.com>
|
|
796
|
|
797 * doprnt.c (parse_doprnt_spec): parse `*' field width
|
|
798 and precision specs and set up spec forwarding.
|
|
799
|
|
800 * doprnt.c (emacs_doprnt_1): implement `*' by
|
|
801 forwarding flags, precision and field width data from a
|
|
802 spec to a subsequent spec.
|
|
803
|
|
804 * editfns.c: document new `*' field width and
|
|
805 precision spec.
|
|
806
|
|
807 1997-10-09 SL Baur <steve@altair.xemacs.org>
|
|
808
|
|
809 * database.c (Fclose_database): Rename C function.
|
|
810 (Fdatabase_last_error): Ditto.
|
|
811 (Fopen_database): Ditto.
|
|
812 (Fput_database): Ditto.
|
|
813 (Fremove_database): Ditto.
|
|
814 (Fget_database): Ditto.
|
|
815 (syms_of_dbm): Reflect above changes.
|
|
816 From Martin Buchholz <mrb@Eng.Sun.COM>
|
|
817
|
|
818 1997-10-08 Hrvoje Niksic <hniksic@srce.hr>
|
|
819
|
|
820 * events.c (Fmake_event): Allow only frames as channel.
|
|
821
|
|
822 1997-10-07 Hrvoje Niksic <hniksic@srce.hr>
|
|
823
|
|
824 * extents.c (print_extent_1): Fixed typo.
|
|
825
|
|
826 1997-10-07 Kyle Jones <kyle_jones@wonderworks.com>
|
|
827
|
|
828 * insdel.c (buffer_replace_char): if doing delete/insert
|
|
829 because of characters with deiffering byte lengths,move
|
|
830 point forward with the insertion if it was moved backwrad
|
|
831 to equal the insertion point by the earlier deletion.
|
|
832
|
|
833 1997-10-06 SL Baur <steve@altair.xemacs.org>
|
|
834
|
|
835 * window.c (Fset_window_dedicated_p): register -> REGISTER.
|
|
836
|
|
837 * unexalpha.c (update_dynamic_symbols): register-> REGISTER.
|
|
838
|
|
839 * sysdep.c: Global change: register -> REGISTER.
|
|
840
|
|
841 * strcat.c (strcat): register -> REGISTER.
|
|
842
|
|
843 * search.c: Global change: register -> REGISTER.
|
|
844
|
|
845 * regex.c: Global change: register -> REGISTER.
|
|
846 - Ensure REGISTER is always defined.
|
|
847
|
|
848 * nt.c: Global change: register -> REGISTER.
|
|
849
|
|
850 * linuxplay.c: Global change: register -> REGISTER.
|
|
851
|
|
852 * input-method-xlib.c (best_style): register -> REGISTER.
|
|
853
|
|
854 * gifalloc.c: Global change: register -> REGISTER.
|
|
855 - Ensure REGISTER is always defined.
|
|
856
|
|
857 * getloadavg.c (getloadavg): register -> REGISTER.
|
|
858
|
|
859 * eval.c (unwind_to_catch): [Unused variable] register -> REGISTER.
|
|
860
|
|
861 * cmds.c (Fpoint_at_bol): register -> REGISTER.
|
|
862
|
|
863 * chartab.c (check_category_char): register -> REGISTER.
|
|
864
|
|
865 * buffer.c (assoc_ignore_text_properties): [Unused function]
|
|
866 register -> REGISTER.
|
|
867
|
|
868 * alloca.c: Global change: register -> REGISTER.
|
|
869
|
|
870 * xmu.h (XmuCopyISOLatin1Lowered): Global change: const -> CONST.
|
|
871
|
|
872 * gif_lib.h: Global change: const -> CONST.
|
|
873
|
|
874 * balloon_help.h (balloon_help_move_to_pointer): const -> CONST.
|
|
875
|
|
876 * xmu.c: Global change: const -> CONST.
|
|
877
|
|
878 * unexsol2.c (unexec): const -> CONST.
|
|
879
|
|
880 * unexhp9k3.c (unexec_error): const -> CONST.
|
|
881
|
|
882 * unexfreebsd.c (unexec_error): const -> CONST.
|
|
883
|
|
884 * sunOS-fix.c (mbstowcs): const-> CONST.
|
|
885 (wcstombs): Ditto.
|
|
886
|
|
887 * strcpy.c (strcpy): const -> CONST.
|
|
888
|
|
889 * strcmp.c: Global change: const -> CONST.
|
|
890
|
|
891 * strcat.c (strcat): const -> CONST.
|
|
892
|
|
893 * realpath.c (realpath): const -> CONST.
|
|
894
|
|
895 * keymap.c (where_is_recursive_mapper): const -> CONST.
|
|
896
|
|
897 * extents.c (extent_priority_sort_function): const -> CONST.
|
|
898
|
|
899 * dgif_lib.c (DGifOpenFileName): const -> CONST.
|
|
900
|
|
901 * balloon_help.c: Global change: const -> CONST.
|
|
902
|
201
|
903 1997-10-03 SL Baur <steve@altair.xemacs.org>
|
|
904
|
|
905 * lisp.h: Nuke register declarations.
|
|
906
|
|
907 1997-10-03 Karl M. Hegbloom <karlheg@inetarena.com>
|
|
908
|
|
909 * window.c (Frecenter): Correct variable names in docstring.
|
|
910
|
|
911 1997-10-03 Karl M. Hegbloom <karlheg@inetarena.com>
|
|
912
|
|
913 * fns.c: Add some cross references between destructive and
|
|
914 non-destructive versions of similar functions.
|
|
915
|
|
916 Fri Oct 3 12:28:08 1997 Kyle Jones <kyle_jones@wonderworks.com>
|
|
917
|
|
918 * lisp-disunion.h: Move markbit to be between the
|
|
919 type bits and the value bits. Previously it was always
|
|
920 the sign bit of a EMACS_INT, unless modified by a
|
|
921 #define in a machine dependent .h file.
|
199
|
922
|
|
923 1997-10-02 Hrvoje Niksic <hniksic@srce.hr>
|
|
924
|
|
925 * profile.c (Fclear_profiling_info): Made interactive.
|
|
926
|
|
927 1997-10-02 SL Baur <steve@altair.xemacs.org>
|
|
928
|
|
929 * glyphs-x.c (USE_TEMP_FILES_FOR_PNG_IMAGES): Move outside of
|
|
930 HAVE_JPEG ifdef.
|
|
931
|
|
932 1997-10-01 SL Baur <steve@altair.xemacs.org>
|
|
933
|
|
934 * lisp.h (min): Fully parenthize.
|
|
935 (max): Ditto.
|
|
936
|
|
937 * Makefile.in.in (widget.o): Insert dependencies.
|
|
938 - Insert HAVE_OFFIX_DND dependencies.
|
|
939
|
|
940 * casefiddle.c (casify_object): Back out bogus undocumented patch
|
|
941 from 20.3-beta18.
|
|
942
|
|
943 1997-09-30 SL Baur <steve@altair.xemacs.org>
|
|
944
|
|
945 * events.c (Fevent_type): Add OffiX guard.
|
|
946 (command_event_p): Ditto.
|
|
947 (mark_event): Ditto.
|
|
948 (print_event): Ditto.
|
|
949
|
197
|
950 1997-09-30 SL Baur <steve@altair.xemacs.org>
|
|
951
|
|
952 * mule-canna.c (Fcanna_set_bunsetsu): Return a value.
|
|
953 (Fcanna_parse): Remove unused variables `ks' and `ksv'.
|
|
954 (Fcanna_henkan_begin): Remove unused variable `res'.
|
|
955 (Fcanna_henkan_next): Remove unused variable `nbun'.
|
|
956 (count_char): Change return type to void.
|
|
957
|
|
958 * event-Xt.c (x_event_to_emacs_event): Remove unused variable
|
|
959 `event-size'.
|
|
960
|
|
961 * menubar.c (Fnormalize_menu_item_name): Remove unused variable
|
|
962 `res'.
|
|
963
|
|
964 * redisplay-x.c (x_flash): Reorganize test to prefer select over
|
|
965 poll.
|
|
966
|
|
967 * xselect.c (Fx_store_cutbuffer_internal): Remove unused variable
|
|
968 `encoding'.
|
|
969
|
|
970 1997-09-30 Hrvoje Niksic <hniksic@srce.hr>
|
|
971
|
|
972 * frame.c (Fmake_frame): Call `custom-initialize-frame'.
|
|
973
|
|
974 1997-09-24 MORIOKA Tomohiko <morioka@jaist.ac.jp>
|
|
975
|
|
976 * mule-coding.c: Rename `pathname-coding-system' to
|
|
977 `file-name-coding-system' to sync with Emacs 20.2.
|
|
978
|
195
|
979 1997-09-26 Hrvoje Niksic <hniksic@srce.hr>
|
|
980
|
|
981 * window.c (saved_window_equal): Ditto.
|
|
982
|
|
983 * process.c (Fget_process): Use internal_equal.
|
|
984
|
|
985 * lread.c (build_load_history): Use internal_equal.
|
|
986 (build_load_history): Use XCAR/XCDR where safe.
|
|
987
|
|
988 * events.c (event_equal): Ditto.
|
|
989
|
|
990 * event-stream.c (Fdispatch_event): Ditto.
|
|
991
|
|
992 * elhash.c (lisp_object_eql_equal): Ditto.
|
|
993 (lisp_object_equal_equal): Ditto.
|
|
994
|
|
995 * device.c (find_device_of_type): Ditto.
|
|
996
|
|
997 * console.c (find_console_of_type): Ditto.
|
|
998
|
|
999 * console-tty.c (tty_init_console): Ditto.
|
|
1000
|
|
1001 * console-stream.c (stream_init_console): Use internal_equal.
|
|
1002 (stream_canonicalize_console_connection): Ditto.
|
|
1003
|
|
1004 * fns.c (Fmember): Use internal_equal, to avoid a necessary
|
|
1005 funcall and NILP check.
|
|
1006 (Fold_member): Ditto for internal_old_equal.
|
|
1007 (Fassoc): Use XCAR when we know we deal with a cons. Use
|
|
1008 internal_equal. Removed tem.
|
|
1009 (Fold_assoc): Ditto.
|
|
1010 (Fassq): Use XCAR.
|
|
1011 (Frassoc): Use internal_equal; remove tem.
|
|
1012 (Fold_rassoc): Ditto for internal_old_equal.
|
|
1013 (Frassq): Use XCDR with what we know is a cons.
|
|
1014 (Fold_rassq): Ditto.
|
|
1015 (Fdelete): Use internal_equal.
|
|
1016 (Fold_delete): Ditto for internal_old_equal.
|
|
1017 (Fremassoc): Use internal_equal; use XCAR/XCDR with what we know
|
|
1018 is a cons.
|
|
1019 (Fremrassoc): Ditto.
|
|
1020
|
|
1021 * dired.c (Fdirectory_files): Nreverse the list only if it will be
|
|
1022 sorted.
|
|
1023
|
|
1024 Fri Sep 26 13:55:28 1997 Kyle Jones <kyle_jones@wonderworks.com>
|
|
1025
|
|
1026 * faces.c (update_face_cachel_data): Don't allow the
|
|
1027 background pixmap of the default face to override the
|
|
1028 background of a face if that color has been specified.
|
|
1029
|
|
1030 1997-09-26 Hrvoje Niksic <hniksic@srce.hr>
|
|
1031
|
|
1032 * dired.c (close_directory_fd): New function.
|
|
1033 (Fdirectory_files): Use it to set up an unwind-protection to close
|
|
1034 the descriptor.
|
|
1035 (Fdirectory_files): Allow QUIT in re_search.
|
|
1036 (Fdirectory_files): If the file is too big, allocate necessary
|
|
1037 data with malloc.
|
|
1038 (Fdirectory_files): Use simple Fcons to build the list.
|
|
1039 (close_directory_fd): Free the opaque pointer.
|
|
1040
|
|
1041 1997-09-25 Hrvoje Niksic <hniksic@srce.hr>
|
|
1042
|
|
1043 * extents.c (Fset_extent_properties): New function.
|
|
1044
|
|
1045 1997-09-24 SL Baur <steve@altair.xemacs.org>
|
|
1046
|
|
1047 * dired.c (Fdirectory_files): Remove broken VMS stuff.
|
|
1048 (file_name_completion_stat): Ditto.
|
|
1049 (file_name_completion): Ditto.
|
|
1050 (Top Level): Ditto.
|
|
1051 (syms_of_dired): Ditto.
|
|
1052
|
|
1053 1997-09-25 Hrvoje Niksic <hniksic@srce.hr>
|
|
1054
|
|
1055 * widget.c (Fwidget_apply): Don't GCPRO result of Fwidget_get.
|
|
1056
|
|
1057 1997-09-24 SL Baur <steve@altair.xemacs.org>
|
|
1058
|
|
1059 * symsinit.h: Declare syms_of_widget.
|
|
1060
|
|
1061 * emacsfns.h: Declare Fchar_syntax.
|
|
1062
|
|
1063 * bytecode.c (Fbyte_code): Call Fchar_syntax for the Bchar_syntax
|
|
1064 bytecode.
|
|
1065
|
|
1066 * syntax.c (Fchar_syntax): convert nil input to \000 for
|
|
1067 compatibility.
|
|
1068
|
|
1069 * alloc.c (report_pure_usage): Increase slop to 512 bytes in betas
|
|
1070 and reduce it to 4 bytes in releases.
|
|
1071
|
|
1072 1997-09-23 SL Baur <steve@altair.xemacs.org>
|
|
1073
|
|
1074 * Makefile.in.in (objs): Add new C file widget.o.
|
|
1075
|
|
1076 1997-09-22 SL Baur <steve@altair.xemacs.org>
|
|
1077
|
|
1078 * editfns.c (vars_of_editfns): New feature 'ampersand-full-name
|
|
1079 declared if AMPERSAND_FULL_NAME configuration option is enabled.
|
|
1080
|
|
1081 * callproc.c (vars_of_callproc): Update docstring of `data-directory'.
|
|
1082
|
|
1083 Sun Sep 21 14:14:44 1997 Kyle Jones <kyle_jones@wonderworks.com>
|
|
1084
|
|
1085 * lisp.h: underspecify lisp_fn_t function prototype
|
|
1086 to avoid compiler errors in inline_funcall_subr().
|
|
1087
|
|
1088 * eval.c (Fprogn): Walk forms list with XCDR, access
|
|
1089 with XCAR. Check forms list CONSP, so that XCDR and XCAR are
|
|
1090 safe.
|
|
1091
|
|
1092 * eval.c (Fsetq): replace Flength call with for-loop
|
|
1093 to compute list length. Walk arg list with XCDR,
|
|
1094 access with XCAR. Check arg list with CONSP, so that
|
|
1095 XCDR and XCAR are safe.
|
|
1096
|
|
1097 * eval.c: New macro inline_funcall_subr, an inline
|
|
1098 version of funcall_subr + primitive_funcall.
|
|
1099
|
|
1100 * eval.c (Feval): replace Flength call with for-loop
|
|
1101 to compute list length. Use XCAR and XCDR in some
|
|
1102 places where it is safe to do so. Use
|
|
1103 inline_funcall_subr() in place of funcall_subr().
|
|
1104
|
|
1105 * eval.c (funcall_recording_as): Use XCAR instead of
|
|
1106 Fcar where it was safe.
|
|
1107
|
|
1108 * eval.c (Fapply): replace Flength call with for-loop
|
|
1109 to compute list length.
|
|
1110
|
|
1111 * eval.c (apply_lambda):Use XCAR and XCDR in some
|
|
1112 places where it is safe to do so.
|
|
1113
|
|
1114 * eval.c (funcall_lambda): Walk param list with XCDR, access
|
|
1115 with XCAR. Check param list CONSP, so that XCDR and XCAR are
|
|
1116 safe.
|
|
1117
|
|
1118 * symbols.c (find_symbol_value): return quickly if no
|
|
1119 symbol magic is involved, to avoid the expensive call
|
|
1120 to find_symbol_value_1.
|
|
1121
|
|
1122 * symbols.c (store_symval_forwarding): don't call
|
|
1123 reject_constant_symbols unless there is a chance a
|
|
1124 constant symbol is involved. This break the
|
|
1125 encapsulation of the constants check, but symbol stores
|
|
1126 are used heavily and speed is most important than
|
|
1127 cleanliness in this case.
|
|
1128
|
|
1129 1997-09-21 Joel Peterson <tarzan@aosi.com>
|
|
1130
|
|
1131 * menubar.c (normalize-menu-item-name): New function.
|
|
1132
|
|
1133 1997-09-21 SL Baur <steve@altair.xemacs.org>
|
|
1134
|
|
1135 * keymap.c (get_relevant_extent_keymaps): Previous patch reversed.
|
|
1136
|
193
|
1137 1997-09-20 SL Baur <steve@altair.xemacs.org>
|
|
1138
|
|
1139 * Makefile.in.in (xemacs): Adoption of shadow.el to print
|
|
1140 load-path shadowings after successful dump.
|
|
1141
|
|
1142 1997-09-20 Hrvoje Niksic <hniksic@srce.hr>
|
|
1143
|
|
1144 * redisplay.c (scroll_conservatively): New variable.
|
|
1145 (redisplay_window): Use it.
|
|
1146
|
189
|
1147 1997-09-16 SL Baur <steve@altair.xemacs.org>
|
|
1148
|
|
1149 * events.c (Fmake_event): Add default case, remove unused variables.
|
|
1150
|
|
1151 1997-08-21 Jan Vroonhof <vroonhof@math.ethz.ch>
|
|
1152
|
|
1153 * extents.c (extent_fragment_update): Trigger one_shot_function
|
|
1154
|
|
1155 * extents.c (set-extent-one-shot-function): New function
|
|
1156
|
|
1157 * extents.h (struct extent_auxiliary): Added one_shot_function
|
|
1158
|
|
1159 * extens.c: Added one_shot_function to assesor functions.
|
|
1160
|
|
1161 1997-09-14 Hrvoje Niksic <hniksic@srce.hr>
|
|
1162
|
|
1163 * fileio.c (Fexpand_file_name): Don't treat "//" and "~/" in the
|
|
1164 middle of path specially.
|
|
1165
|
187
|
1166 1997-09-10 Hrvoje Niksic <hniksic@srce.hr>
|
|
1167
|
|
1168 * event-stream.c (inhibit_input_event_recording): New boolean
|
|
1169 variable.
|
|
1170 (Fnext_event): Use it.
|
|
1171
|
|
1172 1997-09-13 Hrvoje Niksic <hniksic@srce.hr>
|
|
1173
|
|
1174 * fns.c (Fmapc): Renamed from Fmapc_internal.
|
|
1175
|
|
1176 1997-09-10 Hrvoje Niksic <hniksic@srce.hr>
|
|
1177
|
|
1178 * database.c (Fmake_database): Expand FILE.
|
|
1179
|
|
1180 * redisplay.c (window-system): Warn against using it.
|
|
1181
|
|
1182 1997-09-08 SL Baur <steve@altair.xemacs.org>
|
|
1183
|
|
1184 * emacs.c (PACKAGE_PATH): Reverse PACKAGE_PATH.
|
|
1185 Suggested by Colin Rafferty <craffert@ml.com>
|
|
1186
|
|
1187 1997-09-03 SL Baur <steve@altair.xemacs.org>
|
|
1188
|
|
1189 * print.c (print_internal): Special treatment for C-\.
|
|
1190
|
183
|
1191 1997-08-13 P E Jareth Hein <jareth@camelot-soft.com>
|
|
1192
|
|
1193 * insdel.c (buffer_delete_range): Changed the location where point
|
|
1194 was actually moved to after all other movement handling. This
|
|
1195 prevents a MULE related crash in VALID_BYTIND.
|
|
1196
|
|
1197 1997-08-11 SL Baur <steve@altair.xemacs.org>
|
|
1198
|
|
1199 * doc.c (Fsnarf_documentation): Semi-clarify types of weird
|
|
1200 functions.
|
|
1201
|
181
|
1202 1997-08-05 Jens-Ulrik Holger Petersen <petersen@kurims.kyoto-u.ac.jp>
|
|
1203
|
|
1204 * eval.c (vars_of_eval): Updated docstring for `debug_on_error' to
|
|
1205 mention `debug-ignored-errors'.
|
|
1206
|
|
1207 1997-08-01 SL Baur <steve@altair.xemacs.org>
|
|
1208
|
|
1209 * emacsfns.h: Fix declaration.
|
|
1210
|
|
1211 * event-stream.c (syms_of_event_stream): HAVE_MENUBARS not
|
|
1212 HAVE_MENUBAR.
|
|
1213
|
179
|
1214 1997-07-31 SL Baur <steve@altair.xemacs.org>
|
|
1215
|
|
1216 * frame-x.c (x_offix_drop_event_handler): Use stderr_out instead
|
|
1217 of fprintf.
|
|
1218
|
|
1219 * mule-coding.c (parse_iso2022_esc): Add abort() trap on unhandled
|
|
1220 condition.
|
|
1221
|
|
1222 * mule-wnnfns.c (Fwnn_dict_search): Remove unused variable.
|
|
1223 (Fwnn_hindo_update): Ditto.
|
|
1224 (Fwnn_inspect): Ditto.
|
|
1225 (Fwnn_bunsetu_henkou): Ditto.
|
|
1226
|
|
1227 * eval.c (call_with_suspended_errors): Fix Gcc warning:
|
|
1228 argument `retval' might be clobbered by `longjmp' or `vfork'
|
|
1229
|
|
1230 1997-07-30 SL Baur <steve@altair.xemacs.org>
|
|
1231
|
|
1232 * redisplay.c: `window-system' isn't going away any time soon.
|
|
1233
|
|
1234 1997-07-29 SL Baur <steve@altair.xemacs.org>
|
|
1235
|
|
1236 * callint.c (Fcall_interactively): Allow floating point numbers
|
|
1237 for `n' and `N' interactive specs.
|
|
1238
|
|
1239 1997-07-27 SL Baur <steve@altair.xemacs.org>
|
|
1240
|
|
1241 * event-stream.c (command_builder_find_leaf): Fix typo in
|
|
1242 HAVE_MENUBARS.
|
|
1243
|
|
1244 * gui-x.c (popup_selection_callback): Fix typo in HAVE_MENUBARS.
|
|
1245
|
|
1246 * event-stream.c (syms_of_event_stream): accelerate_menu needed
|
|
1247 guards.
|
|
1248
|
|
1249 * emacs.c (vars_of_emacs): Main default package directory is now
|
|
1250 ${prefix}/lib/xemacs/packages.
|
|
1251
|
177
|
1252 1997-07-25 David Moore <dmoore@ucsd.edu>
|
|
1253
|
|
1254 * alloc.c (Fmake_byte_code): GC protect newly allocated function
|
|
1255 when looking up filename.
|
|
1256
|
|
1257 1997-07-25 SL Baur <steve@altair.xemacs.org>
|
|
1258
|
|
1259 * Makefile.in.in: Added support for linking with dmalloc.
|
|
1260
|
|
1261 1997-07-25 P E Jareth Hein <jareth@camelot-soft.com>
|
|
1262
|
|
1263 * xselect.c (x_atom_to_symbol): Fixed a memory corruption bug
|
|
1264 where a possibly MULEified string was getting freed before use.
|
|
1265
|
|
1266 1997-07-21 SL Baur <steve@altair.xemacs.org>
|
|
1267
|
|
1268 * callproc.c: New variable Vdata_directory_list.
|
|
1269 * emacsfns.h: Declare it.
|
|
1270
|
|
1271 * fns.c (Frequire): Undo previous change.
|
|
1272
|
|
1273 * print.c (print_internal): Handle circular objects like Emacs
|
|
1274 handles them (and as documented in the Lispref).
|
|
1275
|
|
1276 * database.c (Fputdatabase): Complain when `val' is not a string.
|
|
1277
|
|
1278 * event-stream.c (command_builder_find_leaf): Guard menubar
|
|
1279 accelerator stuffs with HAVE_MENUBAR.
|
|
1280 * gui-x.c (popup_selection_callback): Ditto.
|
|
1281
|
|
1282 1997-07-20 SL Baur <steve@altair.xemacs.org>
|
|
1283
|
|
1284 * event-stream.c (menu_move_up): Guard menubar accelerator code
|
|
1285 with HAVE_MENUBARS.
|
|
1286
|
|
1287 * emacs.c (decode_path): New function, derived from latter portion
|
|
1288 of decode_env_path.
|
|
1289 (decode_env_path): Break out the naughty bits -- shouldn't do
|
|
1290 getenv and separator parsing in one function.
|
|
1291 New variable Vpackage_path.
|
|
1292 (vars_of_emacs): Use it.
|
|
1293
|
|
1294 * editfns.c (Fstring_to_char): Return nil instead of `0' for empty
|
|
1295 string.
|
|
1296
|
173
|
1297 1997-07-10 Hrvoje Niksic <hniksic@srce.hr>
|
|
1298
|
|
1299 * fileio.c (Finsert_file_contents_internal): Handle non-regular
|
|
1300 files.
|
|
1301
|
|
1302 1997-07-12 Steven L Baur <steve@altair.xemacs.org>
|
|
1303
|
|
1304 * Makefile.in.in (LOCK_OBJ): Only include filelock.[co] when
|
|
1305 CLASH_DETECTION is defined.
|
|
1306
|
|
1307 1997-07-11 Steven L Baur <steve@altair.xemacs.org>
|
|
1308
|
|
1309 * emacs.c (main_1): Spelling fix.
|
|
1310
|
|
1311 1997-07-10 Steven L Baur <steve@altair.xemacs.org>
|
|
1312
|
|
1313 * Makefile.in.in (dump-elcs): Shouldn't use SATISFIED hack.
|
|
1314 (xemacs-no-site-file): Not supported any more.
|
|
1315 (binary): New dependency for dumping XEmacs.
|
|
1316 (xemacs): Attempt to be a little smarter about not dumping a new
|
|
1317 XEmacs if it is not needed.
|
|
1318 (temacs): Remove `xemacs' after success.
|
|
1319
|
171
|
1320 1997-07-09 Hrvoje Niksic <hniksic@srce.hr>
|
|
1321
|
|
1322 * extents.c: Allow non-symbol properties of extents.
|
|
1323
|
|
1324 1997-07-08 Hrvoje Niksic <hniksic@srce.hr>
|
|
1325
|
|
1326 * data.c (Fstring_to_number): Use `check_int_range'.
|
|
1327 (Fstring_to_number): Would bug out on wrong type check.
|
|
1328
|
|
1329 1997-07-07 Steven L Baur <steve@altair.xemacs.org>
|
|
1330
|
|
1331 * data.c (Fcompiled_function_doc_string): Implement correctly.
|
|
1332 Was forgotten cut & paste identical clone to
|
|
1333 Fcompiled_function_interactive?
|
|
1334
|
|
1335 * Makefile.in.in (alloc.o): Remove dependency on puresize_adjust.h
|
|
1336 so alloc.c need not be recompiled when puresize changes.
|
|
1337
|
|
1338 * alloc.c (PURIFIED): Use get_PURESIZE() instead of constant.
|
|
1339 (check_purespace): Ditto.
|
|
1340 (alloc_pure_lrecord): Ditto.
|
|
1341 (report_pure_usage): Ditto.
|
|
1342 (disksave_object_finalization): Ditto.
|
|
1343 (report_pure_usage): Modify message reported when Build is
|
|
1344 restarted due to change in PURESIZE_ADJUSTMENT.
|
|
1345
|
|
1346 * puresize.h: Remove dependency on puresize_adjust.h.
|
|
1347 (get_PURESIZE): New function -- declare it.
|
|
1348
|
|
1349 * pure.c: Move final PURESIZE computation and include of
|
|
1350 puresize_adjust.h into here so alloc.c need not be recompiled each
|
|
1351 time the puresize is adjusted.
|
|
1352 (get_PURESIZE): New function.
|
|
1353
|
169
|
1354 1997-07-06 Steven L Baur <steve@altair.xemacs.org>
|
|
1355
|
171
|
1356 * data.c (Fstring_to_number): Wrong parameter was being checked.
|
|
1357
|
169
|
1358 * emacs.c (vars_of_emacs): Fprovide the system type as a feature.
|
|
1359
|
|
1360 1997-07-03 Steven L Baur <steve@altair.xemacs.org>
|
|
1361
|
|
1362 * data.c (Fstring_to_number): Fix typo. base isn't an integer.
|
|
1363
|
|
1364 1997-07-01 Steven L Baur <steve@altair.xemacs.org>
|
|
1365
|
|
1366 * data.c, emacsfns.h: This is the port of GNU Emacs capability.
|
|
1367 I am still not sure what this buys us, but I guess it doesn't hurt
|
|
1368 to have it.
|
|
1369 From Hrvoje Niksic <hniksic@srce.hr>
|
|
1370
|
|
1371 * glyphs.c (make_string_from_file): Use
|
|
1372 insert-file-contents-literally instead of
|
|
1373 insert-file-contents-internal.
|
|
1374
|
|
1375 1997-06-30 Steven L Baur <steve@altair.xemacs.org>
|
|
1376
|
|
1377 * fns.c (check_losing_bytecode): Correct reported version.
|
|
1378
|
|
1379 * Makefile.in.in (${libsrc}DOC): Break up line length for stupid
|
|
1380 make programs.
|
|
1381
|
|
1382 1997-06-29 Steven L Baur <steve@altair.xemacs.org>
|
|
1383
|
|
1384 * emacsfns.h: Put void in prototype.
|
|
1385 Suggested by Ben Wing.
|
|
1386
|
|
1387 1997-07-01 MORIOKA Tomohiko <morioka@jaist.ac.jp>
|
|
1388
|
|
1389 * glyphs.c (make_string_from_file): must protect from
|
|
1390 `format-alist'.
|
|
1391
|
167
|
1392 1997-06-28 Steven L Baur <steve@altair.xemacs.org>
|
|
1393
|
|
1394 * config.h.in: Back out previous change to LOSING_BYTECODE. It's
|
|
1395 just not worth it.
|
|
1396
|
|
1397 1997-06-27 Mike Scheidler <c23mts@eng.delcoelect.com>
|
|
1398
|
|
1399 * s/sol2.h: Undefined _XOPEN_SOURCE for Solaris 2.4.
|
|
1400
|
|
1401 1997-06-28 Hrvoje Niksic <hniksic@srce.hr>
|
|
1402
|
|
1403 * abbrev.c (abbrev_match): New function.
|
|
1404 (abbrev_oblookup): New function.
|
|
1405 (obarray_has_blank_p): New function.
|
|
1406 (abbrev_count_case): New function.
|
|
1407 (Fexpand_abbrev): Use them. Allow abbreviations to contain
|
|
1408 arbitrary characters.
|
|
1409
|
|
1410 1997-06-28 Steven L Baur <steve@altair.xemacs.org>
|
|
1411
|
|
1412 * config.h.in: LOSING_BYTECODE will not be compiled into XEmacs.
|
|
1413
|
|
1414 * doc.c (Fsnarf_documentation): Remove VMS dependent stuff for
|
|
1415 cleanliness.
|
|
1416
|
|
1417 1997-06-28 Hrvoje Niksic <hniksic@srce.hr>
|
|
1418
|
|
1419 * print.c (Ferror_message_string): Simplify.
|
|
1420
|
|
1421 1997-06-27 Steven L Baur <steve@altair.xemacs.org>
|
|
1422
|
|
1423 * symbols.c (Fdefine_function): Correct docstring.
|
|
1424 (Fsetplist): Ditto.
|
|
1425 (Ffset): Ditto.
|
|
1426 (Fsetq_default): Ditto.
|
|
1427
|
|
1428 1997-06-27 Hrvoje Niksic <hniksic@srce.hr>
|
|
1429
|
|
1430 * eval.c (skip_debugger): Removed comment and #ifdef-ed code.
|
|
1431 (signal_call_debugger): Call skip_debugger after wants_debugger.
|
|
1432 (signal_call_debugger): Gcpro cons sent to skip_debugger.
|
|
1433
|
|
1434 1997-06-26 Steven L Baur <steve@altair.xemacs.org>
|
|
1435
|
|
1436 * process.c (create_process): Default to fork instead of vfork.
|
|
1437
|
|
1438 * callproc.c (Fcall_process_internal): Default to fork instead of
|
|
1439 vfork.
|
|
1440
|
|
1441 * emacsfns.h: Add declarations of Ferror_message_string(),
|
|
1442 Frunning_temacs_p().
|
|
1443
|
|
1444 * eval.c: Remove declarations of Ferror_message_string(),
|
|
1445 Frunning_temacs_p().
|
|
1446
|
|
1447 * Makefile.in.in (${libsrc}DOC): Correct dependency for the docfile.
|
|
1448 (${mo_dir}emacs.po): Remove obsolete references to lisp source.
|
|
1449
|
|
1450 1997-06-29 MORIOKA Tomohiko <morioka@jaist.ac.jp>
|
|
1451
|
|
1452 * mule-charset.c: Modify charset DOC-strings to be more detailed.
|
|
1453
|
165
|
1454 1997-06-25 Steven L Baur <steve@altair.xemacs.org>
|
|
1455
|
|
1456 * alloc.c (Flist): Optimize.
|
|
1457 From Hrvoje Niksic.
|
|
1458
|
|
1459 1997-06-23 Steven L Baur <steve@altair.xemacs.org>
|
|
1460
|
|
1461 * lisp.h: Get uintptr_t stuffs because it is needed for including
|
|
1462 emacsfns.h.
|
|
1463
|
|
1464 * sysdep.h: Removed uintptr_t stuffs.
|
|
1465
|
|
1466 1997-06-22 Steven L Baur <steve@altair.xemacs.org>
|
|
1467
|
|
1468 * fns.c (concat): Replace Fcar/Fcdr with XCAR/XCDR.
|
|
1469 (Fnreverse): Ditto.
|
|
1470 (internal_equal): Ditto.
|
|
1471 (internal_old_equal): Ditto.
|
|
1472 (Fnconc): Ditto.
|
|
1473 (Freverse): Saner implementation.
|
|
1474 From Hrvoje Niksic <hniksic@srce.hr>
|
|
1475
|
|
1476 * s/linux.h: getpgrp with glibc is now properly detected by
|
|
1477 configure.
|
|
1478 Suggested by Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
|
1479
|
163
|
1480 1997-06-20 Steven L Baur <steve@altair.xemacs.org>
|
|
1481
|
|
1482 * events.c: Remove declaration of Qempty.
|
|
1483
|
|
1484 1997-06-20 Olivier Galibert <Olivier.Galibert@mines.u-nancy.fr>
|
|
1485
|
|
1486 * frame-x.c, EmacsFrame.c, menubar-x.c, redisplay-x.c, scrollbar-x.c:
|
|
1487 Make 64 bit clean.
|
|
1488
|
|
1489 1997-06-19 Martin Buchholz <mrb@eng.sun.com>
|
|
1490
|
|
1491 * config.h.in:
|
|
1492 - Autodetect X defines using xmkmf.
|
|
1493 - Compute rpath on *bsd* systems as well.
|
|
1494 - rewrite PRINT_VAR m4 macro.
|
|
1495 - detect sizes of void* and long long for future use by unex*.c
|
|
1496 * regex.c: _GNU_SOURCE may be defined by config.h; don't redefine.
|
|
1497
|
|
1498 1997-06-18 Martin Buchholz <mrb@eng.sun.com>
|
|
1499
|
|
1500 * Makefile.in:
|
|
1501 * s/*.h:
|
|
1502 * m/*.h:
|
203
|
1503 * config.h.in:
|
163
|
1504 * src/emacs.c:
|
|
1505 * version.sh:
|
|
1506 * configure.in: Another rewrite.
|
|
1507 - support powerpcle (Solaris on ppc)
|
|
1508 - Now just have one s/sol2.h for all Solaris versions
|
|
1509 - Specifying colon-separated directories actually works now.
|
|
1510 - OS_RELEASE is a new define to avoid proliferation of s&m files.
|
|
1511 - extract more stuff from s&m files.
|
|
1512 - more debugging info
|
|
1513 - More changes to avoid the `echo -e' problem
|
|
1514 - Add more tests: fcntl.h AC_TYPE_*, AC_FUNC_GETPGRP
|
|
1515 - Back out -lPW test.
|
|
1516 - More paranoid xpm test
|
|
1517 - Put version information in version.sh instead of version.el
|
|
1518 - Make quoted pre-processor string tokens out of all macro values
|
|
1519 to be used only by configure.
|
|
1520 * xmu.c: DON'T use Xos.h
|
|
1521 * sysdep.c (wait_for_termination):
|
|
1522 * search.c:
|
|
1523 * editfns.c:
|
|
1524 * console-*:
|
|
1525
|
|
1526 1997-06-18 Steven L Baur <steve@altair.xemacs.org>
|
|
1527
|
|
1528 * unexelfsgi.c: Some things that Needed To Be Done(tm) into
|
|
1529 unexelfsgi:
|
|
1530 - support for .sbss section (no more -G 0 needed, 0.00001% speed
|
|
1531 increase)
|
|
1532 - support for Elf64 (64bits executables)
|
|
1533 From Olivier Galibert <Olivier.Galibert@mines.u-nancy.fr>
|
|
1534
|
|
1535 * fns.c (Fmapvector): New function converted from Lisp.
|
|
1536 From Hrvoje Niksic <hniksic@srce.hr>
|
|
1537
|
|
1538 Wed Jun 18 16:42:10 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1539
|
|
1540 * Makefile.in.in: Convert two missed C style comments.
|
|
1541 (LIBES): Remove LIBS_DEBUG which is no longer defined.
|
|
1542 (LIBES): lwlibs_libs was misspelled.
|
|
1543
|
|
1544 1997-06-17 Hrvoje Niksic <hniksic@srce.hr>
|
|
1545
|
|
1546 * eval.c (vars_of_eval): New variable Vdebug_ignored_errors.
|
|
1547 (skip_debugger): New function; use Vdebug_ignored_errors.
|
|
1548 (signal_call_debugger): Use it.
|
|
1549
|
|
1550 1997-06-17 Steven L Baur <steve@altair.xemacs.org>
|
|
1551
|
|
1552 * emacs.c (vars_of_emacs): Moved symbols emacs-version,
|
|
1553 emacs-major-version, and emacs-minor-version from version.el to
|
|
1554 here.
|
|
1555
|
|
1556 * general.c (syms_of_general): New symbols and, not, and or.
|
|
1557
|
|
1558 * emacsfns.h: New symbols Qand, Qnot, Qor.
|
|
1559
|
|
1560 * Makefile.in.in: Call temacs to compute lisp libraries to
|
|
1561 include in the DOC file.
|
|
1562
|
|
1563 1997-06-15 Steven L Baur <steve@altair.xemacs.org>
|
|
1564
|
|
1565 * Makefile.in.in (lisp): Remove explicit mention of auto-autoloads.el.
|
|
1566
|
|
1567 Sat Jun 14 21:55:27 1997 Kyle Jones <kyle_jones@wonderworks.com>
|
|
1568
|
|
1569 * console.c (Fselect_console):
|
|
1570 Check DEVICE_SELECTED_FRAME of console's selected
|
|
1571 device for non-nil value before using it as a frame.
|
|
1572
|
161
|
1573 1997-06-13 Steven L Baur <steve@altair.xemacs.org>
|
|
1574
|
|
1575 * data.c (eq_with_ebola_notice): Remove horrible hack to avoid
|
|
1576 unavoidable Ebola notices in the bytecompiler.
|
|
1577
|
|
1578 * emacsfns.h: Fextent_in_region_p: Move.
|
|
1579
|
|
1580 * keymap.c Fextent_in_region_p: Move.
|
|
1581
|
|
1582 Fri Jun 13 00:38:29 1997 Kyle Jones <kyle_jones@wonderworks.com>
|
|
1583
|
|
1584 * src/console.c (Fsuspend_console):
|
|
1585 Disable input on ttys. Hide unhidden frames.
|
|
1586
|
|
1587 * src/console.c (Fresume_console):
|
|
1588 Enable input on ttys. Raise the device selected frame.
|
|
1589
|
|
1590 Fri Jun 13 00:25:46 1997 Kyle Jones <kyle_jones@wonderworks.com>
|
|
1591
|
|
1592 * process.c (status_notify):
|
|
1593 Revert back to the code that does not use
|
|
1594 save_excursion_restore. Just bounds check opoint
|
|
1595 instead.
|
|
1596
|
|
1597 * process.c (read_process_output):
|
|
1598 Bounds check saved clip region and point values for
|
|
1599 validity before using them. Call Fwiden before calling
|
|
1600 Fnarrow_to_region to insure values will not be out of
|
|
1601 range.
|
|
1602
|
|
1603 1997-06-12 Steven L Baur <steve@altair.xemacs.org>
|
|
1604
|
|
1605 * alloc.c: Make the GC cursor appear on all frames.
|
|
1606 From Hrvoje Niksic <hniksic@srce.hr>
|
|
1607
|
|
1608 1997-06-11 Steven L Baur <steve@altair.xemacs.org>
|
|
1609
|
|
1610 * data.c (eq_with_ebola_notice): Add byte-optimize-logmumble and
|
|
1611 byte-compile-push-constant to list of ignored functions.
|
|
1612
|
|
1613 1997-06-11 Hrvoje Niksic <hniksic@srce.hr>
|
|
1614
|
|
1615 * bytecode.c (Bsave_current_buffer): Register.
|
|
1616 (Fbyte_code): Do action.
|
|
1617
|
|
1618 * editfns.c (Fsave_current_buffer): New SUBR.
|
|
1619
|
159
|
1620 1997-06-11 Steven L Baur <steve@altair.xemacs.org>
|
|
1621
|
|
1622 * syntax.c (Fchar_syntax): Handle case of being passed nil.
|
|
1623
|
|
1624 * data.c (eq_with_ebola_notice): Add more legitimate places in the
|
|
1625 bytecompiler that should not get Ebola notices.
|
|
1626
|
|
1627 Tue Jun 10 00:34:40 1997 Kyle Jones <kyle_jones@wonderworks.com>
|
|
1628
|
|
1629 * process.c (status_notify):
|
|
1630 Use record_unwind_protect and save_excursion_restore to
|
|
1631 handle the point and buffer restoration. Cleaner. Doesn't
|
|
1632 crash the editor if before/after-change-functions change
|
|
1633 things behind our back.
|
|
1634
|
|
1635 1997-06-10 Steven L Baur <steve@altair.xemacs.org>
|
|
1636
|
|
1637 * data.c (vars_of_data): Set Ebola warning backtrace limit to 16.
|
|
1638 (eq_with_ebola_notice): Bypass Ebola warnings for special
|
|
1639 bytecompiler functions where they are 100% spurioius.
|
|
1640
|
|
1641 1997-06-11 MORIOKA Tomohiko <morioka@jaist.ac.jp>
|
|
1642
|
|
1643 * Makefile.in.in: Use lisp/mule/language/misc-lang.el instead of
|
|
1644 lisp/mule/ipa-hooks.el.
|
|
1645
|
|
1646 1997-06-10 MORIOKA Tomohiko <morioka@jaist.ac.jp>
|
|
1647
|
|
1648 * Makefile.in.in: Use lisp/mule/language/thai.elc instead of
|
|
1649 lisp/mule/thai-hooks.elc.
|
|
1650
|
|
1651 1997-06-09 MORIOKA Tomohiko <morioka@jaist.ac.jp>
|
|
1652
|
|
1653 * Makefile.in.in: Use lisp/mule/language/chinese.el,
|
|
1654 lisp/mule/language/cyrillic.el, lisp/mule/language/european.el,
|
|
1655 lisp/mule/language/greek.el, lisp/mule/language/japanese.el and
|
|
1656 lisp/mule/language/korean.el instead of
|
|
1657 lisp/mule/chinese-hooks.el, lisp/mule/cyrillic-hooks.el,
|
|
1658 lisp/mule/european-hooks.el, lisp/mule/greek-hooks.el,
|
|
1659 lisp/mule/japanese-hooks.el and lisp/mule/korean-hooks.el.
|
|
1660
|
157
|
1661 1997-06-09 Steven L Baur <steve@altair.xemacs.org>
|
|
1662
|
|
1663 * keymap.c: Declare Fextent_in_region_p.
|
|
1664
|
|
1665 * s/linux.h: Can't use ORDINARY_LINK in linux until usage of -lPW
|
|
1666 is determined more sensibly.
|
|
1667
|
|
1668 1997-06-09 Hrvoje Niksic <hniksic@srce.hr>
|
|
1669
|
|
1670 * keydefs.c (get_relevant_extent_keymaps): Choose correct keymap
|
|
1671 at extent boundaries.
|
|
1672
|
|
1673 Mon Jun 9 19:35:19 1997 Kyle Jones <kyle_jones@wonderworks.com>
|
|
1674
|
|
1675 * redisplay.c (pixel_to_glyph_translation):
|
|
1676 Fixed off by one error in computation of closest
|
|
1677 position when mouse is in the frame's right-side
|
|
1678 border area.
|
|
1679
|
|
1680 Sat Jun 7 22:07:41 1997 Kyle Jones <kyle_jones@wonderworks.com>
|
|
1681
|
|
1682 * frame.c (delete_frame_internal):
|
|
1683 Calling Fselect_frame isn't sufficient to set the
|
|
1684 frame device's selected frame if the frame we're
|
|
1685 selecting is on a different device. Call
|
|
1686 set_device_selected_frame apprpriately in that case.
|
|
1687 Also don't set the frame device's selected frame to a
|
|
1688 frame that's on another device.
|
|
1689
|
|
1690 1997-06-09 Steven L Baur <steve@altair.xemacs.org>
|
|
1691
|
|
1692 * sysdep.c: MS Windows NT doesn't (yet) do child TTY processes.
|
|
1693 From David Hobley <davidh@wr.com.au>
|
|
1694
|
|
1695 Sat Jun 7 22:00:54 1997 Kyle Jones <kyle_jones@wonderworks.com>
|
|
1696
|
|
1697 * src/device-x.c (x_delete_device):
|
|
1698 Add an EQ check so that we don't set Vdefault_x_device
|
|
1699 back to the device we're deleting.
|
|
1700
|
155
|
1701 1997-06-05 Steven L Baur <steve@altair.xemacs.org>
|
|
1702
|
|
1703 * frame.c (Fmake_frame): Correct checking of first_frame_on_device.
|
|
1704 From Hrvoje Niksic <hniksic@srce.hr>
|
|
1705
|
|
1706 1997-06-04 Steven L Baur <steve@altair.xemacs.org>
|
|
1707
|
|
1708 * device.c (delete_deviceless_console): New function.
|
|
1709 (Fmake_device): Use it. Fix problem of creation of a frame on a
|
|
1710 tty where something fails during initialization.
|
|
1711 From Kyle Jones <kyle_jones@wonderworks.com>
|
|
1712
|
|
1713 * specifier.c (Fboolean_specifier_p): Correct spelling in
|
|
1714 Docstring (synch from Infodock 3.5).
|
|
1715
|
|
1716 * frame.c: Update docstring.
|
|
1717
|
|
1718 1997-06-03 Hrvoje Niksic <hniksic@srce.hr>
|
|
1719
|
|
1720 * sysdep.c (tty_init_sys_modes_on_device): Initialize it.
|
|
1721
|
|
1722 * console.c (complex_vars_of_console): New variable
|
|
1723 `tty-erase-char'.
|
|
1724
|
|
1725 * conslots.h (MARKED_SLOT): New slot.
|
|
1726
|
|
1727 Mon Jun 2 02:49:44 1997 Kyle Jones <kyle_jones@wonderworks.com>
|
|
1728
|
|
1729 * frame.c, frame-tty.c
|
|
1730 Treat tty frames like a cross between stacked window
|
|
1731 system frames and frames on virtual displays. All
|
|
1732 frames but the top frame are visible but hidden by
|
|
1733 default. next-frame and previous-frame now skip
|
|
1734 invisible tty frames by default. raise-frame and
|
|
1735 lower-frame now control whether a frame is hidden
|
|
1736 instead of whether it is visible. Frames are no
|
|
1737 longer automatically raised when they are selected.
|
|
1738 After a raise/lower operation selection of the new
|
|
1739 topmost frame is deferred until a selection magic
|
|
1740 event is read.
|
|
1741
|
|
1742 Sat May 31 19:59:49 1997 Kyle Jones <kyle_jones@wonderworks.com>
|
|
1743
|
|
1744 * frame-tty.c (tty_init_frame_3:
|
|
1745 Defer selection of the newly created frame until
|
|
1746 an event is read.
|
|
1747
|
|
1748 1997-06-02 Steven L Baur <steve@altair.xemacs.org>
|
|
1749
|
|
1750 * search.c (REGEXP_CACHE_SIZE): Bump to 20.
|
|
1751 Suggested by Karl M. Hegbloom <karlheg@inetarena.com>
|
|
1752
|
|
1753 1997-05-30 Steven L Baur <steve@altair.xemacs.org>
|
|
1754
|
|
1755 * device-tty.c (tty_asynch_device_change):
|
|
1756 * gpmevent.c (connect_to_gpm): Makes it so it doesn't **ck up the
|
|
1757 mouse stuff on an XTerm, and resets the internal GPM variables for
|
|
1758 the width and height of the screen when we get a sigwinch.
|
|
1759 From William M. Perry <wmperry@aventail.com>
|
|
1760
|
153
|
1761 1997-05-29 Steven L Baur <steve@altair.xemacs.org>
|
|
1762
|
|
1763 * eval.c (Fprogn): Delete mocklisp support.
|
|
1764 (Fwhile): Ditto.
|
|
1765 (Fcommandp): Ditto.
|
|
1766 (Feval): Ditto.
|
|
1767 (funcall_recording_as): Ditto.
|
|
1768 (funcall_lambda): Ditto.
|
|
1769
|
|
1770 * elhash.c (verify_function): Delete mocklisp support.
|
|
1771
|
|
1772 * doc.c (Fdocumentation): Delete mocklisp support.
|
|
1773
|
|
1774 * data.c (wrong_type_argument): Delete mocklisp support.
|
|
1775
|
|
1776 * config.h.in: Delete mocklisp support.
|
|
1777
|
|
1778 * callint.c (Fcall_interactively): Delete mocklisp support.
|
|
1779
|
|
1780 * emacs.c (main_1): Delete mocklisp initialization.
|
|
1781
|
|
1782 * symsinit.h: Delete mocklisp.c decls.
|
|
1783
|
|
1784 * Makefile.in.in: Delete mocklisp stuffs.
|
|
1785
|
|
1786 Thu May 29 03:00:16 1997 Kyle Jones <kyle@crystal.wonderworks.com>
|
|
1787
|
|
1788 * frame.c (change_frame_size_1):
|
|
1789 Drop code that returns immediately if the old frame
|
|
1790 size is equal to the new.
|
|
1791 Leave the minibuffer height the same if the frame has
|
|
1792 been initialized, and the minibuffer height is tall
|
|
1793 enough to display at least one line of text in the default
|
|
1794 font, and the old minibuffer height is a multiple of the
|
|
1795 default font height. This should cause the minibuffer
|
|
1796 height to be recomputed on font changes but not for
|
|
1797 other frame size changes, which seems reasonable.
|
|
1798
|
|
1799 1997-05-26 Steven L Baur <steve@altair.xemacs.org>
|
|
1800
|
|
1801 * event-stream.c (Frecent_keys): Take optional parameter to
|
|
1802 indicate how many keystrokes to return.
|
|
1803 (Frecent_keys_ring_size): New function returns the maximum number
|
|
1804 of events `recent-keys' can return.
|
|
1805 (Fset_recent_keys_ring_size): New function. Modifies the above.
|
|
1806
|
|
1807 From Hrvoje Niksic <hniksic@srce.hr>
|
|
1808
|
|
1809 * event-stream.c: New variable recent_keys_ring_size replacing a
|
|
1810 hard-coded macro.
|
|
1811
|
|
1812 1997-05-23 Steven L Baur <steve@altair.xemacs.org>
|
|
1813 From Hrvoje Niksic <hniksic@srce.hr>
|
|
1814
|
|
1815 * sysdep.c: Correction of subprocess support when compiling
|
|
1816 without ttys.
|
|
1817
|
151
|
1818 1997-05-21 Steven L Baur <steve@altair.xemacs.org>
|
|
1819
|
|
1820 * editfns.c (format-time-string): Update DOCstring. Make time
|
|
1821 parameter optional.
|
|
1822
|
|
1823 Wed May 21 11:58:17 1997 Kyle Jones <kyle@crystal.wonderworks.com>
|
|
1824
|
|
1825 * src/insdel.c (signal_first_change):
|
|
1826 record the current buffer for the unwind instead of the
|
|
1827 buffer that's about to become the current buffer.
|
|
1828
|
|
1829 Tue May 20 23:23:39 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1830
|
|
1831 * frame.c: Correct spelling typo in docstring.
|
|
1832
|
|
1833 Mon May 19 03:40:46 1997 Kyle Jones <kyle@crystal.WonderWorks.COM>
|
|
1834
|
|
1835 * src/redisplay.c: (window_line_number)
|
|
1836 don't prefer buffer point value over window point
|
|
1837 value unless window, frame, device and console are
|
|
1838 all selected.
|
|
1839
|
|
1840 * src/redisplay.c: (redisplay_window)
|
|
1841 don't prefer buffer point value over window point
|
|
1842 value unless window, frame, device and console are
|
|
1843 all selected.
|
|
1844
|
|
1845 * src/redisplay.c: (create_text_block)
|
|
1846 don't prefer buffer point value over window point
|
|
1847 value unless window, frame, device and console are
|
|
1848 all selected.
|
|
1849
|
|
1850 Sun May 18 13:03:50 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1851
|
|
1852 * Makefile.in.in (distclean): remove xemacs-version.h.
|
|
1853
|
149
|
1854 Sun May 11 13:38:46 1997 Kyle Jones <kyle@crystal.WonderWorks.COM>
|
|
1855
|
|
1856 * src/frame.c (change_frame_size_1):
|
|
1857 return without doing anything if the frame has benn
|
|
1858 initialized and the new frame size is same as the
|
|
1859 current frame size.
|
|
1860
|
|
1861 Sat May 17 19:35:48 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1862
|
|
1863 * device-tty.c (tty_asynch_device_change): Make
|
|
1864 `no-redraw-on-reenter' work. Patch from Hrvoje Niksic.
|
|
1865
|
|
1866 Sat May 17 23:39:03 1997 Hrvoje Niksic <hniksic@srce.hr>
|
|
1867
|
|
1868 * frame-tty.c: Support multiple frames.
|
|
1869
|
|
1870 * redisplay.c (decode_mode_spec): New coding `%N'.
|
|
1871
|
146
|
1872 Sun May 11 23:36:08 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1873
|
|
1874 * buffer.c: Rename Vdelete_auto_save_files to coding standards.
|
|
1875
|
|
1876 * frame.c: Rename Vallow_deletion_of_last_visible_frame to coding
|
|
1877 standards.
|
|
1878
|
142
|
1879 Thu May 8 19:10:03 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1880
|
|
1881 * frame.c: Change internal type of
|
|
1882 `allow-deletion-of-last-visible-frame' to boolean.
|
|
1883
|
|
1884 * buffer.c: Change internal type of `delete-auto-save-files' to
|
|
1885 boolean.
|
|
1886
|
|
1887 Sat May 3 15:28:56 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1888
|
|
1889 * redisplay.c: `column-number-start-at-one' is a user customizable
|
|
1890 variable.
|
|
1891
|
|
1892 * event-stream.c (vars_of_event_stream): `focus-follows-mouse' is
|
|
1893 a user customizable variable.
|
|
1894
|
|
1895 * cmds.c (vars_of_cmds): `signal-error-on-buffer-boundary' is a
|
|
1896 user customizable variable.
|
|
1897
|
|
1898 * lread.c (parse_integer): Fix incorrect upper bounds on loop.
|
|
1899
|
140
|
1900 Thu May 1 18:59:20 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1901
|
|
1902 * glyphs-x.c (Fmake_subwindow): Update error message.
|
|
1903
|
|
1904 Wed Apr 30 18:07:18 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1905
|
|
1906 * lread.c: New variable featurep.
|
|
1907 (read1): Add processing for #- and #+.
|
|
1908 (read_list_conser): Handle case where a feature test has removed a
|
|
1909 portion of the input stream.
|
|
1910 (vars_of_lread): New feature `xemacs'.
|
|
1911
|
|
1912 * fns.c (Ffeaturep): Remove function when using #-, #+ feature
|
|
1913 reader syntax.
|
|
1914
|
|
1915 * Makefile.in.in (lisp): Put features.elc in the dump list.
|
|
1916
|
|
1917 Thu May 1 05:24:25 1997 Hrvoje Niksic <hniksic@srce.hr>
|
|
1918
|
|
1919 * buffer.c (Fmake_indirect_buffer): Don't pretend it's there.
|
|
1920
|
138
|
1921 Fri Apr 25 10:53:07 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1922
|
|
1923 * glyphs-x.c: libpng already includes setjmp.h, so don't attempt
|
|
1924 to include it twice.
|
|
1925
|
|
1926 Thu Apr 24 09:14:13 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1927
|
|
1928 * balloon-x.c (vars_of_balloon_x): Don't override advertised and
|
|
1929 supported balloon-help.
|
|
1930
|
136
|
1931 Tue Apr 22 11:54:02 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1932
|
|
1933 * emacs.c (main_1): Add syms_of_balloon_x and guard with
|
|
1934 HAVE_X_WINDOWS.
|
|
1935 (main_1): Add vars_of_balloon_x and guard with HAVE_X_WINDOWS.
|
|
1936
|
|
1937 * process.c (get_process): This function can be passed a BUFFER as
|
|
1938 a parameter.
|
|
1939
|
|
1940 Tue Apr 22 01:32:00 1997 Kyle Jones <kyle@crystal.WonderWorks.COM>
|
|
1941
|
|
1942 * src/menubar-x.c (pre_activate_hook):
|
|
1943 set in_menu_callback around call to call to
|
|
1944 menu_item_descriptor_to_widget_value.
|
|
1945
|
|
1946 * src/event-stream.c (Fnext_event):
|
|
1947 signal error if in_menu_callback non-nil to avoid
|
|
1948 reentering the menubar code and causing a crash later.
|
|
1949
|
|
1950 * src/cmdloop.c (command_loop_3):
|
|
1951 signal error if in_menu_callback non-nil to avoid
|
|
1952 inflooping calling Fnext_event, which will signal an
|
|
1953 error if the situation is not caught earlier.
|
|
1954
|
|
1955 Tue Apr 22 08:22:22 1997 Hrvoje Niksic <hniksic@srce.hr>
|
|
1956
|
|
1957 * balloon-x.c, balloon_help.c, balloon_help.h: Modified to conform
|
|
1958 to XEmacs coding standards.
|
|
1959
|
134
|
1960 Thu Apr 17 17:16:34 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1961
|
|
1962 * balloon-x.c: New file from Douglas Keller.
|
|
1963
|
|
1964 * balloon_help.c: New file from Douglas Keller.
|
|
1965
|
|
1966 * balloon_help.h: New file from Douglas Keller.
|
|
1967
|
126
|
1968 Sun Apr 13 09:56:54 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1969
|
|
1970 * emacs.c (shut_down_emacs): Advertise using send-pr as the
|
|
1971 mechanism for submitting a bug report.
|
|
1972
|
|
1973 * Makefile.in.in: Handle pathological case of mis-autodetected
|
|
1974 TOOLTALK.
|
|
1975
|
|
1976 Sun Apr 13 11:33:34 1997 David Moore <dmoore@ucsd.edu>
|
|
1977
|
|
1978 * regex.c (re_search_2): Prevent incorrect matching and infinite
|
|
1979 loop with \\` and MULE.
|
|
1980
|
124
|
1981 Sat Apr 12 05:57:51 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
1982
|
|
1983 * Makefile.in.in (lisp): Dump cus-start.elc with XEmacs.
|
|
1984
|
|
1985 * event-Xt.c (x_to_emacs_keysym): Allow for dead keys. (Patch
|
|
1986 from Joachim Schnitter).
|
|
1987
|
|
1988 * Makefile.in.in: Allow native sound for BSD/I.
|
|
1989
|
|
1990 * linuxplay.c: Rename global sndbuf to linuxplay_sndbuf.
|
|
1991 Make sndbuf, mix_fd, audio_vol, audio_fd, audio_dev non-static to
|
|
1992 avoid dump time lossage.
|
|
1993 (sndcnv8U_2mono): Rename global sndbuf to linuxplay_sndbuf.
|
|
1994 (sndcnv8S_2mono): Ditto.
|
|
1995 (sndcnv2monounsigned): Ditto.
|
|
1996 (sndcnv2unsigned): Ditto.
|
|
1997 (sndcnvULaw_2mono): Ditto.
|
|
1998 (sndcnv16_2monoLE): Ditto.
|
|
1999 (sndcnv16_2monoBE): Ditto.
|
|
2000 (sndcnv2byteLE): Ditto.
|
|
2001 (sndcnv2byteBE): Ditto.
|
|
2002 (sndcnv2monobyteLE): Ditto.
|
|
2003 (sndcnv2monobyteBE): Ditto.
|
|
2004 (linux_play_data_or_file): Ditto.
|
|
2005 (linux_play_data_or_file): Ditto.
|
|
2006 (linux_play_data_or_file): Ditto.
|
|
2007
|
|
2008 Sat Apr 12 01:59:14 1997 Kyle Jones <kyle_jones@WonderWorks.COM>
|
|
2009
|
|
2010 * glyphs-x.c, glyphs.c, glyphs.h: Added domain parameter to all
|
|
2011 image *_instantiate functions so that the domsin is available to
|
|
2012 specifier lookups in the various instantiator functions. Passed
|
|
2013 domain argument to extract_xpm_color_names for the
|
|
2014 Fspecifier_instance call.
|
|
2015
|
|
2016 Fri Apr 11 20:02:40 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2017
|
|
2018 * glyphs-x.c (extract_xpm_color_names): Add checking to handle
|
|
2019 case for when XEmacs is in initialization.
|
|
2020
|
|
2021 * events.c (Fevent_type): Remove handling for dead_event.
|
|
2022 (Fevent_properties): Remove handling for dead_event.
|
|
2023
|
|
2024 Thu Apr 10 20:41:53 1997 David Moore <dmoore@ucsd.edu>
|
|
2025
|
|
2026 * ntproc.c (sys_spawnve): Clean up GC protection.
|
|
2027
|
|
2028 * fileio.c (Ffile_executable_p): Clean up GC protection.
|
|
2029
|
122
|
2030 Thu Apr 10 12:48:49 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2031
|
|
2032 * glyphs.c: Undo duplicate declaration of display_table.
|
|
2033
|
|
2034 * glyphs.h: Back out name change of autodetect to
|
|
2035 automatic_conversion.
|
|
2036
|
|
2037 * glyphs.c: Back out name change of autodetect to
|
|
2038 automatic_conversion.
|
|
2039
|
|
2040 * glyphs-x.c (image_instantiator_format_create_glyphs_x): Back out
|
|
2041 name change of autodetect to automatic_conversion.
|
|
2042
|
|
2043 * events.c (Fevent_properties): Do something sensible for
|
|
2044 dead_event and empty_event.
|
|
2045
|
|
2046 * general.c: Restore autodetect symbol.
|
|
2047
|
|
2048 * emacsfns.h: Declare new symbol Qempty.
|
|
2049
|
|
2050 * general.c: Add symbol to identify empty events.
|
|
2051
|
|
2052 * events.c (Fevent_type): Don't abort() when presented with an
|
|
2053 empty_event or a dead_event.
|
|
2054
|
120
|
2055 Mon Apr 7 18:12:26 1997 David Moore <dmoore@ucsd.edu>
|
|
2056
|
|
2057 * xmu.c: Renamed local `initialized' variable to `hex_initialized'
|
|
2058 and don't assign to static, as some compilers crash.
|
|
2059 (initHexTable): Use it.
|
|
2060 (XmuReadBitmapData): Use it.
|
|
2061
|
|
2062 Sun Apr 6 18:03:47 1997 David Moore <dmoore@ucsd.edu>
|
|
2063
|
|
2064 * fileio.c (Fexpand_file_name): Clean up GC protection.
|
|
2065
|
|
2066 * dired.c (Fdirectory_files): Clean up GC protection.
|
|
2067
|
|
2068 * insdel.c (signal_after_change): Don't run after_change_functions
|
|
2069 on special Vprin1_to_string_buffer.
|
|
2070 (signal_before_change): Ditto for before_change_functions.
|
|
2071
|
|
2072 Fri Apr 4 14:41:17 1997 David Moore <dmoore@ucsd.edu>
|
|
2073
|
|
2074 * buffer.c (Fkill_buffer): Don't kill special
|
|
2075 Vprin1_to_string_buffer.
|
|
2076
|
|
2077 Mon Apr 7 19:13:40 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2078
|
|
2079 * Makefile.in.in (xemacs-version.h): Added to rename main_1 to
|
|
2080 something reflecting the XEmacs version in use (for lusers
|
|
2081 reporting crashes who forget to include the version number).
|
|
2082
|
|
2083 * toolbar.c (specifier_vars_of_toolbar): Strip HAVE_NEXTSTEP.
|
|
2084
|
|
2085 * sound.c: Strip HAVE_NEXTSTEP.
|
|
2086
|
|
2087 * redisplay.c (init_redisplay): Strip HAVE_NEXTSTEP.
|
|
2088
|
|
2089 * faces.c: Strip HAVE_NEXTSTEP.
|
|
2090 (update_EmacsFrame): Ditto.
|
|
2091
|
|
2092 * events.c (event_equal): Strip HAVE_NEXTSTEP.
|
|
2093 (event_hash): Ditto.
|
|
2094 (format_event_object): Ditto.
|
|
2095
|
|
2096 * event-stream.c (init_event_stream): Strip HAVE_NEXTSTEP.
|
|
2097
|
|
2098 * emacs.c (main_1): Strip HAVE_NEXTSTEP.
|
|
2099 Attempt hack to change name of main_1 to something reflecting the
|
|
2100 current version for lusers who don't include version numbers with
|
|
2101 stack backtraces.
|
|
2102
|
|
2103 * device.c: Strip HAVE_NEXTSTEP.
|
|
2104
|
|
2105 * console.c (Fconsole_type): Remove reference to unimplemented ns
|
|
2106 windows type.
|
|
2107
|
|
2108 Sun Apr 6 08:08:33 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2109
|
|
2110 * frame.h: Strip NeXTStep stuff.
|
|
2111
|
|
2112 * device.h: Strip NeXTStep stuff.
|
|
2113
|
|
2114 * console.h: More NeXTStep trimming.
|
|
2115
|
|
2116 * console-x.h: Strip Epoch stuff.
|
|
2117
|
|
2118 * symsinit.h (init_sunpro): Strip vms/Epoch stuff.
|
|
2119
|
|
2120 * events.h (union magic_data): Strip NeXTStep stuff.
|
|
2121
|
|
2122 * console.h: Strip NeXTStep stuff.
|
|
2123
|
|
2124 * config.h.in: Strip unimplemented NeXTStep/Epoch stuff out.
|
|
2125
|
|
2126 * Makefile.in.in: Remove unused NeXTStep support. It's all in the
|
|
2127 cvs attic if someone wishes to revive it.
|
|
2128 (epoch.o): Remove last vestiges of non-existent epoch support.
|
|
2129
|
|
2130 Sat Apr 5 17:16:49 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2131
|
|
2132 * fns.c: Correct DOC string to not equate integers and
|
|
2133 characters.
|
|
2134
|
118
|
2135 Thu Apr 3 08:01:50 1997 Steve Carney <carney@gvc.dec.com>
|
|
2136
|
|
2137 * s/decosf4.0-static.h: New file.
|
|
2138
|
|
2139 Tue Apr 1 12:22:32 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2140
|
|
2141 * config.h.in: MAIL_USE_POP, KERBEROS, HESIOD -- new parameters to
|
|
2142 deal with upgraded movemail.c.
|
|
2143
|
|
2144 Fri Mar 28 19:25:22 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2145
|
|
2146 * inline.c: Restore this blasphemous file.
|
|
2147
|
|
2148 * Makefile.in.in (inline.o): Restore the bletcherous
|
|
2149 inline.c.
|
|
2150
|
116
|
2151 Tue Mar 25 11:36:08 1997 David Moore <dmoore@ucsd.edu>
|
|
2152
|
|
2153 * fileio.c (barf_or_query_if_file_exists): GC fixes.
|
|
2154 (Ffile_readable_p): ditto.
|
|
2155 (Ffile_writable_p): ditto.
|
|
2156 (Ffile_symlink_p): ditto.
|
|
2157 (Ffile_accessible_directory_p): ditto.
|
|
2158
|
|
2159 * sound.c (Fplay_sound_file): Fix up gc problems with file
|
|
2160 handlers.
|
|
2161
|
|
2162 * buffer.c (Fkill_buffer): Fix up buffer killing problems with
|
|
2163 file handlers.
|
|
2164
|
|
2165 * sysdep.c (sys_subshell): Fix up gc problems with file handlers.
|
|
2166
|
|
2167 * callproc.c (Fcall_process_internal): Fix up gc problems with
|
|
2168 file handlers.
|
|
2169 Tue Mar 25 17:16:14 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2170
|
|
2171 * ralloc.c (MHASH): Make 64bit Alpha happier.
|
|
2172
|
|
2173 Tue Mar 25 11:36:08 1997 David Moore <dmoore@ucsd.edu>
|
|
2174
|
|
2175 * fileio.c (auto_save_expand_name_error): New function.
|
|
2176 (auto_save_expand_name): Ditto.
|
|
2177 (Fdo_auto_save): Protect against an error in Fexpand_file_name
|
|
2178 from kicking us inappropriately out of auto-save.
|
|
2179
|
|
2180 Mon Mar 24 21:50:13 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2181
|
|
2182 * s/linux.h (GETPGRP_NEEDS_ARG): Define if compiling with glibc
|
|
2183 2.1 (suggested by Andreas Jaeger).
|
|
2184
|
|
2185 Mon Mar 24 12:40:56 1997 David Moore <dmoore@ucsd.edu>
|
|
2186
|
|
2187 * profile.c: Fixed some comments about GC status of functions.
|
|
2188
|
|
2189 * profile.c (inside_profiling): New variable to lock the
|
|
2190 profiling table.
|
|
2191 (sigprof_handler): Check it.
|
|
2192 (Fget_profiling_info): Set it.
|
|
2193 (mark_profiling_info): Set it.
|
|
2194 (Fclear_profiling_info): Set it.
|
|
2195
|
|
2196 * eval.c (PUSH_BACKTRACE): New macro.
|
|
2197 (POP_BACKTRACE): Ditto.
|
|
2198
|
|
2199 * eval.c (Fcommand_execute): Use them and fix problem with
|
|
2200 backtrace_list build ordering requirements for profiling code.
|
|
2201 (Feval): Ditto.
|
|
2202 (funcall_recording_as): Ditto.
|
|
2203
|
114
|
2204 Fri Mar 21 20:19:09 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2205
|
|
2206 * Makefile.in.in: strip inline.o.
|
|
2207
|
|
2208 Fri Mar 21 18:54:04 1997 David Moore <dmoore@ucsd.edu>
|
|
2209
|
|
2210 * fileio.c (call2_check_string_or_nil): New function.
|
|
2211 (Ffile_name_directory): Use it.
|
|
2212 (Fsubstitute_in_file_name): Use it.
|
|
2213
|
|
2214 * fileio.c (Fexpand_file_name): GC protect against file handlers.
|
|
2215 (Fdelete_file): ditto
|
|
2216 (Ffile_writable_p): ditto
|
|
2217 (Ffile_directory_p): ditto
|
|
2218 (Ffile_regular_p): ditto
|
|
2219 (Fset_file_modes): ditto
|
|
2220 (Ffile_newer_than_file_p): ditto
|
|
2221 (Fset_visited_file_modtime): ditto
|
|
2222
|
|
2223 *fileio.c (Ffile_truename): Unneccessary GC protection.
|
|
2224 (Fdelete_directory): Fix broken caller-must-GC-protect call.
|
|
2225
|
|
2226 * filelock.c (lock_file): New comments warning that this function
|
|
2227 may kill the current buffer.
|
|
2228 (unlock_file): ditto
|
|
2229 (Flock_buffer): ditto
|
|
2230 (Funlock_buffer): ditto
|
|
2231 (unlock_buffer): ditto
|
|
2232
|
|
2233 * filelock.c (unlock_all_files): GC protect against unlock_file
|
|
2234 killing random buffers.
|
|
2235
|
|
2236 * buffer.c (Fkill_buffer): GC protect against unlock_file killing
|
|
2237 the buffer.
|
|
2238
|
|
2239 * insdel.c (prepare_to_modify_buffer): GC protect against
|
|
2240 lock_file() killing the buffer.
|
|
2241
|
|
2242 Fri Mar 21 19:11:15 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2243
|
|
2244 * mule-coding.c (vars_of_mule_coding): Add
|
|
2245 enable-multibyte-characters for MULE compatibility.
|
|
2246
|
|
2247 Thu Mar 20 13:25:26 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2248
|
|
2249 * glyphs-x.c: Implement a dummy function to insert a fake EOI
|
|
2250 marker if called. Based on code from William Perry.
|
|
2251
|
|
2252 Wed Mar 19 10:49:05 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2253
|
|
2254 * menubar-x.c (pre_activate_callback): Attempt to avoid recursive
|
|
2255 expansion of submenus via :filter expansion.
|
|
2256
|
|
2257 * glyphs-x.c (x_print_image_instance): Move define of
|
|
2258 HAVE_SUBWINDOWS to glyphs-x.h.
|
|
2259 (our_skip_input_data): Implement with some error checking based on
|
|
2260 patch by Dominic Froud.
|
|
2261
|
|
2262 * glyphs-x.h (HAVE_SUBWINDOWS): Define to keep inline.c from
|
|
2263 barfing.
|
|
2264
|
|
2265 Tue Mar 18 11:15:23 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2266
|
|
2267 * glyphs-x.c: Strip unimplemented subwindows code.
|
|
2268
|
112
|
2269 Mon Mar 17 15:40:12 1997 David Moore <dmoore@ucsd.edu>
|
|
2270
|
|
2271 * glyphs-x.c (our_own_dgif_slurp_from_gif2x11_c): Only get the
|
|
2272 first image out of a multi-image or animated gif.
|
|
2273
|
|
2274 Mon Mar 17 15:27:26 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2275
|
|
2276 * Makefile.in.in (xemacs): Invert sense of test for successful
|
|
2277 completion of XEmacs dump.
|
|
2278
|
110
|
2279 Sat Mar 15 14:21:39 1997 David Moore <dmoore@ucsd.edu>
|
|
2280
|
|
2281 * fileio.c (Fdo_auto_save): Protect against file handlers which
|
|
2282 may kill the buffer being saved or otherwise modify Vbuffer_alist.
|
|
2283
|
|
2284 Sat Mar 15 15:32:51 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2285
|
|
2286 * Makefile.in.in (lisp): Add auto-customize.elc.
|
|
2287
|
|
2288 Fri Mar 14 19:10:37 1997 David Moore <dmoore@ucsd.edu>
|
|
2289
|
|
2290 * extents.c (extent_changed_for_redisplay): New parameter.
|
|
2291 (extent_changed_for_redisplay): Notify redisplay if invisible text
|
|
2292 has become visible.
|
|
2293 (extent_maybe_changed_for_redisplay): New parameter.
|
|
2294 (extent_attach): Use it.
|
|
2295 (extent_detach): Use it.
|
|
2296 (Fset_extent_parent): Use it.
|
|
2297 (set_extent_invisible): Use visibility change parameter.
|
|
2298 (Fset_extent_face): Ditto.
|
|
2299 (Fset_extent_mouse_face): Ditto.
|
|
2300 (set_extent_glyph): Ditto.
|
|
2301 (do_highlight): Ditto.
|
|
2302
|
|
2303 Thu Mar 13 10:40:37 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2304
|
|
2305 * s/sunos4-1-4-shr.h: New file.
|
|
2306
|
|
2307 * s/sunos4-1-4.h: New file.
|
|
2308
|
|
2309 * s/sunos4-1.h (BROKEN_SIGIO): Define.
|
|
2310
|
|
2311 Wed Mar 12 14:29:40 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2312
|
|
2313 * emacs.c (fatal_error_signal): (mostly) useless check on
|
|
2314 /usr/proc/bin/pstack removed.
|
|
2315
|
|
2316 * s/bsdos3.h: New file for BSDI 3.0.
|
|
2317
|
|
2318 * editfns.c (Fchar_equal): Correct DOC string.
|
|
2319 (Fchar_Equal): (char=) CL Case sensitve comparison added.
|
|
2320
|
|
2321 * data.c (Fcharacterp): Make DOC string less confrontational.
|
|
2322
|
|
2323 Mon Mar 10 23:51:04 1997 Martin Buchholz <mrb@eng.sun.com>
|
|
2324
|
|
2325 * input-method-motif.c (XIM_init_frame): Fix XIM crash on some
|
|
2326 versions of X11R6 XIM.
|
|
2327
|
|
2328 Sun Mar 9 21:46:53 1997 Tomasz J. Cholewo <t.cholewo@ieee.org>
|
|
2329
|
|
2330 * minibuf.c (regexp_ignore_completion_p): Reverse meaning of
|
|
2331 completion-regexp-list.
|
|
2332
|
108
|
2333 Thu Mar 6 19:15:29 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2334
|
|
2335 * data.c (eq_with_ebola_notice): Unobfuscate Ebola warning!!!
|
|
2336 message.
|
|
2337
|
|
2338 Wed Mar 5 16:11:22 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2339
|
|
2340 * process.c (get_internet_address): Put upper bounds on attempting
|
|
2341 to get system name (similar to nearly identical processing in
|
|
2342 sysdep.c.
|
|
2343
|
|
2344 Tue Mar 4 17:30:48 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2345
|
|
2346 * puresize.h (PURESIZE): *Must* use angle brackets for
|
|
2347 puresize_adjust.h or build will lose with --srcdir.
|
|
2348
|
|
2349 * alloc.c (report_pure_usage): Adjust error message printed when
|
|
2350 too low on PURESIZE.
|
|
2351
|
|
2352 * Makefile.in.in: Move site-packages.
|
|
2353 Add vpath correction for puresize_adjust.h.
|
|
2354
|
106
|
2355 Mon Mar 3 20:37:54 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2356
|
|
2357 * Makefile.in.in (lisp): Remove custom-xmas.elc.
|
|
2358
|
104
|
2359 Sat Mar 1 01:20:39 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2360
|
|
2361 * doc.c (weird_doc): Don't print `duplicate' messages as they are
|
|
2362 almost always due to symbols that are both autoloaded and dumped.
|
|
2363
|
|
2364 * data.c (syms_of_data): char-int and int-char -> char-to-int and
|
|
2365 int-to-char.
|
|
2366
|
|
2367 Thu Feb 27 21:48:32 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2368
|
|
2369 * Makefile.in.in (xemacs): Loop when dumping until SATISFIED.
|
|
2370
|
|
2371 * lstream.c (signal_simple_internal_error): Remove the abort().
|
|
2372
|
|
2373 * alloc.c (Fpurecopy): Make it work for byte compiled functions.
|
|
2374 (Fgarbage_collect): Disable garbage collection if we're dumping
|
|
2375 XEmacs and we've overflowed purespace.
|
|
2376
|
|
2377 Thu Feb 27 14:14:53 1997 Darrell Kindred <dkindred@cmu.edu>
|
|
2378
|
|
2379 * event-Xt.c (change_frame_visibility): New function.
|
|
2380 (handle_map_event): Use it.
|
|
2381 (emacs_Xt_handle_magic_event): Correction of handling of
|
|
2382 VisibilityNotify.
|
|
2383
|
|
2384 Thu Feb 27 14:12:57 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2385
|
|
2386 * frame-x.c (x_frame_visible_p): Reverse previous change.
|
|
2387
|
|
2388 Sun Mar 2 14:01:32 1997 David Moore <dmoore@ucsd.edu>
|
|
2389
|
|
2390 * regex.c (re_search_2): Properly handle crossing the buffer gap
|
|
2391 when doing a backwards search under MULE.
|
|
2392
|
102
|
2393 Wed Feb 26 10:24:40 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2394
|
|
2395 * Makefile.in.in: make-docfile takes a "-i" parameter to pass
|
|
2396 site-loaded lisp files.
|
|
2397
|
|
2398 * alloc.c (report_pure_usage): Adjust restart message.
|
|
2399
|
|
2400 Tue Feb 25 10:58:12 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2401
|
|
2402 * Makefile.in.in: Add PURESIZE.h to special treatment in vpath.
|
|
2403
|
|
2404 * alloc.c (PURESIZE_h): New function.
|
|
2405 (report_pure_usage): Use it. If PURESIZE is not the right amount,
|
|
2406 use the correct value.
|
|
2407
|
|
2408 * puresize.h: Use dynamic computation of PURESIZE.
|
|
2409
|
|
2410 * PURESIZE.h: New file.
|
|
2411
|
|
2412 * fns.c (Frandom): Fix docstring.
|
|
2413
|
|
2414 Mon Feb 24 17:35:05 1997 Jonathan Edwards <edwards@intranet.com>
|
|
2415
|
|
2416 * process.c (record_exited_processes): Fix obvious typo in
|
|
2417 checking for SIGCLD.
|
|
2418
|
|
2419 Sun Feb 23 01:45:49 1997 Martin Buchholz <mrb@eng.sun.com>
|
|
2420
|
|
2421 * scrollbar.c (update_scrollbar_instance): Fix for
|
|
2422 all-hail-xemacs scrollbar drag bug.
|
|
2423
|
|
2424 * scrollbar.c (Fscrollbar_to_bottom): Now calls Frecenter(-3)
|
|
2425 as end-of-buffer does, instead of hostile Frecenter(0). Makes
|
|
2426 C-button-1 on down-arrow friendlier.
|
|
2427
|
100
|
2428 Sun Feb 23 16:56:17 1997 David Hobley <david@spook-le0.cia.com.au>
|
|
2429 Initial MS Windows NT support.
|
|
2430 * unexnt.c: New file.
|
|
2431
|
|
2432 * ntproc.c: New file.
|
|
2433
|
|
2434 * ntheap.h: New file.
|
|
2435
|
|
2436 * ntheap.c: New file.
|
|
2437
|
|
2438 * nt.h: New file.
|
|
2439
|
|
2440 * nt.c: New file.
|
|
2441
|
|
2442 Sun Feb 23 15:56:58 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2443
|
|
2444 * floatfns.c (_GNU_SOURCE): Define if compiling with glibc 2.
|
|
2445
|
|
2446 * gmalloc.c: Guard __getpagesize definition against glibc 2.
|
|
2447
|
|
2448 Sat Feb 22 17:12:47 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2449
|
|
2450 * Makefile.in.in (lisp): Snarf docstrings from new file
|
|
2451 itimer-autosave.elc.
|
|
2452
|
|
2453 Fri Feb 21 18:21:32 1997 Jan Vroonhof <vroonhof@math.ethz.ch>
|
|
2454
|
|
2455 * event-Xt.c (emacs_Xt_handle_magic_event): Correction for frame
|
|
2456 freezing bug.
|
|
2457
|
|
2458 Wed Feb 19 12:54:32 1997 Per Abrahamsen <abraham@dina.kvl.dk>
|
|
2459
|
|
2460 * buffer.c (Fbuffer_disable_undo): Default to current buffer.
|
|
2461
|
|
2462 Tue Feb 18 12:37:28 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2463
|
|
2464 * Makefile.in.in (lisp): Dump new file custom-xmas.elc.
|
|
2465
|
|
2466 Mon Feb 17 11:29:07 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2467
|
|
2468 * print.c (Ferror_message_string): New function, ported from Emacs
|
|
2469 19.34.
|
|
2470 (print_error_message): Ditto.
|
|
2471
|
|
2472 * extents.c (verify_extent_mapper): Experimental deletion of code
|
|
2473 to allow deletion of read-only extents.
|
|
2474
|
|
2475 * symbols.c (hash_string): Replace algorithm with one given in
|
|
2476 Aho, Sethi & Ullman.
|
|
2477
|
|
2478 Sun Feb 16 14:53:58 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2479
|
|
2480 * keymap.c (lookup_keys): Wrong sense in test.
|
|
2481
|
|
2482 * Makefile.in.in: Dont dump font.elc.
|
|
2483
|
98
|
2484 Sat Feb 15 02:30:51 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2485
|
|
2486 * cmds.c: Define new symbol signal-error-on-buffer-boundary.
|
|
2487 (Fforward_char): Use it.
|
|
2488 (Fbackward_char): Use it.
|
|
2489
|
|
2490 * window.c (Fscroll_up): Use it.
|
|
2491 (Fscroll_down): Use it.
|
|
2492
|
|
2493 * keymap.c (syms_of_keymap): define mouse-[123] and
|
|
2494 down-mouse-[123] pseudo-keysym aliases for Emacs compatibility.
|
|
2495
|
|
2496 Thu Feb 13 21:28:35 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2497
|
|
2498 * Makefile.in.in: Don't dump tm with XEmacs under any
|
|
2499 circumstances.
|
|
2500
|
|
2501 * puresize.h: Remove extra SunPro puresize for MULE+tm.
|
|
2502
|
|
2503 Sun Feb 9 04:40:36 1997 Axel Seibert <aseibert@cybernet-ag.net>
|
|
2504
|
|
2505 * emacs.c (main_1): Fix NeXT malloc initialization.
|
|
2506
|
96
|
2507 Fri Feb 7 11:36:56 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2508
|
|
2509 * mule-coding.c (Fdecode_coding_region): Make explicit call to
|
|
2510 `barf_if_buffer_read_only'.
|
|
2511 (Fencode_coding_region): Ditto.
|
|
2512
|
|
2513 Thu Feb 6 22:39:39 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2514
|
|
2515 * extents.c (syms_of_extents): Remove references to replicating
|
|
2516 extents.
|
|
2517
|
|
2518 * extents.h (struct extent): Remove references to replicating
|
|
2519 extents.
|
|
2520
|
|
2521 Thu Feb 6 01:11:43 1997 Jareth Hein <jhod@po.iijnet.or.jp>
|
|
2522
|
|
2523 * mule-coding.c (ENCODE_SJIS): Correct typo.
|
|
2524
|
|
2525 Thu Feb 6 01:10:22 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2526
|
|
2527 * frame.c (delete_frame_internal): Protect against deletion of
|
|
2528 frames with living popup children.
|
|
2529
|
94
|
2530 Wed Feb 5 17:13:17 1997 David Moore <dmoore@UCSD.EDU>
|
|
2531
|
|
2532 * emacs.c (main_1): Try to avoid collisions against potentially
|
|
2533 incompatible system mallocs.
|
|
2534
|
|
2535 Mon Feb 3 23:04:41 1997 Joel Peterson <tarzan@aosi.com>
|
|
2536
|
|
2537 * redisplay.c: Activate face/charset redisplay caching.
|
|
2538
|
|
2539 Mon Feb 3 22:01:09 1997 Kyle Jones <kyle_jones@wonderworks.com>
|
|
2540
|
|
2541 * eval.c (do_debug_on_exit): Don't restore old value of
|
|
2542 debug_on_next_call improperly.
|
|
2543
|
88
|
2544 Fri Jan 31 10:28:47 1997 David Byers <davby@ida.liu.se>
|
|
2545
|
|
2546 * frame.c (frame_matches_frametype): Fix next-window when the next
|
|
2547 window is on another frame.
|
|
2548
|
|
2549 Thu Jan 30 20:25:00 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2550
|
|
2551 * syntax.c (scan_sexps_forward): Change test on targetdepth to
|
|
2552 match Emacs 19.34.
|
|
2553
|
|
2554 Wed Jan 29 22:11:53 1997 James LewisMoss <dres@scsn.net>
|
|
2555
|
|
2556 * gmalloc.c: Corrections for namespace collision with Linux libc
|
|
2557 malloc.
|
|
2558
|
86
|
2559 Mon Jan 27 21:46:53 1997 Tomasz J. Cholewo <tjchol01@mecca.spd.louisville.edu>
|
|
2560
|
|
2561 * fileio.c (Fwrite_region_internal): pack lockname to write-region
|
|
2562 handler.
|
|
2563
|
|
2564 Mon Jan 27 04:50:50 1997 David Moore <dmoore@UCSD.EDU>
|
|
2565
|
|
2566 * gmalloc.c (malloc): Guard against incompatible system mallocs
|
|
2567 with conflicting symbols.
|
|
2568
|
|
2569 Sun Jan 26 12:27:04 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2570
|
|
2571 * redisplay.c (add_emchar_rune): Back out optimization change of
|
|
2572 caching last_charset.
|
|
2573
|
|
2574 Sun Jan 26 09:10:45 1997 Hrvoje Niksic <hniksic@srce.hr>
|
|
2575
|
|
2576 * s/decosf4-0.h: Digital Unix 4.0 has a realpath, but it's buggy.
|
|
2577 And I *do* mean buggy.
|
|
2578
|
84
|
2579 Thu Jan 23 10:41:19 1997 Steven L. Baur <steve@altair.xemacs.org>
|
|
2580
|
|
2581 * puresize.h: Increase SUNPRO usage to reflect tm & cc-mode.
|
|
2582 Decrease BASE_PURESIZE and increase MULE_PURESIZE_EXTRA.
|
|
2583
|
82
|
2584 Wed Jan 22 21:09:52 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2585 * puresize.h (BASE_PURESIZE): Tighten up.
|
|
2586
|
|
2587 * scrollbar.c (scrollbar-page-up): Add Athena3d to Lucid/Motif
|
|
2588 code.
|
|
2589 (scrollbar-page-down): Ditto.
|
|
2590
|
|
2591 * scrollbar-x.c (x_create_scrollbar_instance): Add Athena3d to
|
|
2592 Lucid/Motif code.
|
|
2593 (x_update_vertical_scrollbar_callback): Ditto.
|
|
2594 (x_update_horizontal_scrollbar_callback): Add Athena3d to Lucid
|
|
2595 special case code.
|
|
2596
|
|
2597 * scrollbar-x.h (struct x_scrollbar_data): Add start drag position
|
|
2598 for Athena3d.
|
|
2599
|
|
2600 * redisplay-output.c (redisplay_update_line): A vain attempt to
|
|
2601 get the Athena vertical thumb adjusted after drag.
|
|
2602
|
|
2603 * EmacsFrame.c: Default to lower/right with Athena3d libraries.
|
|
2604
|
|
2605 Wed Jan 22 18:38:52 1997 Ian Wells <I.Wells@tarragon-et.co.uk>
|
|
2606
|
|
2607 * m/aviion.h: Remove definition of m88k.
|
|
2608
|
|
2609 * s/dgux5-4r4.h: New file.
|
|
2610
|
|
2611 Wed Jan 22 18:32:49 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2612
|
|
2613 * buffer.h: Put proper typecasts on calls to alloca().
|
|
2614
|
|
2615 Tue Jan 21 22:25:23 1997 Steven L. Baur <steve@altair.xemacs.org>
|
|
2616
|
|
2617 * config.h.in: Add LWLIB_USES_ATHENA symbol
|
|
2618
|
|
2619 * Makefile.in.in (TOOLKIT_LIBS): It is possible to have both
|
|
2620 Athena and Motif in the same link.
|
|
2621
|
|
2622 Tue Jan 21 20:43:41 1997 Hrvoje Niksic <hniksic@srce.hr>
|
|
2623
|
|
2624 * redisplay-tty.c (tty_ring_bell): Don't ring tty bell if the
|
|
2625 volume is set to 0.
|
|
2626
|
|
2627 Tue Jan 21 20:38:58 1997 Axel Seibert <aseibert@cybernet-ag.net>
|
|
2628
|
|
2629 * s/nextstep.h (signal_handler_t): define as int.
|
|
2630
|
|
2631 Mon Jan 20 21:12:57 1997 Martin Buchholz <mrb@eng.sun.com>
|
|
2632
|
|
2633 * src/event-Xt.c (emacs_Xt_handle_magic_event):
|
|
2634 (frame-totally-visible-p) sometimes incorrectly returned nil.
|
|
2635
|
|
2636 Thu Jan 16 17:24:29 1997 Joel Peterson <tarzan@aosi.com>
|
|
2637
|
|
2638 * menubar-x.c (pre_activate_callback): Correctly handle buffer
|
|
2639 local variables in :included clauses.
|
|
2640 (compute_menubar_data): Ditto.
|
|
2641
|
|
2642 Wed Jan 15 21:44:53 1997 Joel Peterson <tarzan@aosi.com>
|
|
2643
|
|
2644 * redisplay.c (add_emchar_rune): Enable last_charset display
|
|
2645 optimization.
|
|
2646
|
|
2647 Wed Jan 15 19:06:27 1997 David Moore <dmoore@UCSD.EDU>
|
|
2648
|
|
2649 * event-stream.c (Faccept_process_output): Avoid checking an
|
|
2650 uninitialized variable.
|
|
2651
|
|
2652 Wed Jan 15 14:14:24 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2653
|
|
2654 * regex.c: Modify values of re_max_failures and MAX_FAILURE_ITEMS
|
|
2655 to match Emacs 19.34.
|
|
2656
|
|
2657 Mon Jan 13 00:36:01 1997 Martin Buchholz <mrb@eng.sun.com>
|
|
2658
|
|
2659 * sysdep.c (sys_execvp): Fix when compiled with
|
|
2660 --const-is-losing=no. Old code could crash if argv contained
|
|
2661 non-ascii characters and the execvp failed and then caller
|
|
2662 examined argv (for error message, for example).
|
|
2663
|
|
2664 Sun Jan 12 17:22:24 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2665
|
|
2666 * Makefile.in.in: TM .elcs moved to SUNPRO_LISP only.
|
|
2667
|
80
|
2668 Fri Jan 10 20:21:47 1997 Ben Wing <ben@666.com>
|
|
2669
|
|
2670 * minibuf.c (Ftry_completion): Don't crash if not given a proper
|
|
2671 obarray.
|
|
2672
|
|
2673 Fri Jan 10 09:49:44 1997 Ted Phelps <phelps@dstc.edu.au>
|
|
2674
|
|
2675 * objects-x.c (x_initialize_font_instance): Hardcode 'n' for
|
|
2676 default font width.
|
|
2677
|
|
2678 Mon Jan 6 15:16:46 1997 Carsten Leonhardt <leo@arioch.tng.oche.de>
|
|
2679
|
|
2680 * Makefile.in.in: Linking with canna requires -lRKC.
|
|
2681
|
|
2682 Mon Jan 6 12:22:57 1997 Frederic Poncin <fp@info.ucl.ac.be>
|
|
2683
|
|
2684 * gmalloc.c: Don't declare __sbrk on SparcLinux.
|
|
2685
|
|
2686 Sun Jan 5 18:04:47 1997 Soren Dayton <csdayton@cs.uchicago.edu>
|
|
2687
|
|
2688 * Makefile.in.in: IRIX6 can use sgiplay.c too.
|
|
2689
|
78
|
2690 Sat Jan 4 12:15:16 1997 Steven L Baur <steve@altair.xemacs.org>
|
|
2691
|
|
2692 * toolbar.c (specifier_vars_of_toolbar): Clean up fallback
|
|
2693 specifiers so XEmacs can be built without tty support.
|
|
2694
|
|
2695 * console-stream.c: Moved function bodies of
|
|
2696 semi_canonicalize_console_connection,
|
|
2697 canonicalize_console_connection,
|
|
2698 semi_canonicalize_device_connection, and
|
|
2699 canonicalize_device_connection into this file from console-tty.c.
|
|
2700 Moved variable Vstdio_str into this file.
|
|
2701
|
|
2702 * console-tty.c: See above.
|
|
2703
|
|
2704 Fri Jan 3 18:07:11 1997 Axel Seibert <aseibert@cybernet-ag.net>
|
|
2705
|
|
2706 * m/next.h: Cleanup accumulated cruft.
|
|
2707
|
|
2708 * s/nextstep.h: Remove useless #undef REL_ALLOC/HAVE_MMAP.
|
|
2709
|
|
2710 * syssignal.h: Don't typedef SIGTYPE on NeXT.
|
|
2711
|
|
2712 Fri Jan 3 12:06:44 1997 Michael Sperber <sperber@informatik.uni-tuebingen.de>
|
|
2713
|
|
2714 * m/ibmrs6000.inp: Added various get.* symbols.
|
|
2715
|
|
2716 Sun Dec 29 20:16:08 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
2717
|
|
2718 * m/next.h: Remove signal_handler_t #define.
|
|
2719
|
|
2720 * s/nextstep.h: Remove signal_handler_t #define.
|
|
2721
|
76
|
2722 Fri Dec 27 21:13:33 1996 Martin Buchholz <mrb@Eng.Sun.COM>
|
|
2723
|
|
2724 * event-Xt.c (x_to_emacs_keysym): Corrections to SUNOS_GCC_LO_BUG.
|
|
2725
|
|
2726 Mon Dec 23 11:37:16 1996 Martin Buchholz <mrb@Eng.Sun.COM>
|
|
2727
|
|
2728 * fns.c (Ffillarray): Fix for (fillarray #*10 0)
|
|
2729
|
|
2730 Mon Dec 23 10:27:14 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
2731
|
|
2732 * bitmaps.h: Change to unsigned char.
|
|
2733
|
|
2734 * frame-x.c (x_cde_transfer_callback): Typecast fix.
|
|
2735
|
|
2736 * keymap.c (define_key_check_and_coerce_keysym): Typecast fix.
|
|
2737
|
74
|
2738 Fri Dec 20 19:21:56 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
2739
|
|
2740 * Makefile.in.in (lisp): Remove cc-mode as a dumped package.
|
|
2741
|
|
2742 * keymap.c (define_key_check_and_coerce_keysym): Make obsolete
|
|
2743 binding of kp_.* not lose.
|
|
2744
|
|
2745 * bitmaps.h: Add left & right arrows to show extended lines.
|
|
2746
|
|
2747 Fri Dec 20 15:32:53 1996 David Moore <dmoore@UCSD.EDU>
|
|
2748
|
|
2749 * event-stream.c (event_stream_wakeup_pending_p): New function.
|
|
2750 (Faccept_process_output): Fix timeout handling race conditions.
|
|
2751 (Fsleep_for): Ditto.
|
|
2752 (Fsit_for): Ditto.
|
|
2753
|
|
2754 Thu Dec 19 22:25:26 1996 Steve Carney <carney@gvc.dec.com>
|
|
2755
|
|
2756 * cmds.c (Fbeginning_of_line): Adjust for 64 bit machines.
|
|
2757
|
|
2758 Thu Dec 19 00:44:10 1996 Bart Robinson <lomew@cs.utah.edu>
|
|
2759
|
|
2760 * syssignal.h: The declaration of SIGTYPE shouldn't be protected
|
|
2761 by HAVE_SIGPROCMASK.
|
|
2762
|
|
2763 Wed Dec 18 20:40:21 1996 Martin Buchholz <mrb@eng.sun.com>
|
|
2764
|
|
2765 * dgif_lib.c: Miscellaneous cleanup, including removing signed
|
|
2766 bitfields.
|
|
2767
|
|
2768 * mule-charset.h: Change charset names.
|
|
2769
|
|
2770 * mule-coding.c (struct iso2022_decoder): Uniform unsigned bitfields.
|
|
2771 Change charset names.
|
|
2772
|
|
2773 * mule-charset.c: Change charset names.
|
|
2774
|
|
2775 * mule-canna.c: Change charset names.
|
|
2776
|
|
2777 * EmacsShell-sub.c: Ansify and reformat.
|
|
2778
|
|
2779 * console-tty.h (struct tty_console): Uniform unsigned bitfields.
|
|
2780
|
|
2781 * glyphs-x.c: Ansify.
|
|
2782
|
|
2783 * specifier.c: Use lisp_fn_t.
|
|
2784
|
|
2785 * EmacsShell.c: Ansify.
|
|
2786
|
|
2787 * vm-limit.c: Ansify.
|
|
2788
|
|
2789 * emacsfns.h: Use lisp_fn_t.
|
|
2790
|
|
2791 * lstream.c (struct filedesc_stream): Unsigned int bitfields.
|
|
2792
|
|
2793 * xselect.c (hack_motif_clipboard_selection): Change charset name.
|
|
2794 (Fx_store_cutbuffer_internal): Change charset name.
|
|
2795
|
|
2796 * ralloc.c: Ansify and clean up.
|
|
2797
|
|
2798 * frame.h (struct frame): Uniform unsigned bit fields.
|
|
2799
|
|
2800 * event-Xt.c: Documentation change.
|
|
2801
|
|
2802 * lisp.h: Introduce lisp_fn_t.
|
|
2803 Remove SunPro C compiler warning message workaround.
|
|
2804
|
|
2805 * xmu.c: Ansify.
|
|
2806
|
|
2807 * doprnt.c (struct printf_spec): Use unsigned bitfields.
|
|
2808
|
|
2809 * fileio.c: various code formatting changes.
|
|
2810
|
|
2811 * eval.c: reorganize primitive funcalls.
|
|
2812
|
|
2813 * config.h.in (NeedFunctionPrototypes): Force slightly better type
|
|
2814 checking in X header files.
|
|
2815
|
|
2816 * Makefile.in.in: #undef i386, move mime-setup.elc?.
|
|
2817
|
|
2818 * s/sunos4-0-shr.h: Documentation change.
|
|
2819
|
|
2820 * s/sol2.h (__EXTENSIONS__): Add.
|
|
2821 Include <setjmp.h> under certain conditions.
|
|
2822
|
|
2823 Mon Dec 16 19:13:10 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
2824
|
|
2825 * lstream.c (Lstream_pseudo_close): Return status on error.
|
|
2826 (Lstream_close): Ditto. (Fixes disk full-no error on write bug).
|
|
2827
|
|
2828 Sat Dec 14 16:54:52 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
2829
|
|
2830 * glyphs-x.c (jpeg_instantiate): Use file I/O for JPEG loading
|
|
2831 because the in-core code is broken.
|
|
2832
|
|
2833 Fri Dec 13 16:43:45 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
2834
|
|
2835 * device-x.c (x_init_device): Don't make nonexistent X server the
|
|
2836 default when running on a tty.
|
|
2837
|
|
2838 * event-Xt.c (x_to_emacs_keysym): Rename kp_.* keysyms to be kp-\1.
|
|
2839
|
|
2840 * redisplay-tty.c (keys): Rename kp_.* keynames to kp-\1.
|
|
2841
|
|
2842 Fri Dec 13 14:48:42 1996 Michael Sperber <sperber@informatik.uni-tuebingen.de>
|
|
2843
|
|
2844 * lread.c (Fload_internal): Change arity of call to
|
|
2845 file-name-handlers.
|
|
2846
|
|
2847 * fileio.c (Finsert_file_contents_internal): Ditto.
|
|
2848
|
|
2849 Thu Dec 12 16:55:34 1996 Lars Magne Ingebrigtsen <larsi@ifi.uio.no>
|
|
2850
|
|
2851 * cmds.c (Fpoint_at_eol, Fpoint_at_bol): New functions.
|
|
2852 (Fend_of_line, Fbeginning_of_line): Use them.
|
|
2853
|
72
|
2854 Tue Dec 10 11:17:32 1996 Shane Holder <holder@mordor.rsn.hp.com>
|
|
2855
|
|
2856 * s/hpux9shxr4.h: hpux9shr.h -> hpux9-shr.h
|
|
2857
|
|
2858 * s/hpux10.h: hpux9shr.h -> hpux9-shr.h
|
|
2859
|
|
2860 Sat Dec 7 18:29:34 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
2861
|
|
2862 * puresize.h (BASE_PURESIZE): Bumped up PURESIZE by 10k.
|
|
2863
|
|
2864 Sat Dec 7 16:26:34 1996 Martin Buchholz <mrb@Eng.Sun.COM>
|
|
2865
|
|
2866 * config.h.in: configure for POSIX getcwd if available.
|
|
2867
|
|
2868 Sat Dec 7 15:48:39 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
2869
|
|
2870 * s/sunos4-1-shr.h: Renamed from sunos4-1shr.h.
|
|
2871
|
|
2872 * s/sunos4-1-3-shr.h: Renamed from sunos4-1-3shr.h.
|
|
2873
|
|
2874 * s/sunos4-1-2-shr.h: Renamed from sunos4-1-2-shr.h.
|
|
2875
|
|
2876 * s/sunos4-0-shr.h: Renamed from sunos4-0shr.h.
|
|
2877
|
|
2878 * s/hpux9-shr.h: Renamed from hpux9shr.h.
|
|
2879
|
|
2880 * s/hpux8-shr.h: Renamed from hpux8shr.h.
|
|
2881
|
|
2882 * s/hpux10-shr.h: Renamed from hpux10shr.h.
|
|
2883
|
|
2884 Wed Dec 4 23:38:03 1996 Steven L Baur <steve@altair.xemacs.org>
|
|
2885
|
|
2886 * redisplay.c: Allow column numbers in modeline to start from 1.
|
|
2887
|