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