(Fcopy_file): If NEWNAME is a directory copy FILE there.
[bpt/emacs.git] / src / ChangeLog
CommitLineData
ec66bdc7
MB
12001-10-05 Miles Bader <miles@gnu.org>
2
3 * minibuf.c (Fminibuffer_prompt_end, Fminibuffer_contents)
4 (Fminibuffer_contents_no_properties, Fdelete_minibuffer_contents):
5 New functions (were in simple.el).
6 (Fminibuffer_complete_and_exit, Fminibuffer_complete_word)
7 (read_minibuf, do_completion, Fminibuffer_completion_help): Use them.
8 (syms_of_minibuf): Initialize them.
9
a0fb4492
GM
102001-10-05 Gerd Moellmann <gerd@gnu.org>
11
12 * xfns.c (tiff_error_handler, tiff_warning_handler): New functions.
13 (tiff_load): Install them as error and warning handler.
14
0bcf87c1
AI
152001-10-04 Andrew Innes <andrewi@gnu.org>
16
17 * w32fns.c (x_to_w32_color): Fix argument to alloca.
18 (w32_load_system_font): Don't believe what GetLanguageFontInfo
19 says; query codepage info directly to determine if font is double
20 byte.
21 (x_to_w32_charset): Handle private format for unknown charsets.
22 Handle wildcards in charset spec, by ignoring them.
23 (w32_codepage_for_font): Fix argument to alloca. Don't remove
24 "*-" prefix from charset.
25 (x_to_w32_font): Enlarge remainder array for safety. Specifically
26 handle the truncated font spec form constructed by font_list_1, so
27 that we correctly identify the charset fields. Don't remove "*-"
28 prefix from charset.
29 (w32_list_synthesized_fonts): Fix argument to alloca.
30
c89e4bc5
GM
312001-10-04 Stefan Monnier <monnier@cs.yale.edu>
32
33 * window.h (MINI_WINDOW_P): Use NILP.
34
35 * coding.h (ENCODE_SYSTEM, DECODE_SYSTEM): Define also for non-NT.
36
37 * termhooks.h (struct input_event): Use proper type for `kind'.
38
392001-10-04 Gerd Moellmann <gerd@gnu.org>
40
41 This handles unknown keysyms better than before. For example,
42 after `xmodmap -e 'keysym F5 = ccaron' in a Latin-1 environment,
43 Emacs formerly completely ignored F5. With the change, it derives
44 a key symbol from the name of the X keysym, `ccaron' in this case.
45 Reported by Martin Buchholz.
46
47 * xterm.c (XTread_socket): Return a non_ascii_keystroke for
48 unknown keysyms.
49
50 * keyboard.c (make_lispy_event) [HAVE_X_WINDOWS]: If we know
51 that EVENT->code isn't a function key, use the keysym's name.
52
532001-10-04 Gerd Moellmann <gerd@gnu.org>
54
55 FOREACH is a macro that should make it easier to loop over Lisp
56 lists with checks for cycles and proper lists.
57
58 * lisp.h (LIST_END_P, FOREACH): New macros.
59
602001-10-04 Gerd Moellmann <gerd@gnu.org>
61
62 On some systems, XtCloseDisplay seems to cause a SIGSEGV when
63 called for a lost connection. Prevent dumping core in this case.
64 Instead print the X error, and exit. On user request.
65
66 * xterm.c (error_msg): New variable.
67 (x_fatal_error_signal): New function.
68 (x_connection_closed): Set error_msg. Install x_fatal_error_signal
69 as fatal_error_signal_hook around the call to XtCloseDisplay.
70
71 * emacs.c (fatal_error_signal_hook): New variable.
72 (fatal_error_signal): Call that function.
73
742001-10-04 Gerd Moellmann <gerd@gnu.org>
75
76 With this, Emacs prints how much pure storage it will
77 approximately need in case pure storage overflows while dumping.
78
79 * alloc.c (purebeg, pure_size, pure_bytes_used_before_overflow):
80 New variables.
81 (init_alloc_once): Initialize new variables.
82 (PURE_POINTER_P): Use new variables.
83 (pure_alloc): If pure storage overflows, allocate from the heap.
84 (check_pure_size): New function.
85 (Fgarbage_collect): Don't GC if pure storage has overflowed.
86
87 * lisp.h (pure_size) [HAVE_SHM]: Declare extern size_t.
88 (check_pure_size): Add prototype.
89
90 * emacs.c (Fdump_emacs_data, Fdump_emacs): Call check_pure_size.
91
922001-10-04 Gerd Moellmann <gerd@gnu.org>
93
94 This adds a post-gc-hook that's run with GC inhibited.
95 Requested by Francois Pinard. XEmacs has it. Added to NEWS.
96
97 * alloc.c (Vpost_gc_hook, Qpost_gc_hook): New variables.
98 (syms_of_alloc): DEFVAR_LISP post-gc-hook, initialize Qpost_gc_hook.
99 (Fgarbage_collect): Run post-gc-hook.
100
1012001-10-04 Gerd Moellmann <gerd@gnu.org>
102
103 This adds `defvaralias' and `indirect-variable'. Changes not
104 directly related to this feature are there to gain the same
105 performance again as before variable aliases.
106
107 You must use the SYMBOL_VALUE and SET_SYMBOL_VALUE macros in C
108 code to get and set symbol values, to take defvaralias into account.
109
110 (Note: the new `constant' bit-flag in symbols would make it
111 possible to define arbitrary read-only variables, e.g. with
112 `defconst'.)
113
114 Documentation is in lispref/variables.texi. Added to NEWS.
115
116 * lisp.h (enum symbol_interned): New enumeration.
117 (struct Lisp_Symbol): Remove member `obarray', add
118 `indirect_variable', `constant', and `interned'.
119 (SYMBOL_INTERNED_P, SYMBOL_INTERNED_IN_INITIAL_OBARRAY_P)
120 (SYMBOL_CONSTANT_P, SYMBOL_VALUE, SET_SYMBOL_VALUE): New macros.
121 (indirect_variable): Add prototype.
122
123 * print.c (print_preprocess, print_object): Test internedness of
124 symbols differently.
125
126 * lread.c (Fintern, Funintern): Set symbol's interned and constant
127 bit-fields.
128 (init_obarray): Likewise for t and nil.
129
130 * eval.c Use SYMBOL_VALUE/SET_SYMBOL_VALUE.
131 (Fdefvaralias): New function.
132 (specbind): Simplify the test if symbol is a constant.
133 (syms_of_eval): Defsubr Fdefvaralias.
134
135 * data.c: Use SYMBOL_VALUE/SET_SYMBOL_VALUE.
136 (Qcyclic_variable_indirection): New variable.
137 (Fkeywordp): Check for internedness differently.
138 (Fmakunbound): Simplify the test if symbol is a constant.
139 (indirect_variable, Findirect_variable): New functions.
140 (swap_in_symval_forwarding): If SYMBOL is an alias, use the
141 aliased symbol.
142 (let_shadows_buffer_binding_p): Check for variable aliases.
143 (set_internal): Simplify the test if SYMBOL is a constant.
144 If SYMBOL has a buffer-local value and is an alias, use the aliased
145 symbol instead.
146 (syms_of_data): Initialize Qcyclic_variable_indirection and defsubr
147 Sindirect_variable.
148
149 * bytecode.c (Fbyte_code) <varref>: Use SYMBOL_VALUE.
150 (Fbyte_code) <varset>: Simplify the test if symbol's value can be
151 set directly.
152
153 * alloc.c (Fmake_symbol): Adapt to changes of struct Lisp_Symbol.
154
155 * abbrev.c, buffer.c, coding.c, fns.c, frame.c, keyboard.c:
156 * minibuf.c, sunfns.c, w16select.c: Use SYMBOL_VALUE/
157 SET_SYMBOL_VALUE macros instead of accessing symbol values directly.
158
ba88ff28
MB
1592001-10-03 Miles Bader <miles@gnu.org>
160
161 * callproc.c (syms_of_callproc): Explicitly state in the
162 documentation for `process-environment' that earlier entries take
163 precedence over later ones.
164
ae1a9581
MB
1652001-10-02 Miles Bader <miles@gnu.org>
166
167 * textprop.c (Fnext_char_property_change)
168 (Fprevious_char_property_change): Remove reference to non-existant
169 argument OBJECT from doc-string.
170
257e3f57
GM
1712001-10-01 Gerd Moellmann <gerd@gnu.org>
172
173 * xdisp.c (display_line): Set row's ends_in_newline_from_string_p.
174 (try_window_id): Skip back over lines ending in a newline from a
175 string.
176
177 * dispextern.h (struct glyph_row) <ends_in_newline_from_string_p>:
178 New bit flag
179
c1f29759
RS
1802001-10-01 Richard M. Stallman <rms@gnu.org>
181
182 * search.c (Freplace_match): Doc fix.
183
c30dce3d
AI
1842001-09-28 Andrew Innes <andrewi@gnu.org>
185
186 * w32menu.c (set_frame_menubar): Take into account that
187 f->menu_bar_vector can be nil, and not a vector. From Ken Raeburn
188 <raeburn@gnu.org>.
189
03be5931
EZ
1902001-09-30 Eli Zaretskii <eliz@is.elta.co.il>
191
192 * frame.c (syms_of_frame) <default-minibuffer-frame>: Doc fix.
193
75bec752
PJ
1942001-09-28 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
195
196 * s/gnu-linux.h: Fix a typo in comment.
197
83100e0a
AS
1982001-09-28 Andreas Schwab <schwab@suse.de>
199
200 * s/gnu-linux.h (LD_SWITCH_SYSTEM_TEMACS): Link temacs with -z
201 nocombreloc, in case -z combreloc is the default.
202
a74b48cf
GM
2032001-09-28 Gerd Moellmann <gerd@gnu.org>
204
205 * m/macppc.h [DATA_SEG_BITS]: Put in #if 0 until we know what's
206 really going on here.
207
09c4719e
SM
2082001-09-27 Stefan Monnier <monnier@cs.yale.edu>
209
210 * search.c (trivial_regexp_p): Catch \{N,M\} as well.
211
f7d5d963
EZ
2122001-09-27 Eli Zaretskii <eliz@is.elta.co.il>
213
214 * Makefile.in (shortlisp): Resync with loadup.el: add backquote,
215 utf-8, menu-bar, and latin-N.
216 (SOME_MACHINE_LISP): Remove menu-bar, since it's loaded
217 unconditionally now.
218 (lisp): Add latin-N, since they are preloaded.
219
9240e746
GM
2202001-09-27 Gerd Moellmann <gerd@gnu.org>
221
14531065
GM
222 * xterm.c (x_draw_relief_rect): Draw bottom relief 1 pixel more
223 to the left. Some cleanup.
224
9240e746
GM
225 * xdisp.c (display_mode_element): One more case where a string's
226 multibyteness should be used for display.
227
edd1e654
GM
2282001-09-26 Gerd Moellmann <gerd@gnu.org>
229
b02439c8
GM
230 * fileio.c (Finsert_file_contents): If REPLACE is non-nil, stop
231 reading at EOF.
232
032906b1 233 * xdisp.c (with_echo_area_buffer): Use echo_kboard instead
5b397024 234 of the only temporarily set echoing flag for deciding when
032906b1
GM
235 the cancel echoing.
236
237 * keyboard.c (echo_kboard): Make externally visible.
238
239 * lisp.h (echo_kboard): Declare extern.
240
cb617e7c 241 * xdisp.c (make_cursor_line_fully_visible): Return 0 and set
5b397024 242 fonts_changed_p if we need larger matrices due to vscrolling.
cb617e7c
GM
243 (try_scrolling, try_cursor_movement, redisplay_window): Give up on
244 this round of redisplay if make_cursor_line_fully_visible fails.
245 (CURSOR_MOVEMENT_*, SCROLLING_*): New enumerators.
09c4719e 246 (try_cursor_movement, try_scrolling): Use them instead of integers.
cb617e7c
GM
247
248 * dispextern.h (required_matrix_width, required_matrix_height):
249 Add prototypes.
250
09c4719e
SM
251 * dispnew.c (required_matrix_width, required_matrix_height):
252 New functions.
cb617e7c 253 (allocate_matrices_for_window_redisplay)
09c4719e
SM
254 (allocate_matrices_for_frame_redisplay: Use them.
255 Remove parameters CH_DIM.
cb617e7c 256
edd1e654
GM
257 * xdisp.c (display_mode_lines): Temporarily set selected_frame
258 and selected_window to the frame of the window whose mode-lines
259 are displayed, and to the window itself.
260 (redisplay_window, redisplay_mode_lines): Don't set selected_frame
09c4719e 261 here.
edd1e654 262
924b604c
GM
2632001-09-25 Gerd Moellmann <gerd@gnu.org>
264
daba7643
GM
265 * xfns.c (x_kill_gs_process): Recognize if someone has cleared
266 the image cache under us.
267
b7a22712 268 * xdisp.c (display_mode_element): If the mode element is a symbol
09c4719e 269 with a string value, use that string's multibyteness for displaying.
b7a22712 270
ad648212
GM
271 * keyboard.c (read_char): Don't clear a message for a switch-frame
272 event. From Stefan Monnier <monnier@cs.yale.edu>.
273
9f8531e5
GM
274 * xterm.c (fast_find_position) [0]: Add a presumably more correct
275 version for after 21.1.
276
277 * xdisp.c (row_containing_pos): Make externally visible.
278
279 * dispextern.h (row_containing_pos): Add prototype.
280
924b604c
GM
281 * process.c (send_process): Disable composition if from_byte < 0.
282 From Kenichi Handa <handa@etl.go.jp>.
283
6f3f0db4
GM
2842001-09-24 Gerd Moellmann <gerd@gnu.org>
285
c69c0ebc
GM
286 * xterm.c (refreshicon): Function removed.
287
d1182bc4
GM
288 * Makefile.in (xterm.o): Remove references to sink.h and sinkmask.h.
289
290 * sink11.h, sink11mask.h, sink.h, sinkmask.h: Removed.
291
292 * xterm.c (toplevel): Remove includes in #if 0.
293
6f3f0db4
GM
294 * process.c (sigchld_handler) [LINUX]: Don't return from
295 the signal handler at the end of the loop.
296
59957f85
GM
2972001-09-21 Gerd Moellmann <gerd@gnu.org>
298
09c4719e
SM
299 * sysdep.c (wait_for_termination) [POSIX_SIGNALS]:
300 Terminate only if kill returns -1, and errno is ESRCH.
59957f85 301
a0528984
EZ
3022001-09-21 Markus Rost <rost@math.ohio-state.edu>
303
304 * Makefile.in (shortlisp): Add ../lisp/env.elc.
305
db92b288
GM
3062001-09-20 Gerd Moellmann <gerd@gnu.org>
307
3fed8ad5
GM
308 * process.c (sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
309 since this function can be called during GC.
310
db92b288
GM
311 * callproc.c (Fcall_process): Handle errors from pipe(2).
312 (child_setup): Delete code in #ifdef vipc.
313
7121b85a
GM
3142001-09-19 Gerd Moellmann <gerd@gnu.org>
315
72f62cb5
GM
316 * xdisp.c (decode_mode_spec): Add parameter MULTIBYTE.
317 (display_mode_element): Display the string from decode_mode_spec
318 depending on its multibyteness.
319
a2697022
GM
320 * s/netbsd.h (LD_SWITCH_SYSTEM, C_SWITCH_SYSTEM): Add /usr/pkg.
321
7121b85a
GM
322 * m/macppc.h (DATA_SEG_BITS): Also define for GCC 3.
323
bfc97351
GM
3242001-09-18 Gerd Moellmann <gerd@gnu.org>
325
c9063433
GM
326 * keyboard.c (Frecursive_edit): Pass (BUFFER . SINGLE-KBOARD) to
327 recursive_edit_unwind.
328 (recursive_edit_unwind): Set kboard state according to
329 SINGLE-KBOARD.
330
3fbdba3e
GM
331 * buffer.c (modify_overlay): Don't do nothing if START == END;
332 This can still be a modification, for example when an overlay has
333 a before-string or after-string.
334 (Fdelete_overlay): Prevent redisplay optimizations when deleting
335 an overlay with before-string or after-string.
336
1270031d
GM
337 * s/netbsd.h (C_SWITCH_SYSTEM): Add.
338 (LD_SWITCH_SYSTEM): Include /usr/local/lib.
339
bfc97351
GM
340 * xdisp.c (try_window_id) [!GLYPH_DEBUG]: Give up if
341 first_unchanged_at_end_row is in front of
342 last_unchanged_at_beg_row. This code should be removed after the
343 release of 21.1.
344
d8a973aa
GM
3452001-09-17 Gerd Moellmann <gerd@gnu.org>
346
e18c8b8d
GM
347 * buffer.h (BUF_COMPUTE_UNCHANGED): Use BUF_MODIFF and
348 BUF_OVERLAY_MODIFF instead of MODIFF and OVERLAY_MODIFF.
349
d8a973aa
GM
350 * m/macppc.h (DATA_SEG_BITS) [__linux__]: Define for GCC
351 versions >= 2.95.
352
ed7d6ba4
EZ
3532001-09-14 Eli Zaretskii <eliz@is.elta.co.il>
354
355 * dired.c (Ffile_attributes): Doc fix.
356
551629f9
GM
3572001-09-14 Gerd Moellmann <gerd@gnu.org>
358
359 * fileio.c (Ffile_symlink_p): Fix last change.
360
361 * filelock.c (current_lock_owner): Fix last change.
362
4c8c7926
GM
3632001-09-13 Gerd Moellmann <gerd@gnu.org>
364
620c4704
GM
365 * filelock.c (current_lock_owner): If readlink returns ERANGE,
366 take that to mean that the buffer is too small.
367
81c3310d
GM
368 * fileio.c (Ffile_symlink_p): If readlink returns ERANGE, take
369 that to mean that the buffer is too small.
370
06fd3792
GM
371 * xdisp.c (reseat_1): Set IT's multibyte_p flag according to the
372 current buffer's multibyteness when discarding the iterator's
373 stack.
374
4c8c7926
GM
375 * xfns.c (Fx_window_property): Handle case that property gets
376 deleted between the two calls to XGetWindowProperty.
377
9a72e4c1
GM
3782001-09-11 Gerd Moellmann <gerd@gnu.org>
379
bd819d14
GM
380 * minibuf.c (read_minibuf_unwind): Bind inhibit-modification-hooks.
381
a41edd99
GM
382 * minibuf.c (read_minibuf): Bind inhibit-modification-hooks to t,
383 in addition to read-only.
384
385 * xdisp.c (with_echo_area_buffer): Bind inhibit-modification-hooks
386 to t in addition to read-only.
387
388 * lisp.h (Qinhibit_modification_hooks): Declare.
389
390 * insdel.c (Qinhibit_modification_hooks): New variable.
391 (syms_of_insdel): Initialize and staticpro it.
392
d4881c6a
GM
393 * textprop.c (verify_interval_modification): Don't run
394 modification-hooks if inhibit_modification_hooks.
395
396 * dispnew.c (set_window_cursor_after_update): Fix code
397 finding glyph row containing cursor when cursor_in_echo_area
398 is >= 0.
399
9a72e4c1
GM
400 * xdisp.c (init_from_display_pos): Put some code in #if 0.
401 (add_to_log): Use bcopy instead of strcpy.
402 (init_from_display_pos): Use an explicit loop over bytes in
403 overlay strings instead of calling index.
404
f4a374a1
GM
4052001-09-10 Gerd Moellmann <gerd@gnu.org>
406
300e57bd
GM
407 * alloc.c (allocate_buffer): Call VALIDATE_LISP_STORAGE.
408
409 * dispnew.c (direct_output_for_insert): Don't change IT's
410 stop_charpos to something in front of its current position.
411
f4a374a1
GM
412 * xdisp.c (Ftrace_to_stderr) [GLYPH_DEBUG]: Take args like
413 `format'.
414
7e4cbc91
RS
4152001-09-10 Richard M. Stallman <rms@gnu.org>
416
417 * frame.c (Fmouse_position): Doc fix.
418
6afad91e
GM
4192001-09-07 Gerd Moellmann <gerd@gnu.org>
420
421 * xdisp.c (init_from_display_pos): Don't compare the result
422 of calling index with NULL.
423
f76e0368
GM
4242001-09-06 Gerd Moellmann <gerd@gnu.org>
425
426 * xfns.c (x_set_background_color): Don't change the colors
427 of the X window of scroll bar widgets.
428
9ead1b60
AI
4292001-09-05 Andrew Innes <andrewi@gnu.org>
430
431 * w32fns.c (w32_createwindow): Undo last change.
432
c3b497b3
GM
4332001-09-05 Gerd Moellmann <gerd@gnu.org>
434
08e1d6df
GM
435 * macros.c (store_kbd_macro_char): Fix computation of kbd_macro_end.
436
c3b497b3
GM
437 * xdisp.c (string_buffer_position): Use *single_char_property*
438 functions instead of the *single_property* functions.
439
8f860180
AI
4402001-09-04 Andrew Innes <andrewi@gnu.org>
441
9a72e4c1
GM
442 * w32term.c (w32_read_socket): Add more information to debugging
443 output.
8f860180
AI
444
445 * w32fns.c (w32_createwindow): Remove the WS_CLIPCHILDREN style
446 from Emacs frames, so that calls to GetClipBox in w32term.c
447 correctly report when part of a frame is visible (including
448 scrollbars, etc). This prevents repeated redrawing of frames when
449 only a scrollbar is visible.
450 (w32_wnd_proc): Add more frame information to debugging output.
451
2ee1aa00
SM
4522001-09-03 Stefan Monnier <monnier@cs.yale.edu>
453
454 * xdisp.c (handle_single_display_prop): Fix for int/Lisp_Object mixup.
455
e3b22517
GM
4562001-09-03 Gerd Moellmann <gerd@gnu.org>
457
7e376260
GM
458 * xterm.c (note_mouse_highlight) <help-echo>: When looking for
459 help-echo for a string which doesn't have help-echo itself, use
460 get-char-property to obtain the help-echo from the string's buffer
461 (note_mouse_highlight) <mouse-face>: When on a string that doesn't
462 have mouse-face, look ``under'' the string for mouse-face from an
463 overlay.
464 (fast_find_position): Add parameter STOP. In the final row, stop
465 before glyphs having STOP as object. Don't consider glyphs that
466 are not from a buffer.
467
e3b22517
GM
468 * buffer.c (syms_of_buffer) <default-directory>: Doc fix.
469
9a249bba
EZ
4702001-09-01 Eli Zaretskii <eliz@is.elta.co.il>
471
472 * fns.c (Fmd5): Doc fix.
473
c9979669
GM
4742001-08-31 Gerd Moellmann <gerd@gnu.org>
475
476 * composite.c (update_compositions): Do nothing if
477 inhibit-modification-hooks is set.
478
9584e63a
GM
4792001-08-30 Gerd Moellmann <gerd@gnu.org>
480
986ec8f2 481 * emacs.c (shut_down_emacs): Don't call check_glyph_memory
490468dc 482 and check_message_stack if terminating abnormally. We want
986ec8f2
GM
483 glyph matrices etc. in a core dump.
484
92a25631
GM
485 * xdisp.c (Qbuffer_position, Qposition, Qobject): New variables.
486 (syms_of_xdisp): Initialize them.
487 (handle_single_display_prop): Don't change point, bind `object',
488 `position', and `buffer-position' instead to the object having the
2ee1aa00 489 `display' property, position in the object and position in the buffer.
92a25631 490
9584e63a
GM
491 * fileio.c (Finsert_file_contents): Don't change the multibyteness
492 of the buffer if REPLACE is non-nil.
493
d38633a3
GM
4942001-08-29 Gerd Moellmann <gerd@gnu.org>
495
496 * fileio.c (Finsert_file_contents): Undo change of 2001-08-27.
497
f4fccc1e
EZ
4982001-08-28 Eli Zaretskii <eliz@is.elta.co.il>
499
500 * w32term.c (x_set_glyph_string_background_width)
501 (show_mouse_face): Track the last changes in xterm.c.
502
eaaa65b0
GM
5032001-08-28 Gerd Moellmann <gerd@gnu.org>
504
7b0870b2
GM
505 * xterm.c (x_set_glyph_string_background_width): Set the glyph
506 string's background width so that multi-line mouse-face is drawn
507 to the right edge of the window.
508 (show_mouse_face): Set the row's mouse_face_p flag after drawing
509 glyphs.
510
6b6e2422 511 * dispnew.c (direct_output_for_insert): Set updated_area
5b52c296 512 before inserting/writing glyphs.
6b6e2422 513
eaaa65b0
GM
514 * xdisp.c (display_mode_element): Use string_byte_to_char to
515 determine character positions in strings, use chars_in_text
516 instead of strwidth.
517 (dump_glyph_row) [GLYPH_DEBUG]: Take a glyph row instead of
518 a matrix as parameter; this is easier to use from GDB.
519
9ad62cf8
MB
5202001-08-28 Miles Bader <miles@gnu.org>
521
2ee1aa00
SM
522 * textprop.c (Fprevious_single_char_property_change)
523 (Fnext_single_char_property_change): Doc fixes.
9ad62cf8 524
32171635
GM
5252001-08-27 Gerd Moellmann <gerd@gnu.org>
526
47d57b22
GM
527 * fileio.c (Finsert_file_contents): Allocate, restore, and
528 free composition data in the case of REPLACE not being nil.
529
530 * xdisp.c (init_from_display_pos, init_to_row_end): Return 0 if
531 there exist overlay strings with newlines at POS.
532 (text_outside_line_unchanged_p): Return 0 if changes start at
533 START and overlays exist at START. Likewise for END.
534 (try_window_id): Give up if init_to_row_end returns 0.
535
32171635
GM
536 * fileio.c (Finsert_file_contents): Call Fset_buffer_multibyte
537 unconditionally.
538
e1249666
GM
5392001-08-24 Gerd Moellmann <gerd@gnu.org>
540
33954c45
GM
541 * keymap.c (access_keymap): Return the cdr of the binding of
542 a generic character instead of its definition (KEY . BINDING).
543
e1249666
GM
544 * fileio.c (Finsert_file_contents): Set coding's dest_multibyte
545 to 0 also in the REPLACE case.
546
fb4c6c96
AC
5472001-08-24 Andrew Choi <akochoi@cse.cuhk.edu.hk>
548
549 * fileio.c (Ffile_readable_p) [macintosh]: Call access instead of
550 open to determine whether file is readable (as for DOS_NT).
551
59ecf80b
GM
5522001-08-23 Gerd Moellmann <gerd@gnu.org>
553
554 * fileio.c (Finsert_file_contents): If VISIT is non-nil, and
555 coding.type is coding_type_no_conversion or coding_type_raw_text,
556 use Fset_buffer_multibyte to make the buffer unibyte if REPLACE is
557 non-nil instead of just setting enable_multibyte_characters in the
558 buffer to nil.
559
40e33037
GM
5602001-08-22 Gerd Moellmann <gerd@gnu.org>
561
374388c3
GM
562 * dispextern.h (struct face_cache): Add member
563 menu_face_changed_p.
564
565 * xfaces.c (menu_face_changed_default): New variable.
566 (menu_face_changed_count): Variable removed.
567 (Finternal_set_lisp_face_attribute): Doc fix. If FRAME is t, set
568 the menu_face_changed_default flag, otherwise set the FRAME's
569 menu_face_changed_p flag if the `menu' face has been changed.
570 Prevent calling set_font_frame_param if FRAME is t.
571 (make_face_cache): Initialize cache's menu_face_changed_p
572 from menu_face_changed_default.
573 (realize_basic_faces): Look into the frame's face cache to
574 determine if the menu appearance needs updating.
575
40e33037
GM
576 * keymap.c (access_keymap): Fix last change to not consider
577 IDX when it has modifiers.
578
859ea4b8
GM
5792001-08-21 Gerd Moellmann <gerd@gnu.org>
580
581 * keymap.c (access_keymap): If a binding of the form (GENERIC-CHAR
582 . BINDING) exists, where GENERIC-CHAR is the generic character of
583 the charset of IDX, return BINDING unless there exists a binding
584 for IDX itself.
585
e8660d73
GM
5862001-08-16 Gerd Moellmann <gerd@gnu.org>
587
cca1b1d7
GM
588 * xrdb.c (SYSV): Don't define on Solaris 2.
589 From Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>.
590
e8660d73 591 * xdisp.c (move_it_by_lines) <DVPOS < 0>: Start at the beginning
2ee1aa00 592 of the screen line, not text line, containing IT's current position.
e8660d73 593
93aba6fc
GM
5942001-08-15 Gerd Moellmann <gerd@gnu.org>
595
288d4e06
GM
596 * window.c (window_scroll_pixel_based): Don't recenter if
597 PT is partially visible in the window.
598
3452efc2
SM
599 * xterm.c (expose_window_tree, expose_window, expose_line):
600 Return 1 when overwriting mouse-face.
82f053ab
GM
601 (expose_frame): If mouse-face was overwritten, redo it.
602
93aba6fc
GM
603 * xfaces.c (x_update_menu_appearance): Don't call
604 set_frame_menubar, let the next redisplay do it.
605
858a55c1
AI
6062001-08-14 Andrew Innes <andrewi@gnu.org>
607
608 * w32term.c (x_draw_glyph_string): Draw relief (if any) before
609 drawing glyph string.
610
3a990b67
EZ
6112001-08-14 Eli Zaretskii <eliz@is.elta.co.il>
612
613 * s/hiuxwe2.h: New file, for the HITACHI SR2001/SR2201 series
614 running HI-UX/MPP.
615
04386463
GM
6162001-08-14 Gerd Moellmann <gerd@gnu.org>
617
618 * xfaces.c (x_update_menu_appearance): Save and restore value of
619 interrupt_input_blocked.
620
3e6385a4
GM
6212001-08-13 Gerd Moellmann <gerd@gnu.org>
622
b0e619b4
GM
623 * xdisp.c (move_it_by_lines) <DVPOS < 0>: If not already on
624 a line start, move back to the line start.
3452efc2 625
0de73d5a
GM
626 * xdisp.c (resize_echo_area_exactly): Don't resize the mini-window
627 exactly when a mini-buffer is active.
628
3e6385a4
GM
629 * keyboard.c (make_lispy_event): Interpret double_click_fuzz
630 in units of 1/8 character on non window-system frames.
631 (syms_of_keyboard) <double-click-fuzz>: Doc fix.
632
d1b5f629
EZ
6332001-08-10 Eli Zaretskii <eliz@is.elta.co.il>
634
635 * keyboard.c (syms_of_keyboard) <double-click-fuzz>: Fix a typo in
636 a doc string.
637
eaa2319f
GM
6382001-08-09 Gerd Moellmann <gerd@gnu.org>
639
8e3189f0
GM
640 * keyboard.c (Vpre_help_message): New variable.
641 (syms_of_keyboard): Initialize and staticpro it.
642 (show_help_echo): Record current message before displaying a
643 help-echo, and restore that message when clearing the help.
644
eaa2319f
GM
645 * xfns.c (x_create_im): Remove prototype.
646
647 * xdisp.c (mark_window_display_accurate_1): Remove an assertion.
648
649 * dispnew.c (adjust_glyph_matrix): Undo last change.
3452efc2 650
eaa2319f
GM
6512001-08-08 Gerd Moellmann <gerd@gnu.org>
652
653 * dispnew.c (adjust_glyph_matrix): In the optimization for
3452efc2 654 windows whose height has changed, disable partially visible lines.
eaa2319f 655
17fdcfc8
GM
6562001-08-07 Gerd Moellmann <gerd@gnu.org>
657
22d01aed 658 * window.c (Frecenter): If ARG < 0, and on a window system
3452efc2 659 frame, count in some empty lines when we can't move -ARG lines down.
22d01aed 660
17fdcfc8
GM
661 * xdisp.c (start_display): Don't try to determine the continuation
662 lines width if lines are truncated. It's superfluous and leads to
663 incorrect results if POS is not visible in the window after
664 reseating the iterator at the previous line start.
665
8e3fe78e
GM
6662001-08-06 Gerd Moellmann <gerd@gnu.org>
667
668 * xterm.c (x_dump_glyph_string): Put in #if GLYPH_DEBUG.
669
98a8938c
GM
6702001-08-06 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
671
672 * alloc.c (init_stack): Remove declaration.
673
18f9986a
GM
6742001-08-03 Gerd Moellmann <gerd@gnu.org>
675
5e1f85e0
GM
676 * keyboard.c (read_key_sequence): Check that key is an integer
677 before comparing it with quit_char.
678 (add_command_key): Use larger_vector.
679 (read_char_x_menu_prompt): Instead of converting symbol and
680 integer events into conses (EVENT . nil), use (EVENT . disabled)
3638868e 681 which cannot be confused with valid events.
5e1f85e0
GM
682 (read_char): When reading from Vunread_command_events, check for
683 events of the form (EVENT . disabled) instead of
684 (EVENT . nil).
685
18f9986a
GM
686 * xdisp.c (resize_mini_window): If Vmax_mini_window_height is
687 a float, determine the max height from the frame's height.
688
fbc7f2a6
GM
6892001-08-02 Gerd Moellmann <gerd@gnu.org>
690
691 * xdisp.c (redisplay_internal): Take message_cleared_p into
692 account only if minibuf_level == 0.
693
81b1a79d
GM
6942001-08-01 Gerd Moellmann <gerd@gnu.org>
695
e5c60873
GM
696 * xdisp.c (redisplay_internal): Add a check for the last
697 displayed message.
3452efc2 698
6e019995
GM
699 * xdisp.c (message_cleared_p): New variable.
700 (clear_message): Set message_cleared_p when clearing the current
701 message.
702 (redisplay_internal): Look at message_cleared_p to capture
703 the case that the echo area should be cleared.
704
308a74d8
GM
705 * keyboard.c (command_loop_1): Fix spelling of
706 resize_echo_area_exactly.
707
3452efc2 708 * dispextern.h (resize_echo_area_exactly): Fix typo in function name.
308a74d8
GM
709
710 * xdisp.c (resize_echo_area_exactly): Fix typo in function name.
711
81b1a79d
GM
712 * xfns.c (x_set_tool_bar_lines): Clear the tool bar window's
713 current matrix when the window gets smaller.
714
ada329e6
EZ
7152001-08-01 Eli Zaretskii <eliz@is.elta.co.il>
716
717 * print.c (strout): Cast the character passed to insert_char to
718 unsigned char, to avoid sign extension when it is promoted to int.
719
ed86208c
GM
7202001-07-31 Gerd Moellmann <gerd@gnu.org>
721
722 * fileio.c (Finsert_file_contents): Don't treat a return value
723 of 0 from emacs_read as an IO error.
724
6594ac22
GM
7252001-07-30 Gerd Moellmann <gerd@gnu.org>
726
cef68af5
GM
727 * keyboard.c (abs): New macro.
728 (double_click_fuzz): New variable.
729 (make_lispy_event): Use it to determine what makes a double-click.
730 (syms_of_keyboard): DEFVAR_INT it.
731
6594ac22
GM
732 * xmenu.c (set_frame_menubar): Take into account that
733 f->menu_bar_vector can be nil, and not a vector. From Ken Raeburn
734 <raeburn@gnu.org>.
735
75c5350a
GM
7362001-07-27 Gerd Moellmann <gerd@gnu.org>
737
738 * xterm.c (x_get_glyph_string_clip_rect): Minor cleanup.
739
740 * dispnew.c (shift_glyph_matrix, blank_row): Fix computation
741 of row's visible height.
742
743 * xdisp.c (init_from_display_pos): If POS is in an overlay string,
3452efc2
SM
744 deal with the first overlay string having an image `display' property.
745 (try_window_reusing_current_matrix, compute_line_metrics):
746 Fix computation of row's visible height for the case that part of the
75c5350a
GM
747 row is invisible above and part of the row is at the same time
748 invisible below the window.
749
ac49effe
GM
7502001-07-26 Gerd Moellmann <gerd@gnu.org>
751
752 * xfns.c (x-show-tip): Doc fix.
3452efc2 753
ac49effe
GM
754 * xfns.c (Vx_max_tooltip_size): New variable.
755 (syms_of_xfns): DEFVAR_LISP it.
756 (Fx_show_tip): Set frame's window_width to the width of the
757 window. Use a maximum tooltip size specified by
758 Vx_max_tooltip_size, if that has valid contents.
759 (x_create_tip_frame): Set tooltip buffer's truncate-lines to nil.
3452efc2 760
8c3b00cb
AI
7612001-07-26 Andrew Innes <andrewi@gnu.org>
762
763 * w32term.c (x_display_list): New variable.
764 (w32_term_init): Set it.
765
766 * w32term.h (x_display_list): New extern.
767
16098288
GM
7682001-07-26 Gerd Moellmann <gerd@gnu.org>
769
770 * xdisp.c (resize_mini_window): Give up when inhibit-redisplay
3452efc2
SM
771 is non-nil, instead of when redisplaying_p is non-zero.
772 See comment there.
16098288
GM
773 (mark_window_display_accurate_1): Add an assertion.
774
64c5be50
GM
7752001-07-25 Gerd Moellmann <gerd@gnu.org>
776
e743f599
GM
777 * dispextern.h (struct it): Increase size of ctl_chars to 16.
778
563b384d
GM
779 * xfns.c (Fx_file_dialog): Block/unblock input while processing
780 events so that we get a chance of processing expose events.
781
64c5be50
GM
782 * xdisp.c (resize_mini_window): Don't resize while redisplaying.
783
296808a5
GM
7842001-07-24 Gerd Moellmann <gerd@gnu.org>
785
786 * xfns.c (valid_image_p): Protect better against invalid image
787 specifications. Previous code could signal an error.
788
5247262a
GM
7892001-07-23 Gerd Moellmann <gerd@gnu.org>
790
3452efc2 791 * indent.c (current_column): Fix column computation in the
f1004faf
GM
792 presence of display table entries.
793 (current_column_1, Fmove_to_column, compute_motion): Likewise.
794
dd42b31a
GM
795 * dispnew.c (adjust_glyph_matrix): In the optimization for
796 windows whose height has changed, use the new window height
797 to compute which rows to invalidate.
798
9e5a7f2a
GM
799 * editfns.c (toplevel) [STDC_HEADERS]: Include float.h.
800 (MAX_10_EXP): New macro.
801 (Fformat): Use it.
802
5247262a
GM
803 * coding.c (code_convert_region): Handle the multibyte case if
804 decoding ends with CODING_FINISH_INSUFFICIENT_SRC.
805
177ab8ce
GM
8062001-07-20 Gerd Moellmann <gerd@gnu.org>
807
6e07c0a5
GM
808 * dispextern.h (struct face): Change type of `stipple' to
809 int; it's an ID.
810
177ab8ce
GM
811 * xterm.c (x_fill_stretch_glyph_string): Remove an assertion.
812
b5b80599
GM
8132001-07-19 Gerd Moellmann <gerd@gnu.org>
814
4e2a256b
GM
815 * dispnew.c (update_window): Don't set the cursor at the end
816 of the update if display update has been paused.
817
3452efc2 818 * composite.h (syms_of_composite): Renamed from syms_of_composition.
b5b80599 819
c1fd9232
KR
8202001-07-18 Ken Raeburn <raeburn@gnu.org>
821
822 * fns.c (Fset_char_table_default): Check that a charset is defined
823 before checking its dimension.
824
928a85c1
KR
8252001-07-17 Ken Raeburn <raeburn@gnu.org>
826
827 * coding.c (setup_coding_system): Don't do any designation based
828 on reg_bits if charset is not yet defined.
829
fb4c6c96 830 * lisp.h (XVECTOR): Verify correct object type before returning a
232e274c
KR
831 pointer, using eassert.
832
de11c1ea
GM
8332001-07-17 Gerd Moellmann <gerd@gnu.org>
834
3452efc2
SM
835 * keyboard.c (KBD_BUFFER_SIZE) [!HAVE_WINDOW_SYSTEM]:
836 Increase to 4096 because of paste problems reported on GNU/Linux.
de11c1ea 837
467f1209
GM
8382001-07-17 Jan Nieuwenhuizen <janneke@gnu.org>
839
840 * emacs.c (USAGE1): Add +LINE:COLUMN option help.
841
c3d6be34
GM
8422001-07-16 Gerd Moellmann <gerd@gnu.org>
843
c1d61a7d
GM
844 * fileio.c (unwind_read): Function removed.
845 (read_non_regular, read_non_regular_quit): New functions.
846 (Finsert_file_contents): When reading from non-regular files,
847 arrange to catch a `quit' and terminate the loop. Rearrange
848 code so that a `quit' when reading from a regular file doesn't
849 insert text in the buffer.
850
c3d6be34
GM
851 * xfaces.c (clear_face_cache): Clear fonts on a display basis.
852 Clear faces afterwards.
853 (clear_font_table): Take a x_display_info parameter. Don't free
854 fonts being the default font of any frame on the given display.
855
e06aa1f9
GM
8562001-07-13 Gerd Moellmann <gerd@gnu.org>
857
858 * xdisp.c (get_next_display_element): Use CHAR_STRING_NO_SIGNAL
859 instead of CHAR_STRING which can signal an error.
860
861 * charset.c (char_to_string_1): Extracted from char_to_string.
862 Return -1 instead of signaling an error.
863 (char_to_string): Use it.
864
865 * charset.h (CHAR_STRING_NO_SIGNAL): New macro.
866
176c92e6
SM
8672001-07-12 Stefan Monnier <monnier@cs.yale.edu>
868
869 * coding.c (Ffind_coding_systems_region_internal): If safe_codings
870 is t, don't try to append anything to it.
871
1c56232f
EZ
8722001-07-12 Eli Zaretskii <eliz@is.elta.co.il>
873
874 * dired.c (file_name_completion): Pass dp->d_name to
875 Fstring_match, not elt, which is always nil here.
876
1d2b2268
GM
8772001-07-12 Gerd Moellmann <gerd@gnu.org>
878
879 * xselect.c (x_decline_selection_request): Handle errors
880 caused by receivers that have vanished.
881
882 * xterm.c (XTread_socket) <PropertyNotify>: Put the code
883 ignoring events on foreign windows in #if 0. Always dispatch
884 the event after checking it with x_handle_property_notify.
885
886 * xselect.c (TRACE0, TRACE1, TRACE2): New macros, defined
176c92e6
SM
887 depending on TRACE_SELECTION. Replace fprintfs in #if 0 with
888 TRACE macros to facilitate debugging. Add additional trace statements.
1d2b2268
GM
889 (toplevel): Add prototypes for file-local functions.
890 (x_atom_to_symbol): Remove DPYINFO parameter.
891
fe5a0162
SM
8922001-07-11 Stefan Monnier <monnier@cs.yale.edu>
893
894 * w32menu.c (menubar_selection_callback, w32_menu_show):
895 Initialize `entry' to nil.
896 (w32_dialog_show): Remove unused `save_wv' variable.
897 (name_is_separator): Recognize "--:foo" and "--foo-bar".
898
a777242c
GM
8992001-07-11 Gerd Moellmann <gerd@gnu.org>
900
8ee5b6a3
GM
901 * xdisp.c (try_cursor_movement): Prevent a warning from GCC 3.0.
902
d0e2444e
GM
903 * fileio.c (unwind_read): Print a message when discarding inserted
904 text or switching the buffer to unibyte. Change parameter.
905 (Finsert_file_contents): Don't pass VISIT to unwind_read.
fe5a0162 906
a777242c
GM
907 * fileio.c (unwind_read): New function.
908 (Finsert_file_contents): Record it as unwind-function for
909 the case that reading is interrupted by C-g.
910
ae794295
GM
9112001-07-10 Gerd Moellmann <gerd@gnu.org>
912
fe5a0162 913 * dispnew.c (update_window): Don't skip the header-line
58f8612a
GM
914 update when scrolling_window returns 0.
915
6b05fae3
GM
916 * xfaces.c (unload_color): Do nothing if PIXEL is -1.
917
918 * xfns.c (Fx_create_frame): Initialize frame colors to -1,
58f8612a 919 for the case that x_decode_color signals an error.
6b05fae3 920
ae794295
GM
921 * xdisp.c (add_to_log): Do nothing if called asynchronously.
922
bb6e8cee
GM
9232001-07-09 Gerd Moellmann <gerd@gnu.org>
924
925 * sound.c (toplevel): Include <signal.h> and "syssignal.h".
926 (vox_configure, vox_close) [SIGIO]: Block/unblock SIGIO
927 around ioctls.
928
36b40a8a
EZ
9292001-07-06 Eli Zaretskii <eliz@is.elta.co.il>
930
24b97d4b
EZ
931 * dosfns.c (syms_of_dosfns): Add \n\ at the end of a line in the
932 doc string line for dos-timezone-offset.
933
36b40a8a
EZ
934 * msdos.c (do_visible_bell): Add \n\ at the end of each line of
935 inline assembly, to avoid compiler warnings.
24b97d4b
EZ
936 (syms_of_msdos): Add \n\ at the end of a line in the doc string
937 line for dos-unsupported-char-glyph.
36b40a8a
EZ
938
939 * buffer.c (syms_of_buffer) [if 0]: Avoid a warning from GCC 3.0.
940
0967b4b0
GM
9412001-07-05 Gerd Moellmann <gerd@gnu.org>
942
f25cfe53
GM
943 * sound.c: Include Emacs' header files with #include "...".
944
0967b4b0
GM
945 * eval.c (specbind): Additionally record the buffer that was
946 current when a buffer-local or frame-local variable was bound.
947
c347a1c3
GM
9482001-07-04 Gerd Moellmann <gerd@gnu.org>
949
950 * xterm.c (x_produce_glyphs): Don't convert multibyte characters
951 to unibyte characters in unibyte buffers.
952
6332ca8a
GM
9532001-07-03 Gerd Moellmann <gerd@gnu.org>
954
38472d44
GM
955 * eval.c (specbind): If SYMBOL has a frame-local binding, record
956 the frame on the binding stack. Change format of entries for
957 local bindings on the binding stack to '(SYMBOL . WHERE)'.
958 (unbind_to): Handle unbinding a frame-local variable.
959
6332ca8a 960 * xdisp.c (compute_line_metrics): On ttys, subtract continuation
fe5a0162 961 glyphs and truncation glyphs at the end of a row from its pixel width.
6332ca8a
GM
962 (dump_glyph_row): Print row's continuation_lines_width.
963 (try_window_id): Take the shortcut if ZV is visible in the
964 window, but there are actually no changes at ZV.
965
63d1b174
GM
9662001-07-02 Gerd Moellmann <gerd@gnu.org>
967
4c175203
GM
968 * xterm.h (x_free_dpy_colors): Add prototype.
969
970 * xterm.c (cvt_pixel_dtor): Call x_free_dpy_colors with the
971 right number of arguments.
972
0b54ce28
GM
973 * Makefile.in (tags): Depend on $(lwlibdir)/TAGS.
974 ($(lwlibdir)TAGS): New target.
4c175203 975 (TAGS): Fix dependency list.
0b54ce28 976
63d1b174
GM
977 * xterm.c (x_list_fonts): Make sure XFreeFont is called
978 with input blocked.
979
d827466c
GM
9802001-06-30 Gerd Moellmann <gerd@gnu.org>
981
982 * emacs.c (main): Remove extern declaration for sys_nerr, which
983 isn't used and causes a compilation error with GCC 3.0 on
984 FreeBSD 4.3.
985
b5cb1ada
GM
9862001-06-27 Gerd Moellmann <gerd@gnu.org>
987
a5d3ec3f 988 * widget.c (EmacsFrameSetCharSize): Turn off atimers and block
3452efc2 989 SIGIO around the code where Xt might wait for a ConfigureNotifyEvent.
a5d3ec3f
GM
990 (toplevel): Include <signal.h> and syssignal.h.
991
b5cb1ada
GM
992 * sound.c (vox_configure, vox_close): Turn off atimers
993 around ioctls.
994
d9bad487
GM
9952001-06-26 Gerd Moellmann <gerd@gnu.org>
996
fdbb67fe
GM
997 * keyboard.c (read_char) <non_reread>: Record the previous idle
998 start time before calling timer_stop_idle.
999 (read_char) <reread_first>: After processing a help-echo event,
1000 restore the previous idle start time.
1001
d9bad487
GM
1002 * xdisp.c (handle_invisible_prop): Deal with overlay strings at
1003 the start of invisible text.
1004 (setup_for_ellipsis): New function.
1005 (next_overlay_string): After all overlay strings have been
1006 processed, display an ellipsis if necessary.
1007 (load_overlay_strings, get_overlay_strings): Add parameter CHARPOS.
1008 (push_it): Initialize display_ellipsis_p on the iterator's stack.
1009
1010 * dispextern.h (struct iterator_stack_entry): Add member
1011 display_ellipsis_p.
1012
2b9c25e0
GM
10132001-06-25 Gerd Moellmann <gerd@gnu.org>
1014
80de57df
GM
1015 * widget.c (EmacsFrameSetCharSize): Set XtNwaitForWm depending
1016 on the value of the wait-for-wm frame parameter.
1017
1018 * xterm.h (struct x_output): Add member wait_for_wm.
1019
1020 * xfns.c (Qwait_for_wm): New variable.
1021 (x_frame_parms): Add entry for `wait-for-wm".
1022 (x_set_wait_for_wm): New function.
1023 (Fx_create_frame): Call x_default_parameter for wait-for-wm.
1024 (syms_of_xfns): Initialize and staticpro Qwait_for_wm.
1025
2b9c25e0
GM
1026 * xdisp.c (try_window_id) <all changes below window end>: Don't
1027 take this shortcut if ZV is visible in the window.
1028 (try_window_id): When checking for window start being in changed
1029 text, don't check that the buffer's size has changed.
1030
f772775c
RS
10312001-06-23 Richard M. Stallman <rms@gnu.org>
1032
1033 * minibuf.c (Fcompleting_read): Doc fix.
1034
fa9090b8
GM
10352001-06-19 Gerd Moellmann <gerd@gnu.org>
1036
1037 * composite.c (Ffind_composition_internal): Accept ZV
1038 and a string's end position as POS.
1039
f6f1beba
GM
10402001-06-18 Gerd Moellmann <gerd@gnu.org>
1041
1042 * composite.c (Ffind_composition_internal): Check POS
1043 for validity.
1044
0ae83348
EZ
10452001-06-15 Eli Zaretskii <eliz@is.elta.co.il>
1046
1047 * editfns.c (Fmessage_box): If the frame is not under a window
1048 system, output the message in the echo area.
1049
e4cdc335
RS
10502001-06-14 Richard M. Stallman <rms@gnu.org>
1051
1052 * xdisp.c (try_window_id): When EOB is visible, don't treat
1053 insertion at EOB as if it were "off the bottom of the screen."
1054
a55a5f3c
AI
10552001-06-11 Andrew Innes <andrewi@gnu.org>
1056
1057 * w32proc.c (create_child): Add new parameter is_gui_app.
1058 (w32_executable_type): Add new parameter is_gui_app.
1059 (sys_spawnve): Use it.
1060 (sys_kill): Fake ^C for SIGINT, and ^Break (if possible) for
1061 SIGQUIT. This matches better how the signals are interpreted by
1062 MSVC compiled programs.
1063 (syms_of_ntproc): Update docstring.
1064
1b85dc1c
SM
10652001-06-02 Stefan Monnier <monnier@cs.yale.edu>
1066
1067 * xterm.c (clear_mouse_face): Reset dpyinfo->mouse_face_overlay as
1068 well otherwise note_mouse_highlight might optimize away highlighting
1069 if we pass over that same overlay again.
1070
b75f8eab
EZ
10712001-06-02 Eli Zaretskii <eliz@is.elta.co.il>
1072
1073 * lread.c (Fload): Document that the argument is run via
1074 substitute-in-file-name.
1075
94843cc1
GM
10762001-05-31 Gerd Moellmann <gerd@gnu.org>
1077
b14659e6
GM
1078 * Makefile.in (bootstrap-doc): New target.
1079 (bootstrap-emacs): Depend on it.
1080
0894672f
GM
1081 * fileio.c (Fdo_auto_save): Don't try to create the directory of
1082 auto-save-list-file-name when shutting down Emacs, because
1083 creating the directory might signal an error, and leaves
1084 Emacs in a strange state.
1085
94843cc1
GM
1086 * term.c: (tty_cursor_hidden): New variable.
1087 (update_begin): Don't call tty_hide_cursor. Clean up.
1088 (update_end, set_terminal_window, set_scroll_region): Clean up.
1089 (ring_bell, reset_terminal_modes): Clean up.
1090 (tty_hide_cursor, tty_show_cursor): Hide/show cursor depending
1091 on tty_cursor_hidden.
1092 (write_glyphs): Call tty_hide_cursor.
1093
db3a49a6
SM
10942001-05-30 Stefan Monnier <monnier@cs.yale.edu>
1095
1096 * buffer.c (copy_overlays): Make ENABLE_CHECKING happy.
1097
8bd189fb
GM
10982001-05-30 Gerd Moellmann <gerd@gnu.org>
1099
6f1be3b9
GM
1100 * xfns.c (enum image_value_type): New enumerator
1101 IMAGE_STRING_OR_NIL_VALUE.
1102 (parse_image_spec): Handle it.
1103 (xbm_format, pbm_format): Use it for :foreground and :background.
1104 (xbm_load, pbm_load): Check for nil color names.
1105
8bd189fb
GM
1106 * xterm.c (note_mouse_highlight): If an overlapping overlay
1107 exists, but we find that we highlight the same overlay as before,
1108 don't do the highlighting again.
1109
7bdba03c
GM
11102001-05-29 Gerd Moellmann <gerd@gnu.org>
1111
4c329aa8
GM
1112 * xmenu.c (single_submenu, xmenu_show) [!HAVE_MULTILINGUAL_MENU]:
1113 Protect unibyte strings created by replacing their multibyte
1114 equivalents in menu_items.
1115
e15e2828
GM
1116 * keymap.c (Fsingle_key_description): NUL-terminate the string
1117 buffer before calling build_string.
1118
7bdba03c
GM
1119 * callproc.c (Fcall_process): Deal with decode_coding returning
1120 CODING_FINISH_INCONSISTENT_EOL.
1121
89c8dc6c
GM
11222001-05-28 Gerd Moellmann <gerd@gnu.org>
1123
db3a49a6 1124 * xmenu.c (xmenu_show) [!HAVE_MULTILINGUAL_MENU]: Don't overwrite
3d9d7a9b
GM
1125 an item's name with its key description in case the description
1126 is a multibyte string.
1127
1128 * keymap.c (Fsingle_key_description): Create a multibyte string
1129 only if necessary.
1130
eb04d6cd
GM
1131 * macros.c (Fstart_kbd_macro): Doc fix.
1132
8bd6307f
GM
1133 * xterm.c (cursor_in_mouse_face_p): New function.
1134 (x_draw_stretch_glyph_string): Use it to choose a different GC
1135 when drawing a cursor within highlighted text.
1136
e26c4089
GM
1137 * editfns.c (char_property_eq): Put in #if 0.
1138
1139 * indent.c (string_display_width): Put in #if 0.
1140
1141 * lread.c (Fload): Remove unused label.
1142
89c8dc6c
GM
1143 * termcap.c (speeds): Put in #if 0.
1144
9a1211f2
GM
11452001-05-18 Gerd Moellmann <gerd@gnu.org>
1146
29148a3f
GM
1147 * eval.c (call_debugger): Don't bind inhibit-eval-during-redisplay.
1148
9a1211f2
GM
1149 * xfaces.c (xlfd_point_size): Don't divide pixel size from
1150 transformation matrix by 10.
1151
09393d07
GM
11522001-05-16 Gerd Moellmann <gerd@gnu.org>
1153
1154 * xfns.c (x_set_foreground_color): Change frame's cursor_pixel
1155 only if it's equal to the former foreground pixel color.
db3a49a6 1156 (x_set_foreground_color, x_set_background_color)
09393d07
GM
1157 (x_set_mouse_color, x_set_cursor_color): Cleaned up.
1158
460e6bae
GM
11592001-05-16 Dave Love <fx@gnu.org>
1160
1161 * insdel.c (signal_before_change, signal_after_change): Consider a
1162 local change hook which changes the buffer.
99c78ce8
GM
1163
1164 * process.c (read_process_output): Don't call signal_after_change
1165 and update_compositions after insert_from_string_before_markers.
1166
dbcf3c03
GM
11672001-05-16 Gerd Moellmann <gerd@gnu.org>
1168
a90b3d3c
GM
1169 * xfaces.c (split_font_name): Use the right field when
1170 checking for `[...]' syntax.
1171
1b7818b4
GM
1172 * buffer.c (copy_overlays): New function.
1173 (clone_per_buffer_values): Use it.
1174
1175 * buffer.h (OVERLAY_PLIST): New macro.
1176
9bae8781
GM
1177 * keymap.c (Fsingle_key_description): Replace a build_string with
1178 a make_multibyte_string. From Kenichi Handa <handa@etl.go.jp>.
1179
dbcf3c03
GM
1180 * fontset.c (Ffontset_info): Check that face is non-null
1181 before accessing its fields.
1182
8a1ae4dd
GM
11832001-05-15 Gerd Moellmann <gerd@gnu.org>
1184
18a0a39e
GM
1185 * keyboard.c (read_key_sequence): Prevent generating a fake
1186 prefix key twice.
1187
e335b66a
GM
1188 * xfaces.c (split_font_name): Handle `[...]' for the right
1189 font name fields.
1190
8a1ae4dd
GM
1191 * ccl.c (ccl_driver): Don't copy remaining bytes in case
1192 of CCL_STAT_INVALID_CMD.
1193
3cf80731
SM
11942001-05-14 Stefan Monnier <monnier@cs.yale.edu>
1195
33568849
SM
1196 * eval.c (Fdefvar): Only record (defvar <var>) in the load-history
1197 in <var> has no default value yet.
1198
3cf80731
SM
1199 * xfaces.c (try_alternative_families): First try the FAMILY.
1200 And if nothing is found in the end, try again with scalable fonts.
1201 (try_font_list): Let try_alternative_families do a bit more of
1202 the work. Only use FAMILY if it is not nil.
1203 (syms_of_xfaces) <scalable-fonts-allowed>: Fix docstring.
1204
933b0249
GM
12052001-05-14 Gerd Moellmann <gerd@gnu.org>
1206
58e5af83
GM
1207 * xterm.c (note_mouse_highlight): Avoid changing the mouse
1208 pointer shape when show_mouse_face has already done it.
33568849 1209
58e5af83 1210 * xterm.c (x_draw_glyphs): Fix computation of rightmost x for
557f7c34
GM
1211 full-width rows.
1212
7b16a6bf
GM
1213 * xfaces.c (split_font_name): Make sure to leave the loop
1214 with the right value of `i'.
3cf80731 1215
933b0249
GM
1216 * xfaces.c (split_font_name): Handle matrix transformations
1217 in the pixel and point size fields of XLFD font names.
1218 (xlfd_point_size): Likewise.
1219
dddcbf00
EZ
12202001-05-12 Eli Zaretskii <eliz@is.elta.co.il>
1221
3cf80731 1222 * w32fns.c (w32_to_x_font): Change prototype to fit the declaration.
c7501041
EZ
1223 (x_to_w32_font): Add prototype.
1224
7689ef0b
EZ
1225 * regex.c (malloc, realloc, free) [emacs]: Undefine before
1226 redefining, to avoid compiler warnings.
1227
e7c15bba
EZ
1228 * w32proc.c: Include syssignal.h, to avoid compiler warnings.
1229
dddcbf00
EZ
1230 * w32bdf.c (search_file_line, set_bdf_font_info, seek_char)
1231 (w32_get_bdf_glyph): Cast between unsigned char and char when
1232 passing arguments to subroutines, to shut up compiler warnings.
1233 (w32_get_bdf_glyph): Don't mix signed and unsigned when calling
1234 GET_HEX_VAL.
1235
1236 * xfaces.c: Include keyboard.h before frame.h, not after it.
1237
1238 * widget.c: Include keyboard.h before frame.h.
1239
1240 * w32term.h (struct image, struct face): Forward declaration, to
1241 avoid compiler warnings.
1242
7bd2d083
GM
12432001-05-11 Gerd Moellmann <gerd@gnu.org>
1244
47e72862
GM
1245 * keyboard.c (read_key_sequence): Don't modify events when
1246 generating fake prefix keys (mode-line, scroll-bar, ...) since
1247 this prevents proper processing of such events when pushed back
1248 into unread-command-events.
1249
dd5f324b
GM
1250 * xterm.c (clear_mouse_face): Return 1 if text with mouse face was
1251 actually redrawn. Make the function static.
1252 (note_mouse_highlight): Fix a case where the mouse cursor
1253 was changed back to the text cursor.
1254
1255 * xterm.h (clear_mouse_face): Remove prototype.
1256
d88a79d4
GM
1257 * xdisp.c (try_window_id): Fix the fix and set the right
1258 window_end_vpos.
1259
1260 * xdisp.c (try_window_id): Fix computation of window end in the
1261 case that lines were deleted at the end of the window. Add some
1262 more debug_method_adds.
0416532f 1263
7bd2d083
GM
1264 * xfaces.c (try_alternative_families): New function.
1265 (try_font_list): Use it. If ATTRS specifies a family, check
1266 fonts from that family first.
1267 (choose_face_font): Remove code setting the family part of
1268 the pattern to nil.
1269
23fca891
GM
12702001-05-10 Gerd Moellmann <gerd@gnu.org>
1271
ff9aa2ca
GM
1272 * xdisp.c (try_window_id): Fix case of all changes before
1273 the window start.
7b2654b5 1274
23fca891
GM
1275 * xdisp.c (try_window_id): Add some xasserts.
1276
e9726794
GM
12772001-05-09 Gerd Moellmann <gerd@gnu.org>
1278
1279 * lisp.h (GLYPH_CHAR_VALID_P): Use CHAR_VALID_P.
1280
9e53a675
GM
12812001-05-09 Dave Love <fx@gnu.org>
1282
1283 * xdisp.c (GIVE_UP): Fix for K&R C.
1284
0d487c52
GM
12852001-05-09 Gerd Moellmann <gerd@gnu.org>
1286
fe88d421
GM
1287 * print.c (syms_of_print) <print-length, print-level>: Doc fix.
1288
0d487c52
GM
1289 * xterm.c (note_mouse_highlight): Don't change the mouse cursor
1290 back to the text cursor shape without need.
1291
1e9fc92e
GM
12922001-05-07 Gerd Moellmann <gerd@gnu.org>
1293
a2a6232e
GM
1294 * xfns.c (x_set_foreground_color): Set frame's cursor_pixel.
1295
1296 * dispextern.h (inverse_video): Declare extern.
1297
1e9fc92e
GM
1298 * keyboard.c (delete_kboard): Handle the case that selected_frame
1299 has been deleted in the course of x_connection_closed.
1300
12949a7f
EZ
13012001-05-03 Eli Zaretskii <eliz@is.elta.co.il>
1302
7b2654b5
SM
1303 * xterm.c (XTread_socket) <Expose> [!USE_TOOLKIT_SCROLL_BARS]:
1304 Fix the change from 2001-04-30.
12949a7f 1305
2fa2f461
GM
13062001-05-03 Gerd Moellmann <gerd@gnu.org>
1307
a779d213
GM
1308 * xfns.c (file_dialog_unmap_cb): New function.
1309 (Fx_file_dialog): Use it as XmNunmapCallback to capture the case
1310 where a dialog is closed via the window manager.
1311
7b2654b5 1312 * xdisp.c (try_window_id): Cases of changes all in front of
2fa2f461
GM
1313 the window start or all below the window end mostly rewritten.
1314 (redisplay_window): Move the tests if try_window_id is
1315 applicable to try_window_id.
1316 (GIVE_UP): New macro.
1317
3356df63
GM
13182001-05-02 Gerd Moellmann <gerd@gnu.org>
1319
a39202f6 1320 * xterm.c (expose_window): Return int. If W is the window
7b2654b5
SM
1321 currently being updated, mark the frame garbaged.
1322 Fix computation of rows intersecting the exposed rectangle.
a39202f6 1323 (expose_window_tree): Stop when expose_window returns 0.
7b2654b5 1324
3356df63
GM
1325 * xterm.c (x_draw_stretch_glyph_string): Don't draw background
1326 again if it has already been drawn.
1327
a9d2fd1d
SM
13282001-05-01 Stefan Monnier <monnier@cs.yale.edu>
1329
1330 * syntax.c (update_syntax_table): Check that oldi has the same
1331 properties as old_prop before deciding not to invalidate.
1332
c95fc5f1
GM
13332001-04-30 Gerd Moellmann <gerd@gnu.org>
1334
a9793e45
GM
1335 * undo.c (Fprimitive_undo): In a writable buffer, enable undoing
1336 read-only text that is so because of text properties.
1337
c95fc5f1 1338 * xterm.c (x_window_to_menu_bar) [USE_LUCID]: New function.
a9d2fd1d 1339 (XTread_socket) <Expose> [USE_LUCID]: Handle events for
c95fc5f1
GM
1340 windows that are components of a Lucid menu bar.
1341
5a5d9185
GM
13422001-04-27 Gerd Moellmann <gerd@gnu.org>
1343
1344 * term.c (turn_on_face): Fix reverse video handling on terminals
1345 that don't support colors.
1346
ba973f7a
GM
13472001-04-26 Gerd Moellmann <gerd@gnu.org>
1348
1349 * editfns.c (save_excursion_restore): Don't use XBUFFER on
1350 a non-buffer.
1351
8c56a983
GM
13522001-04-25 Gerd Moellmann <gerd@gnu.org>
1353
a728644c
GM
1354 * term.c (toggle_highlight): New function.
1355 (turn_on_face): Change handling of reverse video.
1356
7b2654b5
SM
1357 * process.c (wait_reading_process_input):
1358 Call record_asynch_buffer_change only if a timer really changed buffers.
c88164fe 1359
bfd8410f
GM
1360 * buffer.c (mouse_face_overlay_overlaps): Fix the computation
1361 of the number of overlays to check.
1362
be2488ca
GM
1363 * keyboard.c (command_loop_1): Redo change of 2001-03-12.
1364
8c56a983
GM
1365 * xdisp.c (try_window_id): Fix a case where window_end_pos
1366 and window_end_bytepos were not adjusted.
1367
522d42f7
GM
13682001-04-23 Gerd Moellmann <gerd@gnu.org>
1369
1370 * xfaces.c (compute_char_face): If buffer is unibyte, set CH to
1371 zero instead of -1.
1372
78c1afb6
EZ
13732001-04-21 Eli Zaretskii <eliz@is.elta.co.il>
1374
a9d2fd1d
SM
1375 * process.c (wait_reading_process_input) [!subprocesses]:
1376 Don't reference waiting_for_user_input_p, it's not defined in the
1377 branch without async subprocesses support.
78c1afb6 1378
a2fab450
GM
13792001-04-19 Gerd Moellmann <gerd@gnu.org>
1380
a122a38e
GM
1381 * keyboard.c (delete_kboard): Prevent a dangling reference
1382 from current_kboard to KB, which is freed.
1383
a9d2fd1d
SM
1384 * process.c (wait_reading_process_input):
1385 Call record_asynch_buffer_change after running timers, to make
a2fab450
GM
1386 read_key_sequence aware of buffer changes from under it.
1387
0f8d6dc7
GM
13882001-04-18 Gerd Moellmann <gerd@gnu.org>
1389
eeffb293
GM
1390 * xfaces.c (Qscalable_fonts_allowed): New variable.
1391 (realizing_basic_faces_p): Removed.
2fa2f461
GM
1392 (x_face_list_fonts): Special handling for realizing_basic_faces_p
1393 removed.
eeffb293 1394 (realize_basic_faces): Specbind Qscalable_fonts_allowed to t.
7b2654b5
SM
1395 (syms_of_xfaces): Initialize Qscalable_fonts_allowed. Change default
1396 for scalable-fonts-allowed to t.
eeffb293 1397
0f8d6dc7
GM
1398 * fileio.c (Finsert_file_contents): If the file size returned from
1399 stat is zero, set END to READ_BUF_SIZE. This makes sure we can
a9d2fd1d 1400 read from files on a procfs whose contents are generated dynamically.
0f8d6dc7 1401
eec2d1de
EZ
14022001-04-18 Eli Zaretskii <eliz@is.elta.co.il>
1403
1404 * gmalloc.c (__malloc_size_t) [__GNUC__]: If STDC_HEADERS is not
1405 defined, include stddef.h and use __SIZE_TYPE__ instead of size_t.
1406 (__memalign_hook): Make the two prototypes consistent.
1407
f4f480bd
GM
14082001-04-17 Gerd Moellmann <gerd@gnu.org>
1409
1410 * xdisp.c (redisplay_window): Make sure to clear the desired glyph
1411 matrix of mini-windows.
1412
52283633
SM
14132001-04-12 Stefan Monnier <monnier@cs.yale.edu>
1414
1415 * intervals.c (find_interval): Don't rebalance during signal handling.
1416
ec2423c9
GM
14172001-04-11 Gerd Moellmann <gerd@gnu.org>
1418
30cb0001 1419 * fns.c: Include blockinput.h.
52283633 1420
ec2423c9
GM
1421 * fns.c (Fplist_get): Don't QUIT if interrupt_input_blocked.
1422
719d83ad
GM
14232001-04-10 Gerd Moellmann <gerd@gnu.org>
1424
60f8d735
GM
1425 * fns.c (Fcompare_strings): Fix return values.
1426
afffeb57
GM
1427 * window.c (window_scroll): Change the meaning of N to mean
1428 N screen-fulls or N lines.
1429 (window_scroll_pixel_based, window_scroll_line_based)
1430 (scroll_command, Fscroll_other_window): Change accordingly.
1431
52283633
SM
1432 * window.c (window_scroll_pixel_based, Frecenter):
1433 Call window_box_height instead of using it.last_visible_y for the
afffeb57
GM
1434 height of the window.
1435
1436 * xdisp.c (redisplay_window) <recenter>: Call window_box_height
1437 instead of using it.last_visible_y for the height of the window.
52283633 1438
719d83ad 1439 * w32proc.c (sys_spawnve): Quote more chars for Cygwin.
8ddf3ee1 1440 From Dan Holmsand <dan@eyebee.com>.
719d83ad
GM
1441
1442 * w32.c (sys_open): Try to open file without _O_CREAT first, to be
8ddf3ee1
GM
1443 able to write to hidden and system files. From Dan Holmsand
1444 <dan@eyebee.com>.
719d83ad 1445
8ddf3ee1
GM
1446 * fileio.c (Fcopy_file) [WINDOWSNT]: Use CopyFile. From Dan
1447 Holmsand <dan@eyebee.com>.
719d83ad 1448
522ed7fb
GM
14492001-04-09 Gerd Moellmann <gerd@gnu.org>
1450
9170e5d4
GM
1451 * fns.c (Fplist_get, Fplist_put): Add QUITs.
1452
522ed7fb
GM
1453 * window.c (window_internal_height): Return 1 less if the
1454 window has a header line.
1455
1456 * xdisp.c (try_window_id): When scrolling on a terminal, take
1457 the change of window_internal_height into account.
1458
ceeb3d7d
EZ
14592001-04-09 Eli Zaretskii <eliz@is.elta.co.il>
1460
1461 * gmalloc.c (align): If the argument SIZE would overflow
1462 __malloc_ptrdiff_t, fail right away.
1463
63685b9d
GM
14642001-04-06 Gerd Moellmann <gerd@gnu.org>
1465
1466 * xfns.c (compute_tip_xy): Add parameters WIDTH and HEIGHT.
1467 Make sure the tooltip is completely visible.
1468 (x_make_gc): Use FRAME_X_SCREEN_NUMBER.
1469
1470 * xterm.h (FRAME_X_SCREEN_NUMBER): New macro.
1471
1472 * xmenu.c (xmenu_show): Use FRAME_X_SCREEN_NUMBER.
1473
3ffb33bb
DL
14742001-04-06 Dave Love <fx@gnu.org>
1475
52283633
SM
1476 * composite.c (update_compositions) <check_mask & CHECK_HEAD>:
1477 Fix test of `from'.
3ffb33bb 1478
869fb12c
GM
14792001-04-06 Gerd Moellmann <gerd@gnu.org>
1480
52283633 1481 * composite.h (COMPOSITION_VALID_P): Allow integers as cdrs of PROP.
afa3935f 1482
869fb12c
GM
1483 * xdisp.c (Qinhibit_eval_during_redisplay): Make it a Lisp_Object.
1484
441bf856
GM
14852001-04-05 Gerd Moellmann <gerd@gnu.org>
1486
4d664b04
GM
1487 * sysdep.c (getwd) [!HAVE_GETWD]: Unblock input before returning.
1488
52283633 1489 * editfns.c (Fcurrent_time_zone): Accept spaces in timezone names.
a55e4e68 1490
30ca89f5
GM
1491 * xfns.c (Vmotif_version_string) [USE_MOTIF]: New variable.
1492 (syms_of_xfns): DEFVAR_LISP it. Initialize from XmVERSION_STRING.
1493
1494 * xmenu.c (free_frame_menubar) [USE_MOTIF]: Preserve the
1495 shell widget's position only if it is non-null.
1496
52283633
SM
1497 * xterm.c (x_free_frame_resources) [USE_X_TOOLKIT]:
1498 Set f->output_data.x->widget to null after destroying it.
30ca89f5 1499
81a81c0f
GM
1500 * fns.c (Frequire): Doc fix. Rename parameter FILE_NAME to
1501 FILENAME to bring it in synch with the documentation.
1502
441bf856
GM
1503 * xfaces.c (realizing_basic_faces_p): Renamed from
1504 realize_default_face_p.
1505 (realize_basic_faces): Set/clear realizing_basic_faces_p.
1506 (realize_default_face): Don't set the flag.
1507
702a1e8e
GM
15082001-04-04 Gerd Moellmann <gerd@gnu.org>
1509
1013f4e3
GM
1510 * lisp.h (echoing, echo_message_buffer, cancel_echoing): Declare.
1511
52283633
SM
1512 * keyboard.c (echoing, echo_message_buffer): Make externally visible.
1513
1013f4e3
GM
1514 * xdisp.c (with_echo_area_buffer): Avoid confusion from reusing
1515 the buffer that was used for echoing.
1516
702a1e8e
GM
1517 * xfaces.c (best_matching_font): Remove unused parameter PATTERN.
1518 (first_font_matching): Removed unused function.
1519 (x_face_list_fonts): Remove unused parameter SCALABLE_P.
1520 (may_use_scalable_font_p): Remove parameter FONT; rename
1521 parameter NAME to FONT.
1522 (x_face_list_fonts): Fix missing bounds check.
1523 (realizing_default_face_p): New variable.
1524 (realize_default_face): Set and clear that flag.
1525 (x_face_list_fonts): When called during the realization of the
1526 default face, and no matching fonts are found when ignoring
1527 scalable fonts and fonts matching a regexp from
1528 face-ignored-fonts, try without ignoring fonts.
1529
f9dbcda4
GM
15302001-04-03 Gerd Moellmann <gerd@gnu.org>
1531
ad18ffb1
GM
1532 * xfns.c (postprocess_image): New function.
1533 (lookup_image): Call it for all image types except PostScript.
1534 (x_kill_gs_process): Call postprocess_image.
1535
f9dbcda4
GM
1536 * xterm.c (x_use_underline_position_properties): New variable.
1537 (x_draw_glyph_string): Use it.
1538 (syms_of_xterm): DEFVAR_BOOL it.
1539
651f03b6
GM
15402001-04-02 Gerd Moellmann <gerd@gnu.org>
1541
1542 * xterm.c (x_alloc_nearest_color_1): New function.
1543 (x_alloc_nearest_color): Use it.
1544 (x_color_cells): Take a Display as argument, instead of a frame.
1545 (cvt_string_to_pixel_args, cvt_string_to_pixel_value): New variables.
1546 (cvt_string_to_pixel, cvt_pixel_dtor): New functions.
1547 (x_initialize): Register cvt_string_to_pixel as resource converter
1548 string -> Pixel and cvt_pixel_dtor as pixel resource destructor.
1549
73d75a62
GM
15502001-03-30 Gerd Moellmann <gerd@gnu.org>
1551
b2046df8
GM
1552 * xdisp.c (get_overlay_strings): Set iterator's end_charpos.
1553 (set_iterator_to_next): If a string from a display property ends,
1554 consider the case that this might also be the end of an
1555 overlay string having the display property.
1556
52283633 1557 * xdisp.c (handle_display_prop): Fix recognition of subproperty lists.
b2046df8 1558
87d8eba4
GM
1559 * xdisp.c (reseat_to_string): Undo last change.
1560
73d75a62
GM
1561 * dispnew.c (adjust_glyph_matrix): Don't try to reuse the current
1562 matrix of a window when the header line changes, when
1563 new rows are allocated, or when the width changes.
1564
911a2406
EZ
15652001-03-30 Eli Zaretskii <eliz@is.elta.co.il>
1566
52283633 1567 * print.c (Fprin1, Fprin1_to_string, Fprinc, Fprint): Fix last change.
911a2406 1568
aea51abe
EZ
15692001-03-29 Eli Zaretskii <eliz@is.elta.co.il>
1570
1571 * fileio.c (syms_of_fileio) <directory-sep-char>: Warn that it is
1572 deprecated.
1573
176bc847
GM
15742001-03-29 Gerd Moellmann <gerd@gnu.org>
1575
ed31fabf
GM
1576 * data.c (Fsubr_interactive_form): New function.
1577 (syms_of_data): Defsubr it.
1578
176bc847
GM
1579 * alloc.c (live_string_p, live_cons_p, live_symbol_p)
1580 (live_float_p, live_misc_p): Return 1 only if the offset of the
1581 pointer in its block is >= 0.
1582
e59d0e9d
GM
15832001-03-28 Paul Eggert <eggert@twinsun.com>
1584
1585 * editfns.c (Ffloat_time): Fix off-by-factor-of-10 bug in the
1586 microseconds calcuation. Avoid double-rounding problem.
1587 In doc string, warn that the result is approximate.
1588
f827b862
GM
15892001-03-28 Gerd Moellmann <gerd@gnu.org>
1590
30a3f61c
GM
1591 * eval.c (call_debugger): Bind `inhibit-redisplay' to nil, and
1592 bind `inhibit-eval-during-redisplay' to t.
1593
1594 * lisp.h (Qinhibit_eval_during_redisplay): Declare extern.
1595
1596 * xdisp.c (inhibit_eval_during_redisplay)
1597 (Qinhibit_eval_during_redisplay): New variables.
1598 (safe_eval, safe_call): If inhibit_eval_during_redisplay is set,
1599 don't eval, return nil instead.
1600 (syms_of_xdisp): DEFVAR_BOOL inhibit-eval-during-redisplay.
1601 Initialize Qinhibit_eval_during_redisplay.
1602
e719f5ae
GM
1603 * xdisp.c (reseat_to_string): If STRING is multibyte, set
1604 the iterator's multibyte_p flag.
1605
deb2613a
GM
1606 * xfaces.c (realize_basic_faces): Decrement menu_face_change_count
1607 instead of setting it to zero; it's incremented for each frame
1608 where the menu face is changed.
1609
52283633
SM
1610 * xterm.c (x_draw_relief_rect): Extend left shadow to the bottom;
1611 change bottom shadow accordingly.
1612
1613 * xterm.c (expose_window_tree, expose_frame): Don't compute
a02f1be0
GM
1614 intersections here.
1615 (expose_window): Do it here instead.
52283633 1616 (x_draw_glyph_string): Fix a computation of the underline position.
a02f1be0 1617
f827b862
GM
1618 * bytecode.c (BYTE_CODE_QUIT): New macro.
1619 (Fbyte_code): Use BYTE_CODE_QUIT instead of QUIT.
1620
4bde0ebb
GM
16212001-03-27 Gerd Moellmann <gerd@gnu.org>
1622
607ec83c
GM
1623 * xdisp.c (try_window_reusing_current_matrix) <scrolling up>:
1624 Give up if matrix starts in an ellipsis.
1625 (init_from_display_pos): Do nothing if POS doesn't specify
1626 a dpvec_index but the iterator has such a position.
1627
0245398f
GM
1628 * xdisp.c (init_from_display_pos): Remove unwarranted assertion.
1629
aba25348
GM
1630 * xmenu.c (free_frame_menubar) [USE_MOTIF]: If the shell widget's
1631 x/y position is (0, 0) after destroying the menu bar, restore
1632 its original position.
1633
4bde0ebb
GM
1634 * xdisp.c (in_ellipses_for_invisible_text_p): New function.
1635 (init_from_display_pos): Use it.
1636 (try_window_reusing_current_matrix): Don't use cursor_row_p.
1637
8cdb267e
GM
16382001-03-26 Gerd Moellmann <gerd@gnu.org>
1639
1640 * xdisp.c (try_window_id): Undo last change.
1641
9948db79
EZ
16422001-03-26 Eli Zaretskii <eliz@is.elta.co.il>
1643
1644 * print.c (Fprin1, Fprin1_to_string, Fprinc, Fprint): Doc fix.
1645
1646 * buffer.c (syms_of_buffer): Doc fix.
1647
2eddf899
GM
16482001-03-26 Gerd Moellmann <gerd@gnu.org>
1649
1650 * xfaces.c (x_update_menu_appearance): Use local variable
1651 popup_path for setting font resources.
1652
6c145d35
EZ
16532001-03-25 Eli Zaretskii <eliz@is.elta.co.il>
1654
6a65b1b5
EZ
1655 * frame.c (Fframe_list): Don't reference tip_frame if
1656 HAVE_WINDOW_SYSTEM is not defined.
1657
6c145d35
EZ
1658 * emacs.c (main): Update the copyright year. From Werner LEMBERG
1659 <wl@gnu.org>.
1660
d74c1900
GM
16612001-03-25 Gerd Moellmann <gerd@gnu.org>
1662
20fbd925
GM
1663 * xdisp.c (init_from_display_pos): Test invisible property
1664 with TEXT_PROP_MEANS_INVISIBLE instead of NILP.
52283633 1665
927c5b3b
GM
1666 * xdisp.c (redisplay_internal) <update one window>: Make sure
1667 last_arrow_position and last_arrow_string are set.
1668
d74c1900
GM
1669 * frame.c (Fframe_list): Don't return a tooltip frame.
1670
091f8878
GM
16712001-03-23 Gerd Moellmann <gerd@gnu.org>
1672
52283633
SM
1673 * xdisp.c (mark_window_display_accurate_1): New function,
1674 extracted from mark_window_display_accurate.
1675 Compute BUF_UNCHANGED_MODIFIED, BUF_OVERLAY_UNCHANGED_MODIFIED,
43c09969
GM
1676 BUF_BEG_UNCHANGED, BUF_END_UNCHANGED.
1677 (mark_window_display_accurate): Use it.
1678 (redisplay_internal): Use it for the selected window.
1679 (redisplay_internal): Avoid duplicate mark_window_display_accurate
1680 for the selected frame.
1681
ac90c44f
GM
1682 * xdisp.c Use make_number, for readability.
1683 (try_window_id): Disable rows below the window end.
1684 (try_window_reusing_current_matrix): Use cursor_row_p.
1685 (try_window_reusing_current_matrix) <scrolling up>: Fix disabling
1686 of rows.
1687 (init_from_display_pos): If POS specifies a position in a display
1688 vector, maybe get the iterator set up for that ellipsis.
43c09969 1689
091f8878
GM
1690 * xdisp.c (dump_glyph_row): Fix output for NGLYPHS == 2.
1691
991786dd
EZ
16922001-03-23 Eli Zaretskii <eliz@is.elta.co.il>
1693
1694 * xmenu.c: Include widget.h only if USE_X_TOOLKIT is defined.
1695
6c29b43c
GM
16962001-03-23 Gerd Moellmann <gerd@gnu.org>
1697
1698 * xfaces.c (x_update_menu_appearance): Use a different path
1699 for Lucid popup menus.
1700
d8731202
SM
17012001-03-22 Stefan Monnier <monnier@cs.yale.edu>
1702
1703 * xterm.c (note_mouse_highlight): Dec the int, not the Lisp_Object.
1704
1705 * xdisp.c (init_iterator): Check WINDOWP before using XWINDOW.
1706 (string_buffer_position): Use `make_number'.
1707
f61a541b
GM
17082001-03-22 Gerd Moellmann <gerd@gnu.org>
1709
3c9e997b
GM
1710 * xfaces.c (x_update_menu_appearance): Renamed from
1711 x_set_menu_face_resources. Use different resources for popups.
1712
1713 * lisp.h (Vx_resource_name) [HAVE_X_WINDOWS]: Declare extern.
1714 (GC_CHECK_STRING_BYTES): Don't define.
1715
364cd450
GM
1716 * xfaces.c (x_set_menu_resources_from_menu_face) [USE_X_TOOLKIT]:
1717 Removed, together with subroutines.
1718 (x_set_menu_face_resources) [USE_X_TOOLKIT]: New function.
d8731202 1719 (realize_basic_faces) [USE_X_TOOLKIT]: Call x_set_menu_face_resources.
364cd450 1720
d8731202
SM
1721 * dispextern.h (x_set_menu_resources_from_menu_face):
1722 Remove prototype.
364cd450 1723
d8731202 1724 * xmenu.c (update_frame_menubar, set_frame_menubar, xmenu_show):
364cd450
GM
1725 Remove calls to x_set_menu_resources_from_menu_face.
1726
d8731202
SM
1727 * xfaces.c (xm_set_menu_resources_from_menu_face):
1728 Remove #ifndef LESSTIF_VERSION.
f61a541b
GM
1729
1730 * xmenu.c: Include widget.h.
1731 (single_submenu): Return int. Some cleanup.
1732 (set_frame_menubar): Call x_set_menu_resources_from_menu_face.
1733
140330de
GM
17342001-03-21 Gerd Moellmann <gerd@gnu.org>
1735
1736 * xterm.c (x_update_window_end): Handle overwritten mouse face
1737 also for tool bar windows.
1738 (show_mouse_face): Set the glyph row's mouse_face_p flag also when
1739 DRAW is DRAW_IMAGE_RAISED.
1740
1741905c
GM
17412001-03-20 Gerd Moellmann <gerd@gnu.org>
1742
fa88947e
GM
1743 * print.c (syms_of_print): Doc fixes.
1744
1741905c
GM
1745 * fns.c (Fmd5): Doc fix.
1746
ade0bee1
GM
17472001-03-19 Gerd Moellmann <gerd@gnu.org>
1748
357e7376
GM
1749 * xterm.c (XTset_vertical_scroll_bar) [!USE_TOOLKIT_SCROLL_BARS]:
1750 Clear area of the frame not occupied by the scroll bar.
1751
c2c097cc
GM
1752 * xfns.c (x_create_tip_frame): Add parameter TEXT. Set the
1753 tip frame's root window buffer to *tip* right after creating
1754 the frame.
1755
ade0bee1
GM
1756 * xdisp.c (highlight_trailing_whitespace): Glyphs whose object
1757 is an integer don't have to be for space characters.
1758
88c6e37e
GM
17592001-03-16 Gerd Moellmann <gerd@gnu.org>
1760
52283633
SM
1761 * indent.c (current_column, current_column_1, Fmove_to_column)
1762 (compute_motion): Handle characters from display vectors differently.
88c6e37e 1763
c62eed76
KH
17642001-03-15 Kenichi Handa <handa@etl.go.jp>
1765
1766 * xterm.c (x_draw_glyph_string): Draw relief (if any) before
1767 drawing glyph string.
1768
c899e7e6
GM
17692001-03-15 Gerd Moellmann <gerd@gnu.org>
1770
d0bbfc99
GM
1771 * keyboard.c (timer_check): Preserve the value of deactivate-mark.
1772 (command_loop_1): Undo last change.
1773
03d1a189
GM
1774 * xterm.c (fast_find_position): Return the correct vpos.
1775
c899e7e6 1776 * data.c (store_symval_forwarding): Add parameter BUF. If BUF is
52283633 1777 non-null, set a per-buffer value in BUF instead of the current buffer.
c899e7e6
GM
1778 (swap_in_global_binding, swap_in_symval_forwarding, Fset_default):
1779 Call store_symval_forwarding with BUF null.
1780 (set_internal): Call store_symval_forwarding with the BUF
1781 parameter passed to set_internal. Formerly, the value was always
1782 set in the current buffer; the buffer recorded in specbind for
1783 this case wasn't used.
1784 (arith_driver): Reindent.
1785
52283633
SM
1786 * buffer.c (swap_out_buffer_local_variables):
1787 Call store_symval_forwarding with BUF null.
c899e7e6
GM
1788
1789 * lisp.h (store_symval_forwarding): Change prototype.
1790
1791 * eval.c (specbind): Call store_symval_forwarding with BUF null.
1792
57ac7c81
GM
17932001-03-14 Gerd Moellmann <gerd@gnu.org>
1794
697617d9
GM
1795 * frame.c (do_switch_frame): Remove unused parameter NO_EVENT, add
1796 FOR_DELETION. Avoid resizing the mini-window of the selected
1797 frame if FOR_DELETION is set.
1798 (Fselect_frame, Fhandle_switch_frame, Fdelete_frame)
1799 (Fmake_frame_invisible): Change calls to do_switch_frame for new
1800 signature.
1801
1802 * window.c (Fset_window_configuration): Change call to
1803 do_switch_frame to new format.
1804
1805 * keyboard.c (quit_throw_to_read_char): Change call to
1806 do_switch_frame to new format.
1807
1808 * lisp.h (do_switch_frame): Change prototype.
1809
819dce0f
GM
1810 * frame.c (Fframe_parameters): In the `buffer-list' frame
1811 parameter, store the buffer list of FRAME, not the list of the
1812 selected frame.
1813
57ac7c81
GM
1814 * xterm.c (x_draw_glyph_string_box): Don't draw a full-width
1815 box just because the glyph row's full_width_p flag is set.
1816
65008712
GM
18172001-03-14 Eli Zaretskii <eliz@is.elta.co.il>
1818
1819 * xdisp.c (highlight_trailing_whitespace): On character terminals,
1820 skip the padding blanks inserted in extend_face_to_end_of_line,
1821 before checking for trailing whitespace.
1822
159cf431
GM
18232001-03-13 Gerd Moellmann <gerd@gnu.org>
1824
52283633 1825 * xmenu.c (popup_activate_callback, popup_deactivate_callback):
19b2bb80
GM
1826 Remove special handling for LessTif/Motif.
1827 (toplevel): Don't include Xm/Xm.h.
1828
52283633
SM
1829 * xterm.c (XTread_socket) <LeaveNotify, EnterNotify>:
1830 Remove workaround code for LessTif; it doesn't work anymore.
1831
2564ea1b 1832 * xterm.c [USE_TOOLKIT_SCROLL_BARS && USE_MOTIF]: Don't include
57ac7c81 1833 Xm/ScrollBarP.h.
afcdc0a1 1834
52283633
SM
1835 * xterm.c (x_set_toolkit_scroll_bar_thumb) [USE_MOTIF]:
1836 Don't access private scroll bar data; it's no longer necessary with
23442ae4
GM
1837 contemporary LessTif.
1838
52283633
SM
1839 * xfaces.c (xm_set_menu_resources_from_menu_face):
1840 Change #if 0 to #ifndef LESSTIF_VERSION.
9faaaa52 1841
159cf431
GM
1842 * xmenu.c (xmenu_show) [LESSTIF_VERSION]: Take out the code
1843 removing button grabs.
1844
c6f7429a
KH
18452001-03-13 Kenichi Handa <handa@etl.go.jp>
1846
cb82d767
KH
1847 * fontset.c (syms_of_fontset): Describe highlight-wrong-size-font
1848 and clip-large-size-font as obsolete.
1849
c6f7429a
KH
1850 * lread.c (read_multibyte): Check the validity of multibyte
1851 sequence. If invalid, return the first byte.
1852
760cefb5
GM
18532001-03-12 Gerd Moellmann <gerd@gnu.org>
1854
1855 * keyboard.c (command_loop_1): Set Vdeactivate_mark to nil
1856 before running the command; timer functions or process
1857 filters may have set it.
1858
5141f9d0
EZ
18592001-03-12 Eli Zaretskii <eliz@is.elta.co.il>
1860
1861 * keyboard.c (syms_of_keyboard) <overriding-terminal-local-map>:
1862 Doc fix.
1863
b6a15240
GM
18642001-03-12 Gerd Moellmann <gerd@gnu.org>
1865
1866 * xrdb.c (x_load_resources) [USE_MOTIF]: Remove extraneous arg
1867 to sprintf.
1868
95522746
GM
18692001-03-09 Gerd Moellmann <gerd@gnu.org>
1870
db14cfc5
GM
1871 * dispextern.h (string_buffer_position): Add prototype.
1872
52283633 1873 * xdisp.c (string_buffer_position, display_prop_string_p)
db14cfc5
GM
1874 (single_display_prop_string_p): New functions.
1875
1876 * xterm.c (note_mouse_highlight): If there's no help-echo on
1877 a string, look at the buffer text ``under'' it.
1878
1879 * keyboard.c (make_lispy_event): Add string info to the event,
1880 analogous to what's done on mode lines.
1881 (read_key_sequence): For a click on a string, consider `local-map'
1882 and `keymap' of that string.
1883
52283633
SM
1884 * keyboard.c (make_lispy_event, make_lispy_movement):
1885 Adjust calls to buffer_posn_from_coords to new format.
3cfd8357
GM
1886
1887 * dispextern.h (buffer_posn_from_coords): Adjust prototype.
1888
1889 * dispnew.c (buffer_posn_from_coords): Add parameters OBJECT and
1890 POS; return void.
1891
95522746
GM
1892 * fileio.c (Fwrite_region) [DOS_NT]: Remove O_TRUNC from open
1893 flags argument to emacs_open; it seems to conflict with O_EXCL.
1894
898a399d
KH
18952001-03-09 Kenichi Handa <handa@etl.go.jp>
1896
28cd4910
KH
1897 * composite.h (struct composition): Change types of members;
1898 glyph_len to unsigned, width to unsigned short.
898a399d 1899
4cdf6a6c
AI
19002001-03-08 Andrew Innes <andrewi@gnu.org>
1901
1902 * w32menu.c (add_menu_item): Fix problems with using ownerdraw for
1903 menu titles.
1904
129004d3
GM
19052001-03-08 Gerd Moellmann <gerd@gnu.org>
1906
221dd3e7
GM
1907 * xdisp.c (handle_display_prop): Use it->w->buffer as object,
1908 instead of nil.
1909
52283633 1910 * xterm.c (note_mouse_highlight): Handle mouse-face and
5de7c6f2
GM
1911 help-echo in strings.
1912 (x_y_to_hpos_vpos): Add parameter BUFFER_ONLY_P.
1913 (fast_find_string_pos): New function.
1914
52283633
SM
1915 * xdisp.c (handle_face_prop, face_before_or_after_it_pos)
1916 (display_string): Call face_at_string_position with new parameter.
5de7c6f2
GM
1917
1918 * xfaces.c (face_at_string_position): Add parameter MOUSE_P.
1919 Handle `mouse-face'.
1920
1921 * dispextern.h (face_at_string_position): Change prototype.
1922
52283633 1923 * dired.c (directory_files_internal): Handle EAGAIN more efficiently.
e1fbabaf 1924
129004d3
GM
1925 * keyboard.c (make_lispy_event): Avoid generating drag events
1926 if the mouse hasn't actually moved to another buffer position.
52283633 1927
80c8ab8c
DL
19282001-03-08 Dave Love <fx@gnu.org>
1929
129004d3 1930 * eval.c (syms_of_eval) <debug-on-error>: Doc fix.
80c8ab8c 1931
989521fd
GM
19322001-03-08 Gerd Moellmann <gerd@gnu.org>
1933
1934 * process.c (Fset_process_window_size): Fix a typo.
1935
bb5c338d
KH
19362001-03-08 Kenichi Handa <handa@etl.go.jp>
1937
1938 * coding.c (detect_coding_sjis): Do more rigid check.
1939 (detect_coding_big5): Likewise.
1940 (decode_coding_sjis_big5): Likewise.
1941 (Fdetect_coding_region): Call detect_coding_system with tailing
1942 anchor byte `\0' for more rigid detection.
52283633 1943 (detect_coding_mask): Fix the incorrect handling of arg MULTIBYTEP.
bb5c338d
KH
1944 (Fdetect_coding_string): Likewise.
1945
8b8f9197
SM
19462001-03-07 Stefan Monnier <monnier@cs.yale.edu>
1947
1948 * bytecode.c (Fbyte_code) <Btemp_output_buffer_setup>: Check the arg is
1949 a string before extracting its data.
1950
3bdf2660
GM
19512001-03-07 Gerd Moellmann <gerd@gnu.org>
1952
1953 * window.c (Frecenter): Rewrite code handling negative values
1954 of ARG on graphical frames.
1955
19562001-03-07 Eli Zaretskii <a34785@is.elta.co.il>
1957
1958 * window.c (displayed_window_lines): If W->start is outside the
1959 accessible portion of the buffer, call start_display with BEGV or
1960 ZV instead of W->start.
1961
471f86b9
GM
19622001-03-07 Gerd Moellmann <gerd@gnu.org>
1963
2ab62c6c
GM
1964 * buffer.c (syms_of_buffer) <header-line-format>: Doc fix.
1965
471f86b9
GM
1966 * process.c (Fset_process_filter): Don't crash if the input
1967 file descriptor of PROCESS is closed.
1968 (Fset_process_window_size): Likewise.
1969
101922c3
GM
19702001-03-06 Kenichi Handa <handa@etl.go.jp>
1971
1972 * xterm.c (XTflash): Make the timeout of select shorter, and call
1973 select repeatedly until the desired time expires.
1974
45d051a7
GM
19752001-03-06 Gerd Moellmann <gerd@gnu.org>
1976
1977 * w32fns.c (Fx_create_frame): Clear Vwindow_list.
1978
1979 * xfns.c (Fx_create_frame): Clear Vwindow_list.
1980
1981 * lisp.h (Vwindow_list): Declare extern.
1982
8f372c46
EZ
19832001-03-06 Eli Zaretskii <eliz@is.elta.co.il>
1984
1985 * dispnew.c (syms_of_display) <glyph-table>: Doc fix.
1986
f16a7aa5
GM
19872001-03-06 Gerd Moellmann <gerd@gnu.org>
1988
157ae273
GM
1989 * xterm.c (note_mouse_highlight): Call mouse_face_overlay_overlaps
1990 to detect a case where we have to highlight a different region
1991 despite not having left the currently highlighted region.
1992 Set mouse_face_overlay in the x_display_info.
45d051a7 1993 (x_term_init): Initialize the x_display_info's mouse_face_overlay.
157ae273
GM
1994
1995 * xterm.h (struct x_display_info): Add mouse_face_overlay.
1996
1997 * buffer.c (mouse_face_overlay_overlaps): New function.
1998
1999 * lisp.h (mouse_face_overlay_overlaps): Add prototype.
2000 (Qmouse_face): Declare extern.
2001
f16a7aa5
GM
2002 * xdisp.c (redisplay_internal): Set windows_or_buffers_changed
2003 if face_change_count is non-zero.
2004
827afcac
KH
20052001-03-06 Kenichi Handa <handa@etl.go.jp>
2006
2007 * ccl.c (ccl_driver) <CCL_ReadMultibyteChar2>: Fix for the case
2008 that the source is unibyte.
2009
14c7242e
DL
20102001-03-05 Dave Love <fx@gnu.org>
2011
827afcac 2012 * xterm.c (XTmouse_position): Fix typo.
14c7242e 2013
c28b847b
GM
20142001-03-05 Gerd Moellmann <gerd@gnu.org>
2015
2016 * minibuf.c (read_minibuf): Clean up the binding stack if
2017 called noninteractively.
2018
b86644f2
KH
20192001-03-05 Kenichi Handa <handa@etl.go.jp>
2020
2021 * coding.c (syms_of_coding): Docstring modified.
2022
203682cc 20232001-03-05 Kenichi Handa <handa@etl.go.jp>
b86644f2
KH
2024
2025 * charset.c (char_to_string): If a single byte char has modifier
2026 bits that can't be reflected to the character code, ignore them
45d051a7 2027 instead of signaling an error.
b86644f2 2028
e30bd7b7
EZ
20292001-03-04 Eli Zaretskii <eliz@is.elta.co.il>
2030
2031 * s/msdos.h: Update copyright notice.
2032
2033 * dosfns.h: Update copyright notice.
2034
2035 * dosfns.c: Update copyright notice.
2036
2037 * msdos.c: Update copyright notice.
2038
b52b65bd
GM
20392001-03-02 Gerd Moellmann <gerd@gnu.org>
2040
2041 * xterm.c (glyph_rect): New function.
2042 (XTmouse_position): Use it to raise the threshold for mouse
2043 movement event generation.
2044
53c4b1e6
EZ
20452001-03-02 Eli Zaretskii <eliz@is.elta.co.il>
2046
2047 * msdos.c (Fmsdos_remember_default_colors): If default-frame-alist
2048 specifies (reverse . t), reverse the initial screen colors.
2049 (IT_set_frame_parameters): If the property is foreground-color,
52283633
SM
2050 but we are reversing the colors, set bg_set, not fg_set.
2051 Likewise for setting background-color and reversing: set fg_set.
2052 Set unspecified-fg and unspecified-bg correctly when (reverse . t) is
53c4b1e6
EZ
2053 in effect.
2054
2055 * xfaces.c (Finternal_set_lisp_face_attribute)
2056 [!HAVE_WINDOW_SYSTEM]: Record the new attribute in the frame's
2057 parameters alist.
2058
f964b4d7
GM
20592001-03-02 Gerd Moellmann <gerd@gnu.org>
2060
ef53d75e
GM
2061 * fileio.c (Fexpand_file_name): Collapse sequences of slashes
2062 to a single slash in the middle of file names.
2063
52283633 2064 * editfns.c (Fcurrent_time_zone) [HAVE_TM_ZONE || HAVE_TZNAME]:
cda0f4da
GM
2065 Accept only alphanumeric time zone names.
2066
f964b4d7
GM
2067 * xterm.c (XTset_vertical_scroll_bar): Don't clear a zero height
2068 or width area.
2069 (XTset_vertical_scroll_bar, x_scroll_bar_create): Don't configure
2070 a widget to zero height.
52283633 2071
c3c45f65
GM
20722001-03-01 Gerd Moellmann <gerd@gnu.org>
2073
2074 * window.c (Fwindow_end): Call move_it_past_eol only if
2075 ending up on a partially visible line.
2076
028d739a
DL
20772001-03-01 Dave Love <fx@gnu.org>
2078
2079 * ccl.c (Fccl_execute): Doc fix.
2080
57c5889c
GM
20812001-03-01 Gerd Moellmann <gerd@gnu.org>
2082
35f59f6b
GM
2083 * xfns.c (Fx_create_frame): Adjust the frame's height for presence
2084 of the tool bar before calling x_figure_window_size.
2085
f84ff02c
GM
2086 * xmenu.c (free_frame_menubar): Set the frame's menubar_widget to
2087 NULL after destroying it, otherwise XTread_socket can access a
2088 destroyed widget when input is unblocked.
2089
8b8f9197 2090 * xfns.c (x_set_foreground_color): Set the background of the cursor GC.
52283633 2091
57c5889c
GM
2092 * xfns.c (x_set_font): Handle case of x_new_fontset returning the
2093 same name as before, although there was a change in fontsets.
2094
224227d1
KR
20952001-02-28 Ken Raeburn <raeburn@gnu.org>
2096
4560730a
KR
2097 * lisp.h (Fframe_parameter): Declare.
2098
224227d1 2099 * window.c (set_window_buffer): Field vscroll is an int, not a
57c5889c 2100 Lisp_Object.
224227d1 2101
ece93c02
GM
21022001-02-28 Gerd Moellmann <gerd@gnu.org>
2103
11ef99b9
GM
2104 * xterm.c (x_set_window_size): Don't use `None' with widgets; use
2105 NULL instead.
2106
2107 * xfns.c (Fx_hide_tip): Don't use `None' with widgets; use
2108 NULL instead.
2109
ece93c02
GM
2110 * alloc.c (toplevel): Include process.h.
2111 (enum mem_type): Add MEM_TYPE_PROCESS, MEM_TYPE_HASH_TABLE,
2112 MEM_TYPE_FRAME, MEM_TYPE_WINDOW enumerators.
2113 (allocate_vectorlike): Make it a static function. Add parameter TYPE.
52283633
SM
2114 (allocate_vector, allocate_hash_table, allocate_window)
2115 (allocate_frame, allocate_process, allocate_other_vector):
2116 New functions.
ece93c02
GM
2117 (Fmake_vector): Call allocate_vector instead of allocate_vectorlike.
2118 (mark_maybe_pointer): New function.
52283633 2119 (mark_memory): Also mark Lisp data to which only pointers
ece93c02
GM
2120 remain and not Lisp_Objects.
2121 (min_heap_address, max_heap_address): New variables.
2122 (mem_find): Return MEM_NIL if START is below min_heap_address or
2123 above max_heap_address.
2124 (mem_insert): Compute min_heap_address and max_heap_address.
2125
2126 * process.c (make_process): Use allocate_process.
2127
2128 * frame.c (make_frame): Use allocate_frame.
2129
2130 * window.c (make_window, make_dummy_parent): Use allocate_window.
2131 (Fcurrent_window_configuration): Use allocate_other_vector.
2132
2133 * lisp.h (allocate_vectorlike): Remove prototype.
2134 (allocate_vector, allocate_other_vector, allocate_frame)
2135 (allocate_window, allocate_process, allocate_hash_table):
2136 Add prototypes.
2137
2138 * fns.c (Fdelete, larger_vector): Use allocate_vector.
2139 (make_hash_table, copy_hash_table): Use allocate_hash_table.
2140
063af457
KH
21412001-02-27 Kenichi Handa <handa@etl.go.jp>
2142
2143 * coding.c (ccl_coding_driver): If ccl->eight_bit_control is zero,
2144 treat the produced bytes as a valid multibyte sequence.
2145
2146 * ccl.c (CCL_WRITE_MULTIBYTE_CHAR): New macro.
52283633
SM
2147 (ccl_driver) <CCL_WriteMultibyteChar2>:
2148 Use CCL_WRITE_MULTIBYTE_CHAR instead of CCL_WRITE_CHAR.
063af457
KH
2149 <ccl_finish>: Set ccl->eight_bit_control properly.
2150
2151 * ccl.h (struct ccl_program): New member eight_bit_control.
2152
f58c6494
SM
21532001-02-26 Stefan Monnier <monnier@cs.yale.edu>
2154
2155 * keymap.c (Faccessible_keymaps): Pass `is_metized' to
2156 accessible_keymaps_char_table.
2157 (accessible_keymaps_char_table): Obey `is_metized'.
2158 (where_is_internal, Fwhere_is_internal): Don't confuse int and
2159 Lisp_Object.
2160
c596c392
GM
21612001-02-26 Gerd Moellmann <gerd@gnu.org>
2162
2163 * dispnew.c: Check HAVE_TERM_H before including term.h.
2164
425de386
AI
21652001-02-24 Andrew Innes <andrewi@gnu.org>
2166
2167 * makefile.w32-in: Update copyright notice.
2168
2ba11bbd
SM
21692001-02-24 Stefan Monnier <monnier@cs.yale.edu>
2170
2171 * keymap.c (where_is_internal): Accept non-ascii integer prefixes.
2172
66c56ed1
KH
21732001-02-24 Kenichi Handa <handa@etl.go.jp>
2174
4c1593ce
KH
2175 * Makefile.in (lisp): Add international/utf-8.elc.
2176
66c56ed1
KH
2177 * fontset.c (Fnew_fontset): Fix handling of the case that an
2178 element of FONTLIST is a cons of family and registry.
2179
796ead7e
JR
21802001-02-23 Jason Rumney <jasonr@gnu.org>
2181
2182 * w32fns.c (Fx_create_frame): Don't add FRAME_TOOL_BAR_LINES
2183 to height unconditionally.
2184
2185 * w32term.c (x_set_glyph_string_background_width): Extend the
52283633 2186 background face to the end of the drawing area in the text area, only.
796ead7e
JR
2187 (x_insert_glyphs): Call window_box_left to obtain the left
2188 x-coordinate of the area to shift.
2189
2190 * w32menu.c (set_frame_menubar): Run activate-menu-bar-hook with
2191 safe_run_hooks.
2192
f6839838
AI
21932001-02-22 Andrew Innes <andrewi@gnu.org>
2194
52283633 2195 * makefile.nt ($(BLD)\dired.obj): Remove reference to VMS header files.
f6839838
AI
2196 ($(BLD)\dispnew.obj):
2197 ($(BLD)\editfns.obj):
2198 ($(BLD)\fileio.obj):
2199 ($(BLD)\filelock.obj):
2200 ($(BLD)\keyboard.obj):
2201 ($(BLD)\w32proc.obj):
2202 ($(BLD)\process.obj):
2203 ($(BLD)\sysdep.obj): Ditto.
2204
2205 * makefile.w32-in ($(BLD)/dired.$(O)): Remove reference to VMS
2206 header files.
52283633
SM
2207 ($(BLD)/dispnew.$(O)):
2208 ($(BLD)/editfns.$(O)):
2209 ($(BLD)/fileio.$(O)):
2210 ($(BLD)/filelock.$(O)):
2211 ($(BLD)/keyboard.$(O)):
2212 ($(BLD)/w32proc.$(O)):
2213 ($(BLD)/process.$(O)):
f6839838
AI
2214 ($(BLD)/sysdep.$(O)): Ditto.
2215
c224f70b
GM
22162001-02-22 Gerd Moellmann <gerd@gnu.org>
2217
51695746
GM
2218 * xdisp.c (forward_to_next_line_start): When taking the shortcut
2219 at the start of the function, check that the \n in it->c is
2220 from the iterator's current position.
52283633 2221
a61b7058
GM
2222 * xdisp.c (handle_single_display_prop): Add parameter
2223 DISPLAY_REPLACED_BEFORE_P. If it is non-zero ignore display
2224 properties which replace the display of text with something else.
2225 (handle_display_prop): Call handle_single_display_prop with
2226 additional argument saying if we already replaced text display
2227 with something else. Use AREF.
52283633 2228 (with_echo_area_buffer_unwind_data, display_menu_bar)
a61b7058
GM
2229 (decode_mode_spec_coding): Use AREF and ASIZE.
2230
3473f362
GM
2231 * vms-pp.c, vmsdir.h, vmsmap.c, vmsproc.h, vms-pp.trans, vmsfns.c,
2232 * vmspaths.h, vmstime.c, vms-pwd.h, vmsgmalloc.c, vmsproc.c,
2233 * vmstime.h: Files removed.
52283633 2234
2bb58df3
GM
2235 * unexencap.c, unexfx2800.c: Files removed.
2236
c224f70b
GM
2237 * dispnew.c (direct_output_for_insert): Give up if we are showing
2238 a message or just cleared the message because we might need to
2239 resize the echo area window or display an empty echo area.
2240
ffc9ff0c
GM
22412001-02-21 Gerd Moellmann <gerd@gnu.org>
2242
0528abe1
GM
2243 * xdisp.c (redisplay_internal): Do the
2244 mark_window_display_accurate after all windows have been
2245 redisplayed because this call resets flags in buffers which are
2246 needed for proper redisplay.
2247
52283633
SM
2248 * keyboard.c, minibuf.c, lread.c, fns.c, eval.c:
2249 Use display_hourglass_p, start_hourglass, cancel_hourglass instead of
ffc9ff0c
GM
2250 the old names.
2251
52283633
SM
2252 * w32term.h (struct x_output): Rename busy_cursor to hourglass_cursor,
2253 busy_window to hourglass_window, busy_p to hourglass_p.
ffc9ff0c
GM
2254
2255 * msdos.h (struct x_output): Rename busy_window to
2256 hourglass_window, busy_p to hourglass_p.
2257
52283633
SM
2258 * xterm.h (struct x_output): Rename busy_cursor to hourglass_cursor,
2259 busy_window to hourglass_window, busy_p to hourglass_p.
ffc9ff0c
GM
2260
2261 * xfns.c: Rename everything containing *busy_cursor* and similar
2262 to *hourglass*.
2263 (syms_of_w32fns): Rename x-busy-pointer-shape to
2264 x-hourglass-pointer-shape, display-busy-cursor to
2265 display-hourglass, busy-cursor-delay to hourglass-delay.
2266
2267 * w32fns.c: Rename everything containing *busy_cursor* and similar
2268 to *hourglass*.
2269 (syms_of_w32fns): Rename x-busy-pointer-shape to
2270 x-hourglass-pointer-shape, display-busy-cursor to
2271 display-hourglass, busy-cursor-delay to hourglass-delay.
2272
2273 * xterm.c (XTread_socket): Test x_output's hourglass_p instead
2274 of its busy_p flag.
2275
2276 * dispextern.h (start_hourglass, cancel_hourglass)
2277 (display_hourglass_p): Renamed from *busy_cursor*.
2278
ab2c5f0a
GM
22792001-02-20 Gerd Moellmann <gerd@gnu.org>
2280
d17e49a8
GM
2281 * keyboard.c (read_char): When an event from unread-command-events
2282 is from the tool or menu bar, set *USE_MOUSE_MENU to 1.
2283
fa97adf6
GM
2284 * window.c (Fwindow_end): Handle case that WINDOW's buffer is not
2285 equal to the current buffer.
2286
ab2c5f0a
GM
2287 * xdisp.c (setup_echo_area_for_printing): Set truncate_lines to
2288 nil, otherwise we're left with truncate_lines t when a message
2289 is printed with message-truncate-lines bound to t.
2290
aeac019e
GM
22912001-02-19 Gerd Moellmann <gerd@gnu.org>
2292
c8bc6f65
GM
2293 * window.c (Fmove_to_window_line): Undo last change.
2294 (displayed_window_lines): Call line_bottom_y to determine
2295 the line's bottom position.
2296
2297 * dispextern.h (line_bottom_y): Add prototype.
2298
52283633 2299 * xdisp.c (line_bottom_y): New function extracted from pos_visible_p.
c8bc6f65
GM
2300 (pos_visible_p): Use it.
2301
980a2d69
GM
2302 * keyboard.c (recursive_edit_1): Bind `inhibit-redisplay' and
2303 set redisplaying_p to 0 here instead of in Frecursive_edit.
2304 (Frecursive_edit): Don't bind `inhibit-redisplay' and don't
2305 set redisplaying_p.
2306
52283633 2307 * xdisp.c (Qinhibit_menubar_update, inhibit_menubar_update):
184d2372
GM
2308 New variables.
2309 (syms_of_xdisp): Initialize new variables.
2310 (update_menu_bar): Do nothing if inhibit_menubar_update is set.
2311 Specbind `inhibit-menubar-update' when updating the menu bar.
2312
65048e97
GM
2313 * xmenu.c (set_frame_menubar): Run activate-menu-bar-hook with
2314 safe_run_hooks.
2315
2316 * xdisp.c (update_menu_bar): Run activate-menu-bar-hook with
2317 safe_run_hooks.
2318
a57c4026
GM
2319 * emacs.c (malloc_initialize_hook): Handle case thet `environ'
2320 is null.
2321
aeac019e
GM
2322 * ralloc.c (__morecore) [!SYSTEM_MALLOC]: Move declaration
2323 to the start of the file.
2324
76846b31
GM
23252001-02-16 Gerd Moellmann <gerd@gnu.org>
2326
f3f053f3 2327 * window.c (set_window_buffer): Fix last change.
52283633 2328
f3f053f3
GM
2329 * window.c (set_window_buffer): Set window's vscroll to 0.
2330
dad75588
GM
2331 * window.c (coordinates_in_window): Increase width of area
2332 where the vertical line can be dragged.
2333
c220b753
GM
2334 * xterm.c (x_set_glyph_string_background_width): Extend the
2335 background face to the end of the drawing area in the text
2336 area, only.
2337
c56b1c1b
GM
2338 * xdisp.c (handle_single_display_prop): Set iterator's position
2339 to where the `display' property starts, like for images.
2340 (dump_glyph): New function.
2341 (dump_glyph_row): Use it. Dump info about marginal areas.
2342
2343 * dispnew.c (direct_output_for_insert): Recognize more cases where
2344 glyphs can be written instead of being inserted.
2345
2346 * xterm.c (x_insert_glyphs): Call window_box_left to obtain
2347 the left x-coordinate of the area to shift.
2348
76846b31
GM
2349 * dired.c (directory_files_internal): Set result list to nil
2350 before retrying.
2351
0fc71a77
KH
23522001-02-15 Kenichi Handa <handa@etl.go.jp>
2353
2354 * ccl.c (ccl_driver) [CCL_ReadMultibyteChar2]: If SRC points an
2355 invalid multibyte sequence, treat *SRC as a character of
2356 eight-bit-graphic.
2357
25078b54
EZ
23582001-02-15 Eli Zaretskii <eliz@is.elta.co.il>
2359
2360 * textprop.c (Fset_text_properties): Doc fix.
2361
8399f8a0
GM
23622001-02-15 Gerd Moellmann <gerd@gnu.org>
2363
2364 * dispnew.c (update_text_area): Undo change of 2001-01-12.
2365
9a2a6f73
DL
23662001-02-14 Dave Love <fx@gnu.org>
2367
2368 * coding.c: Doc and message fixes.
2369
bf853fee
AI
23702001-02-14 Andrew Innes <andrewi@gnu.org>
2371
2372 * w32fns.c (w32_wnd_proc) <WM_GETMINMAXINFO>: Allow resizing the
2373 Emacs frame above the screen size.
2374
78c663d8
GM
23752001-02-14 Gerd Moellmann <gerd@gnu.org>
2376
2377 * xdisp.c (reseat_1): Set iterator's end_charpos to ZV.
2378
7cc9f69f
GM
23792001-02-13 Gerd Moellmann <gerd@gnu.org>
2380
0a411995
GM
2381 * insdel.c (del_range_1, del_range_byte, del_range_both): Handle
2382 case that TO ends up beyond ZV after running before-change-functions.
2383
5ddc1b75
GM
2384 * window.c (window_loop) <GET_BUFFER_WINDOW>: Prefer to return
2385 the selected window if it is showing the buffer in question.
2386
7cc9f69f
GM
2387 * dired.c (directory_files_internal): Initialize errno.
2388 (toplevel): Include errno.h.
2389
2e6621ca
GM
23902001-02-13 Kenichi Handa <handa@etl.go.jp>
2391
2392 * xfaces.c (best_matching_font): New parameter width_ratio.
2393 Multiply avgwidth by width_ratio.
2394 (choose_face_font): Call best_matching_font with width_ratio
2395 calculated from the column width of C.
2396
60222d69
AI
23972001-02-12 Andrew Innes <andrewi@gnu.org>
2398
2399 The following changes are to draw box lines inside characters area
2400 if line-width is negative.
52283633 2401
60222d69
AI
2402 * w32term.c (x_produce_image_glyph): Pay attention to the case that
2403 face->box_line_width is negative.
2404 (x_produce_stretch_glyph): Likewise.
2405 (x_produce_glyphs): Likewise.
2406 (x_estimate_mode_line_height): Likewise.
2407 (x_draw_glyph_string_background): Likewise.
2408 (x_draw_glyph_string_foreground): Likewise.
2409 (x_draw_composite_glyph_string_foreground): Likewise.
2410 (x_draw_glyph_string_box): Likewise.
2411 (x_draw_image_foreground): Likewise.
2412 (x_draw_image_relief): Likewise.
2413 (x_draw_image_foreground_1): Likewise.
2414 (x_draw_image_glyph_string): Likewise.
2415
9804b846
KH
24162001-02-09 Kenichi Handa <handa@etl.go.jp>
2417
2418 The following changes are to draw box lines inside characters area
2419 if line-width is negative.
52283633 2420
9804b846
KH
2421 * xterm.c (x_produce_image_glyph): Pay attention to the case that
2422 face->box_line_width is negative.
2423 (x_produce_stretch_glyph): Likewise.
2424 (x_produce_glyphs): Likewise.
2425 (x_estimate_mode_line_height): Likewise.
2426 (x_draw_glyph_string_background): Likewise.
2427 (x_draw_glyph_string_foreground): Likewise.
2428 (x_draw_composite_glyph_string_foreground): Likewise.
2429 (x_draw_glyph_string_box): Likewise.
2430 (x_draw_image_foreground): Likewise.
2431 (x_draw_image_relief): Likewise.
2432 (x_draw_image_foreground_1): Likewise.
2433 (x_draw_image_glyph_string): Likewise.
2434
2435 * xfaces.c (Finternal_set_lisp_face_attribute): The value of :box
2436 and :line-width can be negative.
52283633 2437 (realize_x_face): The value of attrs[LFACE_BOX_INDEX] can be negative.
9804b846 2438
49be9f70
JR
24392001-02-09 Jason Rumney <jasonr@gnu.org>
2440
2441 * w32term.c (w32_encode_char): Treat eight bit graphic and control
2442 characters the same as ASCII and latin-1.
2443 (x_display_and_set_cursor): Check for the focus frame's selected
2444 window instead of selected_window.
2445 (x_after_update_window_line): Don't clear if frame's internal
2446 border width is zero.
2447 (x_new_font): Don't change a tooltip's size.
2448 (w32_initialize): Set char_ins_del_ok to 1.
2449
2450 * w32fns.c (Fx_show_tip): Fix calls to make_number.
2451 (x_set_font): If font hasn't changed, avoid recomputing
2452 faces and other things.
52283633
SM
2453 (x_set_tool_bar_lines): Do nothing if frame is minibuffer-only,
2454 (Fx_create_frame): Add the tool bar height to the frame height.
49be9f70
JR
2455 (x_create_tip_frame): Prevent changing the tooltip's
2456 background color by specifying a color for the default font
2457 in .Xdefaults.
2458 (Qcancel_timer): New variable.
2459 (syms_of_w32fns): Initialize and staticpro it.
2460 (Fx_hide_tip, Fx_show_tip): Use it.
2461 (Fx_show_tip): Make sure to set tip_timer to nil when canceling
2462 the timer.
2463 (toplevel): Lisp code for generating parts of syms_of_w32fns removed.
2464
2465 * w32.c (init_environment): Duplicate local string before putenv.
2466
555e35d2
SZ
24672001-02-09 ShengHuo ZHU <zsh@cs.rochester.edu>
2468
2469 * charset.c (Fstring): A typo.
2470
19c92c94
KH
24712001-02-09 Kenichi Handa <handa@etl.go.jp>
2472
e47a1c33
KH
2473 * charset.c (Fstring): If all arguments are less than 256, return
2474 a unibyte string.
2475
2476 * editfns.c (Fchar_to_string): If CHARACTER is less than 256,
2477 return a unibyte string.
2478
19c92c94
KH
2479 * coding.c (code_convert_region): After detecting a coding, if
2480 nothing found, set coding->composing to COMPOSITION_NO.
2481 (decode_coding_string): Likewise.
2482
d8e675f5
SM
24832001-02-08 Stefan Monnier <monnier@cs.yale.edu>
2484
2485 * w32term.c (w32_set_scroll_bar_thumb): Use `double' for `range'
2486 to avoid overflow.
2487
bd503487
KH
24882001-02-07 Kenichi Handa <handa@etl.go.jp>
2489
2490 * charset.c (parse_str_to_multibyte): New function.
2491
2492 * charset.h (parse_str_to_multibyte): Extern it.
2493
2494 * print.c (print_string): If we are going to print a unibyte
2495 string into a multibyte buffer, convert the string to multibyte by
2496 str_to_multibyte.
2497
a8370d72
AI
24982001-02-06 Andrew Innes <andrewi@gnu.org>
2499
2500 * w32xfns.c (select_palette): Do nothing if palette hasn't yet
2501 been created. It seems we can get sent window messages such as
2502 WM_ERASEBKGND before we properly update a frame.
2503
c363a1d6
GM
25042001-02-06 Gerd Moellmann <gerd@gnu.org>
2505
2506 * dispnew.c (update_frame_line): Rename parameter FRAME to F.
2507 Avoid some unnecessary cursor positioning.
2508
a08332c0
GM
25092001-02-05 Gerd Moellmann <gerd@gnu.org>
2510
52283633 2511 * xfaces.c (split_font_name): Compute numeric value of XLFD_AVGWIDTH.
a08332c0
GM
2512 (LFACE_AVGWIDTH): New macro.
2513 (LFACEP): Use AREF.
2514 (check_lface_attrs): Check LFACE_AVGWIDTH.
2515 (lface_fully_specified_p): Don't check LFACE_AVGWIDTH.
2516 (set_lface_from_font_name): Set LFACE_AVGWIDTH.
2517 (merge_face_vectors): Check LFACE_AVGWIDTH.
2518 (Finternal_make_lisp_face): Use AREF.
2519 (xm_set_menu_resources_from_menu_face)
2520 (xl_set_menu_resources_from_menu_face): Check LFACE_AVGWIDTH.
2521 (Finternal_lisp_face_empty_p): Use AREF.
2522 (lface_same_font_attributes_p): Compare LFACE_AVGWIDTH.
2523 (better_font_p, exact_face_match_p): Add parameter AVGWIDTH.
2524 Compare average widths..
2525 (best_matching_font): Arrange for comparing average widths.
2526
52283633
SM
2527 * dispextern.h (enum lface_attribute_index):
2528 Add LFACE_AVGWIDTH_INDEX (invisible from Lisp).
2529
5cb3c8d4
DL
25302001-02-05 Dave Love <fx@gnu.org>
2531
2532 * puresize.h: Revert last change following loadup.el change.
2533
193fba87
AI
25342001-02-05 Andrew Innes <andrewi@gnu.org>
2535
2536 * makefile.w32-in ($(EMACS)): Use $(THISDIR) instead of . in
2537 invocation of temacs, to work with Windows 2000.
2538 (bootstrap-emacs): Ditto.
2539
e16f52ce
GM
25402001-02-05 Gerd Moellmann <gerd@gnu.org>
2541
7a58ab59
GM
2542 * xterm.c (x_display_and_set_cursor): Check for the focus
2543 frame's selected window instead of selected_window.
2544
e89aaabd
GM
2545 * xdisp.c (try_scrolling): If point is in the line below the
2546 window, make sure to move the iterator at least a canonical
2547 char height down.
2548
52283633 2549 * window.c (Fmove_to_window_line): Don't add 1 if window is vscrolled.
e16f52ce 2550
789ce875
KH
25512001-02-05 Kenichi Handa <handa@etl.go.jp>
2552
52283633
SM
2553 * ccl.c (CCL_WRITE_CHAR): Check if CH is valid or not.
2554 If invalid, execute CCL_INVALID_CMD.
789ce875
KH
2555 (ccl_driver): If the CCL program is terminated because of
2556 CCL_STAT_INVALID_CMD, copy the remaining source data to the
2557 destination instead of throwing them away.
2558
20b28f82
GM
25592001-02-02 Gerd Moellmann <gerd@gnu.org>
2560
79fb38c0
GM
2561 * xfns.c (x_set_font): If font hasn't changed, avoid recomputing
2562 faces and other things.
2563
20b28f82
GM
2564 * xdisp.c (get_next_display_element): Fix case of empty
2565 display table entry.
2566
5a72551e
EZ
25672001-02-02 Eli Zaretskii <eliz@is.elta.co.il>
2568
eb24d0bf
EZ
2569 * editfns.c (Fconstrain_to_field): Doc fix.
2570
6a3f48c7
EZ
2571 * xfaces.c (Fclear_face_cache): Rename the `thorougly' argument
2572 into `thoroughly', to make it consistent with the doc string.
2573
5a72551e
EZ
2574 * window.c (Fenlarge_window, Fshrink_window): Doc fix.
2575
01acdb05
GM
25762001-02-01 Gerd Moellmann <gerd@gnu.org>
2577
0353b28f
GM
2578 * search.c (search_buffer): Call set_search_regs with a byte
2579 position, not a character position.
2580
01acdb05
GM
2581 * xfns.c (x_set_tool_bar_lines): Do nothing if frame is
2582 minibuffer-only,
2583
e86b5133
EZ
25842001-02-01 Eli Zaretskii <eliz@is.elta.co.il>
2585
2586 * frame.c (Fmodify_frame_parameters): Doc fix.
2587
7442878f
GM
25882001-01-31 Gerd Moellmann <gerd@gnu.org>
2589
01acdb05
GM
2590 * frame.h (EMACS_FRAME_H_INCLUDED): Use an include blocker
2591 identifier which is not reserved by Standard C.
52283633 2592
7442878f
GM
2593 * frame.h (FRAME_RIGHT_SCROLL_BAR_WIDTH): New define.
2594
2595 * window.c (enum window_part): New enumeration.
2596 (Qleft_fringe, Qright_fringe): Replace Qleft_bitmap_area and
2597 Qright_bitmap_area.
2598 (coordinates_in_window): Return an enumerator from enum
2599 window_part. Fix handling of right scroll bar.
2600 (Fcoordinates_in_window_p): Doc fix. Return `left-fringe' and
2601 `right-fringe' instead of `left-bitmap-area' and
2602 `right-bitmap-area'. Use enumerators from enum window_part
2603 instead of hard-coded integers.
52283633
SM
2604 (check_window_containing, window_from_coordinates):
2605 Use enumerators from enum window_part instead of hard-coded integers.
7442878f
GM
2606 (syms_of_window): Replace Qleft_bitmap_area and
2607 Qright_bitmap_area.with Qleft_fringe and Qright_fringe.
2608
7c132cba
EZ
26092001-01-31 Eli Zaretskii <eliz@is.elta.co.il>
2610
2611 * editfns.c (Fformat_time_string): Doc fix.
2612
c359dd9e
SM
26132001-01-31 Stefan Monnier <monnier@cs.yale.edu>
2614
2615 * keymap.c (Fwhere_is_internal): Use the first valid binding
2616 if no ascii binding is found (when firstonly is t).
2617
ce070307
GM
26182001-01-31 Gerd Moellmann <gerd@gnu.org>
2619
b4f30ec5
GM
2620 * window.c (Fscroll_right, Fscroll_left): Use interactive_p
2621 instead of Finteractive_p.
2622
2623 * lisp.h (interactive_p): Add prototype.
2624
2625 * eval.c (interactive_p): New function.
2626 (Finteractive_p): Use it.
2627
ce070307
GM
2628 * alloc.c (Fmake_list): Add a QUIT in the loop; unroll the loop.
2629
f57b6e64
DL
26302001-01-31 Dave Love <fx@gnu.org>
2631
d61c7afe
DL
2632 * .gdbinit (hook-run): Define to run xreload.
2633
f57b6e64
DL
2634 * textprop.c (Fset_text_properties): Fix newline in doc string.
2635
eef93f99
GM
26362001-01-30 Gerd Moellmann <gerd@gnu.org>
2637
52283633
SM
2638 * xdisp.c (build_desired_tool_bar_string, syms_of_xdisp):
2639 Use DEFAULT_TOOL_BAR_BUTTON_MARGIN and DEFAULT_TOOL_BAR_BUTTON_RELIEF.
eef93f99
GM
2640
2641 * dispextern.h (Vtool_bar_button_margin:): Declare extern.
52283633 2642 (DEFAULT_TOOL_BAR_BUTTON_MARGIN, DEFAULT_TOOL_BAR_BUTTON_RELIEF)
eef93f99
GM
2643 (DEFAULT_TOOL_BAR_IMAGE_HEIGHT): New defines.
2644
2645 * xfns.c (Fx_create_frame): Add the tool bar height to the frame
2646 height.
2647
d9c1f6f9
DL
26482001-01-30 Dave Love <fx@gnu.org>
2649
2650 * bytecode.c (Fbyte_code) <Bgeq>: Add BEFORE_POTENTIAL_GC and
2651 AFTER_POTENTIAL_GC.
2652
e8f044a0
GM
26532001-01-29 Gerd Moellmann <gerd@gnu.org>
2654
52283633
SM
2655 * bytecode.c (Fbyte_code) <Bcurrent_column>:
2656 Add BEFORE_POTENTIAL_GC and AFTER_POTENTIAL_GC.
e8f044a0 2657
8e1db7b3
EZ
26582001-01-29 Eli Zaretskii <eliz@is.elta.co.il>
2659
2660 * textprop.c (Fset_text_properties): Doc fix.
2661
4eefd9d2
GM
26622001-01-29 Gerd Moellmann <gerd@gnu.org>
2663
2664 * xdisp.c (forward_to_next_line_start): Remove xassert.
2665
fccb8288
EZ
26662001-01-29 Jason Rumney <jasonr@gnu.org>
2667
4eefd9d2 2668 * w32term.c (x_draw_row_bitmaps): Delay obtaining HDC to avoid
fccb8288
EZ
2669 returning without releasing it.
2670
76581eab
KH
26712001-01-29 Kenichi Handa <handa@etl.go.jp>
2672
2673 * w32fns.c (w32_font_match): Allocate three more bytes to regex
2674 for '^', '$', and '\0'.
2675
83a96b4d
AC
26762001-01-28 Andrew Choi <akochoi@i-cable.com>
2677
5604ec34
AC
2678 * fontset.c (fontset_pattern_regexp): Allocate three more bytes to
2679 regex for '^', '$', and '\0'.
2680
83a96b4d
AC
2681 * alloc.c (allocate_string) [macintosh]: Call check_string_bytes
2682 only if current_sblock has been initialized.
2683
2684 * frame.c (Fdelete_frame) [macintosh]: Allow deletion of initial
2685 terminal frame even if it is the only visible frame.
2686
c09a6440
KH
26872001-01-28 Kenichi Handa <handa@etl.go.jp>
2688
2689 * fontset.c (font_family_registry): Even if FONTNAME conform to
2690 XLFD, if it specifies other fields than family and registry,
52283633 2691 return FONTANME. New argument FORCE if nonzero cancel that feature.
c09a6440 2692 (fontset_font_pattern): Call font_family_registry with FORCE 1 for
52283633
SM
2693 a signle byte character. Don't set FAMILY part to nil here.
2694 It is handled by the caller choose_face_font.
c09a6440
KH
2695 (Fnew_fontset): Call font_family_registry with FORCE 0.
2696 (Fset_fontset_font): Likewise.
2697
4dcd74e6
GM
26982001-01-27 Gerd Moellmann <gerd@gnu.org>
2699
2700 * xdisp.c (display_line): Don't treat a newline as fitting
2701 on the line.
2702
d2906bf8
GM
27032001-01-26 Gerd Moellmann <gerd@gnu.org>
2704
0130fe1a
GM
2705 * window.c (size_window): Set the window's orig_top to nil when
2706 changing heights, so that a future shrink_mini_window won't
2707 restore a bogus height.
2708
550f0e6a
GM
2709 * frame.c (do_switch_frame): If selected frame has a mini-window,
2710 resize that to exact size.
2711
b7b20fbd
GM
2712 * dispnew.c (adjust_glyph_matrix): Always clear desired matrices.
2713
a47b7816
GM
2714 * xdisp.c (display_line): Simplify check for glyphs fitting
2715 entirely in the line.
2716
d2906bf8
GM
2717 * xfns.c (xic_style): New variable.
2718 (create_frame_xic): Move static variable to global scope for
550f0e6a 2719 the case that `static' gets defined away.
d2906bf8 2720
73df2b1e
KH
27212001-01-26 Kenichi Handa <handa@etl.go.jp>
2722
2723 * coding.c (decode_coding): Set a flag for inhibiting
2724 inconsistent eol.
2725 (code_convert_region): Always set saved_coding_symbol.
2726 (decode_coding_string): Likewise. Update coding->symbol when we
52283633 2727 encounter a inconsistent eol by the same way as code_convert_region.
73df2b1e 2728
6613cfc4
GM
27292001-01-25 Gerd Moellmann <gerd@gnu.org>
2730
c5e6e06b
GM
2731 * xfns.c (x_set_tool_bar_lines): Use x_clear_area instead of
2732 XClearArea.
2733
2734 * xterm.c (x_after_update_window_line): Don't clear if frame's
2735 internal border width is zero.
2736 (x_clear_area): New function.
2737 (x_after_update_window_line, x_clear_end_of_line)
2738 (x_scroll_bar_create, x_scroll_bar_set_handle)
2739 (XTset_vertical_scroll_bar, x_erase_phys_cursor): Use x_clear_area
2740 instead of XClearArea.
2741
2742 * xterm.h (x_clear_area): Add prototype.
2743
6613cfc4
GM
2744 * xfns.c (Fx_file_dialog): Remove a workaround for Lesstif
2745 which doesn't seem necessary anymore with Lesstif 0.92.
2746
650cc6cc
DL
27472001-01-25 Dave Love <fx@gnu.org>
2748
34ac3367
DL
2749 * puresize.h (BASE_PURESIZE): Up to 720000.
2750
650cc6cc
DL
2751 * keymap.c (Fwhere_is_internal): Declare gcpro3, gcpro4.
2752
5e37dc22
GM
27532001-01-25 Gerd Moellmann <gerd@gnu.org>
2754
e1e441f9
GM
2755 * xdisp.c (echo_area_display): Don't call redisplay_internal
2756 when Emacs is shutting down. We can't run hooks etc. that
2757 would be necessary to do a redisplay.
2758
5e37dc22
GM
2759 * lread.c (read_integer): Use type EMACS_INT instead of int.
2760
0fb94c7f
EZ
27612001-01-25 Eli Zaretskii <eliz@is.elta.co.il>
2762
2763 * ccl.c (ccl_driver): Fix last change.
2764
e3778624
KH
27652001-01-25 Kenichi Handa <handa@etl.go.jp>
2766
2767 * ccl.h (sturct ccl_program): New member suppress_error.
2768
bb264518 2769 * ccl.c (ccl_driver): If ccl->suppress_error is nonzero, don't
e3778624
KH
2770 insert error message to the output.
2771 (setup_ccl_program): Initialize ccl->suppress_error to 0.
2772
2773 * coding.h (struct coding_system): New member suppress_error.
2774
2775 * coding.c (ccl_coding_driver): Setup ccl->suppress_error.
2776 (Fset_terminal_coding_system_internal): Set the member
2777 suppress_error to 1.
2778 (Fset_safe_terminal_coding_system_internal): Likewise.
2779
245ed2b1
SM
27802001-01-24 Stefan Monnier <monnier@cs.yale.edu>
2781
2782 * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
2783 as if it was a `charset'.
2784
f9aaedb6
GM
27852001-01-24 Gerd Moellmann <gerd@gnu.org>
2786
2787 * keymap.c (Fwhere_is_internal): Don't nreverse the cached
2788 value in where_is_cache; the next lookup in the cache returns
2789 something bogus if we do.
2790
c3902c3e
EZ
27912001-01-24 Eli Zaretskii <eliz@is.elta.co.il>
2792
2793 * xdisp.c (syms_of_xdisp) <Stool_bar_lines_needed>: Don't defsubr
2794 if HAVE_WINDOW_SYSTEM isn't defined.
2795
3497f73e
GM
27962001-01-24 Gerd Moellmann <gerd@gnu.org>
2797
e7e41584
GM
2798 * fns.c (sweep_weak_table): Fix code taking items out of
2799 the hash collision chain. Some cleanup.
2800
3497f73e
GM
2801 * xterm.c (x_new_font): Don't change a tooltip's size.
2802
2803 * xfns.c (x_create_tip_frame): Prevent changing the tooltip's
2804 background color by specifying a color for the default font
2805 in .Xdefaults.
2806
3d48e687
KH
28072001-01-24 Kenichi Handa <handa@etl.go.jp>
2808
96531b20
KH
2809 * ccl.c (CCL_READ_CHAR): Change the argument name from r to REG as
2810 a workaround for SunOS 4's cc.
2811 (CCL_CALL_FOR_MAP_INSTRUCTION): Use "if (1)..." not "do {...".
2812 (CCL_SUCCESS, CCL_SUSPEND, CCL_INVALID_CMD): Likewise.
2813 (ccl_driver) <CCL_ReadMultibyteChar2>: Remove unnecessay "do"
2814 statement.
3d48e687 2815
a30629d2
GM
28162001-01-23 Gerd Moellmann <gerd@gnu.org>
2817
2818 * xterm.c (x_set_window_size_1): New function extracted from
2819 x_set_window_size.
2820 (x_set_window_size): Use it.
2821 (x_set_window_size) [USE_X_TOOLKIT]: Handle case that window
2822 doesn't have a widget, like tooltips.
2823
5a43decf
EZ
28242001-01-23 Eli Zaretskii <eliz@is.elta.co.il>
2825
52283633 2826 * window.c (syms_of_window) <scroll-preserve-screen-position>: Doc fix.
5a43decf 2827
b0e98867
KH
28282001-01-23 Kenichi Handa <handa@etl.go.jp>
2829
2830 * fns.c (Fset_char_table_default): Fix to make sub char-table
2831 correctly.
2832
50606b4c
GM
28332001-01-22 Gerd Moellmann <gerd@gnu.org>
2834
cb2ddc53 2835 * xdisp.c (build_desired_tool_bar_string): Make sure we have
52283633
SM
2836 a desired tool bar string, even if there are no tool bar items.
2837
57c28064
GM
2838 * xdisp.c (Ftool_bar_lines_needed): New function.
2839 (syms_of_xdisp): Defsubr it.
2840
50606b4c
GM
2841 * editfns.c (Fformat): Don't extend text properties from arguments
2842 to padding chars in the result.
2843
2f169c38
EZ
28442001-01-20 Eli Zaretskii <eliz@is.elta.co.il>
2845
2846 * s/msdos.h (GC_MARK_STACK): Define to GC_MAKE_GCPROS_NOOPS.
2847
0f32f023
AI
28482001-01-20 Andrew Innes <andrewi@gnu.org>
2849
52283633 2850 * w32term.c (w32_ring_bell): Only support visible bell on w32 frames.
0f32f023
AI
2851 (w32_initialize): Don't set term hooks that aren't actually needed
2852 in windowed mode.
2853
2854 * xfaces.c (realize_default_face):
2855 (realize_face):
2856 (realize_tty_face): Remove references to FRAME_W32_CONSOLE_P.
2857
2858 * xdisp.c (handle_single_display_prop): Remove references to
2859 FRAME_W32_CONSOLE_P.
2860
52283633 2861 * dispnew.c (Fredraw_frame): Remove reference to FRAME_W32_CONSOLE_P.
0f32f023
AI
2862
2863 * frame.h (output_method): Remove output_w32_console method.
2864 (FRAME_W32_CONSOLE_P): Remove macro.
2865
2866 * frame.c (Qw32_console): Remove variable.
2867 (Fframep): Remove references to it.
2868 (syms_of_frame): Ditto.
2869 (Fframe_parameters): Remove references to FRAME_W32_CONSOLE_P.
2870
2871 * term.c (FRAME_TERMCAP_P) [WINDOWSNT]: Reinstate original
2872 redefinition.
2873
7173eada
KH
28742001-01-20 Kenichi Handa <handa@etl.go.jp>
2875
2876 * editfns.c (Fformat): Use lisp_string_width instead of strwidth.
2877
755b45ce
AI
28782001-01-19 Andrew Innes <andrewi@gnu.org>
2879
2880 * w32.c (init_environment): Add a version-independent site-lisp
2881 directory to EMACSLOADPATH, after the version dependent one.
2882
0a949811
GM
28832001-01-19 Gerd Moellmann <gerd@gnu.org>
2884
8501998a
GM
2885 * editfns.c (Fbuffer_substring): Doc fix.
2886
52283633
SM
2887 * xdisp.c (message_dolog, message2, message2_nolog):
2888 Rename parameter LEN to NBYTES.
0a949811 2889
e6ebcbbe
KH
28902001-01-19 Kenichi Handa <handa@etl.go.jp>
2891
200ecca2
KH
2892 * charset.c (strwidth): Use c_string_width.
2893 (c_string_width): New function.
2894 (lisp_string_width): New arguments PRECISION, NCHARS, NBYTES.
2895 Caller changed.
2896
2897 * charset.h (c_string_width, lisp_string_width): Extern them.
2898
52283633 2899 * doprnt.c (doprnt1): Get byte length of Lisp string correctly.
200ecca2 2900
e6ebcbbe
KH
2901 * indent.c (check_composition): Check validity of composition.
2902
200ecca2
KH
2903 * xdisp.c (store_frame_title): Pay attention to width of non-ASCII
2904 characters by calling c_string_width.
2905 (x_consider_frame_title): Get byte length of frame tile string
2906 correctly.
2907 (display_mode_element): Pay attention to width of non-ASCII
2908 characters by calling strwidth.
2909
8692ca92
GM
29102001-01-18 Gerd Moellmann <gerd@gnu.org>
2911
8962e303
GM
2912 * xfns.c (Qcancel_timer): New variable.
2913 (syms_of_xfns): Initialize and staticpro it.
2914 (Fx_hide_tip, Fx_show_tip): Use it.
2915 (Fx_show_tip): Make sure to set tip_timer to nil when canceling
2916 the timer.
2917 (toplevel): Lisp code for generating parts of syms_of_xfns removed.
2918
91523be9
GM
2919 * window.c (Fwindow_live_p): Use WINDOW_LIVE_P.
2920
2921 * window.h (WINDOW_LIVE_P): New macro.
2922
b0b7ed0e
GM
2923 * window.c (window_size_fixed): New variable.
2924 (syms_of_window): Add a DEFVAR_BOOL for window-size-fixed, for
2925 the doc string.
2926
06bccf8e
GM
2927 * eval.c (specbind): If binding a per-buffer variable which
2928 doesn't have a buffer-local value in the current buffer, change
2929 the global value by changing the value of the symbol bound in all
2930 buffers not having their own value, to make it consistent with
2931 what happens with other buffer-local variables.
2932
8692ca92
GM
2933 * xterm.c (x_initialize): Set char_ins_del_ok to 1.
2934
2935 * xdisp.c (forward_to_next_line_start): Stop at end of buffer
2936 when searching for a newline.
2937
bb3a3b50
KH
29382001-01-18 Kenichi Handa <handa@etl.go.jp>
2939
2940 * xdisp.c (display_string): Fix previous change.
2941
c2cc16fa
JR
29422001-01-18 Jason Rumney <jasonr@gnu.org>
2943
2944 * w32term.c (x_produce_stretch_glyph): Only use Qspace when
2945 GLYPH_DEBUG is defined.
2946 (x_produce_glyphs): Don't xassert `it->descent > 0'; this isn't
2947 true for images with `:ascent 100'.
2948 (x_set_mouse_face_gc): If the last used mouse face has gone in the
2949 meantime, use face MOUSE_FACE_ID.
2950 If first glyph isn't a character glyph, use the ASCII NUL
2951 character to determine the face.
2952 (expose_area): Do not treat left margin specially.
2953 (note_mode_line_highlight): If no local_map, check global keymap.
2954 (note_mouse_highlight): Initialize overlay.
52283633 2955 (clear_mouse_face): Don't return if tip_frame is non-nil.
c2cc16fa
JR
2956 (show_scroll_bars): Remove unused function.
2957 (w32_read_socket) [WM_KILLFOCUS]: Set help_echo to Qnil.
2958 (x_draw_bar_cursor): Remove extra test for out of bounds cursor.
2959 Clip to row.
52283633 2960 (x_erase_phys_cursor): Don't apply XWINDOW to variable that may be nil.
c2cc16fa
JR
2961 (x_free_frame_resources): Unload relief colors.
2962
9c11f79e
GM
29632001-01-17 Gerd Moellmann <gerd@gnu.org>
2964
3aec8722 2965 * xdisp.c (forward_to_next_line_start): Avoid calling
52283633
SM
2966 get_next_display_element when the newline is already found.
2967 This may change the iterator's position, when its current position is
3aec8722
GM
2968 equal to the iterator's stop_charpos.
2969
f3ffc2c3
GM
2970 * dispnew.c (direct_output_for_insert): If char_ins_del_ok is
2971 zero, use this method only at the end of a line.
2972
52283633 2973 * xfaces.c (x_face_list_fonts): Don't BLOCK_INPUT around the
a86110a8
GM
2974 call to x_list_fonts. Call x_list_fonts with SIZE -1 only
2975 if SCALABLE_FONTS_P is set.
52283633 2976
d26d6fd9
GM
2977 * xfaces.c (x_face_list_fonts): Call x_list_fonts with SIZE -1,
2978 so that scalable fonts are included.
2979
9c11f79e
GM
2980 * xterm.c (x_list_fonts): Allow scalable fonts if SIZE is < 0,
2981 In the cache, use a key containing the information if scalable
2982 fonts are included.
2983 (x_load_font): Adapt to change of keys in the font cache.
2984
29852001-01-17 Kim F. Storm <storm@filanet.dk>
52283633 2986
d26d6fd9
GM
2987 * xfaces.c (x_face_list_fonts): Use x_list_fonts instead of
2988 XListFonts to take advantage of font caching.
2989
9c11f79e
GM
2990 * xterm.c (x_list_fonts): Ensure caching font information when
2991 called for a null frame, which is the case frequently when Emacs
2992 starts.
2993
51446987
GM
29942001-01-17 Gerd Moellmann <gerd@gnu.org>
2995
f864120f
GM
2996 * xfns.c (QCconversion): Replaces QCalgorithm.
2997
2998 * w32fns.c (QCconversion): Replaces QCalgorithm. Update copyright.
2999
3000 * xdisp.c (build_desired_tool_bar_string): Use :conversion instead
3001 of :algorithm.
52283633 3002
e37d1417
GM
3003 * xdisp.c (redisplay_tool_bar): Change tool bar's height when
3004 not everything could be displayed.
3005
51446987
GM
3006 * line.h, x-list-font.c: Files removed because unused.
3007
9ad4f3e5
AI
30082001-01-17 Andrew Innes <andrewi@gnu.org>
3009
3010 * dired.c (directory_files_internal): Convert result from readdir
3011 to a unibyte string initially, to avoid possible misinterpretation
3012 of some bytes as the internal form of Emacs characters.
3013
2eda09b5
KH
30142001-01-17 Kenichi Handa <handa@etl.go.jp>
3015
3016 * fns.c (concat): Be sure to avoid putting the same `composition'
3017 property on the adjacent regions.
3018
826f3788
GM
30192001-01-16 Gerd Moellmann <gerd@gnu.org>
3020
52283633 3021 * window.c (Fset_window_hscroll): Don't set window's min_hscroll here.
f251459d
GM
3022 (Fscroll_right, Fscroll_left): Set it here instead, if called
3023 interactively.
3024
d57b83b3
GM
3025 * buffer.c (Fset_buffer_modified_p): Set buffer's
3026 prevent_redisplay_optimizations_p flag.
3027
826f3788 3028 * dispnew.c, callproc.c, fns.c, keyboard.c, process.c, sunfns.c,
52283633
SM
3029 * sysdep.c, vmsproc.c, xselect.c: Call redisplay_preserve_echo_area
3030 with additional arg.
3031
3032 * dispextern.h, lisp.h (redisplay_preserve_echo_area):
3033 Change prototype.
826f3788 3034
826f3788
GM
3035 * xdisp.c (redisplay_preserve_echo_area): Add parameter
3036 FROM_WHERE, for debugging.
3037
261d788b
KH
30382001-01-16 Kenichi Handa <handa@etl.go.jp>
3039
3040 * ccl.c (Fregister_ccl_program): Handle the return value of
3041 resolve_symbol_ccl_program correctly.
52283633 3042 (CCL_Extension): Fix typo (originally CCL_Extention). Caller changed.
261d788b 3043
bccee4f2
GM
30442001-01-15 Gerd Moellmann <gerd@gnu.org>
3045
e4ded23c
GM
3046 * xterm.c (x_set_mouse_face_gc): If the last used mouse face
3047 has gone in the meantime, use face MOUSE_FACE_ID.
52283633
SM
3048
3049 * xterm.c (x_connection_closed) [USE_X_TOOLKIT]:
3050 If x_display_info_for_display returns null, don't try to close
ae24cb3b
GM
3051 the display; we didn't open it.
3052
bccee4f2
GM
3053 * dispnew.c (save_or_restore_current_matrices): Function removed.
3054 (save_current_matrix, restore_current_matrix): New functions.
3055 (adjust_frame_glyphs_for_frame_redisplay): Use them to save and
3056 restore the frame's current matrix. Due to the glyph pointer
3057 setup done in adjust_glyph_matrix, there is no easy way to make
3058 saving the current matrix in the desired matrix generally correct,
3059 so don't try it.
3060
ebeccffa
KH
30612001-01-15 Kenichi Handa <handa@etl.go.jp>
3062
3063 * xdisp.c (insert_left_trunc_glyphs): Overwrite padding glyphs by
3064 truncation glyphs.
3065 (display_line): Optimize for wide characters.
e4ded23c 3066 (display_string): Don't try to display a multi-column character
ebeccffa
KH
3067 partially. On ttys, produce more than one truncation glyph for
3068 multi-column characters that don't fit on the line.
3069
64388126
KH
30702001-01-13 Kenichi Handa <handa@etl.go.jp>
3071
52283633
SM
3072 * md5.c (WORDS_BIG_ENDIAN) [__BYTE_ORDER == __BIG_ENDIAN]:
3073 Define it instead of WORDS_BIGENDIAN. Caller changed.
64388126 3074
8edb0a6f
JR
30752001-01-13 Jason Rumney <jasonr@gnu.org>
3076
3077 * w32fns.c (Fimage_size, image_ascent, lookup_image)
3078 (IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, parse_image_spec)
52283633
SM
3079 (xbm_format, xpm_format, pbm_format, png_format, jpeg_format)
3080 (tiff_format, gif_format, gs_format): Adapt to change of image margins.
8edb0a6f 3081
52283633
SM
3082 * w32term.c (x_produce_image_glyph, x_draw_image_foreground)
3083 (x_draw_image_relief, x_draw_image_foreground_1)
8edb0a6f
JR
3084 (x_draw_image_glyph_string): Adapt to change of image margins.
3085
3086 * w32.c (init_environment, sys_shutdown, sys_pipe): Remove unused
3087 variables.
3088
3089 * w32bdf.c (search_file_line, get_cached_font_char)
3090 (cache_char_offset, create_offscreen_bitmap): Remove unused variables.
3091
3092 * w32inevt.c (w32_console_toggle_lock_key): Add parentheses.
3093
3094 * w32fns.c (x_to_w32_color, x_set_icon_name, xlfd_strip_height)
3095 (w32_list_synthesized_fonts, lookup_image, Fx_file_dialog)
3096 (Fw32_send_sys_command): Remove unused variables.
3097 (w32_msg_pump): Add parentheses.
3098
3099 * w32term.c (w32_fill_rect, w32_read_socket, x_bitmap_icon)
3100 (x_new_fontset, x_calc_absolute_position, x_iconify_frame):
3101 Add parentheses.
3102
4956d1ef
GM
31032001-01-12 Gerd Moellmann <gerd@gnu.org>
3104
b30623be
GM
3105 * xdisp.c (Vtool_bar_button_margin): Replaces tool_bar_button_margin.
3106 (build_desired_tool_bar_string): Handle Vtool_bar_button_margin
3107 being a pair of margins.
3108 (syms_of_xdisp): Change DEFVAR_INT of tool-bar-button-margins
3109 to DEFVAR_LISP. Extend doc.
3110
3111 * xfns.c (Fimage_size, image_ascent): Adapt to the change of image
3112 margins.
3113 (lookup_image): If `:margin MARGIN' is specified, and MARGIN is a
3114 pair of integers `(X . Y)', use X for the horizontal and Y for the
3115 vertical margin.
3116 (IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR): New enumerator.
3117 (parse_image_spec): Check it.
52283633
SM
3118 (xbm_format, xpm_format, pbm_format, png_format, jpeg_format)
3119 (tiff_format, gif_format, gs_format):
3120 Use IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR for :margin.
b30623be 3121
52283633
SM
3122 * xterm.c (x_produce_image_glyph, x_draw_image_foreground)
3123 (x_draw_image_relief, x_draw_image_foreground_1)
b30623be
GM
3124 (x_draw_image_glyph_string): Adapt to the change of image margins.
3125
3126 * dispextern.h (struct image): Replace member `margin' with
3127 `hmargin' and `vmargin'.
3128
4554cc79
GM
3129 * xdisp.c (Fdump_tool_bar_row) [GLYPH_DEBUG]: Add parameters ROW
3130 and GLYPHS.
3131
3132 * dispnew.c (update_text_area): Put code which decrements the
3133 stop position when the row's face extends to the end of the
3bffc665 3134 line in #if 0.
4554cc79 3135
3cccce8d
GM
3136 * xfns.c (x_set_mouse_color): Fix color allocation.
3137
4956d1ef
GM
3138 * keyboard.c: Call get_local_map with new argument list.
3139
3140 * intervals.c (get_local_map): Change TYPE to Lisp_Object.
3141
3142 * intervals.h (enum map_property): Removed.
3143 (get_local_map): Change prototype.
3144
3145 * keymap.c: Call get_local_map with new argument list.
3146 (Fwhere_is_internal): Rename parameter XKEYMAP to KEYMAP.
3147
2c2ff7f2
GM
31482001-01-11 Gerd Moellmann <gerd@gnu.org>
3149
a23887b9
GM
3150 * xdisp.c (build_desired_tool_bar_string): Correct the computation
3151 of the size needed for the tool bar string. For the last image,
3152 use a `display' property that reaches to the end of the string.
3153
a7ee2d2e
GM
3154 * xselect.c (selection_request_dpyinfo): New variable.
3155 (x_handle_selection_request): Set it.
3156 (x_selection_request_lisp_error): Don't call
3157 x_decline_selection_request if selection request's display has
3158 been closed.
3159
52283633
SM
3160 * xfaces.c (x_free_colors, x_free_dpy_colors) [DEBUG_X_COLORS]:
3161 Do the unregister_colors before calling XFreeColors.
2c2ff7f2 3162
457b792c
GM
31632001-01-10 Dave Love <fx@gnu.org>
3164
3165 * Makefile.in (${etc}DOC): Depend on ${shortlisp} and
3166 ${SOME_MACHINE_LISP}, not ${lisp}.
3167
c1efd260
GM
31682001-01-10 Gerd Moellmann <gerd@gnu.org>
3169
52283633
SM
3170 * xdisp.c (display_line): On ttys, produce more than one truncation
3171 glyph for multi-column characters that don't fit on the line.
a98b5ed9 3172
ac95a621
GM
3173 * xselect.c (x_reply_selection_request): Add a comment.
3174
c1efd260
GM
3175 * xfns.c (Fx_backspace_delete_keys_p): Use XkbGetMap and
3176 XkbGetNames instead of XkbGetKeyboard.
3177
1bfb1345
DL
31782001-01-10 Dave Love <fx@gnu.org>
3179
3180 * sysdep.c (random): Revert the declaration.
3181
38119822
GM
31822001-01-09 Gerd Moellmann <gerd@gnu.org>
3183
52283633
SM
3184 * lisp.h (STRING_BYTES) [GC_CHECK_STRING_BYTES]:
3185 Call function string_bytes.
35f464a7
GM
3186 (GC_CHECK_STRING_BYTES): Moved here from alloc.c.
3187
3188 * alloc.c (CHECK_STRING_BYTES) [GC_CHECK_STRING_BYTES]: New macro.
3189 (check_sblock, string_bytes) [GC_CHECK_STRING_BYTES]: New functions.
3190 (check_string_bytes) [GC_CHECK_STRING_BYTES]: Add parameter ALL_P.
3191 (allocate_string) [GC_CHECK_STRING_BYTES]: Always check strings in
3192 the current sblock.
3193 (mark_object) [GC_CHECK_STRING_BYTES]: Use CHECK_STRING_BYTES.
3194 (gc_sweep) [GC_CHECK_STRING_BYTES]: Call check_string_bytes
3195 after sweeping strings, and at the end.
3196 (GC_CHECK_STRING_BYTES): Moved to lisp.h.
3197
38119822
GM
3198 * alloc.c (Fgarbage_collect): Use a record_unwind_protect to
3199 ensure that pop_message is called.
3200
3201 * keyboard.c (Fexecute_extended_command): Use a
3202 record_unwind_protect to ensure that pop_message is called.
3203
3204 * lisp.h (push_message_unwind): Add prototype.
3205
3206 * xdisp.c (push_message_unwind): New function.
3207
3208 * fileio.c (do_auto_save_unwind): Do the pop_message here
3209 instead of in Fdo_auto_save.
3210 (Fdo_auto_save): Don't call pop_message.
3211
f47a9ec4
KR
32122001-01-08 Ken Raeburn <raeburn@gnu.org>
3213
3214 * xfns.c (xpm_load) [!ALLOC_XPM_COLORS]: Declare local variable I
3215 in inner block.
3216
a758f97d
GM
32172001-01-08 Gerd Moellmann <gerd@gnu.org>
3218
6d0afc03
GM
3219 * window.c (window_scroll_pixel_based): Adjust glyph matrices
3220 when increasing window's vscroll.
3221
a758f97d
GM
3222 * macros.c (Qkbd_macro_termination_hook): New variable.
3223 (syms_of_macros): Initialize and staticpro it.
3224 (pop_kbd_macro): Run kbd-macro-termination-hook.
3225
3226 * xterm.c (XTread_socket) <LeaveNotify>: Set help_echo to nil.
3227
1bfb1345 32282001-01-07 Dave Love <fx@gnu.org>
64d4ec0f
DL
3229
3230 * keyboard.c (Fread_key_sequence_vector): Avoid newline in
3231 arglist, for documentation's sake.
3232
0dac6924
AI
32332001-01-06 Andrew Innes <andrewi@gnu.org>
3234
3235 * makefile.w32-in (clean): Delete $(COMPILER_TEMP_FILES) instead
3236 of *.pdb.
3237
8182406a
AI
32382001-01-05 Andrew Innes <andrewi@gnu.org>
3239
3240 * term.c (update_end): Don't check updating_frame; for some reason
3241 this can be 0 sometimes, such as after dismissing a popup menu,
3242 and isn't necessary given the explicit frame argument.
3243
3828218c
GM
32442001-01-05 Gerd Moellmann <gerd@gnu.org>
3245
3246 * sysdep.c: Don't prototype srandom; it takes an unsigned argument
3247 on some systems, and an unsigned long on others, like FreeBSD 4.1.
3248
2f5ded21
GM
32492001-01-04 Gerd Moellmann <gerd@gnu.org>
3250
52283633 3251 * xterm.c (clear_mouse_face): Don't return if tip_frame is non-nil.
2f5ded21
GM
3252
3253 * xfns.c (x_create_tip_frame): Preserve the value of
3254 face_change_count around the creation of the tip frame.
52283633 3255
2f5ded21
GM
3256 * xfns.c (last_show_tip_args): New variable.
3257 (compute_tip_xy): New function.
3258 (Fx_show_tip): Reuse an existing tip frame, if possible.
3259 (syms_of_xfns): Initialize and staticpro last_show_tip_args.
3260
dfad65fa
DL
32612001-01-04 Dave Love <fx@gnu.org>
3262
64d4ec0f
DL
3263 * editfns.c (Fformat): Doc fix.
3264
dfad65fa
DL
3265 * systime.h (set_file_times): Prototype.
3266
3267 * widget.h (EmacsFrameSetCharSize_): Prototype.
3268
3269 * sysdep.c (random, srandom): Declare explicitly.
3270
3271 * dispextern.h (move_it_vertically_backward): Declare.
3272
85fe3b5e
GM
32732001-01-04 Gerd Moellmann <gerd@gnu.org>
3274
0f2ac578
GM
3275 * xfns.c (x_create_tip_frame): Call face-set-after-frame-default,
3276 like in Fx_create_frame.
3277
482cca61
GM
3278 * xfaces.c (set_font_frame_param): Don't do anything for
3279 non-graphical frames.
3280
85fe3b5e
GM
3281 * window.c (Fdelete_other_windows): Set window's window_end_valid
3282 to nil when changing the window's start. Don't change the
3283 window's start when its top position hasn't changed. If we do,
3284 this will set the window's optional_new_start, which act's like a
3285 force_start during redisplay with C-x 1 M-> under particular
3286 circumstances (see report from Per Starback to emacs-pretest-bug
3287 from 2000-12-13.).
3288
3e99d3b4
GM
32892001-01-03 Gerd Moellmann <gerd@gnu.org>
3290
a77dc1ec
GM
3291 * xdisp.c (forward_to_next_line_start): Reset it->c if taking the
3292 short cut at the start of the function. Add an assertion.
3293 (reseat_at_next_visible_line_start): Add an assertion.
3294
2f3cad6c
GM
3295 * window.c (Frecenter): When changing the window start, set the
3296 window's window_end_valid to nil.
3297 (Fwindow_end): Fix window-end computation when UPDATE is non-nil.
3298
3299 * dispextern.h (move_it_past_eol): Add prototype.
3300
3301 * xdisp.c (move_it_past_eol): New function.
3302
3e99d3b4
GM
3303 * window.c (Fwindow_end): Doc fix.
3304
33052001-01-03 Dave Love <fx@gnu.org>
3306
52283633 3307 * dired.c (Ffile_attributes): Fix last change, removing BSD4_3 kluge.
3e99d3b4 3308
bafb434c
GM
33092001-01-03 Gerd Moellmann <gerd@gnu.org>
3310
3311 * xdisp.c (try_window_reusing_current_matrix): Fix bug setting
3312 the enabled_p flag of the glyph row at window_end_vpos to 0.
3313 (handle_single_display_prop): Fix last change.
3314
5297fb00
RS
33152001-01-02 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3316
3317 * window.c (Frecenter): Doc fix.
3318
13d6a61c
AI
33192001-01-02 Andrew Innes <andrewi@gnu.org>
3320
3321 * term.c (FRAME_TERMCAP_P) [WINDOWSNT]: Remove redefinition.
3322
3323 * frame.h (output_method): Add output_w32_console method.
3324 (FRAME_W32_CONSOLE_P): New macro.
3325
3326 * frame.c (make_terminal_frame) [WINDOWSNT]: Make terminal frames
3327 use output_w32_console method.
3328 (Qw32_console): New Lisp_Object.
3329 (Fframep): Return it.
3330 (syms_of_frame): Init it.
52283633 3331 (Fframe_parameters): Report w32console as font for w32_console frames.
13d6a61c
AI
3332
3333 * xfaces.c (realize_default_face): Set face foreground and
3334 background to unspecified for w32_console frames.
3335 (realize_face): Realize face cache for w32_console frames.
3336 (realize_tty_face): Accept w32_console frames.
3337
52283633 3338 * xdisp.c (handle_single_display_prop): Return if frame is w32_console.
13d6a61c
AI
3339 (init_iterator) [WINDOWSNT]: Initialize frame face cache if
3340 necessary, even if running interactively.
3341
3342 * dispnew.c (Fredraw_frame): Call set_terminal_modes for
3343 w32_console frames.
3344
52283633
SM
3345 * w32term.c (x_update_begin):
3346 (x_update_end):
3347 (x_clear_frame):
3348 (x_ins_del_lines):
3349 (x_change_line_highlight):
3350 (x_delete_glyphs):
3351 (w32_ring_bell):
3352 (x_update_begin):
3353 (x_update_end):
3354 (w32_reassert_line_highlight):
3355 (w32_frame_rehighlight):
13d6a61c
AI
3356 (w32_frame_raise_lower): Do nothing if not w32 frame.
3357
3358 * w32xfns.c (get_frame_dc): Abort if called on a non-w32 frame.
3359
3360 * w32fns.c (Fx_display_color_cells): Determine correct value, when
3361 system doesn't tell us directly.
3362 (Fx_display_visual_class): Implement properly.
3363
d6bb0c0d
GM
33642001-01-02 Gerd Moellmann <gerd@gnu.org>
3365
3366 * window.c (Frecenter): Handle centering in graphical frames
3367 specially. Centering on the basis of line counts doesn't work
3368 reliably with variable-height lines.
52283633 3369
315f5865
EZ
33702001-01-02 Eli Zaretskii <eliz@is.elta.co.il>
3371
3372 * widget.c (EmacsFrameSetCharSize): Remove unused variables `ac'
3373 and al[].
3374
52283633 3375 * composite.c (run_composition_function): Remove unused var `val'.
315f5865
EZ
3376 (update_compositions): Remove unused variable `hook'.
3377
3378 * intervals.c (get_local_map): Remove unused variable `tem'.
3379
3380 * doprnt.c (doprnt1): Remove unused variable `size'.
3381
3382 * fns.c (Flength): Remove unused variable `tail'.
3383 (Fdelete): Remove unused variable `size'.
3384
3385 * editfns.c (Ftranspose_regions): Remove unused variables `gcpro1'
3386 and `gcpro2'.
3387
52283633 3388 * doc.c (Fsnarf_documentation): Remove unused vars `fun' and `tem'.
315f5865
EZ
3389
3390 * data.c (find_symbol_value): Remove extra 3rd argument in the
3391 call to swap_in_symval_forwarding.
3392
52283633 3393 * undo.c (Fprimitive_undo): Remove unused block-scope variable `end'.
315f5865
EZ
3394
3395 * search.c (shrink_regexp_cache): Remove unused variable `cpp'.
3396 (trivial_regexp_p): Remove unused variable `c'.
3397 (boyer_moore): Remove unused variable `k'.
3398
3399 * indent.c (current_column): Remove unused variable `stopchar'.
3400 (Fcompute_motion): Remove unused variable `contin'.
3401
3402 * casefiddle.c (casify_object): Remove unused variable `tolen'.
3403
3404 * dired.c (directory_files_internal): Fix a typo in a comment.
3405 Remove an unused variable `handler'.
52283633 3406 (file_name_completion): Remove unused function-scope variable `dp'.
315f5865
EZ
3407 (Ffile_attributes) <dirname, sdir>: Make declarations conditioned
3408 on BSD4_2.
3409
52283633 3410 * fileio.c (e_write): Remove unused variable `require_encoding_p'.
315f5865
EZ
3411
3412 * marker.c (Fmarker_position): Remove unused variables `pos', `i',
3413 and `buf'.
3414 (Fmarker_insertion_type): Remove unused variable `buf'.
3415
3416 * insdel.c (make_gap): Remove unused variable `result'.
3417
52283633 3418 * keyboard.c (record_char): Remove unused function-scope var `help'.
315f5865
EZ
3419 (kbd_buffer_get_event): Remove unused block-scope variable `idx'.
3420 (menu_bar_items): Remove unused function-scope variable `tem'.
3421
3422 * fontset.c (fontset_ref): Remove unused variable `i'.
3423 (fontset_set): Remove unused variables `j' and `tmp'.
52283633 3424 (make_fontset): Remove unused variables `i', `j', `elt' and `base_elt'.
315f5865
EZ
3425 (make_fontset_for_ascii_face): Remove unused variable `name'.
3426 (fs_load_font): Remove unused variable `font_idx'.
52283633 3427 (fs_query_fontset): Remove unused function-local variable `fontset'.
315f5865
EZ
3428 (list_fontsets): Remove unused variable `tail'.
3429 (Fnew_fontset): Remove unused variables `family' and `registry'.
3430 (accumulate_font_info): Remove unused variable `tmp'.
3431 (Ffontset_font): Remove unused variable `id'.
3432 (syms_of_fontset): Remove unused variable `i'.
3433
3434 * xfns.c (x_display_info_for_name): Cast 0 to "char *" in the call
3435 to x_term_init.
3436 (lookup_image): Remove unused variable `file'.
3437 (xbm_load): Remove unused variables `bitmap_data', `height', and
3438 `width'. Remove function-local variable `i', leave the
3439 block-local one.
3440 (gif_load): Remove unused variable `inc'.
3441
52283633 3442 * xterm.c (XTread_socket): Remove unused variables `p' and `pend'.
315f5865
EZ
3443 (XTread_socket) <LeaveNotify>: Remove unused variable `frame',
3444 leave only the one in the inner block.
3445
3446 * xfaces.c (face_fontset, realize_default_face): Remove unused
3447 variable `fontset'.
3448 (face_at_buffer_position): Remove unused variable `multibyte_p'.
3449
3450 * term.c (encode_terminal_code): Remove unused variable `c'.
3451
3452 * ccl.c (Fccl_execute): Cast ccl_driver parameters to `unsigned
3453 char *' instead of `char *'.
3454
3455 * category.c (Fcategory_docstring): Remove unused variable `doc'.
52283633 3456 (Fget_unused_category): Remove unused variable `docstring_vector'.
315f5865
EZ
3457 (Fchar_category_set): Remove unused variables `val', `charset',
3458 `c1' and `c2'.
3459
52283633
SM
3460 * coding.c (detect_coding_iso2022, setup_coding_system):
3461 Remove unused variable `i'.
315f5865
EZ
3462 (detect_coding_mask): Remove unused variable `idx'.
3463 (detect_coding): Remove unused variable `i'.
3464 (ccl_coding_driver): Remove unused variable `result'.
3465 (run_pre_post_conversion_on_str): Remove unused variable `prev'.
52283633 3466 (decode_coding_string): Remove unused variables `to' and `gcpro1'.
315f5865
EZ
3467 (encode_coding_string): Remove unused variables `gcpro1' and
3468 `saved_coding_symbol'.
3469 (Ffind_coding_systems_region_internal): Remove function-local
3470 variable args[], leave only the block-local one.
3471 (code_convert_region1): Remove unused variable `len'.
3472
3473 * charset.c (char_printable_p): Remove unused variable `chars'.
3474 (Fsplit_char, Fchar_bytes): Remove unused variable `val'.
3475 (str_to_multibyte): Remove unused variable `c'.
3476
3477 * window.c (size_window): Remove block-local variable `min_size'.
3478
3479 * xdisp.c (make_cursor_line_fully_visible): Remove unused variable
3480 `header_line_height'.
3481 (append_space, extend_face_to_end_of_line): Declare `saved_what'
3482 enum display_element_type.
3483
1a8a9daf
GM
34842001-01-02 Gerd Moellmann <gerd@gnu.org>
3485
6dde6abc 3486 * xterm.c (x_connection_closed): Catch X errors around all
52283633
SM
3487 statements that call X. Save away the error message in a local copy.
3488
1883b2c6
GM
3489 * xterm.c (x_connection_closed): Set handling_signal to 0 at
3490 the start.
3491
a13be207
GM
3492 * xdisp.c (pos_visible_p): Take into account that CHARPOS maybe
3493 in or at the start of invisible text.
3494
1a8a9daf
GM
3495 * dispnew.c (update_window): Don't check_current_matrix_flags.
3496
3608c0f9
JR
34972001-01-01 Jason Rumney <jasonr@gnu.org>
3498
3499 * w32fns.c (x_figure_window_size): Do not allow new_height and
3500 new_width of frame to override specified values.
3501
abb1acc4
KH
35022000-12-30 Kenichi Handa <handa@etl.go.jp>
3503
52283633 3504 * composite.c (find_composition): Fix a code for searching backward.
abb1acc4 3505
762a68ec
GM
35062000-12-29 Gerd Moellmann <gerd@gnu.org>
3507
52283633 3508 * dispnew.c (check_current_matrix_flags) [GLYPH_DEBUG]: New function.
9c8b8382
GM
3509 (update_window) [GLYPH_DEBUG]: Call it.
3510 (scrolling_window): Prevent including current rows which are below
3511 what's displayed in the window.
3512
3513 * xdisp.c (try_window_reusing_current_matrix)
3514 <new start <= old start>: Disable rows in the current matrix
3515 which are below the window after scrolling.
52283633 3516
762a68ec
GM
3517 * xdisp.c (move_it_by_lines): Don't do optimizations if NEED_Y_P
3518 is zero. It's not worth the complexity.
3519 (invisible_text_between_p): Put in #if 0 because unused.
3520
2d5912c1
GM
35212000-12-28 Gerd Moellmann <gerd@gnu.org>
3522
46f6a258
GM
3523 * xfns.c (Fx_backspace_delete_keys_p): Check library and server
3524 XKB versions. Call XkbFreeKeyboard with 2nd arg 0.
3525
89f93679
GM
3526 * keyboard.c (echo_char): If C is an integer, always call
3527 push_key_description. Former code could signal an invalid
3528 character error.
3529
3530 * keymap.c (push_key_description): Add parameter FORCE_MULTIBYTE.
3531 If set, print multibyte text.
3532 (Fsingle_key_description): Call push_key_description with
3533 FORCE_MULTIBYTE set.
3534 (describe_buffer_bindings): Likewise.
3535
3536 * lisp.h (push_key_description): Add prototype.
3537
c06017fb
GM
3538 * xdisp.c (echo_area_display): Bind redisplay-dont-pause to t
3539 around the call to redisplay_internal.
3540
f1d2ce7f
GM
3541 * xfns.c: Use #if GLYPH_DEBUG instead of #ifdef GLYPH_DEBUG.
3542
2d5912c1
GM
3543 * dispnew.c: Use #if GLYPH_DEBUG instead of #ifdef GLYPH_DEBUG.
3544
9371f831
KH
35452000-12-28 Kenichi Handa <handa@etl.go.jp>
3546
3547 * ccl.c (CCL_WRITE_CHAR): Check variable `extra_bytes'.
3548 (ccl_driver): New local variable `extra_bytes'.
3549
3550 * ccl.h (struct ccl_spec): New member eight_bit_carryover.
3551
52283633
SM
3552 * coding.c (setup_coding_system):
3553 Initialize coding->spec.ccl.eight_bit_carryover.
9371f831
KH
3554 (ccl_coding_driver): Pay attention to carried over 8-bit bytes.
3555
0c80628a
KH
35562000-12-28 Kenichi Handa <handa@etl.go.jp>
3557
3558 * coding.c (SAFE_ONE_MORE_BYTE): New macro.
3559 (DECODE_EMACS_MULE_COMPOSITION_CHAR): New macro.
3560 (DECODE_EMACS_MULE_COMPOSITION_RULE): New macro.
3561 (decode_composition_emacs_mule): New function.
3562 (decode_coding_emacs_mule): Decode composition sequence by calling
3563 decode_composition_emacs_mule.
3564 (ENCODE_COMPOSITION_EMACS_MULE): New macro.
52283633
SM
3565 (encode_coding_emacs_mule): Changed from macro to function.
3566 If a text contains compositions, encode them correctly.
0c80628a
KH
3567 (setup_coding_system): Set coding->commong_flags for emacs-mule so
3568 that decoding and encoding are required.
3569
3e32cc27
GM
35702000-12-27 Gerd Moellmann <gerd@gnu.org>
3571
5e25feee
GM
3572 * xfaces.c (PT_PER_INCH): New macro.
3573 (xlfd_point_size): Compute real point size from font's pixel size.
3574 (pixel_point_size, build_scalable_font_name): Use PT_PER_INCH
3575 instead of 72.
3576
892d8fcd
GM
3577 * .gdbinit: Comment out the line pointing to the Lesstif source
3578 directory.
3579
12c8b416
GM
3580 * window.c (Frecenter): Use displayed_window_lines instead
3581 of window_internal_height.
3582
6061fbf0
GM
3583 * xterm.c (syms_of_xterm): DEFVAR_LISP x-toolkit-scroll-bars
3584 instead of x-toolkit-scroll-bars-p.
3585 (Vx_toolkit_scroll_bars): Renamed from x_toolkit_scroll_bars_p.
3586
3587 * w32term.c (syms_of_xterm): DEFVAR_LISP x-toolkit-scroll-bars
3588 instead of x-toolkit-scroll-bars-p.
3589 (Vx_toolkit_scroll_bars): Renamed from x_toolkit_scroll_bars_p.
52283633 3590
3e32cc27
GM
3591 * dispnew.c (struct redisplay_history) [GLYPH_DEBUG]: New.
3592 (REDISPLAY_HISTORY_SIZE) [GLYPH_DEBUG]: New macro.
52283633
SM
3593 (redisplay_history, history_idx, history_tick) [GLYPH_DEBUG]:
3594 New variables.
3595 (add_window_display_history, add_frame_display_history)
3e32cc27
GM
3596 (Fdump_redisplay_history) [GLYPH_DEBUG]: New functions.
3597 (build_frame_matrix_from_leaf_window): Remove unused code.
3598 (build_frame_matrix_from_leaf_window) [GLYPH_DEBUG]: Add to
3599 redisplay history.
3600 (update_frame) [GLYPH_DEBUG]: Add to redisplay history.
3601 (update_window) [GLYPH_DEBUG]: Likewise.
3602 (syms_of_display): Defsubr dump-redisplay-history.
3603
31798cfe
GM
36042000-12-23 Gerd Moellmann <gerd@gnu.org>
3605
f717c2ba
GM
3606 * keyboard.c (echo_prompt): Always set current_kboard->echoptr to
3607 the end of the prompt. Set echo_after_prompt to the offset
3608 of echoptr in echobuf.
3609
aeb2b8fc
GM
3610 * xdisp.c (init_from_display_pos): Pop until the iterator's
3611 stack is empty; there may be frames for stretch or images
3612 on the stack.
3613
31798cfe
GM
3614 * dispnew.c (save_frame_matrix, restore_frame_matrix): Removed.
3615 (save_or_restore_current_matrix): New function for the same
3616 purpose, but more efficient.
3617 (adjust_frame_glyphs_for_frame_redisplay): Use it.
3618
f8156156
EZ
36192000-12-23 Eli Zaretskii <eliz@is.elta.co.il>
3620
3621 * xdisp.c (syms_of_xdisp): Fix last change.
3622
bdd6d4e8
GM
36232000-12-23 Gerd Moellmann <gerd@gnu.org>
3624
3625 * xdisp.c (syms_of_xdisp): Doc fix.
3626
3627 * xdisp.c (redisplay_window): Remove label restore_buffers;
3628 use finish_scroll_bars instead to make sure that scroll bars
3629 are redeemed. If we don't do this, flickering can result from
3630 scroll bars being destroyed and recreated.
3631
9436cdf9
JR
36322000-12-22 Jason Rumney <jasonr@gnu.org>
3633
3634 * w32term.c (w32_draw_bitmap): Fix drawing so it does not appear
3635 in the wrong colors when the foreground is not black.
3636 (expose_window): Don't redraw the window that's currently being
3637 updated.
3638
951f9df5
GM
36392000-12-22 Gerd Moellmann <gerd@gnu.org>
3640
856ff7a7
GM
3641 * window.c (size_window): When setting the window's too_small_ok
3642 flag, compare old size with minimum size depending on WIDTH_P,
3643 don't compare with window_min_width.
52283633 3644
951f9df5
GM
3645 * window.c (delete_window): Simplify somewhat.
3646 (Fset_window_configuration): Don't SET_FRAME_GARBAGED after
3647 freeing window matrices. The flag windows_or_buffers_changed is
3648 set, so the next redisplay will consider all windows; this should
3649 suffice.
3650
886bc933
KH
36512000-12-22 Kenichi Handa <handa@etl.go.jp>
3652
3653 * coding.c (ccl_coding_driver): Initialize ccl->cr_consumed.
3654
3655 * ccl.h (struct ccl_program): New member cr_consumed.
3656
3657 * ccl.c (CCL_WRITE_CHAR): Don't handle EOL conversion here.
3658 (CCL_READ_CHAR): Handle EOL conversion here.
3659 (ccl_driver) <CCL_ReadMultibyteChar2>: Likewise.
3660
177f4e88
GM
36612000-12-21 Gerd Moellmann <gerd@gnu.org>
3662
52283633 3663 * xdisp.c (Fdump_glyph_row) [GLYPH_DEBUG]: Add optional arg GLYPHS.
6ba384dc
GM
3664
3665 * dispextern.h (GLYPH_EQUAL_P): Also compare pixel widths,
3666 otherwise tabs of different size compare equal.
3667
3668 * callint.c (Fcall_interactively): Prevent a compiler warning.
3669
3670 * print.c (print_unwind): Return nil.
3671 (PRINTDECLARE): Initialize all local variables.
3672 (print_preprocess): Add a default case.
3673
8e15274f
GM
3674 * lisp.h (Qinhibit_point_motion_hooks): Declare extern.
3675
3676 * undo.c (Fprimitive_undo): Bind `inhibit-point-motion-hooks' to t.
3677
52283633 3678 * window.c (delete_window, Fsplit_window)
177f4e88
GM
3679 (Fset_window_configuration): Calls to ensure_frame_matrix removed.
3680
3681 * dispextern.h (ensure_frame_matrix): Function declaration removed.
3682
3683 * dispnew.c (ensure_frame_matrix): Removed.
3684 (save_frame_matrix, restore_frame_matrix): New functions.
3685 (adjust_frame_glyphs_for_frame_redisplay): Use them.
3686
3687 * xdisp.c (dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
3688 [GLYPH_DEBUG]: Extended to dump glyphs in short form.
3689
99012074
AI
36902000-12-21 Andrew Innes <andrewi@gnu.org>
3691
3692 * w32term.c (x_update_begin): Regenerate the palette here, rather
3693 than for each window.
3694
3695 * w32xfns.c (select_palette): Avoid calling SelectPalette if
3696 palette is NULL, since this corrupts memory! Also get
3697 display_info reference from frame.
3698
29ef7d2d
JR
36992000-12-21 Jason Rumney <jasonr@gnu.org>
3700
3701 * w32bdf.c (w32_init_bdf_font): Fix test for valid bmp heap.
3702
3703 * w32term.c (x_draw_hollow_cursor): Delay obtaining the frame's DC
3704 to avoid returning without releasing it.
3e27fa1f 3705
3f9d67a6
KH
37062000-12-21 Kenichi Handa <handa@etl.go.jp>
3707
587fc3f9
KH
3708 * keymap.c (push_key_description): Don't convert eight-bit-control
3709 and eight-bit-graphic to multibyte character.
3710
3f9d67a6
KH
3711 * charset.c (Fmake_char_internal): If CHARSET doesn't have a
3712 generic character and CODE1 is nil, return the smallest character
3713 in CHARSET.
3714
774ba8c9
DL
37152000-12-20 Dave Love <fx@gnu.org>
3716
3717 * s/osf5-0.h (NSIG): Don't redefine.
3718
88416888
SM
37192000-12-20 Stefan Monnier <monnier@cs.yale.edu>
3720
3721 * keymap.c (where_is_internal): Check ascii_sequence_p rather than
3722 excluding menu-bar and tool-bar.
3723 (Fwhere_is_internal): Check ascii_sequence_p when looking up the cache.
3724 (menu_item_p): Remove.
3725 (where_is_internal_1): Don't ignore menu-items.
3726
a6426c6f
GM
37272000-12-20 Gerd Moellmann <gerd@gnu.org>
3728
03ff8aab
GM
3729 * xdisp.c (hscroll_window_tree): Take window's min_hscroll
3730 into account.
3731
3732 * window.c (make_window): Initialize window's min_hscroll.
3733 (Fset_window_hscroll): Set window's hscroll and min_hscroll.
3734 (set_window_buffer, temp_output_buffer_show): Set min_hscroll
3735 to zero.
3736 (struct saved_window): New member min_hscroll.
3737 (SAVED_WINDOW_VECTOR_SIZE): Set to 17.
3738 (Fset_window_configuration): Set window's min_hscroll.
3739 (save_window_save): Save window's min_hscroll.
3740 (compare_window_configurations): Compare min_hscroll values.
3741
3742 * window.h (struct window): New member min_hscroll.
3743
3744 * keyboard.c (echo_prompt): Prevent a compiler warning.
3745
8de4aaf8
GM
3746 * xdisp.c (try_cursor_movement): Fix last change. The real
3747 condition is that PT is at the end of the row, and should
3748 be displayed at the start of the next row.
52283633 3749
3f7e3031
GM
3750 * xdisp.c (try_cursor_movement): If we end on a partially
3751 visible line, end we already decided to scroll, return -1.
3752
a6426c6f
GM
3753 * dispextern.h (ensure_frame_matrix): Add prototype.
3754
3755 * window.c (delete_window, Fsplit_window)
3756 (Fset_window_configuration): Call ensure_frame_matrix.
3757
52283633
SM
3758 * dispnew.c (fake_current_matrices, ensure_frame_matrix):
3759 New functions.
a6426c6f
GM
3760 (adjust_frame_glyphs_for_frame_redisplay): If display has been
3761 completed, call fake_current_matrices instead of marking frame
3762 garbaged.
3763
57fa2774
JR
37642000-12-20 Jason Rumney <jasonr@gnu.org>
3765
3766 * w32fns.c (syms_of_w32fns): Initialize and staticpro tip_frame.
3767
d925df90
EZ
37682000-12-19 Eli Zaretskii <eliz@is.elta.co.il>
3769
3770 * fns.c (Frequire): Doc fix.
3771
7b93a85b
GM
37722000-12-19 Gerd Moellmann <gerd@gnu.org>
3773
52283633 3774 * window.c (window_scroll_pixel_based): Don't use move_it_vertically.
71d4497a 3775
c74e645b
GM
3776 * dispnew.c (direct_output_for_insert): Fix check for mini-window
3777 currently displaying a message.
3778
7b93a85b
GM
3779 * bytecode.c (toplevel) [CHECK_FRAME_FONT]: Include frame.h and
3780 xterm.h.
3781 (Fbyte_code) [CHECK_FRAME_FONT]: Check the selected frame's font.
3782
90d97e64
AI
37832000-12-18 Andrew Innes <andrewi@gnu.org>
3784
3785 * w32.c (w32_strerror): New function.
3786
3787 * w32.h (w32_strerror): New extern.
3788
3789 * w32fns.c (Fw32_shell_execute): Use it.
3790
91c9e6ce
GM
37912000-12-18 Gerd Moellmann <gerd@gnu.org>
3792
3793 * s/hpux10.h (_FILE_OFFSET_BITS): Undef again.
3794
6f4745e2
EZ
37952000-12-18 Eli Zaretskii <eliz@is.elta.co.il>
3796
3797 * msdos.c (IT_set_face): Obey inverse_video.
3798
c9e088ce
KH
37992000-12-18 Kenichi Handa <handa@etl.go.jp>
3800
3801 * dired.c (directory_files_internal): Always return decoded filenames.
3802
c3695f5f
GM
38032000-12-18 Gerd Moellmann <gerd@gnu.org>
3804
52d8e4ff
GM
3805 * xterm.c (x_connection_closed): Prevent being called recursively
3806 because of an error condition in XtCloseDisplay.
52283633 3807
62be9979
GM
3808 * xdisp.c (init_iterator): If noninteractive, and the frame's
3809 face cache is null, make one.
3810
52283633 3811 * xfns.c (show_busy_cursor): Check for live frames more thoroughly.
5f7a1890 3812
c3695f5f
GM
3813 * process.c (wait_reading_process_input): Check for pending
3814 input when running timers.
3815
78555fbe
EZ
38162000-12-18 Eli Zaretskii <eliz@is.elta.co.il>
3817
52283633 3818 * msdos.c (IT_write_glyphs): Compute the glyph face from str->face_id.
78555fbe 3819
b2b36264
KH
38202000-12-18 Kenichi Handa <handa@etl.go.jp>
3821
3822 * process.c (read_process_output): Don't run a filter if the code
3823 decoder produces nothing but carryover.
3824
9c543fbf
AI
38252000-12-17 Andrew Innes <andrewi@gnu.org>
3826
3827 * w32.c (sys_rename): Only check errno against EEXIST, and not
3828 EACCES, when determining whether rename failed because the target
3829 exists. This was resulting in indefinite looping on Windows 9x if
3830 the source file was locked by another process.
3831
3832 * w32fns.c (Ffile_system_info): New function.
3833 (syms_of_w32fns): Defsubr it.
3834
10c2b5a8
GM
38352000-12-17 Gerd Moellmann <gerd@gnu.org>
3836
b0228ace
GM
3837 * window.c (coordinates_in_window): Fix computation for
3838 position on vertical line between mode lines.
3839
10c2b5a8
GM
3840 * xfns.c (unwind_create_frame): Return t if frame was deleted.
3841 Don't alter tip_frame or tip_window.
3842 (unwind_create_tip_frame): Set tip_frame to nil only if frame
3843 was deleted.
3844
c844a81a
GM
3845 * w32fns.c (unwind_create_frame): Return t if frame was deleted.
3846 Don't alter tip_frame or tip_window.
3847 (unwind_create_tip_frame): Set tip_frame to nil only if frame
3848 was deleted.
3849
6c825f8e
EZ
38502000-12-16 Eli Zaretskii <eliz@is.elta.co.il>
3851
3852 * fileio.c (Fcopy_file): Rename the last argument to keep_time, to
3853 be consistent with the doc string. Reported by NAKAJIMA Mikio
3854 <minakaji@osaka.email.ne.jp>.
3855
af4bb4c8
KH
38562000-12-16 Kenichi Handa <handa@etl.go.jp>
3857
3858 * xfaces.c (Vface_ignored_fonts): New variable.
3859 (x_face_list_fonts): Ignore fonts matching Vface_ignored_fonts.
3860 (syms_of_xfaces): Declare Vface_ignored_fonts as a Lisp variable.
3861
8062e53a
GM
38622000-12-15 Gerd Moellmann <gerd@gnu.org>
3863
e87b8809
GM
3864 * dispnew.c (update_window): Detect pending input every nth line
3865 updated, i.e. do it depending on real work done, and not on the
3866 vpos of the line.
3867
3868 * xterm.c (expose_window): Don't redraw the window that's
3869 currently being updated.
3870
a6768cc5
GM
3871 * window.c (Fset_window_point): Remove test for
3872 cursor_in_non_selected_windows.
3873
4ea7fdca
GM
3874 * lread.c (read1): Recognize end of file after `\\'.
3875
8062e53a
GM
3876 * xfns.c (x_create_tip_frame): Use unwind_create_tip_frame,
3877 not unwind_create_frame.
3878
bb7959c1
GM
38792000-12-15 Dave Love <fx@gnu.org>
3880
3881 * s/usg5-4.h (bcopy) [IRIX6]: Don't special-case definition of
3882 bcopy & al.
3883
3884 * s/irix6-5.h: #undef bcopy & al here. Include strings.h.
3885
ced04c42
KH
38862000-12-15 Kenichi Handa <handa@etl.go.jp>
3887
c5443913
KH
3888 * coding.c (setup_coding_system): Clear all members of the struct
3889 coding_system at first.
bc137305
KH
3890 (detect_coding): Call detect_coding_mask with a correct MULTIBYTEP
3891 argument.
3892 (code_convert_region): Don't override coding->src_multibyte and
3893 coding->dst_multibyte.
c5443913 3894
ced04c42
KH
3895 * fns.c (Fmd5): Docstring improved.
3896
c2d7f289
MB
38972000-12-15 Miles Bader <miles@gnu.org>
3898
3899 * xdisp.c (window_box_height): Only use mode-line glyph-rows that
3900 are actually marked as mode-lines; otherwise use
3901 estimate_mode_line_height.
3902
9d7d9263
GM
39032000-12-14 Gerd Moellmann <gerd@gnu.org>
3904
3905 * editfns.c (Fformat): Prevent a buffer overrun when the format
3906 specifies a precision.
3907
7cf0153a
EZ
39082000-12-14 Eli Zaretskii <eliz@is.elta.co.il>
3909
3910 * msdos.c (Fmsdos_set_mouse_buttons): Signal an error if the
3911 argument is outside the range [2..3].
3912
1de0f662
AI
39132000-12-14 Andrew Innes <andrewi@gnu.org>
3914
3915 * w32fns.c (Fx_hide_tip): Avoid unnecessary work when there's
3916 nothing to do. Bind inhibit-quit.
3917 (tip_frame): Make it a Lisp_Object.
3918 (x_create_tip_frame): Set tip_frame after it has been added to
3919 Vframe_list.
3920 (Fx_show_tip): Don't set tip_frame here.
52283633 3921 (image_cache_refcount, dpyinfo_refcount) [GLYPH_DEBUG]: New variables.
1de0f662
AI
3922 (unwind_create_frame, unwind_create_tip_frame): New functions.
3923 (Fx_create_frame, x_create_tip_frame): Handle errors signaled
3924 while a frame is only partially constructed.
3925
3926 * w32term.c (clear_mouse_face): Treat tip_frame as a Lisp_Object.
3927 (x_free_frame_resources): New function.
3928 (x_destroy_window): Use it.
3929
02387dcc
GM
39302000-12-14 Gerd Moellmann <gerd@gnu.org>
3931
3932 * xfns.c (Fx_backspace_delete_keys_p): New function.
3933 (syms_of_xfns): Defsubr it.
3934
3935 * config.in (HAVE_XKBGETKEYBOARD): Add.
3936
0544ef49
KH
39372000-12-14 Kenichi Handa <handa@etl.go.jp>
3938
98d62747
KH
3939 * keyboard.c (echo_prompt): Argument type changed to Lisp_Object.
3940 Always store string in multibyte representation in echobuf.
3941 (echo_char): Always store string in multibyte representation in
3942 echobuf.
3943 (echo_now): Call message2_nolog with the arg MULTIBYTE 1.
3944 (read_key_sequence): Adjusted for the change of echo_prompt.
3945
a20193cd
KH
3946 * fns.c (Fmd5): Docstring improved.
3947
191b83b6
KH
3948 * lisp.h (detect_coding_system): Prototype adjusted.
3949
0544ef49
KH
3950 * coding.c (ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
3951 (detect_coding_emacs_mule, detect_coding_iso2022,)
3952 (detect_coding_sjis, detect_coding_big5, detect_coding_utf_8)
52283633
SM
3953 (detect_coding_utf_16, detect_coding_ccl): Make them static.
3954 New argument MULTIBYTEP. Callers changed.
0544ef49
KH
3955 (detect_coding_mask, detect_coding_system): New argument
3956 MULTIBYTEP. Callers changed.
1da1bb05
KH
3957 (decode_coding_string): Set coding->src_multibyte and
3958 coding->dst_multibyte before calling detect_coding and detect_eol.
3959 Update them after some coding system is detected.
52283633 3960
d5b3eb1b
SM
39612000-12-13 Stefan Monnier <monnier@cs.yale.edu>
3962
3963 * keymap.c (get_keyelt): Only eval the filter if `autoload' is set.
3964
3965 * keyboard.c (menu_bar_items, tool_bar_items):
3966 Set `autoload' when looking up `tool-bar' or `menu-bar' submap.
3967
f7f8bb69
GM
39682000-12-13 Gerd Moellmann <gerd@gnu.org>
3969
52283633 3970 * xfns.c (image_cache_refcount, dpyinfo_refcount) [GLYPH_DEBUG]:
19f71add
GM
3971 New variables.
3972 (unwind_create_frame, unwind_create_tip_frame): New functions.
3973 (Fx_create_frame, x_create_tip_frame): Handle errors signaled
3974 while a frame is only partially constructed.
3975
3976 * xterm.h (x_free_frame_resources): Declare.
3977
3978 * xterm.c (x_free_frame_resources): New function.
3979 (x_destroy_window): Use it.
3980
e10da507
GM
3981 * dispnew.c (update_window): If do_mouse_tracking is non-nil,
3982 don't interrupt the update for pending input initially, i.e.
3983 update at least some lines.
3984
3985 * keyboard.c (do_mouse_tracking): Make externally visible.
52283633 3986
d5b3eb1b 3987 * xterm.c (x_term_init): Declare gray_bitmap_bits as `extern char *'.
f7f8bb69
GM
3988
3989 * xfns.c (gray_bitmap_bits): Declare `char *'.
3990
90aa2856
GM
39912000-12-12 Gerd Moellmann <gerd@gnu.org>
3992
3993 * xdisp.c (display_tool_bar_line): Make sure that tool bar
3994 lines start with a relief line.
3995
a308c9cd
DL
39962000-12-12 Dave Love <fx@gnu.org>
3997
3998 * window.c (Fdisplay_buffer): Doc fix.
3999 (Fwindow_list): Remove unused var.
4000
4001 * buffer.h (mmap_set_vars): Declare.
4002
4003 * window.h (Fset_window_point): Declare.
4004
d575011f
EZ
40052000-12-12 Eli Zaretskii <eliz@is.elta.co.il>
4006
bf6282d2 4007 * msdos.c (fast_find_position): Don't overstep the last window row.
52283633
SM
4008 (IT_note_mouse_highlight): Initialize portion to -1. Remove unused
4009 variable `area'. When looking for a row under (X,Y), give up if some
4010 of the previous rows is not enabled.
d575011f 4011
ecf4d726
GM
40122000-12-12 Gerd Moellmann <gerd@gnu.org>
4013
2ebf6139
GM
4014 * window.c (Fset_window_point): If displaying cursors in windows
4015 other than the selected window, make sure redisplay updates
4016 other windows to show the new value of point in the window.
4017
4018 * dispextern.h (cursor_in_non_selected_windows): Declare extern.
4019
bfdb75ee
GM
4020 * buffer.c (Fkill_buffer): Don't Fset_buffer when testing if
4021 the buffer is the sole visible buffer when in the mini-buffer.
4022
52283633 4023 * xdisp.c (setup_echo_area_for_printing, with_echo_area_buffer):
4fdbd809
GM
4024 Bind `inhibit-read-only' to t.
4025 (unwind_with_echo_area_buffer): Use AREF.
4026
c0006262
GM
4027 * xfns.c (Fx_hide_tip): Simplified.
4028
52283633
SM
4029 * s/freebsd.h, s/netbsd.h (GC_MARK_STACK): Use GC_MAKE_GCPROS_NOOPS
4030 instead of `1'.
e9a59cad 4031
ecf4d726
GM
4032 * s/gnu-linux.h (GC_MARK_STACK): Define as GC_MAKE_GCPROS_NOOPS.
4033
e5959a9a
GM
40342000-12-11 Gerd Moellmann <gerd@gnu.org>
4035
a3642e49 4036 * xfns.c (Fx_hide_tip): Fix last change.
52283633 4037
44b5a125
GM
4038 * xfns.c (Fx_hide_tip): Avoid unnecessary work when there's
4039 nothing to do. Bind inhibit-quit.
4040 (tip_frame): Make it a Lisp_Object.
4041 (x_create_tip_frame): Set tip_frame after it has been added to
4042 Vframe_list.
4043 (Fx_show_tip): Don't set tip_frame here.
4044
4045 * xterm.c (clear_mouse_face): Treat tip_frame as a Lisp_Object.
4046
4047 * xdisp.c (prepare_menu_bars): Changes for tip_frame being a
4048 Lisp_Object.
4049
4050 * dispextern.h: Change external declaration of tip_frame.
4051
d990421f
GM
4052 * keymap.c (Fkey_description): If KEYS is an empty key sequence,
4053 return an empty string.
4054
4db87380
GM
4055 * xdisp.c (try_cursor_movement): Check update_mode_lines instead
4056 of the window's update_mode_line flag, since the former is set by
4057 force-mode-line-update, not the latter. This makes
4058 column-number-mode slightly faster.
52283633 4059
e5959a9a
GM
4060 * xdisp.c (try_window_id) <all changes above window start>:
4061 Set the cursor.
4062
169fe44e
GM
40632000-12-11 Paul Eggert <eggert@twinsun.com>
4064
4065 * config.in (HAVE_FTELLO): Remove.
4066 (HAVE_FSEEKO): Add.
4067 (_XOPEN_SOURCE): Remove; the large-file code no longer needs it.
4068 * lread.c (file_offset, file_tell): Depend on HAVE_FSEEKO, not
4069 HAVE_FTELLO.
4070 * s/hpux10.h (_FILE_OFFSET_BITS): Do not undef.
4071 * s/isc3-0.h, s/osf5-0.h: Update comment about _XOPEN_SOURCE.
52283633 4072
59ec59ae
MB
40732000-12-11 Miles Bader <miles@gnu.org>
4074
4075 * window.c (displayed_window_lines): Don't round up when
4076 converting empty space at bottom to lines.
ff904dd6
MB
4077 Handle non-newline-terminated final lines properly.
4078 (Fwindow_text_height): New function (used to be in lisp).
4079 (syms_of_window): Initialize it.
59ec59ae 4080
42ebfa31
SM
40812000-12-09 Stefan Monnier <monnier@cs.yale.edu>
4082
4083 * syntax.c (scan_lists): Check that the right quote char has the
4084 right Sstring syntax when jumping over strings.
4085 (init_syntax_once): Use Smax rather than 13.
4086
5cdb3cf3
MB
40872000-12-09 Miles Bader <miles@gnu.org>
4088
4089 * window.c (Fpos_visible_in_window_p): Replace FULLY parameter
4090 with PARTIALLY, inverting the sense.
4091 (window_scroll_pixel_based): Scroll partially visible lines into
4092 place if we hit the beginning or end of the buffer.
a12167c5
MB
4093 (displayed_window_lines): Don't include partially visible lines.
4094 (Fmove_to_window_line): Skip past any partially visible first line.
5cdb3cf3 4095
842b2a94
GM
40962000-12-08 Gerd Moellmann <gerd@gnu.org>
4097
4098 * keymap.c (current_minor_maps): Use malloc. Prevent a leak.
4099
4100 * tparam.c (tparam1): Change the way buffers are reallocated to be
4101 portable and less obfuscated.
4102
4103 * termcap.c (tgetent): Change the way buffers are reallocated to
4104 be portable and less obfuscated.
4105
4106 * macros.c (store_kbd_macro_char): Change the way buffers are
4107 reallocated to be portable and less obfuscated.
4108
4109 * lread.c (read1): Change the way buffers are reallocated to be
4110 portable and less obfuscated.
4111
4112 * doc.c (Fsubstitute_command_keys): Change the way buffers
4113 are reallocated so that it is portable.
4114
137cad7c
EZ
41152000-12-07 Eli Zaretskii <eliz@is.elta.co.il>
4116
4117 * dosfns.c (Ffile_system_info): New function.
4118 (syms_of_dosfns): Defsubr it.
4119
5c7f629c
SM
41202000-12-07 Stefan Monnier <monnier@cs.yale.edu>
4121
4122 * alloc.c (gc_sweep): Add comment.
4123
959e647d
GM
41242000-12-07 Gerd Moellmann <gerd@gnu.org>
4125
52283633
SM
4126 * sound.c (vox_configure): Change order of ioctls.
4127 Don't set SNDCTL_DSP_SPEED from bps, don't set SNDCTL_DSP_SAMPLESIZE.
28fcb7dc
GM
4128 Ignore errors when changing volume.
4129 (vox_close): Don't reset the device.
4130
926b7e5e
GM
4131 * process.c (read_process_output): Make sure the process marker's
4132 position is valid when the process buffer is changed in
4133 after-change functions. W3 does that.
52283633 4134
959e647d
GM
4135 * xfns.c (x_free_gcs): New function.
4136
4137 * xterm.h (x_free_gcs): Add prototype.
4138
4139 * widget.c (EmacsFrameDestroy): Call x_free_gcs instead of
4140 freeing GCs here.
4141
4142 * xterm.c (x_destroy_window): Call x_free_gcs so that
4143 resources of non-toolkit X windows will be freed.
4144
478ea067
AI
41452000-12-07 Andrew Innes <andrewi@gnu.org>
4146
4147 * w32fns.c (xlfd_charset_of_font): Fix last change.
4148
fbee3231
DL
41492000-12-06 Dave Love <fx@gnu.org>
4150
67292061
DL
4151 * md5.h (__P): Don't define -- it comes from config.h.
4152
fbee3231
DL
4153 * strftime.c: Change some #if foo to #ifdef foo.
4154
4ee87dbb
AI
41552000-12-06 Andrew Innes <andrewi@gnu.org>
4156
4157 * w32term.h (CP_INVALID): Rename to CP_UNKNOWN.
4158
52283633 4159 * w32fns.c (xlfd_charset_of_font): Don't overwrite fontname argument.
4ee87dbb 4160 (w32_codepage_for_font): Rename CP_INVALID to CP_UNKNOWN.
52283633 4161 (w32_list_fonts): Don't choke if pattern doesn't specify a codepage.
4ee87dbb 4162
9765b4a4
GM
41632000-12-06 Gerd Moellmann <gerd@gnu.org>
4164
d285b373
GM
4165 * alloc.c (gc_sweep): Prevent symbols read during loadup
4166 from being freed.
4167
384333ee
GM
4168 * xdisp.c (underlying_face_id): New function.
4169 (handle_face_prop, face_before_or_after_it_pos): Use it
4170 to determine the face ``under'' a string. Let strings inherit
4171 the face of the buffer under them.
4172
4173 * xfaces.c (face_at_string_position): Update function comment.
52283633 4174
d4b72d58
GM
4175 * dispnew.c (adjust_glyph_matrix): Don't reuse a window's current
4176 matrix if the window's left position has changed; we need to
4177 redraw it in this case.
4178
4179 * dispextern.h (struct glyph_matrix): Add member window_left_x.
4180
e1d05387
GM
4181 * window.c (coordinates_in_window): Check mouse on mode-line or
4182 header-line first.
4183
eb1b0c74
GM
4184 * alloc.c (Fgarbage_collect): Dox fix. Return a list as
4185 advertized by the function documentation.
4186
d94d636f
GM
4187 * window.c (syms_of_window): Doc fix.
4188
3887b449
GM
4189 * sound.c (vox_configure): Set volume for left and right channel.
4190 (sound_cleanup): Return nil.
4191
efc8f57a
GM
4192 * xdisp.c (move_it_by_lines): Fix paren typo.
4193
9765b4a4
GM
4194 * xterm.c (x_load_font): Don't use the font's max_bounds for
4195 computing the height of the font. If max_bounds' ascent or
4196 descent are greater than the font's ascent or descent, this means
4197 glyphs overlap, which should be handled now by redisplay.
4198
6529ed87
GM
4199 * window.c (Veven_window_heights): New variable.
4200 (syms_of_window): DEFVAR_LISP it.
4201 (Fdisplay_buffer): Check Veven_window_heights before evening the
4202 window heights.
52283633 4203
0eb2ecde
MB
42042000-12-06 Miles Bader <miles@gnu.org>
4205
4206 * xfaces.c (Finternal_set_lisp_face_attribute): If FRAME is `t',
4207 update `default-frame-alist' instead of setting no frame parameters.
4208
03d7a167
KH
42092000-12-06 Kenichi Handa <handa@etl.go.jp>
4210
4211 * composite.c (update_compositions): Fix typo (use the correct
4212 variable).
4213
5f8803c2
JR
42142000-12-05 Jason Rumney <jasonr@gnu.org>
4215
4216 * md5.h: Remove underscores from function declarations.
4217 (__attribute__, __alignof__) [!__GNUC__]: Define.
4218
4219 * md5.c: Delay include of md5.h until after namespace cleaning.
4220
c28a075b
JR
4221 * makefile.w32-in (fns.o): Depend on md5.h
4222 (md5.o): New target.
4223 (sunfns.o): Remove.
4224
4225 * makefile.nt: Likewise.
4226
ff3c7056
JR
42272000-12-05 Jason Rumney <jasonr@altavista.net>
4228
4229 * w32term.c (expose_area): Complete last change.
4230
0c21eeeb
KR
42312000-12-05 Ken Raeburn <raeburn@gnu.org>
4232
4233 * minibuf.c: Include intervals.h.
4234
f201d732
JR
42352000-12-05 Jason Rumney <jasonr@gnu.org>
4236
4237 * w32term.c (x_produce_glyphs): If a font for a component of
4238 a composition is not found, use 1 pixel dot ascent and 0 dot
4239 descent value to avoid displaying terribly tall empty boxes.
4240 (expose_area): Pass x-coordinate relative to the exposed
4241 area to x_draw_glyphs instead of a window-relative coordinate.
4242
21999ab9
GM
42432000-12-05 Gerd Moellmann <gerd@gnu.org>
4244
4d2036e4
GM
4245 * xdisp.c (next_element_from_ellipsis): Save face before selective
4246 display in saved_face_id, and set face_before_selective_p.
4247 (reseat_1): Reset face_before_selective_p.
4248 (append_space, extend_face_to_end_of_line): If iterator's
4249 face_before_selective_p is set, use the face from saved_face_id.
4250 (extend_face_to_end_of_line): For tty frames, make sure to
4251 use the right face id when producing spaces at the end of
4252 the line.
4253
4254 * dispextern.h (struct it): Add face_before_selective_p.
4255
52be17cc
GM
4256 * keyboard.c (record_char): Don't record identical help-echo
4257 events in recent_keys.
4258
8a4f36cc
GM
4259 * xterm.c [USE_X_TOOLKIT]: Close the display.
4260 (xim_close_dpy): Handle case that the display has been closed.
4261
57d6e381
GM
4262 * xterm.c (x_destroy_window): Reset the frame's X window after
4263 destroying it.
4264
21999ab9
GM
4265 * dispnew.c (adjust_glyph_matrix): Make sure to initialize local
4266 variable window_width.
4267 (line_draw_cost): Fix code skipping over spaces at the end of the
4268 line when must_write_spaces is not set.
4269 (scrolling_window): Fix code inserting runs in list of all runs.
4270
91372bb7
KH
42712000-12-05 Kenichi Handa <handa@etl.go.jp>
4272
4273 * coding.c (setup_coding_system): Be sure to initialize
4274 coding->category_idx.
4275
6c083b4c
GM
42762000-12-04 Gerd Moellmann <gerd@gnu.org>
4277
0c68ce6f 4278 * xterm.c (PER_CHAR_METRIC): Removed because not used.
52283633 4279
6452929e
GM
4280 * xterm.c (expose_area): Pass x-coordinate relative to the exposed
4281 area to x_draw_glyphs instead of a window-relative coordinate.
4282
d7f31e22
GM
4283 * fileio.c (auto_save_error): Add parameter ERROR. Show the
4284 error in the message.
4285
ae18aa3b
GM
4286 * keyboard.c (Fread_key_sequence): Don't start the busy cursor
4287 timer after having read a key. It's not good for code reading
4288 several keys in a loop, like an input method.
4289
caa15ef7
GM
4290 * fileio.c (Finsert_file_contents): When VISIT is t, don't
4291 record undo information for format-decode.
4292
4293 * undo.c (Fprimitive_undo): Bind inhibit-read-only to t if
4294 current buffer is read-only, not if it isn't.
4295
6c083b4c
GM
4296 * keyboard.c (record_char): Record `help-echo' input events
4297 in recent_keys only if they display some help. Don't record
4298 `help-echo' events as macro char.
4299
caa15ef7
GM
43002000-12-04 Richard M. Stallman <rms@caffeine.ai.mit.edu>
4301
4302 * editfns.c (save_excursion_restore): Don't move point
4303 in another window if it is showing the wrong buffer.
4304 Avoid the call to Fwindow_live_p, for speed.
4305
5a13529b
KH
43062000-12-04 Kenichi Handa <handa@etl.go.jp>
4307
e225faa7
KH
4308 * xfaces.c (struct font_name): New member registry_priority.
4309 (split_font_name): Initialize the above member to zero.
4310 (concat_font_list): New function.
4311 (font_list): Include fonts of all alternative registries.
4312 (FONT_POINT_SIZE_QUANTUM): New macro.
4313 (better_font_p): Ignore point size difference less than
4314 FONT_POINT_SIZE_QUANTUM. Use registry_prioprity as a last resort.
4315
e89648b4
KH
4316 * xterm.c (x_produce_glyphs): If a font for a component of
4317 a composition is not found, use 1 pixel dot ascent and 0 dot
4318 descent value to avoid displaying terribly tall empty boxes.
4319
5a13529b
KH
4320 * ccl.c (stack_idx_of_map_multiple): Don't use C initializier.
4321
d7935eb6
KR
43222000-12-03 Ken Raeburn <raeburn@gnu.org>
4323
4324 * coding.h (code_convert_string1): Declare.
4325
4326 * fns.c (Fmd5): Pass lisp objects, not integers, to call3.
4327
52283633 4328 * lisp.h (Fmake_variable_buffer_local, Fbuffer_file_name): Declare.
d7935eb6 4329
0dd5e255
JR
43302000-12-02 Jason Rumney <jasonr@gnu.org>
4331
4332 * w32term.c (w32_bdf_per_char_metric): Dereference pointer
4333 correctly for single byte character case.
4334 (w32_per_char_metric): Do not try to make any assumptions about
4335 the metrics of BDF fonts.
250cfece 4336 (x_estimate_mode_line_height): If `mode-line' face
52283633 4337 hasn't a font, use that of the frame, as drawing glyphs does.
250cfece
JR
4338 (note_mouse_highlight): Change the cursor shape on the vertical
4339 border between windows [not enabled].
4340
4341 * w32term.h (struct w32_output): Add member horizontal_drag_cursor.
4342
4343 * w32fns.c (Fx_create_frame): Reintroduce the call to
4344 face-set-after-frame-defaults.
4345 (Vx_window_horizontal_drag_shape): New variable.
4346 (syms_of_xfns): DEFVAR_LISP it.
4347 (x_set_mouse_color): Create frame's horizontal_drag_cursor [not
4348 enabled].
0dd5e255 4349
b5d8d2ca
GM
43502000-12-02 Simon Josefsson <simon@josefsson.org>
4351
4352 * fns.c (Fmd5): Use a different logic to decide the coding system
4353 to use.
4354
4355 * coding.h (Qwrite_region, Qcoding_system_error): Declare extern.
4356
fbb87147
EZ
43572000-12-02 Eli Zaretskii <eliz@is.elta.co.il>
4358
52283633 4359 * fileio.c (Fread_file_name) [DOS_NT]: Don't crash if homedir is NULL.
fbb87147 4360
447e9da0
GM
43612000-12-01 Gerd Moellmann <gerd@gnu.org>
4362
7708ced0
GM
4363 * xterm.c (x_calc_absolute_position): Don't subtract menubar's
4364 height for YNegative.
4365 (x_calc_absolute_position) [USE_MOTIF]: Use the column widget's
4366 height; also see comment there.
4367
447e9da0
GM
4368 * window.c (coordinates_in_window): Handle computations for
4369 positions on the vertical bar and fringes differently for
4370 window-system frames. Consider some pixels near the vertical bar
4371 as on the bar if the frame doesn't have vertical scroll bars.
4372 Associate positions between mode or header lines with the
4373 right window, the left one.
4374
86d1db20
JR
43752000-12-01 Jason Rumney <jasonr@gnu.org>
4376
4377 * w32term.c (w32_clear_window): Avoid clearing an invalid frame.
4378
4379 * w32xfns.c (get_frame_dc): Avoid changing the palette on an
4380 invalid frame.
4381
a1d58e5b
GM
43822000-12-01 Gerd Moellmann <gerd@gnu.org>
4383
52283633 4384 * window.c (struct saved_window): Add members orig_top and orig_height.
a1d58e5b
GM
4385 (SAVED_WINDOW_VECTOR_SIZE): Increment to 16.
4386 (save_window_save, Fset_window_configuration): Save/restore
4387 window's orig_top and orig_height.
4388
89c609af
JR
43892000-12-01 Jason Rumney <jasonr@gnu.org>
4390
4d177746 4391 * w32term.c (x_draw_vertical_border): Fix call to w32_fill_rect.
86d1db20 4392
89c609af
JR
4393 * w32fns.c (x_set_cursor_color): Fix last change.
4394
eccc05db
GM
43952000-11-30 Gerd Moellmann <gerd@gnu.org>
4396
31b6671b
GM
4397 * xdisp.c (echo_area_display): If cursor is in the echo area, make
4398 sure that the next redisplay displays the minibuffer, so that
4399 the cursor will be replaced with what the minibuffer wants.
4400
eccc05db
GM
4401 * xterm.c: Test USE_TOOLKIT_SCROLL_BARS everywhere with #ifdef and
4402 #ifndef instead of using #if.
4403 (XTread_socket) [USE_MOTIF] <KeyPress>: Call XmIsScrollBar only if
4404 USE_TOOLKIT_SCROLL_BARS is defined.
4405
162de750
JR
44062000-11-30 Jason Rumney <jasonr@gnu.org>
4407
4408 * w32fns.c (x_set_cursor_color): Use x_update_cursor instead of
4409 x_display_cursor.
4410
693c4692
GM
44112000-11-30 Gerd Moellmann <gerd@gnu.org>
4412
4413 * fns.c (Fmd5): Doc fix.
4414
b5d8d2ca 44152000-11-30 Simon Josefsson <simon@josefsson.org>
edfb795e
GM
4416
4417 * fns.c (Fmd5): New function.
4418 (syms_of_fns): Defsubr md5.
4419
4420 * Makefile.in (obj): Add md5.o
4421
b02cd40b
GM
44222000-11-30 Gerd Moellmann <gerd@gnu.org>
4423
edfb795e
GM
4424 * md5.h, md5.c: New files, taken from glibc.
4425
df3aedcf
GM
4426 * xmenu.c (popup_get_selection): Use xmalloc instead of malloc.
4427
b02cd40b 4428 * xterm.c (x_estimate_mode_line_height): If `mode-line' face
52283633 4429 hasn't a font, use that of the frame, as drawing glyphs does.
b02cd40b 4430
8b5176cd
SM
44312000-11-29 Stefan Monnier <monnier@cs.yale.edu>
4432
4433 * eval.c (Frun_hooks): Allow 0 arguments.
4434
346598f1
GM
44352000-11-29 Gerd Moellmann <gerd@gnu.org>
4436
f9396e03
GM
4437 * xterm.c (XTmouse_position) [USE_X_TOOLKIT]: When the mouse
4438 is over the menu bar widget, say it's not on the frame.
4439
4a967a9b
GM
4440 * xfns.c (Fx_create_frame): Reintroduce the call to
4441 face-set-after-frame-defaults.
4442
346598f1
GM
4443 * eval.c (Fsignal): Reset handling_signal.
4444
222456a1
JR
44452000-11-28 Jason Rumney <jasonr@gnu.org>
4446
4447 * w32menu.c (add_menu_item): Reset menu item text when changing
4448 type to radio button.
4449
8049ddc0
GM
44502000-11-28 Gerd Moellmann <gerd@gnu.org>
4451
346598f1 4452 * xselect.c: Update copyright.
f4f4ee4d 4453
bebe4a2c
GM
4454 * window.c (coordinates_in_window): If on a mode or header line,
4455 but sufficiently close to its start, return ``on vertical
4456 border''. This gives us a way to drag windows horizontally when
4457 using toolkit scroll bars.
4458
4459 * xterm.c (note_mouse_highlight): Change the cursor shape
4460 on the vertical border between windows.
4461
4462 * xterm.h (struct x_output): Add member horizontal_drag_cursor.
4463
4464 * xfns.c (Vx_window_horizontal_drag_shape): New variable.
4465 (syms_of_xfns): DEFVAR_LISP it.
4466 (x_set_mouse_color): Create frame's horizontal_drag_cursor.
4467
8d2c2642
GM
4468 * textprop.c (text_read_only): New function.
4469 (verify_interval_modification): Use it instead of signaling
4470 `text-read-only'. This makes it easier to catch this error
52283633 4471 with a breakpoint.:
8d2c2642 4472
52283633 4473 * xdisp.c (forward_to_next_line_start): Check for newlines,
8049ddc0
GM
4474 not end of line, which includes CR.
4475
5a2bae6c
KH
44762000-11-28 Kenichi Handa <handa@etl.go.jp>
4477
4478 * coding.c (Ffind_coding_systems_region_internal): Be sure to
4479 include no-conversion.
4480
ae31f84d
JR
44812000-11-27 Jason Rumney <jasonr@gnu.org>
4482
4483 * w32fns.c (w32_load_system_font): Always mark font as double byte
4484 if codepage is unicode.
4485
67f1cf4c
GM
44862000-11-27 Gerd Moellmann <gerd@gnu.org>
4487
4a74d071 4488 * xdisp.c (forward_to_next_line_start): If already on a newline,
52283633 4489 just consume it to avoid unintended skipping over invisible text below.
4a74d071 4490
902ae620
GM
4491 * keyboard.c (lucid_event_type_list_p): Handle `help-echo',
4492 `vertical-line', `mode-line' and `header-line' events.
4493
4494 * xdisp.c (try_window_id): Avoid starting to display in the middle
67f1cf4c
GM
4495 of a character, a TAB for instance. This is easier than to set
4496 up the iterator exactly, and it's not a frequent case, so the
4497 additional effort wouldn't really pay off.
4498
c1e279c2
AC
44992000-11-26 Andrew Choi <akochoi@i-cable.com>
4500
67f1cf4c 4501 * emacs.c (main) [macintosh]: Call syms_of_frame before calling
c1e279c2
AC
4502 init_window_once.
4503
a609568a
JR
45042000-11-25 Jason Rumney <jasonr@gnu.org>
4505
52283633
SM
4506 * keyboard.c (make_lispy_event) [mouse_wheel, drag_n_drop]:
4507 Args to window_from_coordinates should be pixel coordinates.
48b21762 4508
a609568a
JR
4509 * w32fns.c (x_to_w32_font): Do not filter out italic fonts, as new
4510 redisplay handles them properly.
4511
a658d039
MB
45122000-11-25 Miles Bader <miles@gnu.org>
4513
4514 * indent.c (compute_motion): Keep pos_byte in sync with pos.
4515
d3416cca
JR
45162000-11-24 Jason Rumney <jasonr@gnu.org>
4517
4518 * w32.c (init_environment): Set LANG environment variable based on
4519 locale settings, if not set.
4520
4521 * w32fns.c (x_set_tool_bar_lines): Clear internal border when
4522 making tool bar smaller. When clearing the frame, also
4523 clear current matrices. Clear frame when tool bar disappears.
4524 Don't use more lines for the tool-bar than is available.
4525 (x_change_window_heights): New function.
4526
ba193890
GM
45272000-11-24 Gerd Moellmann <gerd@gnu.org>
4528
2be8f184
GM
4529 * xdisp.c (init_from_display_pos): If POS says we're already after
4530 an overlay string ending at POS, make sure to pop the iterator
4531 because it will be in front of that overlay string. When POS is
4532 ZV, we've thereby also ``processed'' overlay strings at ZV.
4533
ba193890
GM
4534 * xfaces.c (lface_from_face_name): Function comment fix.
4535
1862a24e
MB
45362000-11-24 Miles Bader <miles@gnu.org>
4537
4538 * xdisp.c (display_menu_bar, display_mode_line): Change the way we
4539 apply `mode-line-inverse-video' -- zero means force display using
4540 the default face, non-zero means display using the specialized face.
4541 (syms_of_xdisp): `mode-line-inverse-video' defaults to true again.
4542
f07fa1b8
KH
45432000-11-23 Kenichi Handa <handa@etl.go.jp>
4544
4545 * alloc.c (Fmake_string): Use MAX_MULTIBYTE_LENGTH, instead of
4546 hard coded `4'.
4547
2bcdf662
EZ
45482000-11-23 Eli Zaretskii <eliz@is.elta.co.il>
4549
4550 * coding.c (decode_coding_emacs_mule): Fix the case of
4551 CODING_EOL_LF, which used uninitialized value of c.
4552
ba8299ff
SM
45532000-11-23 Stefan Monnier <monnier@cs.yale.edu>
4554
4555 * xdisp.c (syms_of_xdisp): Make fontification-functions buffer-local.
4556
f4117c4d
GM
45572000-11-22 Gerd Moellmann <gerd@gnu.org>
4558
03e757c1
GM
4559 * buffer.c (Fmake_indirect_buffer): Don't treat nil as a
4560 buffer object.
4561
f4117c4d
GM
4562 * frame.h (struct frame): Replace desired_tool_bar_items,
4563 current_tool_bar_items, n_desired_tool_bar_items,
cc362d76 4564 n_current_tool_bar_items with tool_bar_items and n_tool_bar_items.
f4117c4d
GM
4565
4566 * frame.c (make_frame): Change initialization of tool bar
4567 items accordingly.
4568
4569 * xterm.c (x_handle_tool_bar_click, note_tool_bar_highlight):
cc362d76 4570 Change references to members deleted from struct frame to use the
f4117c4d
GM
4571 new ones.
4572
4573 * xdisp.c (update_tool_bar, build_desired_tool_bar_string): Change
52283633 4574 references to members deleted from struct frame to use the new ones.
f4117c4d 4575
52283633 4576 * dispnew.c (update_frame): Do nothing with frame's tool bar items.
f4117c4d
GM
4577
4578 * alloc.c (mark_object) <frame>: Mark tool bar items differently.
4579
4580 * w32term.c (x_tool_bar_item, w32_handle_tool_bar_click)
cc362d76 4581 (note_tool_bar_highlight): Change references to members deleted
f4117c4d
GM
4582 from struct frame to use the new ones.
4583
f8e2f3f2
MB
45842000-11-23 Miles Bader <miles@gnu.org>
4585
4586 * xdisp.c (display_menu_bar): Or `mode-line-inverse-video' with
4587 the face's inverse-video attribute, rather than overriding it.
4588
60e8e0a5
GM
45892000-11-22 Gerd Moellmann <gerd@gnu.org>
4590
4591 * xfns.c (x_set_tool_bar_lines): Clear internal border when
4592 making tool bar smaller.
4593
92dd1b29
DL
45942000-11-22 Dave Love <fx@gnu.org>
4595
4596 * s/sol2-5.h (_LARGEFILE_SOURCE, _FILE_OFFSET_BITS): Don't define.
4597
e672fdce
MB
45982000-11-22 Miles Bader <miles@gnu.org>
4599
3a17d6cc
MB
4600 * keyboard.c (Vminibuffer_message_timeout): New variable.
4601 (command_loop_1): Use it to determine message timeout.
4602 (syms_of_keyboard): Initialize it.
4603
60e8e0a5 4604 * xdisp.c (syms_of_xdisp): `mode-line-inverse-video' defaults to nil.
e672fdce 4605
e9655d81
KH
46062000-11-22 Kenichi Handa <handa@etl.go.jp>
4607
4608 * sysdep.c: Move the code for declaring h_errno after #include
4609 <netdb.h>.
4610
77270fac
GM
46112000-11-21 Gerd Moellmann <gerd@gnu.org>
4612
cd913aae
GM
4613 * xfns.c (Fx_hide_tip) [USE_LUCID]: Add a hack to redisplay
4614 the menu bar when the tooltip is unmapped.
4615
77270fac
GM
4616 * buffer.c (Fkill_buffer): Notice if the buffer to kill is the
4617 sole visible buffer when we're currently in the mini-buffer, and
4618 give up if so.
52283633 4619
556635d6
JR
46202000-11-21 Jason Rumney <jasonr@gnu.org>
4621
4622 * w32select.c (Fw32_set_clipboard_data): Save a copy of what is
4623 put on the clipboard.
4624 (Fw32_get_clipboard_data): Compare data on clipboard with saved
4625 copy of what Emacs last put there. If they are the same, do not
52283633 4626 use the clipboard copy to avoid losing data due to coding conversions.
556635d6 4627
5b7bde64
MB
46282000-11-22 Miles Bader <miles@gnu.org>
4629
4630 * minibuf.c (Vminibuffer_prompt_properties): New variable.
4631 (syms_of_minibuf): Initialize it.
4632 (read_minibuf): Add properties from Vminibuffer_prompt_properties
4633 to prompt, don't make read-only.
4634
ff23e1dd
GM
46352000-11-21 Gerd Moellmann <gerd@gnu.org>
4636
52283633
SM
4637 * bytecode.c (Fbyte_code) <Bvarbind, Bunwind_protect>:
4638 Add BEFORE/AFTER_POTENTIAL_GC.
3c64f287 4639
7aaf4388
GM
4640 * s/hpux10.h (_FILE_OFFSET_BITS): Undef.
4641
f5f47add 4642 * buffer.c (mmap_free_1): Avoid a compiler warning.
1a15cca0 4643
ff23e1dd
GM
4644 * term.c, cm.c: Don't try to include termcap.h; see comment there.
4645
37c35586
KH
46462000-11-21 Kenichi Handa <handa@etl.go.jp>
4647
4648 * s/sol2-5.h: Move #undef USE_MMAP_FOR_BUFFERS out of #if 0
4649 ... #endif scope.
4650
ff9ab414
GM
46512000-11-20 Gerd Moellmann <gerd@gnu.org>
4652
52283633 4653 * xfns.c (x_create_tip_frame): Use CWSaveUnder only if the
c51d2b5e
GM
4654 screen supports it.
4655
29a01b72
GM
4656 * s/gnu-linux.h: Don't use `#cpu'.
4657
09dfdf85
GM
4658 * buffer.c (MAP_FAILED): Define it as `((void *) -1)' if it's
4659 not defined in mman.h.
4660
52283633 4661 * xterm.c (scroll_bar_windows, scroll_bar_windows_size): New variables.
ff9ab414
GM
4662 (x_send_scroll_bar_event): Store the window in scroll_bar_windows
4663 and store an index in the XClientMessageEvent. Storing a
4664 Lisp_Object or pointer can fail on a 64 bit system, since X only
4665 transfers 32 bits.
52283633
SM
4666 (x_scroll_bar_to_input_event): Get the window from scroll_bar_windows.
4667
81459ac9
DL
46682000-11-20 Dave Love <fx@gnu.org>
4669
4670 * Makefile.in (LIBX): Reorder for -lX11 after -lXpm.
4671
56c13ae6
GM
46722000-11-20 Gerd Moellmann <gerd@gnu.org>
4673
4674 * s/sol2-5.h (USE_MMAP_FOR_BUFFERS): Undefine.
4675
495a6df3
KH
46762000-11-20 Kenichi Handa <handa@etl.go.jp>
4677
2bcf3714
KH
4678 * charset.c (get_new_private_charset_id): Don't limit CHARSET_ID
4679 by WIDTH.
4680
495a6df3
KH
4681 * alloc.c (make_string): Fix previous change. Be sure to make
4682 unibyte string correctly.
4683
6d950f4c
GM
46842000-11-19 Gerd Moellmann <gerd@gnu.org>
4685
39b39373
GM
4686 * window.c (Fwindow_list): Change parameter list to be XEmacs
4687 compatible.
4688 (window_list_1): New function.
4689 (window_loop): Use it instead of Fwindow_list.
4690
b95b34e5
GM
4691 * sysdep.c (emacs_ospeed): New variable.
4692 (toplevel): Don't declare ospeed extern.
4693 (init_baud_rate): Use emacs_ospeed instead of ospeed.
4694
4695 * termcap.c (ospeed): Remove.
4696 (tputs) [!emacs]: Remove unused code.
4697 (tgetent): Avoid a compiler warning.
4698
e83dc917
GM
4699 * xterm.c (x_set_toolkit_scroll_bar_thumb, x_scroll_bar_create)
4700 (x_scroll_bar_remove, XTset_vertical_scroll_bar): Call
b95b34e5 4701 SCROLL_BAR_X_WIDGET with additional argument DPY.
e83dc917
GM
4702
4703 * xterm.h (struct scroll_bar): Members x_widget_low, x_widget_high
4704 removed.
4705 (SCROLL_BAR_X_WIDGET): Get the widget via XtWindowToWidget.
4706 Take the X display as additional argument.
4707 (SET_SCROLL_BAR_X_WIDGET): Store the window of the widget, since
4708 `Widget' is a pointer type that's not easily stored in Lisp_Object
4709 form in a portable way.
52283633 4710
6d950f4c
GM
4711 * dispnew.c (update_text_area): Fix last change.
4712
e47306e6
GM
47132000-11-18 Gerd Moellmann <gerd@gnu.org>
4714
fb3cd89b
GM
4715 * xdisp.c: Use BINDING_STACK_SIZE throughout.
4716
4717 * xfns.c (x_set_tool_bar_lines): When clearing the frame, also
4718 clear current matrices.
4719
edaa9aed
GM
4720 * buffer.c (mmap_enlarge): Don't print a message on stderr
4721 if mapping new memory at the end of the existing region fails.
4722
e47306e6
GM
4723 * dispnew.c (update_text_area): Don't skip over equal glyphs
4724 when the last current glyph overlaps the glyph to its right.
4725
509633e3
MB
47262000-11-18 Miles Bader <miles@gnu.org>
4727
4728 * xdisp.c (message_log_check_duplicate): Let "..."-detection match
4729 lines that *end* with "..." too (that's the most common case!).
4730
d392e9c5
GM
47312000-11-18 Gerd Moellmann <gerd@gnu.org>
4732
67988445
GM
4733 * xdisp.c (resize_mini_window): Temporarily change to the
4734 mini-window's buffer if necessary.
1bfdbe43 4735
d392e9c5
GM
4736 * xfns.c (Fx_show_tip): Use default y-offset of -10 so that
4737 the tooltip obscures less text under it.
4738
47392000-11-17 Gerd Moellmann <gerd@gnu.org>
4740
4741 * puresize.h (BASE_PURESIZE): Increase to 700000.
4742
92bb977f
JR
47432000-11-18 Jason Rumney <jasonr@gnu.org>
4744
4745 * w32term.c (w32_draw_bitmap): Use face to set colors.
4746
26fbf20b
DL
47472000-11-17 Dave Love <fx@gnu.org>
4748
4749 * lread.c (Fload): Fix #ifdef for pcc.
4750
100b593b
GM
47512000-11-17 Gerd Moellmann <gerd@gnu.org>
4752
4753 * xdisp.c (pos_visible_p): Compute the default character height
4754 differently.
4755
a288d0d1
GM
47562000-11-16 Gerd Moellmann <gerd@gnu.org>
4757
cac94de6 4758 * xdisp.c (pos_visible_p): Handle case that we reach ZV without
52283633 4759 knowing the line's height; use the default font's height in that case.
cac94de6 4760
a288d0d1
GM
4761 * xfaces.c (weight_table): Add `demi' with the same meaning as
4762 `demibold'.
4763
981fb6f6
KH
47642000-11-16 Kenichi Handa <handa@etl.go.jp>
4765
2cca872d 4766 * dispnew.c (null_row): New global static variable.
981fb6f6
KH
4767 (clear_glyph_row): Delete local static variable null_row.
4768
e5fa381b
JR
47692000-11-15 Jason Rumney <jasonr@gnu.org>
4770
4771 * w32term.c (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
4772 (w32_alloc_lighter_color): Use new brightness calculations from
4773 xterm.c. Scale delta to be in the range expected by W32.
4774 (w32_draw_relief_rect): Use frame relief colors.
4775
8e42f043
GM
47762000-11-15 Gerd Moellmann <gerd@gnu.org>
4777
6d133d1f
GM
4778 * frame.c (syms_of_frame_1): Removed; code moved to syms_of_frame.
4779 (Qinhibit_default_face_x_resources): New variable.
4780 (syms_of_frame): Initialize it.
4781 (Fmodify_frame_parameters): Bind inhibit-default-face-x-resources.
4782
4783 * xdisp.c (pos_visible_p): Improve function comment.
4784
4785 * lisp.h (BINDING_STACK_SIZE): New macro.
4786
8e42f043
GM
4787 * dired.c (directory_files_internal) [EAGAIN || EINTR]: Retry
4788 reading the directory if readdir returns null and errno is EAGAIN
4789 or EINTR.
4790
e8c87124
SM
47912000-11-14 Stefan Monnier <monnier@cs.yale.edu>
4792
4793 * xdisp.c (try_scrolling): Set scroll_max to max of scroll_* args
4794 so setting scroll-step to 1 doesn't defeat scroll-conservatively.
4795 Set amount_to_scroll to max of dx and scroll_step so that
4796 scroll-conservatively doesn't defeat scroll-step>1.
4797 (syms_of_xdisp): Add a hint in scroll-step's docstring to use
4798 scroll-conservatively for line-at-a-time scrolling.
4799
5f0c971d
GM
48002000-11-14 Gerd Moellmann <gerd@gnu.org>
4801
4802 * window.c (Fpos_visible_in_window_p): Call pos_visible with
4803 extra argument.
4804
4805 * xdisp.c (current_mode_line_height, current_header_line_height):
4806 New variables.
4807 (init_xdisp): Initialize them.
4808 (pos_visible_p): Add parameter EXACT_MODE_LINE_HEIGHTS_P. Compute
4809 and use exact mode line heights if it is set.
4810
4811 * lisp.h (pos_visible_p): Change prototype.
4812
4813 * dispextern.h (CURRENT_MODE_LINE_HEIGHT)
4814 (CURRENT_HEADER_LINE_HEIGHT): Look at current_mode_line_height
4815 and current_header_line_height first.
52283633
SM
4816 (current_mode_line_height, current_header_line_height):
4817 Declare extern.
5f0c971d 4818
d7361edf
MB
48192000-11-14 Miles Bader <miles@lsi.nec.co.jp>
4820
4821 * xterm.c (x_alloc_lighter_color): Use real brightness calculation.
4822 Just use FACTOR/2 instead of HIGHLIGHT_COLOR_DARK_BOOST.
4823 (HIGHLIGHT_COLOR_DARK_BOOST): Macro removed.
4824
ee5e440a
MB
48252000-11-14 Miles Bader <miles@gnu.org>
4826
4827 * xterm.c (x_alloc_lighter_color): Include an additive component
4828 too for dark colors, because FACTOR isn't enough.
4829 (HIGHLIGHT_COLOR_DARK_BOOST, HIGHLIGHT_COLOR_DARK_BOOST_LIMIT):
4830 New macros.
4831
5ca020fc
GM
48322000-11-13 Gerd Moellmann <gerd@gnu.org>
4833
4834 * keyboard.c (show_help_echo): Call message3_nolog with number of
4835 bytes in the help string as 2nd parameter, instead of the number
4836 of characters.
4837
9d348294
MB
48382000-11-13 Miles Bader <miles@gnu.org>
4839
4840 * lread.c (openp): Return -2 instead of 0 for the `remote file' case.
4841 (Fload): Use new openp return protocol.
4842 Don't try to use Vload_source_file_function to load .elc files.
4843 * xfns.c (x_create_bitmap_from_file, x_find_image_file): Use new
4844 openp return protocol.
4845 * w32fns.c (x_create_bitmap_from_file, x_find_image_file): Likewise.
4846
1729bb9a
KH
48472000-11-11 Kenichi Handa <handa@etl.go.jp>
4848
4e677396
KH
4849 * syssignal.h: Pay attention to BROKEN_SIGAIO and BROKEN_SIGPTY.
4850
4851 * m/ibmrs6000.h (BROKEN_SIGAIO, BROKEN_SIGPTY, BROKEN_SIGPOLL):
4852 Defined these macros.
4853 (NLIST_STRUCT): Avoid re-defining it.
4854
1729bb9a
KH
4855 * s/hpux10.h (C_SWITCH_X_SYSTEM): Include -I/usr/include/X11R6 and
4856 -I/usr/contrib/X11R6/include.
4857 (LD_SWITCH_X_DEFAULT): Include -L/usr/lib/X11R6.
4858
a82fe213
JR
48592000-11-10 Jason Rumney <jasonr@gnu.org>
4860
4861 * w32term.h (CP_8BIT, CP_UNICODE, CP_INVALID): New pseudo-codepages.
4862
4863 * w32term.c (w32_encode_char): Handle CP_UNICODE specially.
4864 (w32_use_unicode_for_codepage): Use new pseudo-codepages.
4865
4866 * w32fns.c (Qw32_charset_hangeul): Rename to match w32 headers.
4867 (Qw32_charset_vietnamese): New symbol.
4868 (xlfd_charset_of_font): New function.
4869 (w32_load_system_font): Use it.
4870 (x_to_w32_charset): Use Fassoc to find charset info. Special case
4871 when Vw32_charset_info_alist is nil to ensure default face always
4872 has font. Use Fcar and Fcdr for safety.
4873 (w32_to_x_charset): Use Vw32_charset_info_alist for mappings.
4874 (w32_codepage_for_font): Use xlfd_charset_of_font. Use new
4875 pseudo-codepages for special cases.
4876 (w32_to_x_font): New parameter to allow charset portion to be
4877 specified where there is many to one mapping. Callers changed.
4878 (w32_list_fonts): Avoid listing fonts that won't display.
4879
52d89894
GM
48802000-11-10 Gerd Moellmann <gerd@gnu.org>
4881
4882 * xfaces.c (Vface_alternative_font_registry_alist): New variable.
4883 (font_list_1): Renamed from font_list.
4884 (font_list): New function, trying alternative registries from
4885 Vface_alternative_font_registry_alist.
4886 (Finternal_set_alternative_font_registry_alist): New function.
4887 (syms_of_xfaces): Initialize and Staticpro
52283633
SM
4888 Vface_alternative_font_registry_alist.
4889 Defsubr Finternal_set_alternative_font_registry_alist.
52d89894 4890
651cd3da
KR
48912000-11-09 Ken Raeburn <raeburn@gnu.org>
4892
4893 * lisp.h (Flooking_at): Declare.
4894
388ac098
GM
48952000-11-09 Gerd Moellmann <gerd@gnu.org>
4896
778fbc46 4897 * dired.c (directory_files_internal): Fix a braino.
52283633 4898
388ac098
GM
4899 * dired.c (directory_files_internal): Add missing GCPRO's.
4900 Some cleanup.
4901
ecaedde1
GM
49022000-11-08 Gerd Moellmann <gerd@gnu.org>
4903
f7eb32aa
GM
4904 * xdisp.c (syms_of_xdisp): Change doc of max-mini-window-height.
4905 (resize_mini_window): Return quickly if Vresize_mini_window is
4906 nil. Don't return if Vmax_mini_window_height is nil.
4907
4908 * xdisp.c (Vresize_mini_window, Qgrow_only): New variables.
4909 (syms_of_xdisp): Initialize them.
4910 (resize_mini_window): Act according to the setting of
4911 Vresize_mini_window.
4912 (syms_of_xdisp): Initialize Vmenu_bar_update_hook to nil.
4913
ecaedde1
GM
4914 * xterm.c (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]: Map the
4915 scroll bar widget after configuring it, so that it will appear at
4916 the right position from the start.
4917 (XTredeem_scroll_bar): Cleaned up.
4918
3747ef2c
KH
49192000-11-08 Kenichi Handa <handa@etl.go.jp>
4920
4921 * xterm.c (VCENTER_BASELINE_OFFSET): Fix previous change. If the
5d16e624 4922 font is taller than the frame line, we don't have to bias the
3747ef2c
KH
4923 division by two.
4924
4925 * w32term.c (VCENTER_BASELINE_OFFSET): Likewise.
4926
03391420
DL
49272000-11-07 Dave Love <fx@gnu.org>
4928
7758f1c1 4929 * config.in (HAVE_MKSTEMP): Add.
03391420
DL
4930
4931 * callproc.c (Fcall_process_region) [HAVE_MKSTEMP]: Use it.
4932
b5de343d
GM
49332000-11-07 Gerd Moellmann <gerd@gnu.org>
4934
acad3c0b
GM
4935 * window.c (Fset_window_configuration): Don't try to preserve
4936 point in the current buffer, if that buffer is displayed in more
4937 than one window.
4938
b5de343d
GM
4939 * xfaces.c (lookup_named_face): If default face isn't realized,
4940 try to realize it. Return -1 if not successful.
4941 (Fx_list_fonts): Handle case that face cannot be determined.
4942 (Fface_font): Likewise.
4943
cdb1fe49
GM
49442000-11-06 Gerd Moellmann <gerd@gnu.org>
4945
4946 * window.c (displayed_window_lines): Detect partially
4947 visible lines at the bottom correctly.
4948
d3a67486
SM
49492000-11-06 Stefan Monnier <monnier@cs.yale.edu>
4950
4951 * fileio.c (Fwrite_region): Use `visiting' rather than `visit'
4952 when ensuring we don't do visit in indirect buffer.
4953
ff8dd5d5
KH
49542000-11-06 Kenichi Handa <handa@etl.go.jp>
4955
4956 * composite.h (compose_chars_in_text): Add prototype.
4957
4958 * composite.c (Vcomposition_function_table): New variable.
4959 (Qcomposition_function_table): New variable.
4960 (run_composition_function): Call
4961 Vcompose_chars_after_function with three arguments.
4962 (compose_chars_in_text): New function.
4963 (syms_of_composite): Modified the doc-string of
4964 Vcompose_chars_after_function. Declare composition-function-table
4965 as a lisp variable, and initialize it.
4966
4967 * xfns.c (x_encode_text): Suppress producing escape sequences for
4968 composition.
4969
4970 * xselect.c: Include composite.h.
4971 (selection_data_to_lisp_data): Call compose_chars_in_text on STR.
4972
d1145f85
AI
49732000-11-05 Andrew Innes <andrewi@gnu.org>
4974
4975 * w32term.c (x_produce_glyphs): Fix typo in enum name.
4976
4977 * sysdep.c (read_input_waiting): Remove extraneous argument to
4978 read_socket_hook.
4979
4980 * w32fns.c (Fx_server_version): Include w32_build_number in the
4981 return list.
4982
4983 * w32heap.c (w32_build_number): New variable.
4984 (cache_system_info): Set it.
4985
4986 * w32heap.h (w32_build_number): Add extern.
4987
4988 * emacs.c (syms_of_emacs): Update docstring for
4989 system-configuration, to reflect the actual usage on MS-Windows.
4990
e85ee976
GM
49912000-10-31 Gerd Moellmann <gerd@gnu.org>
4992
26dcb81b
GM
4993 * keyboard.c (read_char) <wrong_kboard>: Make sure that we
4994 process idle timers while waiting for another event.
4995
52283633 4996 * dispnew.c (update_frame_line): Handle case where spaces in
0a894bad
GM
4997 the default face are colored.
4998
e85ee976
GM
4999 * xdisp.c (redisplay_tool_bar): Don't set fonts_changed_p if
5000 window height hasn't changed.
5001
01b220b6
JR
50022000-10-31 Jason Rumney <jasonr@gnu.org>
5003
5004 * w32term.c (x_produce_glyphs): Handle composite characters.
5005 (x_draw_glyph_string_foreground)
5006 (x_draw_composite_glyph_string_foreground): Restore old font.
5007
4e6b7204
MB
50082000-10-31 Miles Bader <miles@lsi.nec.co.jp>
5009
5010 * minibuf.c (read_minibuf): Reset the undo history just before
5011 starting the recursive-edit.
5012
d4358b37
GM
50132000-10-30 Gerd Moellmann <gerd@gnu.org>
5014
563f68f1
GM
5015 * xfaces.c (menu_face_change_count): New variable.
5016 (Finternal_set_lisp_face_attribute): Increment it for changes
5017 of the `menu' face.
5018 (realize_basic_faces): Reflect changes in the `menu' faces
5019 in menu bars.
5020
82e274d1
GM
5021 * xdisp.c (try_scrolling) <PT >= scroll_margin_pos>: Add 1 to the
5022 dy obtained from the iterator's y-position after moving from
5023 scroll_margin_pos to PT; see comment there.
52283633 5024
0dbf9fd2
GM
5025 * xdisp.c (safe_eval_handler): Call add_to_log.
5026
906b3b14
GM
5027 * xfaces.c (resolve_face_name): Handle case that FACE_NAME
5028 is not a symbol or string.
5029
d4358b37
GM
5030 * xdisp.c (echo_area_display): Don't perform a display update from
5031 inside redisplay. The update will happen anyway at the end of
5032 redisplay, and it can confuse redisplay (GC messages while
5033 redisplaying, for instance.)
5034
70c825df
SM
50352000-10-30 Stefan Monnier <monnier@cs.yale.edu>
5036
cf9b4b0b
SM
5037 * xrdb.c (x_load_resources): Use the class name in the defaults.
5038
70c825df
SM
5039 * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
5040 (regex_compile): Catch bogus \(\1\).
5041
a1d34b1e
GM
50422000-10-30 Gerd Moellmann <gerd@gnu.org>
5043
cae71efe
GM
5044 * xterm.c (x_alloc_nearest_color): Fix last change to compare
5045 RGB values.
52283633 5046
35efe0a1
GM
5047 * xterm.c (x_alloc_nearest_color): If allocation succeeds, and
5048 we have a color cache, check that the cached color equals the
5049 allocated color. If not, clear the color cache.
5050
1d3baf74
GM
5051 * window.c (displayed_window_lines): Change buffers if necessary.
5052 Fix computation of displayed lines.
5053
a1d34b1e
GM
5054 * keyboard.c (syms_of_keyboard): Change DEFVAR_LISP of
5055 update_menu_bindings to DEFVAR_BOOL.
5056
70737ea9
KH
50572000-10-30 Kenichi Handa <handa@etl.go.jp>
5058
70c825df 5059 * search.c (Fset_match_data): Be sure to make search_regs always sane.
80406070 5060
fa0cb51d
KH
5061 * puresize.h (BASE_PURESIZE): Increase to 680000.
5062
70737ea9
KH
5063 * fns.c (Foptimize_char_table): Fix arg for CHARSET_DIMENSION.
5064
0e4c08e8
JR
50652000-10-29 Jason Rumney <jasonr@gnu.org>
5066
5067 * w32term.h (FONT_DESCENT): Negate descent of BDF fonts.
5068
5069 * w32term.c (w32_bdf_per_char_metric): Negate descent.
5070 (w32_cache_char_metrics): Handle possibility that 'x' does not
5071 exist in a BDF font.
5072 (W32_TEXTOUT): w32_BDF_TextOut wants number of bytes not chars.
5073
5074 * w32bdf.h (bdffont): Add nchars.
5075
5076 * w32bdf.c (set_bdf_font_info): Set it.
5077 (w32_BDF_TextOut): Swap byte order of double byte characters.
5078 (w32_load_bdf_font): Set double_byte_p based on bdf_font->nchars.
5079
45b84006
EZ
50802000-10-28 Eli Zaretskii <eliz@is.elta.co.il>
5081
5082 * frame.c (Fframe_parameters): Fix the change from 2000-10-16:
5083 don't override the colors in frame's param_alist, unless they are
5084 unspecified.
5085
5086 * term.c (reassert_line_highlight): If inverse_video is non-zero,
5087 reverse the effect of the highlight flag.
5088
caf9deee
KR
50892000-10-27 Ken Raeburn <raeburn@gnu.org>
5090
5091 * window.h (Fwindow_live_p): Declare.
5092
ae0b9b46
KR
5093 * undo.c (record_delete): Check that last_undo_buffer is really a
5094 buffer before applying XBUFFER to it.
5095
5096 * keymap.c (where_is_internal): Pass lisp object, not integer, to
5097 Faref.
5098
02067692
SM
50992000-10-27 Stefan Monnier <monnier@cs.yale.edu>
5100
5101 * lisp.h (KEYMAPP): New macro.
5102 (get_keymap): Remove.
5103 (get_keymap_1): Rename get_keymap.
5104
5105 * keyboard.h (get_keymap_1, Fkeymapp): Remove prototype.
5106
5107 * xterm.c (note_mode_line_highlight): Use KEYMAPP.
5108
5109 * xmenu.c (single_submenu): Use KEYMAPP.
5110 (Fx_popup_menu): Fetch keymaps rather than checking Fkeymapp.
5111 Use KEYMAPP rather than Fkeymapp.
5112
5113 * w32term.c (note_mode_line_highlight): Use KEYMAPP.
5114
5115 * w32menu.c (True, False): Remove (use TRUE and FALSE instead).
5116 (Fx_popup_menu): Fetch keymaps rather than checking Fkeymapp.
5117 Use KEYMAPP rather than Fkeymapp.
5118 (single_submenu): Use KEYMAPP.
5119 (w32_menu_show, w32_dialog_show): Use TRUE.
5120
5121 * minibuf.c (Fread_from_minibuffer): Update call to get_keymap.
5122
5123 * keymap.c (KEYMAPP): Remove (moved to lisp.h).
5124 (Fkeymapp): Use KEYMAPP.
5125 (get_keymap): Rename from get_keymap_1. Remove old def.
5126 Return t when autoload=0 and error=0 and the keymap needs autoloading.
5127 (Fcopy_keymap): Check (eq (car x) 'keymap) rather than using Fkeymapp.
5128 (Fminor_mode_key_binding): Don't raise an error if the binding
5129 is not a keymap.
5130 (Fuse_global_map, Fuse_local_map): Allow autoloading.
5131 (Faccessible_keymaps): Fetch keymaps rather than checking Fkeymapp.
5132
5133 * keyboard.c (read_char): get_keymap_1 -> get_keymap.
5134 Allow Vspecial_event_map to be autoloaded.
5135 (menu_bar_items): Fetch the keymap rather than using keymapp.
5136 (menu_bar_one_keymap): No need to follow func-indirect any more.
5137 (parse_menu_item): get_keymap_1 -> get_keymap.
5138 (tool_bar_items): Fetch the keymap rather than using keymapp.
5139 (read_key_sequence): Use KEYMAPP.
5140
5141 * intervals.c (get_local_map): Use get_keymap rather than following
5142 function-indirections explicitly.
5143
5144 * doc.c (Fsubstitute_command_keys): get_keymap_1 -> get_keymap.
5145
f9d80af3
JR
51462000-10-27 Jason Rumney <jasonr@gnu.org>
5147
5148 * w32fns.c (Fx_create_frame): Make default fontsize on w32 10
5149 point, as Windows has oversized fonts.
5150
5151 * fontset.c (syms_of_fontset) [WINDOWSNT]: Likewise.
5152
a3ba27da
GM
51532000-10-27 Gerd Moellmann <gerd@gnu.org>
5154
5155 * gmalloc.c [GC_MCHECK]: Add code from mcheck.c of glibc-1.09.1.
5156 (freehook, reallochook): Handle null pointer arguments.
5157 (__malloc_initialize) [GC_MCHECK]: Call mcheck.
5158
aa3b80cc
SM
51592000-10-27 Stefan Monnier <monnier@cs.yale.edu>
5160
5161 * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
5162 (re_match_2_internal, re_match_2_internal, re_match_2_internal):
5163 Giving in to popular pressure to shut up the compiler with casts.
5164
e24e84cc
GM
51652000-10-27 Gerd Moellmann <gerd@gnu.org>
5166
5167 * xterm.c (x_draw_glyph_string): Treat XA_UNDERLINE_POSITION as a
5168 signed value, and use a default value computed from the font's
5169 maximum descent.
5170
05ea7ef2
MB
51712000-10-27 Miles Bader <miles@lsi.nec.co.jp>
5172
5173 * xterm.c (x_draw_glyph_string): Add a workaround so that fonts
5174 that specify a negative underline position can still use underlines.
5175
5176 * window.c (Fpos_visible_in_window_p): Make POS default to
5177 WINDOW's point, not the current buffer's point.
5178
0b95284b
DL
51792000-10-26 Dave Love <fx@gnu.org>
5180
5181 * s/sol2-5.h: Don't define SYSTEM_MALLOC so that we can find out
5182 when it's necessary.
5183
6c5b90af
GM
51842000-10-26 Gerd Moellmann <gerd@gnu.org>
5185
8b6d9dc9
GM
5186 * window.c (size_window): Compute size difference from sum of old
5187 child window sizes instead of from parent's size.
5188
6bc92b2e
GM
5189 * xdisp.c (pos_visible_p): Change current buffer if necessary.
5190 Handle obscured lines at the top of the window.
5191
5192 * frame.c (Fdelete_frame): Doc fix. Move running the hook
5193 down after the last error condition check.
5194
6c5b90af
GM
5195 * frame.c (Fdelete_frame): Run delete-frame-hook.
5196
42f92d4d
KH
51972000-10-26 Kenichi Handa <handa@etl.go.jp>
5198
5199 * coding.c (decode_coding): Fix previous change (check also
5200 CODING_MODE_LAST_BLOCK).
5201
d97151cb
SM
52022000-10-25 Stefan Monnier <monnier@cs.yale.edu>
5203
e7efc503
SM
5204 * regex.c: More `unsigned char' -> `re_char' changes.
5205 Also change several `int' into `re_wchar_t'.
5206 (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
5207 (PUSH_FAILURE_POINTER): Don't cast any more.
5208 (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
5209 We want GCC to complain, since this piece of code makes
5210 re_match non-reentrant, which *should* be fixed.
5211 (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
5212 (EXTEND_BUFFER): Use RETALLOC.
5213 (SET_LIST_BIT): Don't cast.
5214 (re_wchar_t): New type.
5215 (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
5216 that those two functions will always properly return.
5217 (IMMEDIATE_QUIT_CHECK): Cast to void.
5218 (analyse_first): Use recursion rather than an explicit stack.
5219 (re_compile_fastmap): Can't fail anymore.
5220 (re_search_2): Don't check re_compile_fastmap for failure.
5221 (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
5222 Now also sets the new value (passed in a new argument).
5223 (re_match_2_internal): Use it.
5224 Also, use a new var `reg' of type size_t when looping through regs
5225 rather than reuse the inappropriate `mcnt'.
5226
d97151cb
SM
5227 * keymap.c (where_is_cache, where_is_cache_keymaps): New vars.
5228 (Fset_keymap_parent, store_in_keymap): Flush the where-is cache.
5229 (where_is_internal): Renamed from Fwhere_is_internal.
5230 Don't DEFUN any more. Arg `xkeymap' replaced by `keymaps'.
5231 (Fwhere_is_internal): New function wrapping where_is_internal.
5232 (where_is_internal_1): Handle the case where we're filling the cache.
5233 (syms_of_keymap): Init and gcpro the where_is_cache(|_keymaps).
5234
d5789b65
MB
52352000-10-25 Miles Bader <miles@gnu.org>
5236
5237 * xdisp.c (pos_visible_p): Don't add `it.current_y' twice.
5238
4ecda532
GM
52392000-10-25 Gerd Moellmann <gerd@gnu.org>
5240
5241 * window.c (pos_fully_visible_p): Removed.
5242 (Fpos_visible_in_window_p): Use pos_visible_p to determine
5243 if position is visible and/or fully visible.
5244
5245 * lisp.h (pos_visible_p): Add prototype.
5246
5247 * xdisp.c (pos_visible_p): New function.
5248
68c3a137
KH
52492000-10-25 Kenichi Handa <handa@etl.go.jp>
5250
5251 * process.c (send_process): If OBJECT is t, it means that the data
5252 is from C string, but we should encode it. Before calling
5253 setup_raw_text_coding_system, be sure to flush out data by the
5254 previous coding system.
5255
7ae1c032
MB
52562000-10-25 Miles Bader <miles@lsi.nec.co.jp>
5257
ff4dcd4b
MB
5258 * buffer.c (overlays_at): Only let CHANGE_REQ inhibit an
5259 assignment of startpos to prev when startpos == pos.
5260
7ae1c032
MB
5261 * editfns.c (find_field): Set the field stickiness correctly from
5262 overlay fields. Use renamed `text_property_stickiness'.
5263 (text_property_stickiness): Renamed from `char_property_stickiness'.
ebe2a441 5264 Only check text properties, not overlays.
7ae1c032
MB
5265 * textprop.c (get_char_property_and_overlay): New function.
5266 (Fget_char_property): Use it.
5267 * intervals.h (get_char_property_and_overlay): Add declaration.
5268
49801145
SM
52692000-10-25 Stefan Monnier <monnier@cs.yale.edu>
5270
5271 * keymap.c: Use AREF, ASET and ASIZE macros.
5272 (Fmake_sparse_keymap): Docstring fix.
5273 (synkey): Remove.
5274 (shadow_lookup): Move up.
5275 Handle the case where lookup-key returns an integer.
5276 (where_is_internal_1): Drop arg `keymap'. Don't check shadowing.
5277 (where_is_internal_2): Adapt to fewer args for where_is_internal_1.
5278 (Fwhere_is_internal): Allow `xkeymap' to be a list of keymaps.
5279 Simplify/rewrite the keymap-finding code.
5280 Add check for command shadowing, using shadow_lookup.
5281
39e776cd
SM
52822000-10-24 Stefan Monnier <monnier@cs.yale.edu>
5283
5284 * keymap.c (fix_submap_inheritance): Use get_keymap_1 on parent_entry
5285 rather than KEYMAPP, to allow EQ to work correctly if parent_entry is
5286 a symbol.
5287
2488aba5
AI
52882000-10-24 Andrew Innes <andrewi@gnu.org>
5289
5290 * dired.c (directory_files_internal_unwind): New function.
5291 (directory_files_internal): Use it to ensure closedir is called
5292 even if expand-file-name or file-attributes throw, eg. because of
5293 a user interrupt. Also enable immediate_quit while calling
5294 re_search, so that matching can be interrupted as well.
5295
b94fdf61
AI
52962000-10-24 Andrew Innes <andrewi@gnu.org>
5297
5298 * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
5299 NT-Emacs only.
5300 (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
5301 so that re_search functions only quit when callers expect them to.
5302
53032000-10-24 Kenichi Handa <handa@etl.go.jp>
5304
5305 * regex.c (regex_compile): Change the way of handling a range from
5306 a char less than 256 to a char not less than 256.
5307
1946f901
GM
53082000-10-24 Gerd Moellmann <gerd@gnu.org>
5309
7ae2f10f
GM
5310 * window.c (size_window): Prevent setting window's width or
5311 height to a negative value (esp. with XSETFASTINT).
5312
5dcab13e
GM
5313 * gmalloc.c (state_protected_p, last_state_size, last_heapinfo)
5314 [GC_MALLOC_CHECK && GC_PROTECT_MALLOC_STATE]: New variables.
5315 (protect_malloc_state) [GC_MALLOC_CHECK &&
5316 GC_PROTECT_MALLOC_STATE]: New function.
5317 (PROTECT_MALLOC_STATE): New macro.
5318 (__malloc_initialize, morecore, _malloc_internal)
5319 (_free_internal) _realloc_internal): Use it to make _heapinfo
5320 read-only outside of gmalloc.
5321
63e1b552
GM
5322 * keymap.c: Update copyright.
5323
1946f901
GM
5324 * .gdbinit (xbacktrace): Handle case that $bt->function isn't
5325 a symbol.
5326
4fa09beb
GM
53272000-10-24 Colin Walters <walters@cis.ohio-state.edu>
5328
5329 * filelock.c (unlock_all_files): Use unlock_file to expand each
5330 buffer's file_truename before trying remove its lock file.
5331
23afac01
EZ
53322000-10-24 Eli Zaretskii <eliz@is.elta.co.il>
5333
5334 * coding.c (decode_coding_emacs_mule): If coding->eol_type is CR
5335 or CRLF, decode EOLs.
5336
04448b95
KH
53372000-10-24 Kenichi Handa <handa@etl.go.jp>
5338
5339 * window.c (Fdisplay_buffer): Fix doc.
5340
3090a5a5
JR
53412000-10-23 Jason Rumney <jasonr@gnu.org>
5342
5343 * fontset.c (syms_of_fontset) [WINDOWSNT]: Special case for
5344 ASCII font of default fontset on Windows.
5345
5346 * w32term.c (VCENTER_BASELINE_OFFSET): Bias division (see
5347 xterm.c comment below).
5348
5349 * w32fns.c (x_to_w32_font): Initialize dpi from dpyinfo->resy.
5350
a83fee2c
GM
53512000-10-23 Gerd Moellmann <gerd@gnu.org>
5352
5353 * xterm.c (x_connection_closed): Reset handling_signal.
5354
52283633 5355 * alloc.c (emacs_blocked_free) [GC_MALLOC_CHECK]: Handle freeing null.
a83fee2c 5356
6ffdb539
MB
53572000-10-23 Miles Bader <miles@gnu.org>
5358
5359 * window.c (window_scroll_pixel_based, window_scroll_line_based):
5360 Pass nil for FULLY argument to Fpos_visible_in_window_p to
5361 maintain old behavior.
5362 * minibuf.c (Fminibuffer_complete): Likewise.
5363
7f1c969b
MB
53642000-10-23 Miles Bader <miles@lsi.nec.co.jp>
5365
5366 * xterm.c (VCENTER_BASELINE_OFFSET): Bias the division by two, so
5367 that when a font can't be exactly centered, it errs up rather than
5368 down.
5369
23afac01 53702000-10-23 ShengHuo ZHU <zsh@cs.rochester.edu>
8ec118cd 5371
52283633 5372 * fns.c (Fbase64_decode_string): The decoded result should be unibyte.
8ec118cd 5373
1a578e9b
AC
53742000-10-23 Andrew Choi <akochoi@i-cable.com>
5375
5376 * dispextern.h [macintosh]: Include macgui.h instead of macterm.h.
5377
5378 * dispnew.c [macintosh]: Include macterm.h.
a83fee2c 5379 (init_display) [macintosh]: Initialization for window system.
1a578e9b
AC
5380
5381 * emacs.c (main) [macintosh]: Call syms_of_textprop,
5382 syms_of_macfns, syms_of_ccl, syms_of_fontset, syms_of_xterm,
5383 syms_of_search, x_term_init, and init_keyboard before calling
5384 init_window_once. Also, call syms_of_xmenu.
5385
5386 * fontset.c (syms_of_fontset) [macintosh]: Set ASCII font of
5387 default fontset to Monaco.
5388
5389 * frame.c [macintosh]: Include macterm.h. Remove declarations of
5390 NewMacWindow and DisposeMacWindow.
5391 (make_terminal_frame) [macintosh]: Call make_mac_terminal_frame
5392 instead of calling NewMacWindow and setting fields of
5393 f->output_data.mac directly. Call init_frame_faces.
5394 (Fdelete_frame) [macintosh]: Remove unused code.
5395 (Fmodify_frame_parameters) [macintosh]: Call
5396 x_set_frame_parameters instead of mac_set_frame_parameters.
5397
5398 * frame.h [macintosh]: Define menu_bar_lines field in struct
5399 frame. Define FRAME_EXTERNAL_MENU_BAR macro.
5400
5401 * keyboard.c [macintosh]: Include macterm.h.
5402 (kbd_buffer_get_event) [macintosh]: Generate delete_window_event
5403 and menu_bar_activate_event type events as for X and NT.
5404 (make_lispy_event) [macintosh]: Construct lisp events of type
5405 MENU_BAR_EVENT as for X and NT.
5406
5407 * sysdep.c [macintosh]: Remove declaration for sys_signal.
5408 Include stdlib.h. Remove definition of Vx_bitmap_file_path.
5409 (sys_subshell) [macintosh]: Remove definition entirely.
5410 (init_sys_modes) [macintosh]: Do not initialize Vwindow_system and
5411 Vwindow_system_version here. Remove initialization of
5412 Vx_bitmap_file_path.
5413 (read_input_waiting): Correct the number of parameters passed to
5414 read_socket_hook.
5415 Move all Macintosh functions to mac/mac.c.
5416
5417 * term.c [macintosh]: Include macterm.h.
5418
5419 * window.c [macintosh]: Include macterm.h.
5420
5421 * xdisp.c [macintosh]: Include macterm.h. Declare
5422 set_frame_menubar and pending_menu_activation.
5423 (echo_area_display) [macintosh]: Do not return if terminal frame
5424 is the selected frame.
5425 (update_menu_bar) [macintosh]: Check FRAME_EXTERNAL_MENU_BAR (f).
5426 Allow only the selected frame to set menu bar.
5427 (redisplay_window) [macintosh]: Obtain menu bar to redisplay by
5428 calling FRAME_EXTERNAL_MENU_BAR (f).
5429 (display_menu_bar) [macintosh]: Check FRAME_MAC_P (f).
5430
5431 * xfaces.c [macintosh]: Include macterm.h. Define x_display_info
5432 and check_x. Declare XCreateGC. Define x_create_gc and
5433 x_free_gc. Initialize font_sort_order.
5434 (x_face_list_fonts) [macintosh]: Use the same code as WINDOWSNT,
5435 but call x_list_fonts instead of w32_list_fonts.
5436 (Finternal_face_x_get_resource) [macintosh]: Do not call
5437 display_x_get_resource.
5438 (prepare_face_for_display) [macintosh]: Set xgcv.font.
5439 (realize_x_face) [macintosh]: Load the font if it is specified in
5440 ATTRS.
52283633 5441 (syms_of_xfaces) [macintosh]: Initialize Vscalable_fonts_allowed to Qt.
1a578e9b 5442
1ffbabe3
SM
54432000-10-22 Stefan Monnier <monnier@cs.yale.edu>
5444
5445 * keymap.c (fix_submap_inheritance): Don't do anything if parent_entry
5446 is nil: since we go to the end of submap anyway, we'd end up
5447 setting nil to nil.
5448 (access_keymap): Don't use KEYMAPP on meta_map since KEYMAPP
5449 doesn't obey autoload.
5450
bed43f1d
EZ
54512000-10-21 Eli Zaretskii <eliz@is.elta.co.il>
5452
1ffbabe3 5453 * msdos.c (dos_set_window_size): Update screen dimension variables.
bed43f1d 5454
ea4233a7
JR
54552000-10-21 Jason Rumney <jasonr@gnu.org>
5456
5457 * w32term.c (w32_cache_char_metrics): Double check that font is
5458 really fixed pitch before trusting tmPitchAndFamily.
5459
f3d3c491
AI
54602000-10-21 Andrew Innes <andrewi@gnu.org>
5461
5462 * w32gui.h (w32_char_font_type): Move enum from w32term.c
5463
5464 * w32term.h: Extern decl for w32_cache_char_metrics.
5465
5466 * w32bdf.c (w32_load_bdf_font): Call w32_cache_char_metrics.
5467
5468 * w32fns.c (w32_load_system_font): Call w32_cache_char_metrics.
5469 (w32_unload_font): Free per_char array if present.
5470
5471 * w32term.c (w32_per_char_metric): Remove HDC argument. Use
5472 cached information in emulated XFontStruct to handle common cases
5473 quickly. Do not allocate XCharStruct for return.
5474 (w32_native_per_char_metric): New function.
5475 (w32_bdf_per_char_metric): Fill in supplied XCharStruct instead of
5476 allocating one.
5477 (x_produce_glyphs): Don't get an HDC. Change calls to
5478 w32_per_char_metric to match arg change above. Remove calls to
5479 free results.
5480 (w32_get_glyph_overhangs): Ditto.
5481 (w32_cache_char_metrics): New function.
5482
5483 * makefile.w32-in: Change .obj to .$(O) in all dependencies.
5484 ($(BLD)/casefiddle.$(O)): Remove compile command.
5485 ($(BLD)/gmalloc.$(O)): Remove compile command.
52283633
SM
5486 ($(BLD)/dispnew.obj):
5487 ($(BLD)/keyboard.obj):
5488 ($(BLD)/w32inevt.obj):
5489 ($(BLD)/w32bdf.obj):
5490 ($(BLD)/alloc.obj):
5491 ($(BLD)/buffer.obj):
5492 ($(BLD)/editfns.obj):
5493 ($(BLD)/emacs.obj):
5494 ($(BLD)/fileio.obj):
5495 ($(BLD)/fns.obj):
5496 ($(BLD)/indent.obj):
5497 ($(BLD)/insdel.obj):
5498 ($(BLD)/intervals.obj):
5499 ($(BLD)/minibuf.obj):
5500 ($(BLD)/print.obj):
5501 ($(BLD)/scroll.obj):
5502 ($(BLD)/sysdep.obj):
5503 ($(BLD)/textprop.obj):
5504 ($(BLD)/widget.obj):
f3d3c491
AI
5505 ($(BLD)/xdisp.obj): Add dependency on w32gui.h.
5506 ($(BLD)/term.obj): Add dependency on dispextern.h.
5507
52283633
SM
5508 * makefile.nt ($(BLD)\dispnew.obj):
5509 ($(BLD)\keyboard.obj):
5510 ($(BLD)\w32inevt.obj):
5511 ($(BLD)\w32bdf.obj):
5512 ($(BLD)\alloc.obj):
5513 ($(BLD)\buffer.obj):
5514 ($(BLD)\editfns.obj):
5515 ($(BLD)\emacs.obj):
5516 ($(BLD)\fileio.obj):
5517 ($(BLD)\fns.obj):
5518 ($(BLD)\indent.obj):
5519 ($(BLD)\insdel.obj):
5520 ($(BLD)\intervals.obj):
5521 ($(BLD)\minibuf.obj):
5522 ($(BLD)\print.obj):
5523 ($(BLD)\scroll.obj):
5524 ($(BLD)\sysdep.obj):
5525 ($(BLD)\textprop.obj):
5526 ($(BLD)\widget.obj):
f3d3c491
AI
5527 ($(BLD)\xdisp.obj): Add dependency on w32gui.h.
5528 ($(BLD)\term.obj): Add dependency on dispextern.h
5529
18ad4821
EZ
55302000-10-21 Eli Zaretskii <eliz@is.elta.co.il>
5531
5532 * minibuf.c (Fminibuffer_complete): Call Fpos_visible_in_window_p
5533 with an additional argument of Qt.
5534
de54681a
MB
55352000-10-21 Miles Bader <miles@gnu.org>
5536
5537 * window.c (pos_fully_visible_in_window_p): New function.
5538 (Fpos_visible_in_window_p): Add FULLY argument.
5539 Use pos_fully_visible_in_window_p.
5540 (window_scroll_pixel_based, window_scroll_line_based): Update
5541 calls to Fpos_visible_in_window_p.
5542 * lisp.h (Fpos_visible_in_window_p): Update prototype
5543
13c844fb
GM
55442000-10-20 Gerd Moellmann <gerd@gnu.org>
5545
5546 * alloc.c (toplevel): Conditionalize compilation of mem_*
5547 functions differently.
52283633 5548
d9506268
JR
55492000-10-20 Jason Rumney <jasonr@gnu.org>
5550
5551 * alloc.c (toplevel): Move #ifdef GC_MARK_STACK back to above
5552 mem_init where it used to be. mem_z etc not defined otherwise.
5553
8094989b
GM
55542000-10-20 Gerd Moellmann <gerd@gnu.org>
5555
5556 * alloc.c (toplevel) [SYSTEM_MALLOC || DOUG_LEA_MALLOC]: Undef
5557 GC_MALLOC_CHECK.
5558 (toplevel) [GC_MARK_STACK || GC_MALLOC_CHECK]: Move mem_node
5559 structure definition and related variabled to the top of the file.
5560 Include this code when GC_MALLOC_CHECK is defined.
5561 (lisp_malloc, lisp_free) [GC_MALLOC_CHECK]: Don't
5562 register/unregister allocated region.
5563 (emacs_blocked_free) [GC_MALLOC_CHECK]: Check if freeing something
5564 which isn't allocated.
5565 (emacs_blocked_malloc) [GC_MALLOC_CHECK]: Check if returning
5566 something which is already in use.
5567 (emacs_blocked_realloc) [GC_MALLOC_CHECK]: Likewise.
5568 (mem_insert) [GC_MALLOC_CHECK]: Use _malloc_internal.
5569 (mem_delete) [GC_MALLOC_CHECK]: Use _free_internal.
5570 (init_alloc_once) [GC_MALLOC_CHECK]: Call mem_init.
5571
5572 * gmalloc.c (_malloc_internal) [GC_MALLOC_CHECK]: Use
5573 _malloc_internal instead of malloc.
5574 (_free_internal) [GC_MALLOC_CHECK]: Use _free_internal instead
5575 of free.
5576
ea456eb4
AI
55772000-10-20 Andrew Innes <andrewi@gnu.org>
5578
5579 * strftime.c [!WINDOWSNT]: Don't apply Solaris 2.5 work-around on
5580 Windows.
5581 (my_strftime) <macro>: Don't use macro arg list when redefining as
5582 _strftime_copytm.
5583 (my_strftime) <function>: Supply 0 as ut argument.
5584
e64c3a75
JR
55852000-10-19 Jason Rumney <jasonr@altavista.net>
5586
5587 * w32console.c: Do not undef HAVE_WINDOW_SYSTEM before
5588 including dispextern.h, as it stops faces from working.
5589
5590 * w32fns.c (Fx_create_frame): Don't bother calling
5591 face-set-after-frame-default since the caller does it for us
5592 anyway. Clean up calls to x_get_arg to be consistent with X.
5593
5594 * w32term.c (x_produce_glyphs): Handle
5595 unibyte_display_via_language_environment correctly.
5596 (w32_draw_box_rect): Fix the calculation of width and height.
5597
5598 * w32menu.c (add_menu_item): Do not use MF_OWNERDRAW for titles,
5599 as it has stopped working.
5600 (Fx_popup_menu, Fx_popup_dialog): Check for tool-bar position like
5601 menu-bar.
5602
17401c97
GM
56032000-10-19 Gerd Moellmann <gerd@gnu.org>
5604
5605 * eval.c (skip_debugger): Prevent a compiler warning.
5606 (Fcondition_case): Likewise.
5607 (Fbacktrace_frame): Use a null interactive spec.
5608
773272d8
KH
56092000-10-19 Kenichi Handa <handa@etl.go.jp>
5610
5611 * xterm.c (x_find_ccl_program): Check also fontp->full_name.
5612
a42943e9
GM
56132000-10-18 Gerd Moellmann <gerd@gnu.org>
5614
e50517d9
GM
5615 * strftime.c: Sync with glibc, file version 1.78.
5616 (my_strftime) [HAVE_TZNAME]: Use `UTC' instead of `GMT' which
5617 should no longer be used according to ISO 8601.
5618
9035a35a
GM
5619 * keymap.c (access_keymap): If IDX has a meta prefix, and there's
5620 no map for meta_prefix_char, don't try to use it as a keymap.
5621 Instead, if T_OK is non-zero, look up a default binding, if any,
5622 otherwise, if T_OK is zero, return nil.
5623
a42943e9
GM
5624 * xfns.c (x_to_xcolors, x_set_mouse_color, lookup_pixel_color)
5625 (x_to_xcolors, png_load): Use x_query_color.
5626
52283633
SM
5627 * xterm.c (x_color_cells, x_query_colors, x_query_color):
5628 New functions.
a42943e9
GM
5629 (x_alloc_nearest_color): Use it to reduce calls to XQueryColors
5630 which can be slow.
5631 (x_copy_color, x_alloc_lighter_color): Likewise.
5632
5633 * xterm.h (struct x_display_info): Add color_cells and ncolor_cells.
5634 (x_query_color, x_query_colors): Add prototype.
5635
5636 * alloc.c (allocate_string) [GC_CHECK_STRING_BYTES]: Call
5637 check_string_bytes only if not noninteractive, increase count to 50.
5638
00de2987
MB
56392000-10-18 Miles Bader <miles@lsi.nec.co.jp>
5640
5641 * insdel.c (adjust_markers_for_delete): Handle before-insertion
5642 markers correctly.
5643
54918e2b
GM
56442000-10-17 Gerd Moellmann <gerd@gnu.org>
5645
1f0b3fd2
GM
5646 * alloc.c (pure_bytes_used): Renamed from pureptr.
5647 (ALIGN): New macro.
5648 (pure_alloc): New function.
5649 (make_pure_string, pure_cons, make_pure_float, make_pure_vector):
5650 Use it.
5651 (Fpurecopy): Use PURE_POINTER_P.
5652
68c5d1db
GM
5653 * xdisp.c (try_cursor_movement): Use cursor_row_p also when
5654 PT has moved backward.
52283633 5655
9a038881
GM
5656 * xdisp.c (cursor_row_p): Take continued lines into account.
5657
361b097f
GM
5658 * alloc.c (mark_object) [GC_CHECK_STRING_BYTES]: Check validity of
5659 string's size_byte.
5660 (check_string_bytes) [GC_CHECK_STRING_BYTES]: New function.
5661 (check_string_bytes_count) [GC_CHECK_STRING_BYTES]: New variable.
5662 (allocate_string) [GC_CHECK_STRING_BYTES]: Call it for every 10th
5663 string allocated.
5664
54918e2b
GM
5665 * xdisp.c (forward_to_next_line_start): Switch iterator's handling
5666 of selective display off while searching for the next line start.
5667
03ed0806
KH
56682000-10-17 Kenichi Handa <handa@etl.go.jp>
5669
5670 * Makefile.in (term.o): Depend on dispextern.h.
5671
7e05cdaf
SM
56722000-10-16 Stefan Monnier <monnier@cs.yale.edu>
5673
5674 * keymap.c (keymap_memberp): Ensure that nil is not a member.
5675
a6801fd1
GM
56762000-10-16 Gerd Moellmann <gerd@gnu.org>
5677
483de32b
GM
5678 * xdisp.c (set_iterator_to_next): Reset box start and end flags of
5679 the iterator at the beginning, so that they can be set later on,
5680 for instance in reseat_at_next_visible_line_start, without being
5681 overwritten.
5682
a6801fd1
GM
5683 * xfns.c (pbm_format): Add :foreground and :background keywords.
5684 (PBM_FOREGROUND, PBM_BACKGROUND): New enumerators.
52283633 5685 (xbm_load): Recognize foreground and background color specifications.
a6801fd1 5686
dbf1fcc1
EZ
56872000-10-16 Eli Zaretskii <eliz@is.elta.co.il>
5688
5689 * dispextern.h (unspecified_fg, unspecified_bg): Declare.
5690
52283633 5691 * dosfns.c (unspecified_fg, unspecified_bg): Remove extern declaration.
dbf1fcc1
EZ
5692
5693 * msdos.c (IT_set_face): Compare highlighted face with the default
5694 face, and invert colors if these faces' colors are identical.
5695 (Fmsdos_remember_default_colors): Don't swap foreground and
5696 background colors in initial_colors[].
5697 (IT_set_frame_parameters): Don't swap frame's foreground and
5698 background pixels. If ALIST includes "(reverse . t)", swap
5699 foreground-color and background-color properties in frame's
5700 param_alist. If the original frame's param_alist doesn't specify
5701 the colors, store unspecified-fg and unspecified-bg, reversed if
5702 required.
5703
5704 * frame.c (Fframe_parameters): If a tty's frame's param_alist says
5705 the colors are unspecified and reversed, reverse fore- and back-
5706 ground in the returned value.
5707 (Fframe_parameter): Ditto.
5708
b41fe2c3 57092000-10-16 Gerd Moellmann <gerd@gnu.org>
52283633 5710
3a6b59d9
GM
5711 * xdisp.c (find_last_unchanged_at_beg_row): Renamed from
5712 get_last_unchanged_at_beg_row.
5713 (find_first_unchanged_at_end_row): Renamed from
5714 get_first_unchanged_at_end_row.
5715 (find_first_unchanged_at_end_row): Convert assertions to
5716 unconditional tests which abort. When looking for a row in
5717 unchanged text, don't go further back than first_text_row.
5718
b41fe2c3
GM
5719 * xdisp.c (try_scrolling) <cursor in scroll margin at the bottom>:
5720 Don't add in the last line's height when deciding if the new
5721 position is below the scroll margin.
9d1af64f 5722
b41fe2c3 57232000-10-16 Miles Bader <miles@gnu.org>
f657bbf6
MB
5724
5725 * editfns.c (Fconstrain_to_field): Check carefully for field
5726 boundaries if either OLD_POS or NEW_POS has a non-nil field
5727 property, even if they're the same.
5728
c412cb7b
KH
57292000-10-16 Kenichi Handa <handa@etl.go.jp>
5730
5731 * xterm.c (x_draw_box_rect): Fix the calculation of width and
5732 height for XFillRectangle.
5733
5586f3eb
SM
57342000-10-15 Stefan Monnier <monnier@cs.yale.edu>
5735
5736 * syntax.c (Fstring_to_syntax): New function extracted from
5737 Fmodify_syntax_entry.
5738 (Fmodify_syntax_entry): Use it and document the ! and | fences.
5739 (skip_chars, Fforward_comment): Remove unused variables.
5740 (syms_of_syntax): Add defsubr for string-to-syntax.
5741 (describe_syntax): Add code for comment and string fences.
5742
db785038
SM
57432000-10-14 Stefan Monnier <monnier@cs.yale.edu>
5744
5745 * keymap.c (access_keymap): Add AUTOLOAD parameter.
5746 Do the meta->esc mapping. Call get_keyelt before returning.
5747 Start scanning from the second element (the first is always `keymap')
5748 to make it easier to detect when we reach a parent map.
5749 Handle the case of inheriting from a symbol whose function is a map.
5750 (Fkeymap_parent): Also handle the `inherit from symbol' case.
5751 (fix_submap_inheritance, Fdefine_key): Update call to access_keymap.
5752 (get_keyelt, Flookup_key): Update call to access_keymap.
5753 Remove the meta->esc mappings.
5754 (define_as_prefix): Delete old disabled code.
5755 (menu_item_p): New function.
5756 (where_is_internal_1): Skip over the few remaining menu items.
5757 * lisp.h (access_keymap): Update prototype.
5758 * keyboard.c (read_char, menu_bar_items, tool_bar_items):
5759 Update call to access_keymap.
5760 (follow_key, read_key_sequence): Update calls to access_keymap.
5761 Remove the meta->esc mappings.
5762
cafafe0b
GM
57632000-10-13 Gerd Moellmann <gerd@gnu.org>
5764
a2e2a7f6
GM
5765 * dispnew.c (direct_output_for_insert): Call set_iterator_to_next
5766 with additional argument.
5767
cafafe0b
GM
5768 * xdisp.c (cursor_row_p): New function.
5769 (try_cursor_movement, display_line): Use it.
52283633 5770
cafafe0b
GM
5771 * xdisp.c (append_space): Also save/restore iterator's current
5772 character and its length.
5773
5774 * xdisp.c (init_from_display_pos): Add an assertion.
5775 (handle_stop): Don't set iterator's add_overlay_start.
5776 (handle_invisible_prop): Likewise.
5777 (load_overlay_strings): If text under an overlay is invisible,
5778 take both before- and after-strings into account when the iterator
5779 is positioned either at the start or at the end of the overlay.
5780 (forward_to_next_line_start): Rewritten.
5781 (reseat_at_next_visible_line_start): Rewritten.
5782 (set_iterator_to_next): Add parameter RESEAT_P.
5783
5784 * dispextern.h (struct it): Remove member add_overlay_start.
5785 (set_iterator_to_next): Change prototype.
5786
c744452b
KH
57872000-10-13 Kenichi Handa <handa@etl.go.jp>
5788
5789 * coding.c (code_convert_region): Be sure to initialize
5790 coding->category_idx.
e4a3f4e1
KH
5791 (decode_coding_string): Set coding->src_multibyte and
5792 coding->dst_multibyte before using CODING_REQUIRE_DECODING.
5793 (encode_coding_string): Set coding->src_multibyte and
5794 coding->dst_multibyte before using CODING_REQUIRE_ENCODING.
c744452b 5795
321fd26f
SM
57962000-10-12 Stefan Monnier <monnier@cs.yale.edu>
5797
5798 * xfns.c (Fx_create_frame): Don't bother calling
5799 face-set-after-frame-default since the caller does it for us anyway.
5800
76832439
EZ
58012000-10-12 Eli Zaretskii <eliz@is.elta.co.il>
5802
5803 * window.c (coordinates_in_window): Fix detection of vertical line
5804 on character terminals.
5805
2483cf58
GM
58062000-10-12 Gerd Moellmann <gerd@gnu.org>
5807
5808 * editfns.c (save_excursion_save): Additionally record the
5809 selected window.
5810 (save_excursion_restore): If buffer was visible in a window, and a
5811 different window was selected, and the old selected window is
5812 still live, restore point in that window.
5813
eb991b25
KH
58142000-10-12 Kenichi Handa <handa@etl.go.jp>
5815
8a0eba09
KH
5816 * xterm.c (x_produce_glyphs): Handle
5817 unibyte_display_via_language_environment correctly.
5818
20401fcc
KH
5819 * regex.c (regex_compile): Change the way of handling a range from
5820 unibyte char to multibyte char.
5821
5822 * syntax.c (skip_chars): Change the way of handling a range from
5823 unibyte char to multibyte char.
5824
eb991b25
KH
5825 * process.c (read_process_output): Cancel previous change.
5826
365dd325
EZ
58272000-10-11 Eli Zaretskii <eliz@is.elta.co.il>
5828
c1b096cb
EZ
5829 * search.c (Fsearch_backward, Fsearch_forward): Doc fix.
5830
365dd325
EZ
5831 * charset.c (Ffind_charset_string): Doc fix.
5832 (Ffind_charset_region): Doc fix.
5833
eb483c2b
KH
58342000-10-11 Kenichi Handa <handa@mule.m17n.org>
5835
5836 * process.c (read_process_output): Fix previous change. Adjust
5837 multibyteness of text to insert in a buffer by
52283633 5838 string_make_unibyte/multibyte instead of Fstring_as_unibyte/multibyte.
eb483c2b 5839
b40bfb99
AS
58402000-10-10 Andreas Schwab <schwab@suse.de>
5841
5842 * alloc.c (mark_object): Remove all workarounds installed on
5843 1993-08-08.
5844
caff31d4
KH
58452000-10-10 Kenichi Handa <handa@etl.go.jp>
5846
52283633 5847 * fns.c (READ_QUADRUPLET_BYTE): Set *NCHARS_RETURN before returning.
caff31d4
KH
5848 (base64_encode_1): Make it work for a text of multibyte form.
5849 (Fbase64_decode_region): Allocate sufficient memory for multibyte
5850 case. Don't call str_to_multibyte because base64_decode_1
5851 produces correct multibyte form for eight-bit codes.
52283633 5852 (Fbase64_decode_string): Adjusted for the change of base64_decode_1.
caff31d4
KH
5853 (base64_decode_1): New args MULTIBYTE and NCHARS_RETURN. If
5854 MULTIBYTE is nonzero, produce correct multibyte form for eight-bit
5855 codes.
5856
5857 * charset.h (CHAR_STRING): Optimized for single byte characters.
5858
cba026ef
AS
58592000-10-09 Andreas Schwab <schwab@suse.de>
5860
5861 * process.c (Fopen_network_stream) [HAVE_GETADDRINFO]: Reset S to
5862 -1 after socket is closed, to fall through to error processing.
5863
1e21fe48
EZ
58642000-10-09 Eli Zaretskii <eliz@is.elta.co.il>
5865
5866 * msdos.c (IT_set_frame_parameters): Don't initialize Lisp_Object
365dd325 5867 variables. If ALIST includes foreground-color or
1e21fe48
EZ
5868 background-color, change also the colors of the default face for
5869 this frame.
5870
a640322e
EZ
58712000-10-08 Eli Zaretskii <eliz@is.elta.co.il>
5872
5873 * msdos.c (top-level) <Qbackground_color, Qforeground_color>: Make
5874 them extern (they are defined on xfaces.c).
5875 (syms_of_msdos): Don't intern and don't staticpro
5876 Qbackground_color and Qforeground_color.
5877
a115794c
EZ
58782000-10-07 Eli Zaretskii <eliz@is.elta.co.il>
5879
5880 * frame.c (Fframe_parameter): For non-windowed frames, if
5881 f->param_alist says foreground or background color is unspecified,
5882 call tty_color_name to return the color name computed from the
5883 frame's current colors.
5884
f5533b63
DL
58852000-10-06 Dave Love <fx@gnu.org>
5886
5887 * terminfo.c (ospeed): Don't declare.
5888
5889 * sysdep.c: Don't include string.h.
5890 (h_errno): Declare conditional also on TRY_AGAIN.
5891
5892 * charset.c (Ffind_charset_string): Doc fix.
5893
52283633 5894 * fns.c (Fbase64_encode_region, Fbase64_encode_string)
f5533b63
DL
5895 (Fbase64_decode_region, Fbase64_decode_string): More explicit
5896 error messages.
5897
2b06561a
DL
58982000-10-05 Dave Love <fx@gnu.org>
5899
5900 * xmenu.c (Fx_popup_menu, Fx_popup_dialog): Check for tool-bar
5901 position like menu-bar.
5902
ca839c85
GM
59032000-10-05 Gerd Moellmann <gerd@gnu.org>
5904
5905 * keyboard.c (Frecursive_edit): Make sure redisplay can happen.
5906
5907 * xdisp.c (handle_single_display_prop): Use safe_call1.
5908 (safe_call): Renamed from call_function.
5909 (safe_call1): New function.
5910 (handle_fontified_prop): Use safe_call1 instead of call1.
5911 (safe_eval): Renamed from eval_form.
5912 (safe_eval_handler): Renamed from eval_handler.
5913 (handle_single_display_prop, display_mode_element): Use safe_eval
5914 instead of eval_form.
5915
5916 * xfaces.c (merge_face_heights): Use safe_call instead of
5917 call_function.
5918
5919 * keyboard.c (show_help_echo): Use safe_call instead of
5920 call_function; use safe_eval instead of eval_form.
5921
5922 * lisp.h (safe_call): Renamed from call_function.
5923 (safe_eval): Renamed from eval_form.
5924 (safe_call1): Add prototype.
5925
a3489ece
MB
59262000-10-05 Miles Bader <miles@lsi.nec.co.jp>
5927
5928 * xfns.c (image_ascent): Rearrange ascent calculation for the
5929 has-a-font case.
5930
35810b6f
SM
59312000-10-04 Stefan Monnier <monnier@cs.yale.edu>
5932
5933 * keymap.c (Fwhere_is_internal): Ignore `menu-bar' and `tool-bar'.
5934 (where_is_internal_1): Don't bother ignoring menu-items any more.
5935
3dc78168
GM
59362000-10-04 Gerd Moellmann <gerd@gnu.org>
5937
5938 * keyboard.c (update_menu_bindings): New variable.
5939 (parse_menu_item): Use AREF. If update_menu_bindings
5940 is 0, don't update menu bindings.
5941 (syms_of_keyboard): New Lisp variable `update-menu-bindings'.
5942
1efc2bb9
EZ
59432000-10-03 Eli Zaretskii <eliz@is.elta.co.il>
5944
5945 * alloc.c (Fgarbage_collect): Prevent compiler warning for a call
5946 to `mark_object'.
5947
3f679f55
SM
59482000-10-02 Stefan Monnier <monnier@cs.yale.edu>
5949
5950 * syntax.c (forw_comment): Match nestedness of ender/starter.
5951 (Fforward_comment): Treat an unmatched \n comment-ender as whitespace.
5952 (prev_char_comstart_first): Remove.
5953 (back_comment): Check two-char comment markers more carefully
5954 to better handle overlapping cases like *//* or /* */* */ ...
5955 Match nestedness of ender/starter.
5956
2021ab61
DL
59572000-10-02 Dave Love <fx@gnu.org>
5958
5959 * config.in (HAVE_GAI_STRERROR): Add undef.
5960
5961 * process.c (Fopen_network_stream): Use it.
5962
5963 * m/alpha.h (NO_REMAP): Don't define.
5964
64e6cc18
GM
59652000-10-02 Gerd Moellmann <gerd@gnu.org>
5966
5967 * lisp.h (wrong_type_argument): Remove NO_RETURN, the function can
5968 return with a string converted to an integer or vice versa when
5969 Vmocklisp_arguments is t.
5970 (Fsignal): Likewise. The function can return for `quit'.
5971 (struct gcpro): Declare member `var' to point to a volatile
5972 Lisp_Object.
5973
5974 * eval.c (error): Prevent compiler warning.
5975
b1904cd9
SM
59762000-09-30 Stefan Monnier <monnier@cs.yale.edu>
5977
5978 * keymap.c (keymap_memberp): New function.
5979 (Fset_keymap_parent): Use it.
5980 (fix_submap_inheritance): Use get_keyelt, get_keymap_1 and KEYMAPP.
5981 Use keymap_memberp to avoid creating cycles.
5982 (access_keymap): Use KEYMAPP.
5983
71c9ec51
GM
59842000-09-30 Gerd Moellmann <gerd@gnu.org>
5985
5986 * process.c (Fopen_network_stream) [HAVE_GETADDRINFO]: Use
64e6cc18
GM
5987 gai_strerror. Make sure xerrno is set if connect fails. Improve
5988 error recovery.
71c9ec51 5989
c70c6b58
JR
59902000-09-29 Jason Rumney <jasonr@gnu.org>
5991
5992 * w32term.c (w32_char_font_type, w32_encode_char)
5993 (x_produce_glyphs): Distinguish single and multibyte BDF fonts.
5994 (w32_bdf_per_char_metric): New function.
5995 (w32_per_char_metric): Use it.
5996 (x_draw_glyph_string_background): Always draw background for BDF
5997 glyphs.
5998
5999 * w32bdf.h (glyph_struct, cache_bitmap): Cache bitmap data, not
6000 GDI object which is a scarce resource.
6001
6002 * w32bdf.c (search_file_line): Fix skipping of whitespace.
6003 (get_quoted_string): Fix limit on memchr search.
6004 (set_bdf_font_info): Use unsigned chars. Negate yoffset.
6005 (w32_init_bdf_font): Initialize codepoint and bitmap heaps.
6006 (w32_free_bdf_font): Free bitmaps and codepoints on heaps.
6007 (get_cached_font_char, cache_char_offset): Use macro
6008 BDF_CODEPOINT_RANGE_COVER_P.
6009 (cache_char_offset): Use HeapAlloc to allocate codepoints on own heap.
6010 (clear_cached_bitmap_slots): New function.
6011 (GET_HEX_VALUE): G-Z, g-z are not hex.
6012 (w32_get_bdf_glyph): Convert to DIB format. Return bytes read.
6013 (get_bitmap_with_cache): Use new cache implementation.
6014 (create_offscreen_bitmap): New function.
6015 (w32_BDF_TextOut): Use it. Draw glyphs as DIBs.
6016
6017 * w32term.c (x_produce_glyphs): If the distance from the current
6018 position to the next tab stop is less than a canonical character
6019 width, use the tab stop after that.
6020 (x_draw_glyphs): Handle case START and END are out of bounds more
6021 carefully.
6022 (x_clear_mouse_face): Block/unblock input.
6023 (x_display_and_set_cursor): Don't show a hollow box cursor for
6024 buffers whose cursor_type is nil.
6025
fe01239f
GM
60262000-09-29 Gerd Moellmann <gerd@gnu.org>
6027
52283633 6028 * xfns.c (x_set_tool_bar_lines): Clear frame when tool bar disappears.
fe01239f
GM
6029
6030 * dispextern.h (updating_frame): Declare extern.
6031
e7c52f1f
AS
60322000-09-29 Andreas Schwab <schwab@suse.de>
6033
6034 * m/ia64.h: Remove hack of not prototyping bcopy, etc.
6035
de6e1f7c
GM
60362000-09-29 Gerd Moellmann <gerd@gnu.org>
6037
25126faa
GM
6038 * keyboard.c (menu_bar_one_keymap): If KEYMAP is a symbol,
6039 use its function definition.
6040 (tool_bar_items): Likewise.
6041
de6e1f7c 6042 * lisp.h (fatal): Declare NO_RETURN.
52283633 6043
454ee39b
KH
60442000-09-29 Kenichi Handa <handa@etl.go.jp>
6045
6046 * keymap.c: Remove the line "#undef NULL".
6047
96301c5f
GM
60482000-09-28 Gerd Moellmann <gerd@gnu.org>
6049
52283633 6050 * xterm.c (x_make_frame_visible): Try harder to make the frame visible.
96301c5f 6051
efffeeb4
DL
60522000-09-28 Dave Love <fx@gnu.org>
6053
ecb8b666
DL
6054 * s/osf5-0.h: Define USE_MMAP_FOR_BUFFERS, not REL_ALLOC_MMAP.
6055
dc3cd20f
DL
6056 * s/sunos413.h (USE_MMAP_FOR_BUFFERS): Define.
6057
6058 * .gdbinit (xreload): Note its need on GNU/Linux.
6059
efffeeb4
DL
6060 * m/alpha.h (XUINT) [REL_ALLOC && _MALLOC_INTERNAL]: Don't declare
6061 r_alloc, r_alloc_free.
6062
8610d903
KH
60632000-09-28 Kenichi Handa <handa@etl.go.jp>
6064
6065 * syntax.c (skip_chars): Handle negation correctly.
6066
8901d1ac
GM
60672000-09-27 Gerd Moellmann <gerd@gnu.org>
6068
6f22f1ad
GM
6069 * xfaces.c (realize_default_face): Call set_lface_from_font_name
6070 with non-zero FORCE_P argument.
6071
52283633 6072 * dispnew.c (adjust_glyph_matrix, enable_glyph_matrix_rows):
8901d1ac
GM
6073 Add assertions.
6074
6075 * xdisp.c (window_box_height): Add an assertion.
6076
6077 * xfns.c (x_set_tool_bar_lines): Don't use more lines for the
6078 tool-bar than is available.
6079 (x_change_window_heights): Renamed from x_set_menu_bar_lines_1.
6080
36f1966f
DL
60812000-09-27 Dave Love <fx@gnu.org>
6082
efffeeb4 6083 * s/irix6-5.h: Now works 64-bit. Tidied.
36f1966f 6084
31d929e5
GM
60852000-09-26 Gerd Moellmann <gerd@gnu.org>
6086
c98863bf
GM
6087 * lisp.h (XINT) [EXPLICIT_SIGN_EXTEND]: Use BITS_PER_EMACS_INT
6088 instead of BITS_PER_INT.
6089 (XINT, XUINT) [NO_UNION_TYPE]: Cast result to EMACS_INT and
6090 EMACS_UINT, respectively.
6091 (NO_UNION_TYPE) [USE_LISP_UNION_TYPE]: Undefine.
6092
6093 * m/sparc.h (BITS_PER_EMACS_INT) [__arch64__]: Don't define.
6094
6095 * unexelf.c (ELFSIZE) [__NetBSD__ && __sparc_v9__]: Define to 64.
6096
77072ab1
GM
6097 * window.c (freeze_window_starts): Construct last argument for
6098 foreach_window differently.
6099
6100 * xfns.c (x_decode_color): Don't return a Lisp_Object.
6101
6102 * lisp.h (union Lisp_Object) [!NO_UNION_TYPE]: Use EMACS_INT and
6103 EMACS_UINT instead of `int' and `unsigned int'.
6104 (XSET) [EXPLICIT_SIGN_EXTEND]: Use EMACS_INT instead of `int'.
6105
6106 * frame.h (struct frame): Make the `nothing' member of union
6107 output_data an EMACS_INT.
6108
52283633 6109 * alloc.c (GC_CHECK_STRING_BYTES): Temporarily define, for bug hunting.
31d929e5
GM
6110 (struct sdata) [GC_CHECK_STRING_BYTES]: Always record the string's
6111 size in the sdata structure.
6112 (SDATA_NBYTES, SDATA_DATA): New macros.
6113 (SDATA_OF_STRING, SDATA_SIZE) [GC_CHECK_STRING_BYTES]: Define
6114 differently for the different layout of the sdata structure.
6115 (allocate_string_data) [GC_CHECK_STRING_BYTES]: Record string size
6116 in sdata.
6117 (sweep_strings, compact_small_strings) [GC_CHECK_STRING_BYTES]:
6118 Check that size recorded in the string size and size recorded in
6119 the sdata structure agree.
6120
3e60b029
DL
61212000-09-25 Dave Love <fx@gnu.org>
6122
6123 * buffer.c: Include stdio.h.
6124
6125 Partly suggested by Eduardo Horvath <eeh@netbsd.org>.
52283633 6126
3e60b029
DL
6127 * ralloc.c (__malloc_extra_blocks): Declare as __malloc_size_t.
6128
6129 * alloc.c (__malloc_size_t) [DOUG_LEA_MALLOC]: Don't redefine it.
52283633 6130 (__malloc_size_t) [!DOUG_LEA_MALLOC]: Define unconditionally as size_t.
3e60b029
DL
6131 (__malloc_extra_blocks): Declare as __malloc_size_t.
6132
8ff16b4e
GM
61332000-09-25 Gerd Moellmann <gerd@gnu.org>
6134
755a2ccd
GM
6135 * alloc.c (mark_image): Use GC_NILP instead of NILP.
6136
d8b4516f
GM
6137 * keyboard.c (show_help_echo): Set help_echo_showing_p.
6138 (read_char): If help-echo is showing, preserve the echo area
6139 when redisplaying.
6140
6141 * xdisp.c (help_echo_showing_p): New variable.
6142 (set_message): Reset it to 0.
6143 (init_xdisp): Initialize help_echo_showing_p.
6144
6145 * dispextern.h (help_echo_showing_p): Declare extern.
6146
6147 * config.in: Fix typo in __GNUC_MINOR__.
6148
6149 * keyboard.h (quit_throw_to_read_char): Declare NO_RETURN.
6150
b11af2dd
GM
6151 * s/freebsd.h (POSIX_SIGNALS): Define.
6152
8ff16b4e
GM
6153 * xterm.c (x_clear_mouse_face): Block/unblock input.
6154
844eb643
DL
61552000-09-24 Dave Love <fx@gnu.org>
6156
6157 * fns.c (base64_encode_1): Fix last change.
6158
b30ab1b3
GM
61592000-09-22 Gerd Moellmann <gerd@gnu.org>
6160
6161 * dispnew.c (enable_glyph_matrix_rows): Remove xasserts.
6162
6163 * xdisp.c (try_window_reusing_current_matrix): More fixes
6164 for the case window has a header-line.
6165
c6cbe5f0
DL
61662000-09-22 Dave Love <fx@gnu.org>
6167
4c7c1f3f
DL
6168 * xdisp.c (syms_of_xdisp): Defvar Vmenu_bar_update_hook to provide
6169 a doc string.
6170
6171 * xterm.c [SOLARIS2]: Remove redundant include of string.h.
6172
c6cbe5f0
DL
6173 * fns.c (Fstring_as_unibyte, Fstring_as_multibyte): Doc fix.
6174
550a625e
GM
61752000-09-21 Gerd Moellmann <gerd@gnu.org>
6176
4c7c1f3f 6177 * config.in (NO_RETURN): Define as `__attribute__((__noreturn__))'
fca99116
GM
6178 for GCC >= 2.5.
6179
52283633
SM
6180 * lisp.h (wrong_type_argument, Fthrow, Fsignal, error):
6181 Declare NO_RETURN.
fca99116 6182
80d26f99
GM
6183 * window.c, term.c, xmenu.c, xrdb.c, emacs.c, macros.c,
6184 * keymap.c, insdel.c, marker.c, minibuf.c, fileio.c, dired.c,
6185 * indent.c, search.c, alloc.c, data.c: Avoid some more compiler
6186 warnings.
52283633 6187
80d26f99
GM
6188 * marker.c (byte_char_debug_check): Return void.
6189
623a0aae
GM
6190 * xfns.c (Fx_create_frame): Set default frame parameter value
6191 for tool-bar-lines to 1.
6192
6193 * dispnew.c (scrolling_window): Compare y-positions of rows
6194 equal at the start. Some simplification.
6195
6196 * xdisp.c (try_window_reusing_current_matrix): Fix computation of
6197 reused rows' y-position in the case window has a header-line, and
6198 new window start is greater than old window start.
6199
42ac0ae5
GM
6200 * process.c (process_sent_to): New variable.
6201 (send_process): Workaround for a crash on sparc-sun-solaris-2.6
6202 with GCC 2.95.2 caused by a parameter being clobbered by longjmp.
6203 Declare more parameters volatile.
6204
550a625e
GM
6205 * lread.c (Vrecursive_load_depth_limit): New variable.
6206 (Fload): Check recursive loads whose recursion depth exceeds
6207 Vrecursive_load_depth_limit.
6208 (syms_of_lread): DERFAR_LISP recursive-load-depth-limit.
6209
8320414c
GM
62102000-09-20 Gerd Moellmann <gerd@gnu.org>
6211
f46c275e
GM
6212 * fileio.c (Fread_file_name): Doc fix.
6213
6214 * editfns.c (Fmessage_or_box): Doc fix.
6215
6216 * fns.c (Fy_or_n_p, Fyes_or_no_p): Doc fix.
6217
b7e11c5b 6218 * xfns.c (xbm_scan): Allow C-style comments.
52283633 6219
8320414c
GM
6220 * xfns.c (xpm_init_color_cache) [ALLOC_XPM_COLORS]: If color
6221 symbols are specified, add color translations to the cache.
52283633 6222 (xpm_color_bucket, xpm_cache_color) [ALLOC_XPM_COLORS]: New functions.
8320414c
GM
6223 (xpm_lookup_color) [ALLOC_XPM_COLORS]: Use xpm_color_bucket and
6224 xpm_cache_color.
6225 (xpm_load) [ALLOC_XPM_COLORS]: Pass frame and XPM attributes
6226 structures to xpm_init_color_cache.
6227
da1608d9
GM
62282000-09-19 Gerd Moellmann <gerd@gnu.org>
6229
52283633 6230 * dispnew.c (update_window_line): Make sure to always draw mode-lines.
da1608d9 6231
6badfa25
AI
62322000-09-19 Andrew Innes <andrewi@gnu.org>
6233
6234 * makefile.nt (bootstrap-emacs): Don't change directory.
6235
3a5f42bb
KH
62362000-09-19 Kenichi Handa <handa@etl.go.jp>
6237
1b7649bd
KH
6238 * charset.h (UNIBYTE_STR_AS_MULTIBYTE_P): Fix previous change.
6239
3a5f42bb
KH
6240 * ccl.c (Fccl_execute_on_string): Make multibyte string correctly.
6241 If output buffer is too small, signal an appropriated error.
6242
9f83cf0b
DL
62432000-09-18 Dave Love <fx@gnu.org>
6244
52283633 6245 * keyboard.c (menu_bar_items, tool_bar_items)
9f83cf0b
DL
6246 (current_active_maps): Remove redundant get_local_map call.
6247
28c7826c
GM
62482000-09-18 Gerd Moellmann <gerd@gnu.org>
6249
5cefa566
GM
6250 * xterm.c (x_display_and_set_cursor): Don't show a hollow box
6251 cursor for buffers whose cursor_type is nil.
52283633 6252
6fed3546
GM
6253 * xterm.c (x_draw_image_glyph_string): Remove a comment describing
6254 a feature to implement that is already implemented.
6255 (note_mouse_highlight, x_find_ccl_program): Avoid some compiler
6256 warnings.
6257
6258 * xfns.c (x_clear_image_1): New function.
6259 (x_clear_image): Use it.
52283633 6260 (x_from_xcolors): Use x_clear_image_1; don't free the image's mask.
6fed3546 6261
05b1f851
GM
6262 * dispnew.c (update_window): Move test for invisible lines
6263 at the top to update_window_line.
6264 (update_window_line): Handle invisible lines here.
6265
f4779de9
GM
6266 * xfns.c (clear_image_cache): Clear current matrices of all
6267 frames sharing an image cache. Block input while freeing
6268 images. Fix timestamp comparison.
6269 (x_clear_image): Also free the mask.
6270
28c7826c
GM
6271 * xfns.c (lookup_image): Block input while loading the image so
6272 that we won't get interrupted in a state where the image isn't yet
6273 set up completely.
6274 (xbm_load_image, xbm_load, xpm_load, xpm_load, lookup_rgb_color)
6275 (lookup_pixel_color, x_to_xcolors, x_from_xcolors)
6276 (x_disable_image, x_build_heuristic_mask, pbm_load, png_load)
52283633 6277 (jpeg_load, tiff_load, gif_load, gs_load): Don't block/unblock input.
28c7826c 6278
b7412313
GM
62792000-09-16 Gerd Moellmann <gerd@gnu.org>
6280
6281 * dispnew.c (update_window): Make sure to make desired rows
6282 current even if they are completely invisible at the top
6283 of a window.
6284
47e351a3
GM
62852000-09-15 Gerd Moellmann <gerd@gnu.org>
6286
7f8f1edc
GM
6287 * xfns.c (lookup_image): Build mask before applying an algorithm.
6288 Recognize algorithm `disabled'.
6289 (cross_disabled_images): New variable.
6290 (COLOR_INTENSITY): New macro.
6291 (x_detect_edges): Use COLOR_INTENSITY.
6292 (x_disable_image): New function.
6293 (syms_of_xfns): DEFVAR_BOOL cross_disabled_images.
6294
6295 * xdisp.c (build_desired_tool_bar_string): For a toolbar item in
6296 disabled state, don't apply an image transformation algorithm if
6297 the user specified an image for the disabled state. Use
28c7826c 6298 `:algorithm disabled' for creating a disabled item's image if the
7f8f1edc
GM
6299 user hasn't specified an image.
6300
ebb8f116
GM
6301 * xfns.c (ALLOC_XPM_COLORS): Define if we can use Emacs' color
6302 allocation functions with the XPM lib.
6303 (struct xpm_cached_color) [ALLOC_XPM_COLORS]: New structure.
6304 (XPM_COLOR_CACHE_BUCKETS) [ALLOC_XPM_COLORS]: New macro.
6305 (xpm_color_cache) [ALLOC_XPM_COLORS]: New variable.
6306 (xpm_init_color_cache, xpm_free_color_cache, xpm_lookup_color)
52283633 6307 (xpm_alloc_color, xpm_free_colors) [ALLOC_XPM_COLORS]: New functions.
ebb8f116
GM
6308 (xpm_load) [ALLOC_XPM_COLORS]: Use Emacs' own color allocation
6309 functions, if possible, because these handle color allocation
6310 failure more gracefully.
6311 (Fimage_mask_p): New function.
6312
47e351a3
GM
6313 * xfns.c (QCmatrix, QCcolor_adjustment, QCmask, Qemboss)
6314 (Qedge_detection, Qheuristic): New symbols.
6315 (syms_of_xfns): Initialize new symbols.
6316 (lookup_image): Handle `:mask X', `:algorithm emboss', and
6317 `algorithm (edge-detection ...)'.
6318 (xbm_format, xpm_format, pbm_format, png_format, jpeg_format):
6319 (tiff_format, gif_format, gs_format): Add `:mask'.
6320 (XBM_MASK, XPM_MASK, PBM_MASK, PNG_MASK, JPEG_MASK, TIFF_MASK)
6321 (GIF_MASK, GS_MASK): New enumerators.
6322 (x_laplace_read_row, x_laplace_write_row): Functions removed.
6323 (emboss_matrix, laplace_matrix): New variables.
6324 (x_to_xcolors, x_from_xcolors, x_detect_edges, x_emboss)
6325 (x_edge_detection): New functions.
6326 (x_laplace): Rewritten in terms of x_detect_edges.
6327 (x_build_heuristic_mask): If image has a mask, free it.
6328
fe83b953
AI
63292000-09-14 Andrew Innes <andrewi@gnu.org>
6330
6331 * makefile.w32-in: Revert to Unix line endings.
6332
3021e816
AI
63332000-09-14 Andrew Innes <andrewi@gnu.org>
6334
6335 * makefile.w32-in: Standardize indentation somewhat.
6336 (bootstrap-temacs): Use $(ARGQUOTE) instead of literal quotes, to
6337 cater for differences between shells.
6338
6339 * w32term.c (w32_per_char_metric): Handle non-TrueType fonts.
6340
2a32b5ea
GM
63412000-09-14 Gerd Moellmann <gerd@gnu.org>
6342
6343 * xterm.c (x_produce_glyphs): If the distance from the current
6344 position to the next tab stop is less than a canonical character
6345 width, use the tab stop after that.
6346
b4331e96
DL
63472000-09-14 Dave Love <fx@gnu.org>
6348
6349 * buffer.c (alloc_buffer_text): Fix xmalloc call.
6350
ef9e4345
GM
63512000-09-14 Gerd Moellmann <gerd@gnu.org>
6352
085536c2
GM
6353 * xdisp.c (handle_fontified_prop): While running fontification
6354 functions, bind `fontification-functions' and
6355 `after-change-functions' to nil.
6356
ef9e4345
GM
6357 * s/freebsd.h, s/irix-5.0.h, s/sol2.h, s/template.h
6358 (USE_MMAP_FOR_BUFFERS): Define instead of REL_ALLOC_MMAP.
6359
6360 * Makefile.in (mallocobj) [SYSTEM_MALLOC]: Don't add ralloc.o.
6361
6362 * emacs.c: Change conditional compilation on REL_ALLOC_MMAP to
6363 USE_MMAP_FOR_BUFFERS.
6364
6365 * insdel.c (make_gap): Use enlarge_buffer_text.
6366
6367 * buffer.c: Move allocation with mmap here, from ralloc.c. Change
6368 conditional compilation on REL_ALLOC_MMAP to USE_MMAP_FOR_BUFFERS.
6369 (mmap_alloc, mmap_free, mmap_realloc) [REL_ALLOC_MMAP]: Renamed
6370 from former r_alloc_* functions in ralloc.c.
52283633 6371 (mmap_page_size, mmap_initialized_p) [REL_ALLOC_MMAP]: New variables.
ef9e4345
GM
6372 (MEM_ALIGN) [REL_ALLOC_MMAP]: New macro.
6373 (mmap_init) [REL_ALLOC_MMAP]: New function.
6374 (alloc_buffer_text, enlarge_buffer_text, free_buffer_text): New
6375 functions replacing macros BUFFER_ALLOC, BUFFER_REALLOC, and
6376 BUFFER_FREE.
6377
6378 * buffer.h (BUFFER_ALLOC, BUFFER_REALLOC, BUFFER_FREE): Removed.
6379 (enlarge_buffer_text): Add prototype.
6380
6381 * ralloc.c: Remove everything having to do with the use of mmap.
6382
f8608968
GM
63832000-09-13 Gerd Moellmann <gerd@gnu.org>
6384
2a494b2d
GM
6385 * sound.c (Fplay_sound): Doc fix.
6386
8c907a56
GM
6387 * keyboard.c: Avoid some more compiler warnings.
6388 (parse_tool_bar_item): Ignore cached key bindings.
6389
f8608968
GM
6390 * alloc.c: Add some comments about DOUG_LEA_MALLOC's use of mmap
6391 and allocation of Lisp data.
6392
6ab70e9a
GM
63932000-09-12 Gerd Moellmann <gerd@gnu.org>
6394
d12d0a9b
GM
6395 * xfaces.c: Remove conditional compilation on SCALABLE_FONTS.
6396 (Finternal_set_lisp_face_attribute): If frame is 0, set new frame
6397 defaults first.
6398
6ab70e9a
GM
6399 * lread.c (Fload): Put code checking for recursive loads in #if 0.
6400
63c36c3c
KH
64012000-09-12 Miyashita Hisashi <himi@meadowy.org>
6402
6403 * ccl.c: Comment fixed.
6404 (MAX_MAP_SET_LEVEL): Increased to 30.
6405 (PUSH_MAPPING_STACK): Enclose with do-while block.
6406 (POP_MAPPING_STACK): Likewise.
6407 (stack_idx_of_map_multiple): New variable.
6408 (CCL_CALL_FOR_MAP_INSTRUCTION): New macro.
6409 (ccl_driver) <CCL_IterateMultipleMap>: If the content is a symbol,
52283633 6410 call the corresponding CCL program by CCL_CALL_FOR_MAP_INSTRUCTION.
63c36c3c
KH
6411 (ccl_driver) <CCL_MapSingle>: Likewise.
6412 (ccl_driver) <CCL_MapMultiple>: Rewritten to fix many bugs, deal
6413 with the case where looking up process reaches to the end of
6414 map-set, and call CCL programs as the above change.
6415
7ee3bd7b
GM
64162000-09-11 Gerd Moellmann <gerd@gnu.org>
6417
8ec8a5ec
GM
6418 * xfns.c (png_load, jpeg_load): Declare some variables volatile
6419 that might be clobbered by longjmp.
6420 (check_x_display_info, x_decode_color, create_frame_xic)
6421 (Fx_display_backing_store, Fx_display_visual_class)
52283633 6422 (x_build_heuristic_mask, pbm_scan_number): Avoid compiler warnings.
8ec8a5ec 6423
f74b0705
GM
6424 * lread.c (init_lread): Set Vloads_in_progress to nil.
6425 (Fload): Show list of recursively loaded files, when signaling an
6426 error.
6427
7ee3bd7b
GM
6428 * lread.c (Vloads_in_progress): New variable.
6429 (record_load_unwind): New function.
6430 (Fload): Check for recursive loads.
6431 (syms_of_lread): Initialize Vloads_in_progress.
6432 (read_integer, read1): Avoid some compiler warnings.
6433
6434 * fns.c (concat, Fsubstring, internal_equal, Fnconc): Avoid some
6435 compiler warnings.
6436
974e1e5b
MB
64372000-09-11 Miles Bader <miles@gnu.org>
6438
6439 * editfns.c (Fbuffer_string): Doc fix.
6440
9824c4e3
GM
64412000-09-10 Gerd Moellmann <gerd@gnu.org>
6442
6443 * ralloc.c (mmap_enlarge): Don't return 0 if successful.
6444
6a72fdd1
KR
64452000-09-09 Ken Raeburn <raeburn@gnu.org>
6446
6447 * s/netbsd.h: Use NOT_C_CODE, not NO_C_SOURCE, when deciding
6448 whether to include other header files.
6449
28e6fb66
GM
64502000-09-09 Gerd Moellmann <gerd@gnu.org>
6451
52283633 6452 * xfaces.c (CYCLE_CHECK): Don't use the Lisp_Object returned
9824c4e3 6453 by Fmemq as a boolean.
28e6fb66 6454
7f8b6551
SM
64552000-09-08 Stefan Monnier <monnier@cs.yale.edu>
6456
6457 * xfaces.c (Finternal_set_lisp_face_attribute): Minor thinko.
6458
a8710abf
GM
64592000-09-08 Gerd Moellmann <gerd@gnu.org>
6460
d1a02881
GM
6461 * ralloc.c (mmap_fd): Remove initializer which can make it
6462 read-only in a dumped Emacs.
6463 (mmap_fd_1): New variable.
6464 (mmap_set_vars): Remove local `fd'. Save mmap_fd in mmap_fd_1,
6465 restore it from there.
6466 (r_alloc, r_re_alloc, r_alloc_free): Call r_alloc_init
6467 unconditionally so that mmap_fd can be initialized there.
6468 (r_alloc_init_fd): Open-coded in r_alloc_init; function removed.
6469 (r_alloc_init) [REL_ALLOC_MMAP && !MAP_ANON]: Open /dev/zero.
6470 (r_alloc_init) [REL_ALLOC_MMAP && MAP_ANON]: Set mmap_fd to -1.
6471
c454aac1
GM
6472 * xfaces.c (Finternal_merge_in_global_face): Return a Lisp object.
6473
6474 * xdisp.c (dump_glyph_row): Fix printf format string.
52283633 6475 (display_line, move_it_in_display_line_to): Avoid compiler warnings.
c454aac1 6476
fc653ef2
GM
6477 * s/freebsd.h (GC_MARK_STACK, REL_ALLOC_MMAP): Define.
6478
3015eec0
GM
6479 * keymap.c (Fset_keymap_parent): Check for cycles in keymap
6480 inheritance.
6481
bfe0ee88
GM
6482 * xdisp.c (try_window_id): When trying to locate cursor in
6483 unchanged rows at the top, handle the case that we can't find it.
6484
a8710abf
GM
6485 * xterm.c (x_draw_glyphs): Handle case START and END are out
6486 of bounds more carefully.
6487
6b7d4ae4
DL
64882000-09-08 Dave Love <fx@gnu.org>
6489
423193c5
DL
6490 * s/sol2.h (REL_ALLOC_MMAP): Define.
6491 * s/irix5-0.h (REL_ALLOC_MMAP): Likewise.
6492
6493 * ralloc.c: Don't include string.h (redundant).
6494 (MAP_ANON) [REL_ALLOC_MMAP]: Ensure it's defined.
6495 [!MAP_ANON]: Include fcntl.h.
6496 (mmap_fd) [REL_ALLOC_MMAP]: New variable.
6497 (r_alloc, r_re_alloc, r_alloc_free)
6498 (mmap_enlarge, mmap_set_vars): Use it.
6499 (r_alloc_init_fd): New function.
6500 (__morecore) [SYSTEM_MALLOC]: Don't declare.
6501 (r_alloc_init): Call r_alloc_init_fd. Conditionalize stuff on
6502 malloc type.
6503
6504 * Makefile.in (allocaobj) [!SYSTEM_MALLOC && REL_ALLOC_MMAP]:
6505 Remove vm-limit.o.
6506
6b7d4ae4
DL
6507 * unexelf.c (SHT_MIPS_DEBUG, HDRR) [__mips__]: Really confine last
6508 change to __NetBSD__.
6509
44d31981
KH
65102000-09-08 Kenichi Handa <handa@etl.go.jp>
6511
6512 * search.c (compile_pattern): Check the multibyteness of cached
6513 string and PATTERN.
6514
aad40737
MB
65152000-09-08 Miles Bader <miles@gnu.org>
6516
6517 * xfaces.c (default_face_vector): Function removed.
6518 (Finternal_merge_in_global_face): Restore old global/local
6519 attribute override order. Use inline loop instead of calling
6520 default_face_vector.
6521
91a211b5
GM
65222000-09-07 Gerd Moellmann <gerd@gnu.org>
6523
6524 * ralloc.c (obtain, relinquish, relinquish, r_alloc_size_in_use)
6525 (get_bloc, relocate_blocs, update_heap_bloc_correspondence)
6526 (resize_bloc, r_alloc_sbrk, r_alloc_init): Add casts to `char *'
6527 where necessary, in case POINTER_TYPE is `void'.
6528
03419440
EZ
65292000-09-07 Eli Zaretskii <eliz@is.elta.co.il>
6530
6531 * frame.c (make_terminal_frame): Initialize frame foreground and
6532 background colors to unspecified, for the initial instance of an
6533 MSDOS frame.
6534
f46f845b
GM
65352000-09-07 Gerd Moellmann <gerd@gnu.org>
6536
24f76fbf
GM
6537 * ralloc.c (mmap_find): Fix overlap computation.
6538 (mmap_enlarge): Compute nbytes before trying to find an
6539 overlapping region.
6540
f46f845b
GM
6541 * xfaces.c (smaller_face): Compare font heights with `<' and `>'
6542 instead of `!='.
6543
6544 * lread.c (syms_of_lread): Change value of regexp
6545 Vbytecomp_version_regexp to not match some XEmacs-compiled files.
6546
6547 * xmenu.c (xdialog_show): When looking up the selection in
6548 menu_items, take `quote' boundaries into account; this corresponds
6549 to a nil ITEM in x-popup-dialog.
6550
3c014385
KH
65512000-09-07 Kenichi Handa <handa@etl.go.jp>
6552
fd6f711b
KH
6553 * charset.h (MIN_CHARSET_OFFICIAL_DIMENSION1): Define it as 0x80,
6554 not 0x81.
6555 (MIN_CHAR_OFFICIAL_DIMENSION1): Define it as ((0x81 - 0x70) << 7).
6556
3c014385 6557 * coding.c (encode_coding_sjis_big5): Use translation table for
ed254191
KH
6558 encoding, not decoding. Fix the handling of latin-jisx0201.
6559 Check for the charset katakana-jisx0201 too.
3c014385 6560 (ONE_MORE_CHAR): Call translate_char with CHARSET arg -1.
f46f845b 6561 (detect_coding_sjis): Check the byte sequence more rigidly.
3c014385 6562
0da3ecef
GM
65632000-09-07 Gerd Moellmann <gerd@gnu.org>
6564
ab0ee409
GM
6565 * xfaces.c (Vparam_value_alist): New variable.
6566 (syms_of_xfaces): Initialize it.
6567 (Finternal_set_lisp_face_attribute): Avoid more consing.
6568
6569 * frame.c (Fframe_parameter): Handle `name' and `background-mode'
6570 specially.
6571 (Fframe_parameter) [HAVE_X_WINDOWS]: Handle `display' specially.
6572 (Qbackground_mode): New variable.
6573 (syms_of_frame_1): Initialize Qbackground_mode.
6574
6575 * lisp.h (Qdisplay): Declare extern.
1091dd67 6576
0da3ecef
GM
6577 * xfaces.c (Finternal_set_lisp_face_attribute): If FRAME is 0,
6578 change face on all frames, and change the default for new frames.
6579
b14654b9
DL
65802000-09-07 Dave Love <fx@gnu.org>
6581
6582 * Makefile.in [!SYSTEM_MALLOC && REL_ALLOC_MMAP]: Set mallocobj.
6583
d24fd56f
KH
65842000-09-07 Kenichi Handa <handa@etl.go.jp>
6585
794f3670
KH
6586 * charset.h (MAKE_CHAR): Be sure to set MSB of C1 to 0.
6587
0fddd0dc
KH
6588 * charset.c: Include composite.h
6589 (lisp_string_width): New function.
6590 (Fstring_width): Call lisp_string_width instead of strwidth.
6591
6592 * Makefile.in (charset.o): Depends on composite.h.
6593
d24fd56f
KH
6594 * process.c (read_process_output): Before inserting the decoded
6595 text in the buffer, adjust the multibyteness.
6596
fa0b693c
GM
65972000-09-06 Gerd Moellmann <gerd@gnu.org>
6598
52283633 6599 * buffer.c (set_buffer_internal_1) [REL_ALLOC_MMAP]: If
73b77ee5
GM
6600 buffer's text buffer is null, map new memory.
6601
0a58f946
GM
6602 * ralloc.c (POINTER, SIZE) [emacs]: Define in terms of
6603 POINTER_TYPE and size_t.
6604 (struct mmap_region) [REL_ALLOC_MMAP]: New structure.
6605 (mmap_regions, mmap_regions_1) [REL_ALLOC_MMAP]: New variables.
6606 (ROUND, MMAP_REGION_STRUCT_SIZE, MMAP_REGION, MMAP_USER_AREA)
6607 [REL_ALLOC_MMAP]: New macros.
6608 (mmap_find, mmap_free, mmap_enlarge, mmap_set_vars)
6609 (mmap_mapped_bytes, r_alloc, r_re_alloc, r_alloc_free)
6610 [REL_ALLOC_MMAP]: New functions.
6611
6612 * emacs.c (Fdump_emacs) [REL_ALLOC_MMAP]: Call mmap_set_vars
6613 before and after unexec.
6614
6615 * buffer.c (init_buffer) [REL_ALLOC_MMAP]: Map new buffer
6616 text buffers if necessary.
6617
6618 * buffer.h (R_ALLOC_DECLARE): Removed because unused.
6619 (r_alloc, r_re_alloc, r_alloc_free): Use POINTER_TYPE and size_t
6620 in prototypes.
6621
fa0b693c
GM
6622 * config.in (HAVE_MMAP): Add #undef.
6623
877055f6
GM
66242000-09-05 Gerd Moellmann <gerd@gnu.org>
6625
08ba3862
GM
6626 * frame.c (Qdisplay_type): New variable.
6627 (syms_of_frame_1): Initialize it.
6628 (Fframe_parameter): New function that avoids consing.
6629 (syms_of_frame): Defsubr it.
6630
66ffe51c
GM
6631 * buffer.c (Fother_buffer): Consider buffers as invisible when
6632 they are displayed in a window on an invisible frame.
6633
877055f6
GM
6634 * window.c (window_loop) <GET_LARGEST_WINDOW>: Fix bug making
6635 get-largest-window always return nil.
6636
bb970e67
GM
66372000-09-04 Gerd Moellmann <gerd@gnu.org>
6638
6639 * lread.c (syms_of_lread): Make Vbytecomp_version_regexp a Lisp
6640 variable; recognize Emacs 19 elc files.
6641
7a3d0e0e
MB
66422000-09-04 Miles Bader <miles@gnu.org>
6643
6644 * xmenu.c (xmenu_show): Call x_set_menu_resources_from_menu_face
6645 before initially popping up the menu, so the menu doesn't flash
52283633 6646 when the face settings are significantly different from the defaults.
7a3d0e0e 6647
14473664
SM
66482000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6649
6650 * regex.c (WIDE_CHAR_SUPPORT): New macro.
6651 (btowc, iswctype, wctype) [_LIBC]: Redefine to __<fun>.
6652 (BIT_ALPHA, BIT_ALNUM, BIT_ASCII, BIT_NONASCII, BIT_GRAPH, BIT_PRINT)
6653 (BIT_UNIBYTE): Remove.
6654 (re_match_2_internal): Delete corresponding code and streamline the
6655 BIT_MULTIBYTE case to not bother checking ISUNIBYTE.
6656 (CHAR_CLASS_MAX_LENGTH) [!WIDE_CHAR_SUPPORT]: Set to 9 rather than 6.
6657 (re_wctype_t): New type.
6658 (re_wctype, re_iswctype, re_wctype_to_bit): New functions.
6659 (regex_compile): Use them and fix handling of overly long char classes.
6660
c1174479
AI
66612000-09-03 Andrew Innes <andrewi@gnu.org>
6662
f8803e97
AI
6663 * makefile.w32-in: Change to DOS line endings.
6664
c1174479
AI
6665 * s/ms-w32.h (ORDINARY_LINK): New define.
6666
6667 * w32.c (_ANONYMOUS_UNION) [__GNUC__]: New define
6668 (_ANONYMOUS_STRUCT) [__GNUC__]: New define.
6669
6670 * makefile.w32-in (clean): Don't delete config.h and epaths.h.
6671 (distclean): Delete them here instead.
6672
44ef7cf6
AI
6673 * w32proc.c (compare_env): Convert to uppercase for comparison,
6674 not lowercase, to match how the native Windows shell works.
6675
49b3bd82
JR
66762000-09-03 Jason Rumney <jasonr@gnu.org>
6677
6678 * ChangeLog: Remove -unix from coding. Let Emacs autodetect, as
6679 CVS changes the line-ends when checking in/out on DOS/Windows.
6680
6681 * makefile.nt (emacs): Do not change directory to run temacs, as
6682 the load-path is set relative to current directory.
6683
a3d35a39
MB
66842000-09-03 Miles Bader <miles@gnu.org>
6685
6686 * xterm.c (x_alloc_lighter_color_for_widget): New function.
6687
d276b0cf
GM
66882000-09-02 Gerd Moellmann <gerd@gnu.org>
6689
715e84c9
GM
6690 * xdisp.c (redisplay_mode_lines): New function.
6691 (display_mode_lines): Return number of mode lines displayed.
6692 (echo_area_display): Use redisplay_mode_lines to draw garbaged
6693 mode lines. Don't temporarily bind redisplay-dont-pause to t.
6694
8892f40b
GM
6695 * emacs.c, callint.c, doc.c, editfns.c: Remove includes of
6696 string.h and strings.h.
6697 (index) [HAVE_INDEX]: Add prototype.
6698
d276b0cf
GM
6699 * unexelf.c (SHT_PROGBITS) [__NetBSD__ && !PT_LOAD]: Don't define.
6700 (SHT_MIPS_DEBUG, HDRR) [__NetBSD__ && __mips__]: Define.
6701
6702 * s/netbsd.h [!NO_C_SOURCE]: Include <signal.h>.
6703 (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
6704
38404229
GM
67052000-09-01 Gerd Moellmann <gerd@gnu.org>
6706
6707 * lread.c (read1): Accept `?' as symbol constituent, for
6708 compatiblity with XEmacs.
6709
c0f9ea08
SM
67102000-08-31 Stefan Monnier <monnier@cs.yale.edu>
6711
6712 * regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
6713 (struct re_pattern_buffer): Remove newline_anchor.
6714 * regex.c: Keep namespace clean for GNU libc by renaming <fun>
6715 to __<fun> and using `weak_alias (__<fun>, <fun>)'.
6716 (re_max_failures, fail_stack): Use size_t rather than unsigned.
6717 (regex_compile): For ^ and $, choose between buffer and line (beg|end)
6718 depending on the new RE_NO_NEWLINE_ANCHOR syntax flag.
6719 (print_compiled_pattern, re_search_2, mutually_exclusive_p)
6720 (re_match_2_internal, re_compile_pattern, re_comp, regcomp):
6721 Get rid of references to newline_anchor.
6722 (regcomp): Allocate and precompute a fastmap.
6723
8c0f83fe
GM
67242000-08-31 Gerd Moellmann <gerd@gnu.org>
6725
6726 * lread.c (openp): GCPRO local variable `filename'.
6727
4bb91c68
SM
67282000-08-30 Stefan Monnier <monnier@cs.yale.edu>
6729
6730 * regex.h (struct re_pattern_buffer): Use size_t for used/allocated.
6731
6732 * regex.c: Merge some changes from GNU libc. Add prototypes.
6733 (bcopy, bcmp, REGEX_REALLOCATE, re_match_2_internal):
6734 Use memcmp and memcpy instead of bcopy and bcmp.
6735 (init_syntax_once): Use ISALNUM.
6736 (PUSH_FAILURE_POINT, re_match_2_internal): Remove failure_id.
6737 (REG_UNSET_VALUE): Remove. Use NULL instead.
6738 (REG_UNSET, re_match_2_internal): Use NULL.
6739 (SET_HIGH_BOUND, MOVE_BUFFER_POINTER, ELSE_EXTEND_BUFFER_HIGH_BOUND):
6740 New macros.
6741 (EXTEND_BUFFER): Use them (to work with BOUNDED_POINTERS).
6742 (GET_UNSIGNED_NUMBER): Don't use ISDIGIT.
6743 (regex_compile): In handle_interval, return an error rather than try to
6744 unfetch the interval if we can't find the closing brace.
6745 Obey the RE_NO_GNU_OPS syntax bit.
6746 (TOLOWER): New macro.
6747 (regcomp): Use it.
6748 (regexec): Allocate regs.start and regs.end as one block.
6749
5226a931
GM
67502000-08-30 Gerd Moellmann <gerd@gnu.org>
6751
868dd24b
GM
6752 * xdisp.c (echo_area_display): Check display_completed instead
6753 of calling detect_input_pending.
6754
6755 * dispnew.c (update_frame): Only set display_completed here; move
6756 the update_begin and update_end calls here from update_frame_1.
6757 (update_frame_1): Don't set display_completed here, don't call
6758 update_begin/update_end.
6759
5226a931
GM
6760 * xfaces.c (set_font_frame_param): Use Fmodify_frame_parameters
6761 instead of store_frame_param.
6762
2a8bd25f
GM
67632000-08-29 Gerd Moellmann <gerd@gnu.org>
6764
6765 * dispnew.c (build_frame_matrix_from_leaf_window): If a row of a
6766 desired window matrix hasn't been displayed, use the current row
6767 instead. Make sure that only those frame rows are updated for
6768 which there exists a corresponding enabled desired row.
52283633 6769
ba3478d9
MB
67702000-08-29 Miles Bader <miles@gnu.org>
6771
6772 * xfaces.c (default_face_vector): New function.
6773 (Finternal_merge_in_global_face): Use it instead of merge_face_vectors.
6774
87d0f685
GM
67752000-08-29 Gerd Moellmann <gerd@gnu.org>
6776
6777 * lread.c (openp): Prevent temporary string passed to
6778 Ffile_readable_p from being garbage collected.
6779
6fa86045
DL
67802000-08-28 Dave Love <fx@gnu.org>
6781
6782 * keymap.c (store_in_keymap): Add `static' to declaration.
6783
bb17930d
GM
67842000-08-28 Gerd Moellmann <gerd@gnu.org>
6785
6786 * emacs.c, callint.c, doc.c, editfns.c
6787 (toplevel) [HAVE_STRING_H]: Include string.h.
6788 (toplevel) [HAVE_STRINGS_H]: Include strings.h.
6789 (index): Remove prototypes which might conflict with non-standard
6790 definitions of index/strchr.
6791
6792 * s/usg5-3.h (index): Define only if not HAVE_INDEX.
6793 (rindex): Define only if !HAVE_RINDEX.
6794
6795 * s/sco5.h (bcopy, bzero, bcmp): Don't define.
6796
6797 * config.in (HAVE_INDEX, HAVE_RINDEX, HAVE_STRINGS_H): Add undefs.
6798
87188200
MB
67992000-08-28 Miles Bader <miles@gnu.org>
6800
6801 * xfaces.c (merge_face_vectors): Clear TO's :font attribute if
6802 made inconsistent by a font-related attribute in FROM.
6803 (merge_face_inheritance): Add function comment.
6804
41a68aef
KH
68052000-08-28 Kenichi Handa <handa@etl.go.jp>
6806
6807 * keyboard.c (read_char_minibuf_menu_prompt): Call read_char with
6808 the 4th arg (PREV_EVENT) Qt to suppress input method.
6809
f7c436c1
SM
68102000-08-27 Stefan Monnier <monnier@cs.yale.edu>
6811
0b32bf0e
SM
6812 * regex.c: Indent cpp directives and remove parens after `defined'.
6813 (PTR_TO_OFFSET, POS_AS_IN_BUFFER): Move to a better place.
6814 (ISDIGIT, ISCNTRL, ISXDIGIT) [!emacs]: Remove duplicate definition.
6815 (regex_compile): Use RE_FRUGAL instead of RE_ALL_GREEDY.
6816 (re_compile_pattern): Use size_t for length.
6817 (init_syntax_once): Move to a better place.
6818 * regex.h: Merge changes from GNU libc. Indent cpp directives.
6819 (RE_FRUGAL): Replaces RE_ALL_GREEDY (inverted meaning).
6820
f7c436c1
SM
6821 * syntax.c (back_comment): Detect cases where a comment-starter is
6822 actually inside another comment as in: /* a // b */ c // d \n.
6823 Make it clear that `comstart_pos' is unused for nested comments.
6824
6825 * keymap.c (store_in_keymap, fix_submap_inheritance): New prototypes.
6826 (KEYMAPP): New macro.
6827 (Fkeymap_parent, Fset_keymap_parent): Use it.
6828 (fix_submap_inheritance): Mark it static.
6829 (define_as_prefix, describe_buffer_bindings, describe_command)
6830 (describe_translation, describe_map): Complete prototypes.
6831
6832 * lisp.h (store_in_keymap, fix_submap_inheritance): Remove.
6833
6834 * keyboard.c (menu_bar_item): Detect duplicate entries for all items
6835 to better match the key-lookup behavior.
6836
6288c62f
GM
68372000-08-27 Gerd Moellmann <gerd@gnu.org>
6838
6839 * xfaces.c (lface_fully_specified_p): Handle :inherit.
6840 (Finternal_set_lisp_face_attribute): Fix typo in error message.
6841
e931344e
EZ
68422000-08-27 Eli Zaretskii <eliz@is.elta.co.il>
6843
6844 * Makefile.in (dispnew.o, indent.o, fontset.o, minibuf.o)
6845 (process.o, scroll.o, sysdep.o): Depend on keyboard.h.
6846 (xterm.o): Depend on coding.h
6847
d10dfeef
KH
68482000-08-26 Kenichi Handa <handa@etl.go.jp>
6849
6850 * cmds.c (internal_self_insert): Delete '#ifdef HAVE_FACES' and
6851 the corresponding '#endif'.
6852
2d73e8d3
MB
68532000-08-26 Miles Bader <miles@gnu.org>
6854
6855 * dispextern.h (enum lface_attribute_index): Add LFACE_INHERIT_INDEX.
6856 * xfaces.c (QCinherit): New variable.
6857 (syms_of_xfaces): Initialize it.
6858 (LFACE_INHERIT): New macro.
6859 (Finternal_get_lisp_face_attribute)
52283633 6860 (merge_face_vector_with_property)
2d73e8d3
MB
6861 (Finternal_set_lisp_face_attribute): Deal with :inherit attribute.
6862 (check_lface_attrs): Allow new types of face height. Check
6863 inherit attribute.
6864 (CYCLE_CHECK): New macro.
6865 (merge_face_inheritance): New function.
6866 (merge_face_vectors): Merge inherited faces too. Add F and
6867 CYCLE_CHECK arguments.
6868 (merge_face_vector_with_property, Finternal_merge_in_global_face)
6869 (lookup_named_face, lookup_derived_face, realize_named_face)
6870 (face_at_string_position, face_at_buffer_position): Supply
6871 new F and CYCLE_CHECK arguments to merge_face_vectors.
6872 (merge_face_heights): New function.
52283633 6873 (merge_face_vectors, merge_face_vector_with_property)
2d73e8d3
MB
6874 (Finternal_set_lisp_face_attribute): Call merge_face_heights to
6875 handle relative face heights.
6876 (lface_same_font_attributes_p): Compare heights using EQ.
6877
6ce974d4
KH
68782000-08-26 Kenichi Handa <handa@etl.go.jp>
6879
6880 * charset.c (char_to_string): Check the character validity.
52283633 6881 (char_valid_p): If C is not less than MAX_CHAR, be sure to return 0.
6ce974d4 6882
dc1e502d
SM
68832000-08-25 Stefan Monnier <monnier@cs.yale.edu>
6884
6885 * regex.c (PUSH_FAILURE_COUNT): New macro.
6886 (POP_FAILURE_REG_OR_COUNT): Renamed from POP_FAILURE_REG.
6887 Handle popping of a register's or a counter's data.
6888 (POP_FAILURE_POINT): Use the new name.
6889 (re_match_2_internal): Push counter data on the stack for succeed_n,
6890 jump_n and set_number_at and remove misleading dead code in succeed_n.
6891
bd9d0f3f
GM
68922000-08-25 Gerd Moellmann <gerd@gnu.org>
6893
6894 * xdisp.c (redisplay_internal): If considering all windows on all
6895 frames, update the display for each frame as soon as possible,
6896 instead of first building all desired matrices for all frames, and
6897 then updating them all.
6898 (try_cursor_movement): Handle case that last_cursor.vpos is -1.
6899
aa5b8e15
GM
69002000-08-24 Gerd Moellmann <gerd@gnu.org>
6901
17494071
GM
6902 * bytecode.c (mark_byte_stack): Add a comment.
6903
52283633
SM
6904 * frame.h (FRAME_FLAGS_AREA_COLS, FRAME_FLAGS_AREA_WIDTH)
6905 (FRAME_LEFT_FLAGS_AREA_WIDTH): Return 0 unless frame is
aa5b8e15
GM
6906 a graphical frame.
6907
c543db81
KH
69082000-08-24 Kenichi Handa <handa@etl.go.jp>
6909
d246d5f5
KH
6910 * minibuf.c (do_completion): Always use compare-string, not
6911 string-equal because the latter doesn't pay attention to
6912 multibyteness of strings.
6913
c543db81
KH
6914 * process.c (create_process): Don't setup raw-text coding here.
6915 (Fopen_network_stream): Don't set coding->src_multibyte and
6916 coding->dst_multibyte here.
6917 (read_process_output): For process filter, return unibyte string
6918 if default-enable-multibyte-characters is nil.
6919 (send_process): If OBJECT is multibyte text, be sure to encoded it
6920 by the specified coding system for the process. Otherwise, setup
6921 raw-text coding.
52283633 6922 (init_process): Don't initialize default-process-coding-system here.
c543db81 6923
9b47cfe0
EZ
69242000-08-23 Eli Zaretskii <eliz@is.elta.co.il>
6925
6926 * buffer.c (syms_of_buffer) <scroll-up-aggressively>: Doc fix.
6927 <scroll-down-aggressively>: Likewise.
6928
f5a36960
KH
69292000-08-23 Kenichi Handa <handa@etl.go.jp>
6930
6931 * coding.c (encode_eol): Fix bug for the case of dst_bytes being
6932 zero. Set coding->produced_char correctly.
6933
69a7ffa7
AI
69342000-08-22 Andrew Innes <andrewi@gnu.org>
6935
6936 * makefile.w32-in: New file.
6937
6938 * unexw32.c (unexec): Ignore old_name, and use the actual location
6939 of the current executable instead. Base new_name on this.
6940
6941 * w32proc.c (create_child): Remove reference to security
6942 descriptor, which isn't needed and doesn't compile with mingw32.
6943
6944 * w32term.c [USE_CRT_DLL]: Remove unnecessary extern, which screws
6945 up dllimport attributes.
6946 (x_update_window_end): Update prototype.
6947
6948 * unexec.c (write_segment) [USE_CRT_DLL]: Remove unnecessary
6949 extern, which screws up dllimport attributes.
6950
6951 * sysdep.c [USE_CRT_DLL]: Remove unnecessary extern, which screws
6952 up dllimport attributes.
6953
6954 * strftime.c [USE_CRT_DLL]: Remove unnecessary extern, which
6955 screws up dllimport attributes.
6956
6957 * process.c [USE_CRT_DLL]: Remove unnecessary extern, which screws
6958 up dllimport attributes.
6959 (create_process) [USE_CRT_DLL]: Remove unnecessary extern, which
6960 screws up dllimport attributes.
6961
6962 * lread.c [USE_CRT_DLL]: Remove unnecessary extern, which screws
6963 up dllimport attributes.
6964
6965 * keyboard.c [USE_CRT_DLL]: Remove unnecessary extern, which
6966 screws up dllimport attributes.
6967
6968 * floatfns.c [USE_CRT_DLL]: Remove unnecessary extern, which
6969 screws up dllimport attributes.
6970
6971 * fileio.c [USE_CRT_DLL]: Remove unnecessary extern, which screws
6972 up dllimport attributes.
6973
6974 * emacs.c (malloc_initialize_hook) [USE_CRT_DLL]: Remove
6975 unnecessary extern, which screws up dllimport attributes.
6976 (main): Ditto.
6977
6978 * editfns.c [USE_CRT_DLL]: Remove unnecessary extern, which screws
6979 up dllimport attributes.
6980
6981 * dispnew.c (window_change_signal) [USE_CRT_DLL]: Remove
6982 unnecessary extern, which screws up dllimport attributes.
6983
6984 * callproc.c [USE_CRT_DLL]: Remove unnecessary extern, which
6985 screws up dllimport attributes.
6986
6987 * buffer.c [USE_CRT_DLL]: Remove unnecessary extern, which screws
6988 up dllimport attributes.
6989
6990 * w32proc.c (IsValidLocale): Extern missing from mingw32 headers.
6991
52283633
SM
6992 * w32bdf.c (search_file_line):
6993 (set_bdf_font_info):
6994 (seek_char):
6995 (w32_get_bdf_glyph):
69a7ffa7
AI
6996 (w32_BDF_to_x_font): Fix compile warnings.
6997
52283633 6998 * w32menu.c: Include keyboard.h before frame.h. Fix compile warnings.
69a7ffa7
AI
6999
7000 * w32select.c: Include keyboard.h before frame.h.
7001
7002 * w32fns.c (max): Define macro.
7003 (JOHAB_CHARSET): Define if not known.
7004 (MOD_ALT, MOD_CONTROL, MOD_SHIFT, MOD_WIN): Define if not known.
7005 (Fx_show_tip): Synch with X version.
7006
7007 * w32xfns.c: Include keyboard.h before frame.h.
7008
7009 * w32fns.c: Include keyboard.h before frame.h.
7010
7011 * w32term.c: Include keyboard.h before frame.h.
7012
7013 * fontset.c: Include keyboard.h before frame.h.
7014
7015 * w32inevt.c: Include keyboard.h before frame.h.
7016 (MOUSE_MOVED): Define if not known.
7017
7018 * minibuf.c: Include keyboard.h before frame.h.
7019
7020 * keyboard.c: Include keyboard.h before frame.h.
7021
7022 * indent.c: Include keyboard.h before frame.h.
7023
7024 * dispnew.c: Include keyboard.h before frame.h.
7025
7026 * buffer.c: Include keyboard.h before frame.h.
7027
7028 * alloc.c: Include keyboard.h before frame.h.
7029
7030 * print.c: Include keyboard.h before frame.h.
7031
7032 * process.c: Include keyboard.h before frame.h.
7033
7034 * scroll.c: Include keyboard.h before frame.h.
7035
7036 * sysdep.c: Include keyboard.h before frame.h.
7037
7038 * term.c: Include keyboard.h before frame.h.
7039
7040 * window.c: Include keyboard.h before frame.h.
7041
7042 * xdisp.c: Include keyboard.h before frame.h.
7043 Separate GLYPH_DEBUG and DEBUG_TRACE_MOVE.
7044
7045 * frame.c: Include keyboard.h before frame.h.
7046
7047 * w32heap.h: Undefine min, max.
7048
7049 * w32gui.h: Undefine min, max.
7050
7051 * unexw32.c: Change PUCHAR to PCHAR.
7052 (PTR_TO_OFFSET): Cast ptr to unsigned char *.
52283633
SM
7053 (relocate_offset):
7054 (get_section_info):
69a7ffa7
AI
7055 (copy_executable_and_dump_data): Remove unnecessary static defs.
7056 (copy_executable_and_dump_data): Fix compile warnings.
7057
7058 * sysdep.c (NULL) [WINDOWSNT]: Define NULL if not defined.
7059
7060 * w32console.c (min): Define macro.
7061 (clear_frame, write_glyphs): Fix compile warning.
7062
52283633 7063 * w32proc.c (compare_env):
69a7ffa7
AI
7064 (find_child_console): Fix compile warning.
7065
7066 * w32.c (sys_strerror): Use sys_nerr instead of _sys_nerr. Use
7067 sys_errlist instead of _sys_errlist.
7068 (get_emacs_configuration_options): New function.
7069
7070 * s/ms-w32.h (sys_nerr): Provide default definition.
7071 (strdup, strupr, strnicmp, stricmp, tzset, tzname): Map to same
7072 name with _ prepended.
7073 (NSIG): Define if not known.
7074 (get_emacs_configuration): Provide extern declaration.
7075 (get_emacs_configuration_options): Provide extern declaration.
7076 (EMACS_CONFIG_OPTIONS): Call get_emacs_configuration_options.
7077
7078 * w32.c (gettimeofday): Use struct timeb, not struct _timeb.
52283633 7079 (map_w32_filename):
69a7ffa7
AI
7080 (read_unc_volume): Fix compile warning.
7081
7082 * s/ms-w32.h (_WINSOCK_H): Define to prevent normal winsock
7083 definitions from being used.
7084
7085 * lisp.h [WINDOWSNT]: Don't declare externs for getenv, ctime and getwd.
7086
52283633 7087 * w32.c (unc_volume_file_attributes):
69a7ffa7
AI
7088 (open_unc_volume): Make arg const.
7089
7090 * sysdep.c [WINDOWSNT]: Remove extern decl of errno.
7091 (read_input_waiting): Remove excess parameter.
7092
7093 * w32.c (init_environment): Call _access.
7094 (check_windows_init_file): Call _close.
7095 (init_user_info): Call _putenv.
7096 (init_environment): Call _putenv and _strdup.
7097 (init_ntproc): Reset volume info cache on startup.
7098
7099 * s/ms-w32.h (malloc, free, realloc, calloc): Rename if
7100 USE_CRT_DLL is defined, so Emacs can use GNU malloc even though it
7101 cannot override the CRT malloc.
7102
7103 * makefile.nt (LOCAL_FLAGS): Define USE_CRT_DLL if requested.
7104 (LINK_FLAGS): Append to original value of LINK_FLAGS.
7105
7106 * w32heap.c [!USE_CRT_DLL]: Don't define _heap_init and _heap_term
7107 unless we are linking with a static CRT.
7108 (RVA_TO_PTR): Cast result to unsigned char*.
7109
7110 * w32.c (GetCachedVolumeInformation): Use xmalloc, xfree and xstrdup.
7111 (add_volume_info): Use xstrdup.
7112
25060080
SM
71132000-08-22 Stefan Monnier <monnier@cs.yale.edu>
7114
7115 * minibuf.c (Vcompletion_auto_help): Renamed from `auto_help'.
7116 (do_completion, Fminibuffer_complete_word): Use it.
7117 (syms_of_minibuf): Turn completion-auto-help into a proper Lisp
7118 var so it can take non-boolean values.
7119
6917e6bb
GM
71202000-08-21 Gerd Moellmann <gerd@gnu.org>
7121
acb7cc89 7122 * editfns.c (find_field): Formatting changes.
52283633 7123 (toplevel): Some old-style function forward declarations
acb7cc89
GM
7124 changed to prototypes, some new protypes added, some functions
7125 made static.
7126
7127 * lisp.h (set_time_zone_rule): Add prototype.
7128 (use_dialog_box): External declaration.
7129
0bbfdc25
GM
7130 * keyboard.c (gen_help_event): Add parameter SIZE.
7131 (kbd_buffer_events_waiting): Slightly rewritten.
7132 (clear_event): New function.
7133 (kbd_buffer_get_event): Use it, and clear the input_events of
7134 HELP_EVENTs.
7135 (init_keyboard): Remove duplicate creation of kbd_buffer_gcpro and
7136 don't fill the newly created array with nils.
7137 (toplevel): Convert some old-style function forward declarations
7138 to prototypes.
7139
7140 * keyboard.h (gen_help_event): Change prototype.
7141
7142 * xterm.c (XTread_socket): Change calls to gen_help_event.
7143
7144 * w32term.c (w32_read_socket): Change calls to gen_help_event.
7145
6917e6bb
GM
7146 * eval.c (Fmacroexpand): Doc fix.
7147
e5cd3d11
JR
71482000-08-20 Jason Rumney <jasonr@gnu.org>
7149
7150 * w32term.h (x_display_info_for_display): Remove as this function
7151 does not exist on W32.
7152
7153 * w32term.c (help_echo_window): New variable.
7154 (syms_of_w32term): staticpro it.
7155 (note_mode_line_highlight): Set it.
7156 (XTextExtents16): Removed as there is no equivalent on W32.
7157 (x_compute_glyph_string_overhangs): Incomplete body removed, as
7158 the X way of doing this will not work for W32.
7159 (w32_intersect_rectangles): Removed. Use IntersectRect API call.
7160 (x_draw_image_foreground): Avoid drawing outside of the clip area
7161 when image doesn't have a mask.
7162 (note_mouse_highlight): Process overlays in the right order of
7163 priority. Set help_echo_window.
7164 (x_draw_bar_cursor): If cursor is on an image, draw a box cursor
7165 because that's more visible for large images.
7166
7167 * w32menu.c (keymap_panes): Pass the keymap's prompt as the pane
7168 name to single_keymap_panes.
7169 (w32_menu_show): Set wv->title when dealing with titles.
7170 (w32_menu_display_help): Call show_help_echo with OBJECT and POS.
7171
6e69ab8c
MB
71722000-08-21 Miles Bader <miles@gnu.org>
7173
7174 * minibuf.c (do_completion): Try again if we rewrite the input
7175 string, but no completion was done, so that any completion message
7176 will be correct.
7177
511bd4eb
GM
71782000-08-20 Gerd Moellmann <gerd@gnu.org>
7179
7180 * xfaces.c (lface_equal_p): Compare strings differently.
7181 (Qtty_color_alist, Vtty_defined_color_alist): New variables.
7182 (realize_tty_face): Use them.
7183 (syms_of_xfaces): Initialize new variables.
7184 (map_tty_color): New function, extracted from realize_tty_face.
7185 (map_tty_color) [MSDOS || WINDOWSNT]: If using the frame's default
7186 foreground or background color, store the new color name in the
7187 realized face; previous code trying to do this had no effect.
7188 (realize_tty_face): Use map_tty_color.
7189 (Fclear_face_cache): Set face_change_count and ensure thorough
7190 redisplay.
7191
1433385f
GM
71922000-08-19 Gerd Moellmann <gerd@gnu.org>
7193
511bd4eb
GM
7194 * undo.c (record_first_change, record_marker_adjustment): Don't
7195 use XBUFFER on last_undo_buffer which might not be a buffer.
1433385f 7196
419ac0a2
KH
71972000-08-18 Kenichi Handa <handa@etl.go.jp>
7198
7199 * coding.c (decode_coding_string): Set members consumed,
7200 consumed_char, produced, produced_char of *coding correctly. If
7201 decode_coding doesn't consume any byte, don't try anymore.
7202 (encode_coding_string): Likewise.
7203
7eb9e30d
GM
72042000-08-18 Gerd Moellmann <gerd@gnu.org>
7205
511bd4eb
GM
7206 * lisp.h (CHECK) [ENABLE_CHECKING]: Make both sides of the
7207 conditional have void type, for Standard C compilers.
7eb9e30d
GM
7208
7209 * xdisp.c (redisplay_internal): Compare windows for equality with
7210 EQ, instead of applying XWINDOW to something that might not
7211 be a window.
52283633 7212
dd34a735
KH
72132000-08-18 Kenichi Handa <handa@etl.go.jp>
7214
7215 * fontset.c (Finternal_char_font): Search only the selected frame
7216 for a window of the current buffer.
7217
385ff9e3
GM
72182000-08-18 Gerd Moellmann <gerd@gnu.org>
7219
511bd4eb 7220 * minibuf.c (do_completion): Use EQ instead of `!=' to compare
01cce3e7
GM
7221 Lisp_Objects.
7222
385ff9e3
GM
7223 * keyboard.c (kbd_buffer_get_event): Handle the case that the
7224 second half of a HELP_EVENT is found at the start of kbd_buffer.
7225
d6abb4c7
MB
72262000-08-18 Miles Bader <miles@gnu.org>
7227
4618074a
MB
7228 * lisp.h (Lisp_String): Replace DECLARE_INTERVALS with real decl.
7229
d6abb4c7
MB
7230 * editfns.c (save_restriction_save): Rewrite to use markers.
7231 (save_restriction_restore): Rewrite to understand new form of data
7232 saved by save_restriction_save.
7233 (Fsave_restriction): Remove cautionary note in doc-string.
7234
a7b28523
GM
72352000-08-17 Gerd Moellmann <gerd@gnu.org>
7236
7237 * fileio.c (build_annotations): Add a comment explaining the
7238 return value of format-annotate-function. Replace a spurious call
7239 to Flength with a CONSP test. Call format-annotate-function with
7240 a fifth arg specifying how many times the function is been called
7241 in a row, to let it choose temporary buffers appropriately.
7242
03c9ed77
DL
72432000-08-17 Dave Love <fx@gnu.org>
7244
7245 * lisp.h: Remove DECLARE_INTERVALS, INITIALIZE_INTERVAL. Don't
7246 declare make_temp_name twice.
7247
52283633 7248 * lread.c: Prototype readevalloop, load_unwind, load_descriptor_unwind.
03c9ed77
DL
7249 (unreadpure): Give it an arg.
7250
7251 * unexalpha.c: Prototype fatal_unexec, mark_x,
7252 update_dynamic_symbols. Declare unexec as void.
7253
7254 * cm.c [HAVE_TERMCAP_H]: Include <termcap.h>.
7255 [!HAVE_TERMCAP_H]: Prototype tputs, tgoto.
7256
7257 * alloc.c (lisp_malloc): Declare with POINTER_TYPE.
52283633 7258 [SYSTEM_MALLOC]: Make decls in malloc.h conditional on DOUG_LEA_MALLOC.
03c9ed77
DL
7259
7260 * alloca.c: Use #error.
7261 [POINTER_TYPE]: Use it.
7262
7263 * eval.c (Fdefvar): Doc fix.
7264
7265 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Avoid
7266 INITIALIZE_INTERVAL.
7267
7268 * buffer.h: Avoid DECLARE_INTERVALS.
7269
7270 * config.in: Add size_t.
7271
aae41d97
EZ
72722000-08-17 Eli Zaretskii <eliz@is.elta.co.il>
7273
7274 * w16select.c (set_clipboard_data): If there's not enough memory
7275 to put text into clipboard, return 1, as Fw16_set_clipboard_data
7276 expects. In case of other failures, return 3.
7277 (system_error_msg): New error message.
7278 (Fw16_set_clipboard_data): If set_clipboard_data returns 3, print
7279 system_error_msg.
7280
65aa5e85
GM
72812000-08-16 Gerd Moellmann <gerd@gnu.org>
7282
7283 * term.c (write_glyphs): Also turn off inverse video after turning
7284 off other appearances in case TS_exit_attribute_mode is not equal
7285 to TS_end_standout_mode.
7286 (insert_glyphs): Turn inverse video on/off for each run of glyphs
7287 with the same face.
7288 (turn_off_face): Reset standout_mode only if
7289 TS_exit_attribute_mode has been output and TS_exit_attribute_mode
7290 is equal to TS_end_standout_mode.
7291
ece23901
KH
72922000-08-16 Kenichi Handa <handa@etl.go.jp>
7293
9d7bcb2e
KH
7294 * coding.c (encode_coding): Fix the bug of not flushing ISO escape
7295 sequence at the end of the source block.
7296
ece23901
KH
7297 * ccl.c (Fccl_program_p): Docstring modified.
7298 (Fccl_execute): Likewise.
7299 (Fccl_execute_on_string): Likewise.
7300
5e30eaa2
EZ
73012000-08-16 Eli Zaretskii <eliz@is.elta.co.il>
7302
7303 * msdos.c (IT_write_glyphs): Convert cbp to unsigned char *.
7304
290602fd
KH
73052000-08-16 Kenichi Handa <handa@etl.go.jp>
7306
7307 The following changes are mainly to fix bugs of
7308 encode/decode-coding-string failing if encoding/decoding return
7309 CODING_FINISH_INSUFFICIENT_DST. In addition, delete the global
7310 variable conversion_buffer.
7311
7312 * ccl.c (CCL_WRITE_CHAR): If CH is eight-bit-control char,
7313 decrement dst_end to avoid buffer overflow in the later call of
7314 string_as_multibyte
7315
7316 * coding.h (conversion_buffer_size, conversion_buffer)
7317 (get_conversion_buffer): Extern deleted.
7318
7319 * coding.c (MINIMUM_CONVERSION_BUFFER_SIZE): Macro deleted.
7320 (conversion_buffer, conversion_buffer_size): Variables deleted.
7321 (get_conversion_buffer): Function deleted.
7322 (struct conversion_buffer): New structure.
7323 (MAX_ALLOCA): New macro.
7324 (allocate_conversion_buffer): New macro.
7325 (extend_conversion_buffer, free_conversion_buffer): New functions.
7326 (ccl_coding_driver): Set coding->result.
7327 (decode_coding): Set coding->result to CODING_FINISH_NORMAL if
7328 this is the last block of source.
7329 (encode_coding): Likewise. Handle the source block as the last
7330 one only when the whole source text is consumed.
7331 (decode_coding_string): Handle the case that the output buffer is
7332 too small to decode the whole source text. Use
7333 allocate_conversion_buffer, extend_conversion_buffer and
7334 free_conversion_buffer, not get_conversion_buffer.
7335 (encode_coding_string): Likewise.
7336 (init_coding): Function deleted.
52283633 7337 (init_coding_once): Delete code to initialize conversion_buffer_size.
290602fd
KH
7338
7339 * emacs.c (main): Don't call init_coding.
7340
52283633 7341 * msdos.c (IT_write_glyphs): Use a locally declared conversion_buffer.
290602fd
KH
7342
7343 * term.c (write_glyphs): Use a locally declared conversion_buffer.
7344 (insert_glyphs): Likewise.
7345
7346 * w32console.c (write_glyphs): Use a locally declared
7347 conversion_buffer.
7348
b9f80d41
EZ
73492000-08-15 Eli Zaretskii <eliz@is.elta.co.il>
7350
7351 * msdos.c (IT_update_begin): Don't crash if mouse_face_mouse_frame
7352 member of display_info is NULL.
7353
32dc52f7
GM
73542000-08-15 Gerd Moellmann <gerd@gnu.org>
7355
52283633 7356 * alloc.c (compact_small_strings): Use safe_bcopy, add an assertion.
58ed0d3b 7357
32dc52f7 7358 * term.c (turn_off_face): Reset standout_mode when resetting
58ed0d3b 7359 appearances with capability `me'.
32dc52f7
GM
7360 (write_glyphs): Switch on inverse video before each face change.
7361
4eb22d33
DL
73622000-08-14 Dave Love <fx@gnu.org>
7363
7364 * alloc.c [HAVE_UNISTD_H]: Include unistd.h; don't declare sbrk.
7365 [!HAVE_UNISTD_H]: Use POINTER_TYPE to declare sbrk.
7366 (lisp_free): Declare and make static.
7367
7368 * window.c: Fix embedded comment.
7369 (syms_of_window): Fix doc string.
7370
90cbf47e
GM
73712000-08-14 Gerd Moellmann <gerd@gnu.org>
7372
52283633 7373 * keymap.c (push_key_description): If C without modifiers is < 32,
90cbf47e
GM
7374 make sure to print `C-' before `M-', like in the manual.
7375
440fc135
GM
73762000-08-11 Gerd Moellmann <gerd@gnu.org>
7377
7378 * fns.c (hashfn_eq, hashfn_eql): Don't handle strings specially
7379 since they aren't relocated anymore.
52283633 7380 (sxhash_string): Make sure returned hash code fits in a Lisp integer.
440fc135
GM
7381
7382 * xdisp.c (try_cursor_movement): Fix handling of cursor in
52283633 7383 partially visible line which is smaller than the window's height.
440fc135 7384
6e264fad
KH
73852000-08-11 Kenichi Handa <handa@etl.go.jp>
7386
7387 * ccl.c (CCL_READ_CHAR): If source is multibyte, pay attention to
52283633 7388 the multibyte form of eight-bit-control characters.
6e264fad
KH
7389 (Fccl_execute_on_string): Initialize ccl->multibyte.
7390
7391 * ccl.h (struct ccl_program): New member multibyte.
7392
7393 * coding.c (ccl_coding_driver): Initialize ccl->multibyte.
7394
c371f69a
KH
73952000-08-11 Kenichi Handa <handa@etl.go.jp>
7396
7397 * regex.c (regex_compile) <normal_char>: Pay attention to
7398 multibyteness.
7399 (analyse_first) <exactn>: Setup fastmap correctly for
7400 eight-bit-control characters.
7401
74022000-08-11 Kenichi Handa <handa@etl.go.jp>
7403
52283633 7404 * termhooks.h (enum event_kind): New member multibyte_char_keystroke.
c371f69a
KH
7405
7406 * keyboard.c (make_lispy_event): Handle the new event type
7407 multibyte_char_keystroke.
7408
7409 * xterm.c: Include coding.h.
7410 (XTread_socket): Work around a bug of XmbLookupString. If the
7411 input is from XIM, decode it according to the current locale. In
7412 that case, generate multibyte_char_keystroke events.
7413
b8ddbe71
KH
74142000-08-11 Kenichi Handa <handa@etl.go.jp>
7415
7416 * xdisp.c (TRACE_MOVE) [GLYPH_DEBUG]: Delete the last semicolon.
7417 (TRACE_MOVE) [not GLYPH_DEBUG]: Define dummy.
7418
47589c8c
GM
74192000-08-10 Gerd Moellmann <gerd@gnu.org>
7420
7421 * xdisp.c (trace_move) [GLYPH_DEBUG]: New variable.
7422 (TRACE_MOVE) [GLYPH_DEBUG]: New macro.
7423 (move_it_in_display_line_to): Record iterator's ascent and descent
7424 before producing glyphs, and restore them when we know the glyph
7425 doesn't fit on the line.
7426 (move_it_to): Restructured so that it's easier to debug. If
7427 moving to a vpos, and not moving to an x or character position,
7428 stop as soon as the specified vpos is reached; don't move further
7429 into that line because that might change the computed line height.
7430 (try_cursor_movement): New function, extracted from the cursor
7431 movement branch of redisplay_window. If ending on a partially
7432 visible line, don't try to scroll if the cursor line is taller
7433 than the window.
7434 (redisplay_window): Use try_cursor_movement.
7435
7436 * window.c (Fwindow_end): Rewritten to not use Fvertical_motion,
7437 because that function doesn't cope with variable-height lines.
7438
7439 * xterm.c (x_draw_bar_cursor): If cursor is on an image, draw a
7440 box cursor because that's better visible for large images.
52283633 7441
c51bacd6
MB
74422000-08-10 Miles Bader <miles@gnu.org>
7443
7444 * w32term.c (note_mouse_highlight): Update calls to overlays_at.
7445
bea56df7
GM
74462000-08-10 Gerd Moellmann <gerd@gnu.org>
7447
7448 * xdisp.c (Vmessages_buffer_name): New variable.
7449 (message_dolog): Use it.
7450 (syms_of_xdisp): Initialize it.
7451
99cd7364
EZ
74522000-08-10 Eli Zaretskii <eliz@is.elta.co.il>
7453
52283633 7454 * msdos.c (IT_note_mouse_highlight): Update the calls to overlays_at.
99cd7364
EZ
7455 (toplevel) <kbd_buffer_store_event>: Remove prototype, it's
7456 redundant now that keyboard.h is included.
7457
7d093d56
EZ
74582000-08-09 Eli Zaretskii <eliz@is.elta.co.il>
7459
7460 * keyboard.c (kbd_buffer_events_waiting): New function.
7461
7462 * keyboard.h (kbd_buffer_events_waiting): Add prototype.
7463
7464 * msdos.c: Include keyboard.h.
7465 (XMenuActivate): Empty no_event events from the event buffer. If
7466 no events are left after that, call clear_input_pending.
7467 (mouse_clear_clicks): New function, code moved from mouse_init.
7468 (mouse_init, XMenuActivate): Call mouse_clear_clicks to force the
7469 mouse driver to ``forget'' any past clicks.
7470
7471 * Makefile.in (msdos.o): Depend on keyboard.h.
7472
41e757a6
GM
74732000-08-09 Gerd Moellmann <gerd@gnu.org>
7474
8e7bd231
GM
7475 * lisp.h (input_pending): External declaration.
7476
7477 * dispextern.h (Qredisplay_dont_pause): Declare extern.
52283633 7478
8e7bd231
GM
7479 * xdisp.c (echo_area_display): Display thoroughly if input is
7480 pending. Bind redisplay-dont-pause to t during the redisplay.
7481 in case input is pending.
7482
7483 * dispnew.c (Qredisplay_dont_pause): New variable.
7484 (syms_of_display): Initialize and staticpro it.
7485 (update_frame_1): Don't interrupt the display for pending input if
7486 redisplay_dont_pause is set.
52283633 7487
43028b7e
GM
7488 * dispnew.c (mode_line_string): Declare parameter MODE_LINE_P.
7489
41e757a6
GM
7490 * xfaces.c (Ftty_suppress_bold_inverse_default_colors): Doc fix.
7491
2f2174fa
KH
74922000-08-09 Miles Bader <miles@lsi.nec.co.jp>
7493
7494 * callproc.c (Fcall_process): Terminate the unwind-protect around
7495 the post-read-conversion of coding system.
7496
0a6fd67e
MB
7497 * buffer.c (overlays_at): Add CHANGE_REQ parameter.
7498 (Foverlays_at, Fnext_overlay_change, Fprevious_overlay_change): Use it.
7499 * buffer.h (overlays_at): Update prototype.
7500 * xdisp.c (next_overlay_change): Update call to overlays_at.
7501 * xfaces.c (face_at_buffer_position): Likewise.
7502 * textprop.c (Fget_char_property): Likewise.
7503 * xterm.c (note_mouse_highlight): Likewise.
7504
0c80756e
MB
7505 * minibuf.c (do_completion): Don't consider a simple change of
7506 case as `completion'.
7507
975f250a
KR
75082000-08-08 Ken Raeburn <raeburn@gnu.org>
7509
52283633 7510 * keyboard.c (syms_of_keyboard): Initialize last_point_position_buffer.
b347b3fd
KR
7511 * undo.c (record_delete): Make sure last_point_position_buffer is
7512 a buffer before comparing pointers.
7513
7514 * coding.h (decode_coding_string): Declare.
7515
7516 * intervals.h (Fprevious_single_char_property_change): Declare.
7517
7518 * textprop.c (Fprevious_single_char_property_change): Don't do
7519 arithmetic directly on lisp objects.
7520
52283633 7521 * editfns.c (find_field): Use EQ, not ==, to compare Lisp objects.
b347b3fd
KR
7522
7523 * keyboard.h (menu_item_eval_property): Declare.
7524
7525 * xdisp.c (message_dolog): Save and protect string "*Messages*" to
7526 reuse as buffer name, instead of recreating (and discarding) every
7527 time a message is logged.
7528 (with_echo_area_buffer): Make callback arg A2 a lisp object.
25ad1371
GM
7529 (current_message_1, truncate_message_1, set_message_1)
7530 (display_echo_area_1, resize_mini_window_1): Signatures changed.
7531 (current_message, truncate_echo_area, display_echo_area)
7532 (resize_echo_area_axactly): Changed calls.
b347b3fd 7533
975f250a 7534 * coding.c (find_safe_codings): CHAR_TABLE_SET index must be a
25ad1371 7535 Lisp object.
975f250a 7536 (Ffind_coding_systems_region_internal): First argument to Fappend
25ad1371 7537 must be an integer, not a Lisp object.
975f250a 7538
46dc9912
KH
75392000-08-08 Kenichi Handa <handa@etl.go.jp>
7540
7541 * charset.c (Fchar_width): Doc fix.
7542
9f6d1a6c
GM
75432000-08-08 Gerd Moellmann <gerd@gnu.org>
7544
7545 * charset.c (Fstring_width): Doc fix.
7546
ff3d9573
GM
75472000-08-07 Gerd Moellmann <gerd@gnu.org>
7548
41e757a6 7549 * xdisp.c (start_display): When starting display on a continuation
49ad1d99
GM
7550 line, clear ascent and descent members of the iterator structure;
7551 the height of the continued line does not affect the height of the
7552 continuation line.
7553 (make_cursor_line_fully_visible): Do nothing if cursor is on a
7554 line taller than the window.
7555 (redisplay_window) <forced window start>: Handle case that the
7556 middle of the window is not found in any row.
7557 (dump_glyph_row): Show more information.
7558 (compute_line_metrics): Use MATRIX_FIRST_TEXT_ROW to determine the
7559 first text line in a glyph matrix.
7560
7561 * xterm.c (x_draw_image_foreground): Avoid drawing outside
7562 of the clip area when image doesn't have a mask.
7563
70fc58b3
GM
7564 * fns.c (sweep_weak_table): Fix survival conditions for
7565 key-or-value and key-and-value weakness.
7566
7567 * .gdbinit (xhashtable): New command.
7568
ac0e96ee
GM
7569 * fns.c (sweep_weak_hash_tables): Fix the code taking unmarked
7570 tables out of the list of all weak hash tables.
7571
ff3d9573
GM
7572 * xdisp.c (ensure_echo_area_buffers): If a buffer was killed, and
7573 a new buffer is created, make sure echo_area_buffer[] references
7574 the new buffer.
7575
e0d8827b
EZ
75762000-08-07 Eli Zaretskii <eliz@is.elta.co.il>
7577
7578 * msdos.c (Fmsdos_set_mouse_buttons): Add missing backslashes in
7579 the doc string.
7580
c6f35378
KH
75812000-08-07 Kenichi Handa <handa@etl.go.jp>
7582
7583 * syntax.c (skip_chars): Fix previous change. Make the handling
7584 of unibyte string consistent with that of regex search.
7585
1fd4c450
GM
75862000-08-05 Gerd Moellmann <gerd@gnu.org>
7587
e49aa397
GM
7588 * xmenu.c (popup_get_selection): Use xfree instead of free.
7589
7590 * fileio.c (Finsert_file_contents): Use xfree instead of free.
7591
7592 * editfns.c (Ftranspose_regions): Use xfree instead of free.
7593
7594 * callproc.c (child_setup): Use xfree instead of free.
7595
7596 * sysdep.c (opendir, GetTempDirName, run_mac_command): Use xmalloc
7597 instead of malloc.
7598 (run_mac_command, closedir): Use `xfree' instead of `free'.
7599
7600 * keymap.c (current_minor_maps): Use xmalloc instead of malloc.
7601
7602 * eval.c (error): Use xfree instead of free.
7603
1fd4c450
GM
7604 * xfaces.c, xfns.c, w32fns.c: Replace `illegal' with `invalid'.
7605
7606 * fns.c: Replace `illegal' with `invalid'.
e49aa397 7607 (Fmake_hash_table, make_hash_table): Allow table size of 0.
1fd4c450 7608
82d497fc
KH
76092000-08-05 Kenichi Handa <handa@etl.go.jp>
7610
7611 * syntax.c (skip_chars): Fix handling of multibyte<->unibyte
7612 conversion.
7613
59f953a2
NF
76142000-08-04 Noah Friedman <friedman@splode.com>
7615
7616 * fns.c (Fmake_hash_table): Add missing `\n\' to end of line in
7617 docstring.
7618
688351f2
GM
76192000-08-04 Gerd Moellmann <gerd@gnu.org>
7620
7621 * syntax.c (skip_chars): Fix typo in error message.
7622
2dad51cc
AS
76232000-08-04 Andreas Schwab <schwab@suse.de>
7624
7625 * m/ia64.h: Moved from s/ia64.h.
7626
99bb2c60
KH
76272000-08-04 Kenichi Handa <handa@etl.go.jp>
7628
082a1df2
KH
7629 * process.c (read_process_output): Big simplification. Handle
7630 composition and post-read-conversion of coding system correctly.
7631 (send_process): Handle composition correctly.
7632
7633 * callproc.c (Fcall_process): Handle post-read-conversion of
7634 coding system if any.
7635
99bb2c60
KH
7636 * coding.c (decode_coding_iso2022): More strict check for handling
7637 single shifting.
082a1df2
KH
7638 (coding_restore_composition): Pay attention to the case that
7639 cmp_data is not set properly (because of invalid code in the
7640 source text).
7641 (run_pre_post_conversion_on_str): Include text properties in the
7642 resulting string.
7643 (decode_coding_string): Set members of coding correctly.
99bb2c60 7644
f4988be7
GM
76452000-08-03 Gerd Moellmann <gerd@gnu.org>
7646
7647 * s/ia64.h: New file.
7648
7649 * widget.c (set_frame_size, update_wm_hints, EmacsFrameSetValues):
7650 Use NULL instead of 0 at the end of variable argument list of
7651 XtVaGetValues and XtVaSetValues, because 0 fails on systems where
7652 sizeof (int) < sizeof (void *).
7653
7654 * xmenu.c (update_frame_menubar): Use NULL instead of 0 at the end
7655 of variable argument lists of XtVaGetValues and XtVaSetValues.
7656
7657 * xfns.c (Fx_file_dialog): Use NULL instead of 0 at the end of
7658 variable argument lists of XtVaGetValues and XtVaSetValues.
7659
ead53494
GM
76602000-08-02 Gerd Moellmann <gerd@gnu.org>
7661
7662 * alloc.c (lisp_malloc, lisp_free): Use size_t and POINTER_TYPE.
7663 (xrealloc, xmalloc): Use size_t. Some callers adjusted.
7664
7665 * lisp.h (Fsingle_key_description, xmalloc, xrealloc): Change
7666 prototype.
7667
7668 * keyboard.c (read_char_minibuf_menu_prompt): Add new parameter
7669 in call to Fsingle_key_description.
7670
7671 * keymap.c (Fsingle_key_description): Add parameter NO_ANGLES.
7672 Callers changed.
7673
76742000-08-02 Colin Walters <walters@cis.ohio-state.edu>
7675
7676 * window.c (display_buffer_reuse_frames): New variable.
7677 (Fdisplay_buffer): If display_buffer_reuse_frames is set, reuse
7678 frames displaying BUFFER.
52283633 7679 (syms_of_window): Define Lisp variable display-buffer-reuse-frames.
ead53494 7680
10b0f752
MB
76812000-08-01 Miles Bader <miles@gnu.org>
7682
7683 * editfns.c (Fconstrain_to_field): Fix the conditions for deciding
7684 when to constrain NEW_POS (they were pretty screwed up before).
7685
16425c4a
EZ
76862000-07-31 Eli Zaretskii <eliz@is.elta.co.il>
7687
7688 * msdos.c (run_msdos_command): Save and restore the master
7689 environment, for the case that child_setup signals an error.
7690 When mirroring slashes in DOS shell commands, don't fail when
7691 argv[2] has embedded blanks.
da288c14
EZ
7692 (Fmsdos_set_mouse_buttons, mouse_setup_buttons): New functions.
7693 (syms_of_msdos): Defsubr Fmsdos_set_mouse_buttons.
7694 (dos_ttraw): Call mouse_setup_buttons.
16425c4a
EZ
7695
7696 * callproc.c (child_setup) [MSDOS]: malloc pwd_var instead of
7697 using alloca; free it after run_msdos_command returns.
7698
27f73852
DL
76992000-07-27 Dave Love <fx@gnu.org>
7700
52283633
SM
7701 * s/irix6-5.h (IRIX_FORCE_32_BITS, LD_SWITCH_SYSTEM): Don't define.
7702 [_MIPS_SZLONG == 64]: Set up for 64-bit mode -- not currently working.
27f73852
DL
7703
7704 * m/iris4d.h (XUINT, XSET, XUNMARK) [_LP64]: Don't define.
7705
c0261b5e
EZ
77062000-07-27 Eli Zaretskii <eliz@is.elta.co.il>
7707
7708 * editfns.c (lisp_time_argument): Fix last change.
7709
b548072f
GM
77102000-07-27 Gerd Moellmann <gerd@gnu.org>
7711
3ab82477
GM
7712 * fns.c (Fdelete): Make it work on vectors and strings in addition
7713 to lists.
7714
b548072f
GM
7715 * fns.c (Qkey_or_value, Qkey_and_value): New variables.
7716 (syms_of_fns): Initialize new variables.
52283633 7717 (sweep_weak_table): Handle weakness `key-or-value' and `key-and-value'.
b548072f
GM
7718 (Fmake_hash_table): Recognize `key-and-value' and `key-or-value'
7719 weakness, with t meaning the same as `key-and-value'.
7720
91ae8751
KH
77212000-07-27 Kenichi Handa <handa@etl.go.jp>
7722
7723 * coding.h (struct coding_system): Member safe_charset deleted.
7724
7725 * coding.c (Qsafe_charsets): This variable deleted.
52283633
SM
7726 (Qsafe_chars, Vchar_coding_system_table, Qchar_coding_system):
7727 New variables.
91ae8751
KH
7728 (coding_safe_chars): New function.
7729 (CODING_SAFE_CHAR_P): New macro.
7730 (CHARSET_OK): New arg C. Call CODING_SAFE_CHAR_P instead of
52283633 7731 checking safe_charsets member of the coding system. Caller changed.
91ae8751
KH
7732 (detect_coding_iso2022): New local variable safe_chars.
7733 (DECODE_DESIGNATION): Call CODING_SAFE_CHAR_P instead of checking
7734 safe_charsets member of the coding system.
7735 (decode_coding_iso2022): New local variable safe_chars.
7736 (ENCODE_ISO_CHARACTER_DIMENSION1): Don't check unsafe chars here.
7737 (ENCODE_ISO_CHARACTER_DIMENSION2): Likewise.
7738 (ENCODE_ISO_CHARACTER): Arguments changed. Caller changed.
7739 (ENCODE_UNSAFE_CHARACTER): New macro.
7740 (encode_coding_iso2022): New local variable safe_chars. Check
7741 unsafe chars.
7742 (setup_coding_system): Delete the code to initialize
7743 coding->safe_charses
7744 (intersection, find_safe_codings): New functions.
7745 (Ffind_coding_systems_region_internal): New function.
7746 (syms_of_coding): Defsubr it. Initialize Qsafe_chars,
7747 Qsafe_cding_system. Make Vchar_coding_system_table a Lisp
7748 variable and initialize it.
7749
7750 * fns.c (char_table_ref_and_index): New function.
7751
7752 * lisp.h (char_table_ref_and_index): Add prototype.
7753
34a7a267
SS
77542000-07-26 Sam Steingold <sds@gnu.org>
7755
7756 * editfns.c (lisp_time_argument): Added third argument `usec'.
3ab82477 7757 (Ffloat_time): New built-in Lisp function.
34a7a267 7758
a95cb10a
GM
77592000-07-26 Gerd Moellmann <gerd@gnu.org>
7760
3353ef5a
GM
7761 * dispextern.h (GLYPH_FROM_CHAR_GLYPH): Use CHARACTERBITS bits
7762 for the character code.
7763
7764 * config.in (HAVE_SOUND): Define only for FreeBSD, NetBSD and
7765 GNU/Linux.
7766
a95cb10a
GM
7767 * xmenu.c (menu_highlight_callback): Call show_help_echo directly
7768 if called for a popup menu.
7769 (xmenu_show): Store help string in widget values.
7770
b4a12321
DL
77712000-07-26 Dave Love <fx@gnu.org>
7772
7773 * syswait.h: Move some definitions.
7774 (HAVE_SYS_WAIT_H): Undef for HPUX7, Convex.
7775 [!HAVE_SYS_WAIT_H]: Define things unconditionally. More
7776 perspicuous definitions.
7777 (WTERMSIG): Fix bit pattern used.
7778
13f5ad37
KH
77792000-07-26 Kenichi Handa <handa@etl.go.jp>
7780
7781 * print.c (print_object): If vector printing is truncated, print
7782 "..." to indicate it as well as the case of list printing.
7783
070fe99c
GM
77842000-07-25 Gerd Moellmann <gerd@gnu.org>
7785
969065c3
GM
7786 * xdisp.c (next_element_from_display_vector): Improve comments.
7787
7788 * lisp.h (GLYPH_MASK_CHAR, GLYPH_MASK_FACE): Use 19 bits
7789 for the character code, and the rest for the face id as in 20.x.
7790 (FAST_GLYPH_FACE, FAST_MAKE_GLYPH): Changed accordingly.
7791
7792 * window.c (window_display_table): Cleaned up.
7793
070fe99c
GM
7794 * syntax.c (Fforward_word): Add last arg nil in call of
7795 Fconstrain_to_field.
7796
bad77ef7
EZ
77972000-07-25 Eli Zaretskii <eliz@is.elta.co.il>
7798
969065c3 7799 * fileio.c (Frename_file) [DOS_NT]: If the file names are
52283633
SM
7800 identical but for the letter-case, don't call
7801 barf_or_query_if_file_exists.
bad77ef7 7802
c28da489
MB
78032000-07-25 Miles Bader <miles@gnu.org>
7804
7805 * editfns.c (find_field): Honor special `boundary' fields.
7806 (Qboundary): New variables.
7807 (syms_of_editfns): Initialize Qboundary.
7808 (Fconstrain_to_field): Add the INHIBIT-CAPTURE-PROPERTY argument.
7809 Use scan_buffer instead of find_before_next_newline, because it
7810 allows us to detect the boundary case where there's a newline at
7811 the search limit.
7812 * lisp.h (Fconstrain_to_field): Update external declaration.
7813
e3c31fd5
GM
78142000-07-24 Gerd Moellmann <gerd@gnu.org>
7815
7816 * print.c (temp_output_buffer_setup): Don't call1 Vrun_hooks
7817 if that is nil.
c28da489 7818
c66c29a2
DL
78192000-07-24 Dave Love <fx@gnu.org>
7820
7821 * s/sunos4-0.h, s/sol2.h:
7822 (LIBS_TERMCAP): Move from m/sparc.h.
7823
7824 * m/sparc.h (TERMINFO): Moved to system files (probably only
7825 relevant for sunos4 judging by its vintage).
7826 (BITS_PER_LONG, BITS_PER_EMACS_INT, _LP64): Define conditional on
7827 __arch64__.
7828
fbe0a958
EZ
78292000-07-24 Eli Zaretskii <eliz@is.elta.co.il>
7830
7831 * xmenu.c (keymap_panes): Pass the keymap's prompt as the pane
7832 name to single_keymap_panes.
7833
7d88e5c9
AS
78342000-07-24 Andreas Schwab <schwab@suse.de>
7835
7836 * fns.c (Fmakehash): Pass Qeql to Fmake_hash_table if TEST is nil.
7837
e024b101
GM
78382000-07-24 Gerd Moellmann <gerd@gnu.org>
7839
7840 * xdisp.c (with_echo_area_buffer): Take additional EMACS_INT
7841 parameters instead of using int parameters. Expect FN to accept
7842 EMACS_INT parameters.
7843 (display_echo_area, resize_echo_area_axactly, current_message)
7844 (truncate_echo_area, set_message_1): Call with_echo_area_buffer
7845 with new argument list.
7846 (resize_mini_window_1): New callback function.
7847 (current_message_1, truncate_message_1, set_message_1): Change
52283633 7848 parameter lists to the new format expected by with_echo_area_buffer.
e024b101 7849
25c1a9ce
KH
78502000-07-24 Kenichi Handa <handa@etl.go.jp>
7851
7852 * fontset.c (fontset_ref): Remove INLINE declaration.
7853 (fontset_ref_via_base): Likewise.
7854 (Fset_fontset_font): Convert FAMILY and REGISTRY specifications
7855 to downcase.
7856
7f987ac0
EZ
78572000-07-23 Eli Zaretskii <eliz@is.elta.co.il>
7858
7859 * msdos.c (IT_note_mouse_highlight): Process overlays in the
7860 correct order of priority. If help echo was found in an overlay,
7861 use that overlay as the object in which the help echo was found.
7862
e2db3069
MB
78632000-07-22 Miles Bader <miles@gnu.org>
7864
7865 * textprop.c (Fprevious_single_char_property_change): The initial
7866 property value should be from the position preceding POSITION, not
7867 following it.
7868
5e3203e4
EZ
78692000-07-22 Eli Zaretskii <eliz@is.elta.co.il>
7870
7871 * coding.c (syms_of_coding): Doc fix for
7872 inhibit-iso-escape-detection.
7873
62145073
GM
78742000-07-21 Gerd Moellmann <gerd@gnu.org>
7875
c20aeb83
GM
7876 * xterm.c (note_mouse_highlight): Process overlays in the right
7877 order of priority.
34a7a267 7878
743934db
GM
7879 * keyboard.c (show_help_echo, gen_help_event): Extend comments.
7880
7881 * xterm.c (note_mouse_highlight): If help-echo was found in an
52283633 7882 overlay, use that overlay as the object in which the help was found.
743934db 7883
d1dc7e43 7884 * window.c (foreach_window_1): Fix typo reversing an if-condition.
34a7a267 7885
62145073
GM
7886 * window.c (foreach_window): Instead of a fake variable argument
7887 list, take one USER_DATA argument.
7888 (foreach_window_1): Likewise, and call callback functions with two
7889 args, the window and USER_DATA.
7890 (struct check_window_data): New struct.
7891 (check_window_containing): Use it.
7892 (window_from_coordinates): Set up a struct check_window_data for
7893 foreach_window.
7894 (add_window_to_list, freeze_window_start): Change parameters
7895 according to new calling convention.
7896
7897 * window.h (foreach_window): Change prototype.
7898
7899 * buffer.c (Fprevious_overlay_change): Avoid memory leak.
7900
79012000-07-21 Eli Zaretskii <eliz@is.elta.co.il>
7902
7903 * xmenu.c (menu_help_callback): Call show_help_echo with
7904 additional arguments OBJECT and POS.
7905
11270583
KH
79062000-07-21 Kenichi Handa <handa@etl.go.jp>
7907
07b14857
KH
7908 * data.c (Faset): Allow storing any multibyte character in a
7909 string. Convert unibyte string to multibyte if necessary.
7910
11270583
KH
7911 * xfns.c (x_encode_text): New function.
7912 (x_set_name): Use x_encode_text.
7913 (x_set_title): Likewise.
7914
7915 * xselect.c (lisp_data_to_selection_data): Use x_encode_text.
7916
7917 * xterm.h (x_encode_text): Add prototype.
7918
bc75b4fd
DL
79192000-07-20 Dave Love <fx@gnu.org>
7920
7921 * ccl.c (Fccl_execute_on_string): Don't check xmalloc return. Use
7922 xfree, not free.
7923
48c14970
EZ
79242000-07-20 Eli Zaretskii <eliz@is.elta.co.il>
7925
7926 * msdos.c (help_echo_window): New variable.
7927 (syms_of_msdos): Initialize and staticpro it.
7928 (IT_note_mode_line_highlight): Set help_echo_window.
7929 (IT_note_mouse_highlight): Ditto.
7930 (dos_rawgetc): Store help_echo_window in the second event produced
7931 for HELP_EVENTs.
7932
7933 * msdos.c (IT_note_mode_line_highlight, IT_note_mouse_highlight):
7934 Record the object that generated the help echo and the position of
7935 that object in help_echo_object and help_echo_pos. Record that
7936 some glyphs in a row are displayed in mouse-face.
7937 (IT_update_begin): Don't clear mouse highlight unless one of the
7938 enabled glyph rows is marked as being displayed in mouse-face.
7939 (dos_rawgetc): Generate 2 events for HELP_EVENT. Pass the object
7940 and position recorded in help_echo_object and help_echo_pos to the
7941 event queue.
7942 (IT_menu_display): Accept a new argument PN: the pane number of
7943 the current menu pane. Record the pane number and the item
7944 number of the item which has associated help string.
7945 (XMenuActivate): Update the prototype for help_callback in
7946 function declaration. Call IT_menu_display with the current menu
7947 pane number as an additional argument. Call help_callback with
7948 two additional arguments: the pane number and the item number of
7949 the menu item associated with the help text.
7950 (help_echo_object, help_echo_pos): New variables.
7951 (syms_of_msdos): Initialize them and staticpro help_echo_object.
7952
7953 * msdos.h (XMenuActivate): Update prototype.
7954
4279296d
GM
79552000-07-19 Gerd Moellmann <gerd@gnu.org>
7956
47db06aa
GM
7957 * xdisp.c (with_echo_area_buffer): Call FN with more arguments.
7958 Add some more prototypes.
7959
7960 * xterm.c, xterm.h: Add some more prototypes.
7961
7962 * lisp.h (Fnext_single_char_property_change): Add prototype.
7963
7964 * dispnew.c (direct_output_for_insert): Remove confusing
7965 outer local variable mouse_face_overwritten_p.
7966 (glyph_row_slice_p): Put in #ifdef GLYPH_DEBUG.
7967
4279296d
GM
7968 * alloc.c (allocate_string_data): Don't copy old string contents.
7969
670acd62
KH
79702000-07-19 Kenichi Handa <handa@etl.go.jp>
7971
7972 * coding.c (code_convert_region): Delete text properties before
7973 shrinking the conversion region.
7974
7cea38bc
GM
79752000-07-18 Gerd Moellmann <gerd@gnu.org>
7976
dc1cac59
GM
7977 * dispnew.c (update_text_area): Write the whole row if it
7978 has mouse-face in it.
7979
85a8aca9
GM
7980 * xfaces.c (face-alternative-font-family-alist): Remove
7981 DEFVAR_LISP; staticpro instead.
7982
34a7a267 7983 * xmenu.c (menu_help_callback): Call show_help_echo with
7cea38bc
GM
7984 new arguments.
7985
7986 * keyboard.c (show_help_echo): Add parameter WINDOW.
7987 (read_char): Call show_help_echo with window extracted from Lisp
7988 help event.
7989 (gen_help_event): Add parameter WINDOW.
7990
7991 * keyboard.h (show_help_echo, gen_help_event): Change prototypes.
7992
7993 * xterm.c (help_echo_window): New variable.
52283633 7994 (note_mouse_highlight, note_tool_bar_highlight): Set help_echo_window.
7cea38bc
GM
7995 (XTread_socket): Pass help_echo_window to gen_help_event.
7996 (syms_of_xterm): Initialize and staticpro help_echo_window.
7997
f8276b77
DL
79982000-07-18 Dave Love <fx@gnu.org>
7999
52283633 8000 * Makefile.in: Fix dependencies of blockinput.h on atimer.h, systime.h.
f8276b77 8001
088831a6
GM
80022000-07-18 Gerd Moellmann <gerd@gnu.org>
8003
3d6cd763
GM
8004 * alloc.c (allocate_string_data): If string had already data
8005 assigned, copy old contents to new string data.
8006
8007 * coding.c (syms_of_coding): Fix typo in spelling of variable
8008 `inhibit-iso-escape-detection'.
8009
088831a6
GM
8010 * alloca.c (free) [emacs && EMACS_FREE]: Define as EMACS_FREE.
8011
8012 * Makefile.in: Add dependencies on dispextern.h.
8013 (alloca.o): Don't define malloc and define EMACS_FREE instead of
8014 `free'; both can conflict with system header files.
8015
bc8a8d55
KH
80162000-07-18 Kenichi Handa <handa@etl.go.jp>
8017
8018 * charset.h (MAKE_CHAR): Return reasonable code even if CHARSET is
8019 undefined.
8020
069f5950
DL
80212000-07-18 Dave Love <fx@gnu.org>
8022
8023 * window.c (Fwindow_list): Declare arg `window'.
8024
aa96c820
KH
80252000-07-18 Kenichi Handa <handa@etl.go.jp>
8026
8027 * coding.c (setup_coding_system): Don't override the explicitly
8028 specified designations.
8029
06be8d32
MB
80302000-07-15 Miles Bader <miles@gnu.org>
8031
8032 * editfns.c (char_property_eq, char_property_stickiness): Renamed
8033 from `text_property_eq' and `text_property_stickiness', respectively.
8034 (find_field, Fconstrain_to_field, char_property_eq)
8035 (char_property_stickiness): Changed to call char-property functions
8036 instead of text-property-only ones.
8037
8038 * textprop.c (Fnext_single_char_property_change): Made a subr (was
8039 `next_single_char_property_change'). Do more error checking, and
8040 cleanup limit behavior.
8041 (Fprevious_single_char_property_change): New function.
8042 (syms_of_textprop): Initialize new subrs.
8043
8044 * xdisp.c (display_prop_end, invisible_text_between_p):
8045 Call Fnext_single_char_property_change instead of
8046 next_single_char_property_change.
8047
3fddcdc3
JR
80482000-07-15 Jason Rumney <jasonr@gnu.org>
8049
8050 * w32menu.c (w32_menu_show): Call free_menubar_widget_value_tree
8051 after menu is finished with.
8052 (add_menu_item): Only consider wv->title as a menu title.
8053 (w32_menu_display_help): Add OBJECT and POS to show_help_echo.
8054
8055 * w32fns.c (w32_wnd_proc) [WM_DRAW_ITEM]: Do not try to draw a
8056 null title.
8057 (FONT_REGEXP): Remove unused macro, and its sub-components.
8058 (syms_of_w32fns): Replace underscore in w32-enable-synthesized-fonts.
8059
8060 * w32term.c (help_echo_object, help_echo_pos): New variables.
8061 (note_mode_line_highlight): Store additional information about the
8062 help-echo in help_echo_object and help_echo_pos. Check both
8063 `local-map' and `keymap' properties for changing the cursor
8064 (note_mouse_highlight): Store additional information about the
8065 help-echo in help_echo_object and help_echo_pos.
8066 (note_tool_bar_highlight): Set help_echo_object to nil and
8067 help_echo_pos to -1.
8068 (w32_read_socket): Use gen_help_event instead of filling
8069 input_events manually.
8070 (syms_of_w32term): Staticpro help_echo_object.
8071 (x_update_window_end): Add parameter MOUSE_FACE_OVERWRITTEN_P. If
52283633 8072 set, arrange for a mouse-highlight redisplay in XTframe_up_to_date.
3fddcdc3
JR
8073 (x_clear_mouse_face): New function.
8074 (w32_redisplay_interface): Add pointer to x_clear_mouse_face.
8075 (x_update_window_begin): No need to turn off the mouse
8076 highlight here.
8077 (show_mouse_face): Set the mouse_face_p flag of glyph rows
52283633 8078 depending on whether they contain glyphs highlighted in mouse-face.
3fddcdc3
JR
8079 (x_fill_stretch_glyph_string): Consume runs of stretch
8080 glyphs instead of a single one.
8081 (BUILD_STRETCH_GLYPH_STRING): Call x_fill_stretch_glyph_string
8082 with new argument list.
8083 (x_set_glyph_string_gc): Make sure the face's GC is valid.
8084 (x_append_glyph, x_append_composite_glyph)
8085 (x_produce_image_glyph, x_append_stretch_glyph): Accomodate to
8086 changes in struct glyph starting 1999-12-27. See comments for
8087 xterm.c on 2000-07-05.
8088
178c5d9c
SS
80892000-07-14 Sam Steingold <sds@gnu.org>
8090
8091 * xfaces.c (realize_x_face): Fix the last patch:
8092 check `default_face' before dereferencing.
8093
6fe533f6
DL
80942000-07-14 Dave Love <fx@gnu.org>
8095
069f5950 8096 * syntax.c (back_comment): Add null default in switch (for pcc).
6fe533f6 8097
dd7b81cf
KH
80982000-07-14 Kenichi Handa <handa@etl.go.jp>
8099
0693904a 8100 * xfaces.c (realize_x_face): Make fontset using the base of the
178c5d9c 8101 default_face's fontset, not using the default fontset.
0693904a 8102
dd7b81cf
KH
8103 * coding.c (inhibit_iso_escape_detection): New variable.
8104 (syms_of_coding): Make it a Lisp variable.
8105 (detect_coding_iso2022): If inhibit_iso_escape_detection is
8106 nonzero, ignore ISO2022's escape sequence.
8107
d5aa31d8
GM
81082000-07-14 Gerd Moellmann <gerd@gnu.org>
8109
e5acf0ca
GM
8110 * alloca.c (malloc) [emacs]: Define as xmalloc.
8111
bd23a692
GM
8112 * xfns.c (Fx_show_tip): If frame parameters contain a position,
8113 use that instead of the mouse position. Add parameters DX and DY.
8114
8115 * dispextern.h (Fx_show_tip): Adjust number of parameters
8116 in prototype.
8117
9662da0b
GM
8118 * keyboard.c (show_help_echo): Add parameters OBJECT and POS.
8119 if HELP is a function, call it with OBJECT and POS as parameters
8120 to get the help to display.
8121 (gen_help_event, kbd_buffer_store_help_event): New functions.
8122 (kbd_buffer_get_event): Construct the Lisp help-event differently.
8123 (read_char): Call show_help_echo with new parameters.
8124
178c5d9c 8125 * keyboard.h (gen_help_event, kbd_buffer_store_help_event):
9662da0b
GM
8126 Add prototypes.
8127
8128 * xterm.c (help_echo_object, help_echo_pos): New variables.
8129 (note_mode_line_highlight): Store additional information about the
8130 help-echo in help_echo_object and help_echo_pos. Check both
8131 `local-map' and `keymap' properties for changing the cursor
8132 (note_mouse_highlight): Store additional information about the
8133 help-echo in help_echo_object and help_echo_pos.
8134 (note_tool_bar_highlight): Set help_echo_object to nil and
8135 help_echo_pos to -1.
8136 (XTread_socket): Use gen_help_event instead of filling
8137 input_events manually.
8138 (syms_of_xterm): Staticpro help_echo_object.
8139
8140 * xmenu.c (menu_highlight_callback): Use
8141 kbd_buffer_store_help_event instead of setting up and input_event
8142 structure manually.
8143
8144 * xdisp.c (eval_form): GCPRO argument sexpr.
8145 (call_function): New function.
8146 (handle_single_display_prop): Use call_function and FUNCTIONP
8147 instead of checking whether if font_height is a symbol and
8148 using eval_form.
8149
8150 * eval.c (internal_condition_case_2): New function.
8151
8152 * lisp.h (FUNCTIONP): New macro.
8153 (internal_condition_case_2, call_function): Add prototypes.
8154
d5aa31d8
GM
8155 * xterm.c (construct_mouse_click, x_scroll_bar_to_input_event)
8156 (x_scroll_bar_handle_click, SET_SAVED_MENU_EVENT, XTread_socket):
8157 Always set `arg' member of input_events.
8158 (construct_menu_click): Unused function removed.
8159
8160 * msdos.c (dos_rawgetc): Always set `arg' member of input_events.
8161
8162 * w32term.c (construct_mouse_click, construct_mouse_wheel)
8163 (construct_drag_n_drop, x_scroll_bar_handle_click)
8164 (w32_read_socket): Always set `arg' member of input_events.
8165
8166 * keyboard.c (show_help_echo): Use eval_form. Add comment.
8167
8168 * lisp.h (eval_form): Add prototype.
8169
8170 * xdisp.c (eval_form): Make it externally visible.
8171
0f1a9b23
GM
81722000-07-13 Gerd Moellmann <gerd@gnu.org>
8173
8174 * xterm.c (x_handle_tool_bar_click): Store the frame in the
8175 frame_or_window slot of TOOL_BAR_EVENT input events instead of
8176 consing. For prefix events, store the frame in the `arg' slot of
8177 the event, otherwise store the key there.
8178 (XTread_socket): Instead of consing, use the frame_or_window slot
52283633 8179 of HELP_EVENTs for the frame, and the `arg' slot for the help string.
0f1a9b23
GM
8180
8181 * xmenu.c (menu_highlight_callback): Store help string in the
8182 `arg' member of the input event; don't cons.
8183 (menubar_selection_callback): Use the `arg' slot of input events
8184 to queue additional information, instead of consing.
8185
8186 * msdos.c (dos_rawgetc): Adapt to change of HELP_EVENTs.
8187
8188 * w32term.c (w32_handle_tool_bar_click): Adapt to changes in
8189 TOOL_BAR_EVENTs.
8190 (w32_read_socket): Adapt to changes in HELP_EVENTs.
8191
8192 * w32menu.c (menubar_selection_callback): Use the `arg' slot of
8193 input events to queue additional information, instead of consing.
8194
8195 * keyboard.c (kbd_buffer_gcpro): Renamed from
8196 kbd_buffer_frame_or_window. Now used for all Lisp objects
8197 referenced from the input queue.
8198 (kbd_buffer_store_event): Always use structure assignment for
8199 copying input events. Record all Lisp objects referenced from
8200 events in kbd_buffer_gcpro.
8201 (kbd_buffer_get_event): Construct Lisp `help-echo' events
8202 differently from input events. Test for prefix menu_bar_events
8203 and TOOL_BAR_EVENTs differently. Reset all slots used by an input
8204 event in kbd_buffer_gcpro to nil.
8205 (make_lispy_event) <TOOL_BAR_EVENT>: Treat an input event whose
8206 frame_or_window is equal to its arg member as prefix events.
8207 (stuff_buffered_input): Reset all slots in kbd_buffer_gcpro
8208 used by an input event to nil.
8209 (init_keyboard): Use two times the size of the input queue
8210 for kbd_buffer_gcpro.
8211 (syms_of_keyboard): Likewise.
8212
52283633
SM
8213 * emacs.c (handle_USR2_signal, handle_USR1_signal):
8214 Use USER_SIGNAL_EVENT.
0f1a9b23
GM
8215
8216 * termhooks.h (struct input_event): Add member `arg'.
8217 (MENU_BAR_EVENT): Renamed from menu_bar_event.
8218 (USER_SIGNAL_EVENT): Renamed from user_signal.
8219
8220 * xfaces.c (ASET): Remove definition.
8221
8222 * lisp.h (AREF, ASET, ASIZE): New macros.
8223
8224 * fontset.c (AREF, ASIZE): Remove definitions.
8225
8226 * fns.c (AREF): Remove definition.
178c5d9c 8227
0f1a9b23
GM
8228 * composite.c (AREF): Remove definition.
8229
712eaef2
GM
82302000-07-12 Gerd Moellmann <gerd@gnu.org>
8231
d8ee7803
GM
8232 * dispnew.c (redraw_overlapped_rows): Add missing local.
8233 (scrolling_window): Remove debug code.
8234
712eaef2
GM
8235 * xdisp.c (try_window_reusing_current_matrix, try_window_id):
8236 Before scrolling, turn off a mouse-highlight in the window
8237 being scrolled.
8238
8239 * xterm.c (x_update_window_end): Add parameter
8240 MOUSE_FACE_OVERWRITTEN_P. If set, arrange for a mouse-highlight
8241 redisplay in XTframe_up_to_date.
8242 (x_clear_mouse_face): New function.
8243 (x_redisplay_interface): Add pointer to x_clear_mouse_face.
8244
8245 * dispnew.c (make_current): Preserve the mouse_face_p flag of the
8246 current glyph row.
8247 (update_window_line): Add parameter MOUSE_FACE_OVERWRITTEN_P. Set
8248 it when any row is written to that contains glyphs highlighted in
8249 mouse-face.
8250 (update_window): Call the window update end hook with new
8251 parameter MOUSE_FACE_OVERWRITTEN_P.
8252 (direct_output_for_insert): Give up if row contains mouse-face.
8253
8254 * dispextern.h (struct redisplay_interface): Add parameter
8255 MOUSE_FACE_OVERWRITTEN_P to update_window_end_hook function.
8256 (clear_mouse_face): New function pointer member.
8257
02010917
SM
82582000-07-11 Stefan Monnier <monnier@cs.yale.edu>
8259
8260 * syntax.c (back_comment): Use one switch rather than a few `if's.
8261 Obey open_paren_in_column_0_is_defun_start.
8262 When reverting to the `slow' method, try to nicely handle the case
8263 of nested comments by checking that the comment-starter we found
8264 does indeed match the comment-ender.
8265 (scan_sexps_forward, scan_sexps_forward):
8266 Ignore excessive opening parenthesis rather than throwing an error.
8267
d76c03ea
GM
82682000-07-11 Gerd Moellmann <gerd@gnu.org>
8269
8270 * doc.c (Fsubstitute_command_keys): Handle case that a GC
8271 in Fwhere_is_internal or get_keymap_1 relocates string contents.
8272
8273 * dispnew.c (direct_output_forward_char): Give up if currently
8274 displaying a message instead of the minibuffer contents.
8275
8276 * xterm.c (x_update_window_begin): No need to turn off the mouse
8277 highlight here.
8278 (show_mouse_face): Set the mouse_face_p flag of glyph rows
52283633 8279 depending on whether they contain glyphs highlighted in mouse-face.
d76c03ea
GM
8280
8281 * dispnew.c (row_equal_p): Add parameter MOUSE_FACE_P. If set,
8282 compare the mouse_face_p flags of both rows.
8283
8284 * dispextern.h (struct glyph_row): Add flag mouse_face_p.
8285
d55ead18
EZ
82862000-07-11 Eli Zaretskii <eliz@is.elta.co.il>
8287
8288 * keyboard.c (show_help_echo): Accept additional parameter
8289 ok_to_overwrite_keystroke_echo.
8290 (read_char): Call show_help_echo with a zero
8291 ok_to_overwrite_keystroke_echo argument.
52283633 8292 * keyboard.h (show_help_echo): Update prototype of show_help_echo.
d55ead18
EZ
8293 * xmenu.c (menu_help_callback): Call show_help_echo with non-zero
8294 ok_to_overwrite_keystroke_echo argument.
8295 * w32menu.c (w32_menu_display_help): Call show_help_echo with
8296 non-zero ok_to_overwrite_keystroke_echo argument.
8297
df75b1a3
GM
82982000-07-10 Gerd Moellmann <gerd@gnu.org>
8299
4b92c49a
GM
8300 * xdisp.c (try_window_id): If changes are all below what is
8301 displayed in the window, and point is in the window, we still
8302 might have to find point on the display.
8303
8304 * xterm.c (x_fill_stretch_glyph_string): Consume runs of stretch
8305 glyphs instead of a single one.
8306 (BUILD_STRETCH_GLYPH_STRING): Call x_fill_stretch_glyph_string
8307 with new argument list.
8308 (x_set_glyph_string_gc): Make sure the face's GC is valid.
8309
df75b1a3
GM
8310 * keymap.c (get_keymap_1): Add comment that this function can GC.
8311 (where_is_internal_2, where_is_internal_1): Add GCPROs, add
8312 comment that functions can GC.
8313 (Fset_keymap_parent): GCPRO arg KEYMAP.
8314
4314cf3e
EZ
83152000-07-10 Eli Zaretskii <eliz@is.elta.co.il>
8316
8317 * msdos.c (XMenuActivate): After exiting the menu, restore the
8318 echo area message and erase it.
8319
ab49ce15
KH
83202000-07-10 Kenichi Handa <handa@etl.go.jp>
8321
8322 * fontset.c (Ffontset_info): Make the return value more compatible
8323 with that of Emacs 20.
8324
090a072f
GM
83252000-07-07 Gerd Moellmann <gerd@gnu.org>
8326
8327 * eval.c (Fsignal): Handle case that backtrace_list is null.
8328
f92de4a6
KH
83292000-07-07 Kenichi Handa <handa@etl.go.jp>
8330
8331 * ccl.c (Fccl_execute): Typo fixed.
8332
dd8888a1
GM
83332000-07-06 Gerd Moellmann <gerd@gnu.org>
8334
e5c81191 8335 * window.c (window_loop): Add missing gcpro1 local variable.
178c5d9c 8336
dd8888a1
GM
8337 * window.c (Fwindow_list): Reverse list at the end.
8338 (candidate_window_p): Add parameter OWINDOW. ALL_FRAMES nil
8339 means allow windows on OWINDOW's frame, only.
8340 (window_loop): Simplified; use Fwindow_list.
8341
8342 * Makefile.in (TAGS-LISP): Don't pass `$(lispsource)' to make.
8343
485266d0
GM
83442000-07-05 Gerd Moellmann <gerd@gnu.org>
8345
8346 * xterm.c (XTread_socket): Increment handling_signal at the start,
8347 decrement it at the end.
8348
8349 * eval.c (handling_signal): New variable.
8350 (Fsignal): Abort if handling_signal is non-zero.
8351
8352 * lisp.h (handling_signal): External declaration.
178c5d9c 8353
485266d0
GM
8354 * s/freebsd.h (WAITTYPE, WRETCODE): Put in #if 0.
8355
80fcd514
KR
83562000-07-05 Ken Raeburn <raeburn@gnu.org>
8357
8358 Sound support for NetBSD through "Linux emulation" support:
8359 * config.in (HAVE_SOUNDCARD_H): Undef.
8360 (HAVE_SOUND): Define if HAVE_SOUNDCARD_H.
8361 * Makefile.in (LIBSOUND): New variable.
8362 (LIBES): Include it.
52283633
SM
8363 * sound.c [HAVE_SOUNDCARD_H]: Include <sys/ioctl.h> and <soundcard.h>.
8364 (DEFAULT_SOUND_DEVICE): Define to "/dev/dsp" if not defined elsewhere.
80fcd514
KR
8365 (vox_open): Use DEFAULT_SOUND_DEVICE.
8366 * s/netbsd.h (DEFAULT_SOUND_DEVICE): Define to /dev/audio.
8367
d5c5cddd
GM
83682000-07-05 Gerd Moellmann <gerd@gnu.org>
8369
8370 * print.c (print_error_message): If Vsignaling_function is set,
8371 show it in *Messages*.
8372
8373 * lisp.h (Vsignaling_function): External declaration.
8374
8375 * eval.c (Vsignaling_function): New variable.
8376 (Fsignal): Compute it.
8377 (syms_of_eval): Staticpro it.
8378
65171e3a
DL
83792000-07-05 Dave Love <fx@gnu.org>
8380
8381 * syswait.h: Use the autoconf recommended approach. Old code
8382 #if'd out in case we need to revert.
8383
178c5d9c 8384 * config.in (HAVE_SYS_WAIT_H): Added.
65171e3a 8385
e2c46326
AI
83862000-07-05 Andrew Innes <andrewi@gnu.org>
8387
8388 * vm-limit.c (check_memory_limits) [REL_ALLOC]: Use real_morecore
8389 when non-NULL instead of __morecore, to take account of buffer
8390 memory. This also solves a problem with spurious memory warnings
8391 on Windows.
8392
8393 * ralloc.c: Make real_morecore non-static.
8394
8395 * eval.c (internal_condition_case): Comment out abort if
8396 interrupt_input_blocked is not zero.
8397
8398 * makefile.nt: Add support for `bootstrap' and related targets.
8399 Include minimal debug info in emacs.exe in release build.
8400 Remove all dependencies on lisp.h, and fixup some others.
8401
8402 * w32.c (init_environment): Install code from 20.7 for providing
8403 default values for environment variables, based on the
8404 executable's own location.
52283633 8405 (map_w32_filename): Handle filenames that are longer than MAX_PATH.
e2c46326
AI
8406 (sys_socket): Install socket inheritance bug fix from 20.7.
8407
8408 * alloca.c [emacs]: Include lisp.h (needed by atimer.h included
8409 here via blockinput.h).
8410
a027a91b
SM
84112000-07-05 Stefan Monnier <monnier@cs.yale.edu>
8412
e4b31601
SM
8413 * w32menu.c (w32_menu_display_help):
8414 * xmenu.c (menu_help_callback): Use show_help_echo.
a027a91b
SM
8415
8416 * keyboard.h (show_help_echo): Declare.
8417
8418 * keyboard.c (show_help_echo): New function, extracted from read_char.
8419 Feval its `msg' argument if it's a cons cell.
8420 (read_char): Use it.
4cf8d9d5 8421 (follow_key): Pass `autoload' to get_keyelt.
a027a91b 8422
178c5d9c 8423 * xterm.c (note_mode_line_highlight, note_mouse_highlight)
a027a91b 8424 (note_tool_bar_highlight, XTread_socket):
178c5d9c 8425 * msdos.c (IT_note_mode_line_highlight, IT_note_mouse_highlight)
a027a91b
SM
8426 (dos_rawgetc):
8427 * w32term.c (note_mode_line_highlight, note_mouse_highlight)
8428 (note_tool_bar_highlight, w32_read_socket):
8429 Do not gratuitously ignore non-string `help-echo' properties.
8430
88d75730
GM
84312000-07-05 Gerd Moellmann <gerd@gnu.org>
8432
969f7e79
GM
8433 * eval.c (Feval): Put check for interrupt_input_block in #if 0.
8434
71201b00
GM
8435 * window.c (delete_all_subwindows): Reset Vwindow_list.
8436
88d75730
GM
8437 * xterm.c (x_append_glyph, x_append_composite_glyph)
8438 (x_produce_image_glyph, x_append_stretch_glyph): Accomodate to
8439 changes in struct glyph starting 1999-12-27. Some bit-fields of
8440 struct glyph were not set, which made glyphs unequal when compared
8441 with GLYPH_EQUAL_P. Redisplay outputs such glyphs, and flickering
8442 effects were the result. This also depended on the contents of
8443 memory returned by xmalloc. If flickering happens again, activate
8444 the code in clear_glyph_row that's in #if 0. If the flickering is
52283633 8445 gone with that, chances are that it is caused by something similar.
88d75730
GM
8446
8447 * dispnew.c (clear_glyph_row): Add debug code in #if 0.
178c5d9c 8448
88d75730
GM
8449 * dispextern.h: Add some comments.
8450
8451 * window.c (add_window_to_list): Add parameter LIST.
8452 (window_list): Order list so that, for each frame, windows are
8453 in canonical order, and so that frames appear in the list in
8454 the order given by Vframe_list.
8455 (next_window): Reverse the handling of NEXT_P.
8456
53654733
GM
84572000-07-04 Gerd Moellmann <gerd@gnu.org>
8458
87efd256
GM
8459 * window.c (Vwindow_list): New variable.
8460 (make_window, delete_window): Set Vwindow_list to nil.
8461 (check_window_containing): New function.
8462 (window_from_coordinates): Rewritten.
8463 (add_window_to_list, window_list, candidate_window_p)
8464 (decode_next_window_args, next_window): New functions.
52283633 8465 (Fnext_window, Fprevious_window): Rewritten in terms of next_window.
87efd256
GM
8466 (Fwindow_list): New function.
8467 (Fother_window): Cleaned up.
8468 (foreach_window): Add a longer "variable argument list". Let
8469 callback function return 0 to indicate that cycling over windows
8470 should stop.
8471 (foreach_window_1): Likewise.
8472 (freeze_window_start): Return int.
8473 (init_window): New function.
8474 (syms_of_window): Staticpro Vwindow_list and defsubr Swindow_list.
8475
8476 * emacs.c (handle_USR1_signal, handle_USR2_signal) Clear
8477 input_event with bzero.
8478 (main): Call init_window.
8479
53654733
GM
8480 * keymap.c (get_keyelt): Temporarily inhibit GC while evaluating
8481 a menu filter.
8482
4a8c194f
KH
84832000-07-04 Kenichi Handa <handa@etl.go.jp>
8484
8485 * composite.h (make_composition_value_copy): Extern it.
8486
8487 * composite.c (make_composition_value_copy): New function.
8488
8489 * editfns.c (Fformat): While copying text properties, make each
8490 composition property value a copy.
8491
8492 * fns.c (concat): While copying text properties, make each
8493 composition property value a copy.
8494
831a6cb0
GM
84952000-07-03 Gerd Moellmann <gerd@gnu.org>
8496
2f516940
GM
8497 * m/macppc.h (LINKER, LD_SWITCH_MACHINE) [LINUX]: Define.
8498
178c5d9c 8499 * fns.c (sweep_weak_table): Mark only objects that are not
aee625fa
GM
8500 marked already.
8501
831a6cb0
GM
8502 * frame.c (next_frame, prev_frame): If MINIBUF is a window,
8503 include those frames as candidates which have their focus
8504 redirected to the minibuffer frame.
8505
d9c4f922
SM
85062000-07-03 Stefan Monnier <monnier@cs.yale.edu>
8507
8508 * fns.c (Fputhash): Return `value' rather than nil.
8509
3780bc22
GM
85102000-06-30 Gerd Moellmann <gerd@gnu.org>
8511
97d176db
GM
8512 * frame.c (next_frame): Don't check focus redirection in case
8513 MINIBUF is a window. Doing so excludes frames using MINIBUF
3780bc22
GM
8514 unless their focus is redirected, which contradicts the
8515 specification of next-frame, and leads to infinite loops in
8516 certain situations when cycling through windows with next-window.
8517
dca9961d
KH
85182000-06-30 Kenichi Handa <handa@etl.go.jp>
8519
8520 * coding.c (code_convert_region): Even if the length of text is
8521 zero, try to convert it if coding->type is coding_type_ccl.
8522 (decode_coding_string, encode_coding_string): Likewise.
8523
d5483ab1
GM
85242000-06-28 Gerd Moellmann <gerd@gnu.org>
8525
af5c25e1 8526 * xdisp.c (try_window_reusing_current_matrix): Don't try to reuse
97d176db 8527 the display if windows_or_buffers_changed.
af5c25e1
GM
8528
8529 * dispnew.c (struct row_entry): New structure.
8530 (row_entry_pool, row_entry_pool_size, row_entry_idx, row_table)
8531 (row_table_size, old_lines, new_lines, old_lines_size)
8532 (new_lines_size, run_pool, runs_size, runs): New variables.
8533 (add_row_entry): New function.
8534 (scrolling_window): Use data structures allocated with xmalloc and
97d176db 8535 held in global variables, instead of allocating them with alloca and
af5c25e1
GM
8536 holding them in local variables. Use a larger hash table whose
8537 size depends on glyph matrix sizes. Don't use bzero to clear the
8538 hash table; instead, clear used slots only.
8539
8540 * fns.c (next_almost_prime): Make it externally visible.
8541
8542 * lisp.h (next_almost_prime): Add prototype.
8543
d5483ab1
GM
8544 * s/isc4-0.h (sigunblock): Define.
8545
8546 * s/sco5.h (sigunblock): Define.
8547
93e40f40
DL
85482000-06-27 Dave Love <fx@gnu.org>
8549
8550 * s/osf1.h (C_SWITCH_SYSTEM, LIBS_SYSTEM): Revert last change
8551 (moved to osf5-0.h).
8552 [!NOT_C_CODE]: Protect string.h stuff.
8553
8554 * s/osf5-0.h (C_SWITCH_SYSTEM, WAIT_USE_INT, SYS_SIGLIST_DECLARED)
8555 (sys_siglist, NSIG): Definitions moved here from osf1.h.
8556
3c4b7685
GM
85572000-06-27 Gerd Moellmann <gerd@gnu.org>
8558
97d176db 8559 * xdisp.c (resize_mini_window): Subtract the extra line spacing
3c4b7685
GM
8560 below the last line from the needed window height.
8561
32cad0aa
SM
85622000-06-26 Stefan Monnier <monnier@cs.yale.edu>
8563
8564 * fns.c (Fplist_member): Renamed from Fwidget_plist_member.
8565 (Fwidget_get): Use it.
8566 (syms_of_fns): Defsubr it.
8567
2c69ced2
GM
85682000-06-26 Gerd Moellmann <gerd@gnu.org>
8569
178c5d9c 8570 * xterm.c (xim_initialize) [!USE_XIM]: Don't set up the
1d36487c
GM
8571 display info for XIM.
8572 (xim_open_dpy): Likewise.
8573 (xim_close_dpy): Don't free the display info's XIM.
8574
8575 * xfns.c (x_window) [!USE_XIM]: Don't call create_frame_ic.
8576
8577 * config.in (USE_XIM): New define.
8578
3fc720e4
GM
8579 * keymap.c (get_keyelt): For menu-items containing a `:filter
8580 FILTER', apply FILTER to the menu-item's definition to get the
8581 real definition to use.
8582
8583 * lisp.h (QCfilter): External declaration.
8584
2c69ced2
GM
8585 * xfns.c (Fimage_size): New function.
8586 (syms_of_xfns): Defsubr it.
8587
f978b2a2
AS
85882000-06-26 Andreas Schwab <schwab@suse.de>
8589
8590 * coding.c (decode_coding_string): Re-fetch STRING_BYTES after
8591 Fstring_as_unibyte.
8592
94cc7892
DL
85932000-06-25 Dave Love <fx@gnu.org>
8594
52283633 8595 * term.c [!HAVE_TERMCAP_H]: Declare tputs, tgetent, tgetflag, tgetnum.
94cc7892
DL
8596
8597 * Makefile.in (blockinput.h): Depend on atimer.h.
8598 (atimer.h): Depend on systime.h.
8599
52283633 8600 * blockinput.h: Protect against multiple inclusion. Include atimer.h.
94cc7892 8601
52283633 8602 * atimer.h: Protect against multiple inclusion. Include systime.h.
94cc7892
DL
8603
8604 * lisp.h (swap_in_global_binding): Declare.
8605
b8c24556
KR
86062000-06-24 Ken Raeburn <raeburn@gnu.org>
8607
8608 * process.c (Fopen_network_stream): Turn off atimers for duration
8609 of call to connect. (Patch from Gerd.)
8610
8cf8560b
DL
86112000-06-23 Dave Love <fx@gnu.org>
8612
511c7541
DL
8613 * ralloc.c: Maybe include unistd.h
8614
8cf8560b
DL
8615 * emacs.c (setgrp): Undefine before defining.
8616 (malloc_warning, set_time_zone_rule, index): Prototype.
8617
8618 * systime.h (EMACS_GET_TIME) [!GETTIMEOFDAY_ONE_ARGUMENT]: Use
8619 HAVE_STRUCT_TIMEZONE.
8620
8621 * s/osf1.h: Move string.h hack here from alpha.h and make it
8622 conditional.
8623 (C_SWITCH_SYSTEM): Use _OSF_SOURCE, not -BSD, which clashes with
8624 _XOPEN_SOURCE.
8625 (WAIT_USE_INT, SYS_SIGLIST_DECLARED, sys_siglist, NSIG): Define.
8626 (SOCKLEN_TYPE): Don't define.
8627
8628 * m/alpha.h: Remove string.h hack.
8629
8630 * s/osf5-0.h: New file.
8631
8632 * filelock.c: Use feature tests for fcntl.h, string.h. Don't
8633 include time.h, done by systime.h.
8634 [__FreeBSD__]: Remove redundant includes.
8635
3fc720e4 8636 * callproc.c (setpgrp): Undefine before defining.
8cf8560b
DL
8637 (delete_temp_file): Return Qnil to avoid warning.
8638
8639 * config.in (HAVE_TERM_H, HAVE_STRUCT_TIMEZONE): Add.
8640
8641 * xfaces.c: Include fontset.h dependent on HAVE_WINDOW_SYSTEM, not
8642 HAVE_X_WINDOWS.
8643
8644 * fontset.h (free_face_fontset): Renamed from fs_free_face_fontset.
8645
8646 * composite.h (compose_text): Declare.
8647
8648 * xterm.c: Don't include sys/types.h unconditionally. Don't
8649 protect its inclusion with !USG (following xmenu.c).
8650
ea055732
GM
86512000-06-23 Gerd Moellmann <gerd@gnu.org>
8652
8653 * xfns.c (x_create_tip_frame): Initialize frame's colors like
8654 in x_create_frame.
8655
74b01b80
EZ
86562000-06-23 Eli Zaretskii <eliz@is.elta.co.il>
8657
8658 * coding.c (decode_eol_post_ccl): Special handling for undecided
8659 and inconsistent EOL types.
8660
64f3a166
GM
86612000-06-22 Gerd Moellmann <gerd@gnu.org>
8662
16cf31f7
GM
8663 * xrdb.c (x_load_resources): Add default resource for scroll bar's
8664 trough color and main window's background color.
8665
52283633 8666 * xfns.c (Fx_file_dialog) [HAVE_MOTIF_2_1]: Handle events differently.
16cf31f7
GM
8667
8668 * xterm.h (Xt_app_con): External declaration.
8669
8670 * widget.c (EmacsFrameRealize): Fix typo.
178c5d9c 8671
486a103d
GM
8672 * widget.c (EmacsFrameRealize): Remove SubstructureRedirectMask.
8673
64f3a166
GM
8674 * xdisp.c (handle_stop): Initialize it->add_overlay_start to zero.
8675 (handle_invisible_prop): Record the start of invisible text in
8676 it->add_overlay_start.
8677 (struct overlay_entry): Add member `overlay'.
8678 (handle_overlay_change): Simplify.
8679 (next_overlay_string): After having processed overlay strings at the
8680 end of the buffer, record that fact in
8681 it->overlay_strings_at_end_processed_p.
8682 (compare_overlay_entries): If before- and after-strings come
8683 from the same overlay, let before-strings come first.
8684 (RECORD_OVERLAY_STRING): Record the overlay that strings come from.
8685 (load_overlay_strings): Take it->add_overlay_start into account
8686 when adding overlay strings.
8687
8688 * dispextern.h (struct it): Add member add_overlay_start.
8689
bb746ea6
DL
86902000-06-22 Dave Love <fx@gnu.org>
8691
8692 * s/isc3-0.h (C_SWITCH_SYSTEM): Define _XOPEN_SOURCE=500.
8693
8694 * s/gnu-linux.h (C_SWITCH_SYSTEM): Don't define _XOPEN_SOURCE here.
8695
a8f573f3
KH
86962000-06-22 Kenichi Handa <handa@etl.go.jp>
8697
8698 * ccl.c (ccl_driver) <CCL_End>: Decrement stack_idx only when it
8699 is greater than 0.
8700
9f2bbc92
DL
87012000-06-21 Dave Love <fx@gnu.org>
8702
178c5d9c 8703 * Makefile.in (GETLOADAVG_OBJ): Removed -- LIBOBJS does it.
9f2bbc92 8704
3ee5041c
SM
87052000-06-21 Stefan Monnier <monnier@cs.yale.edu>
8706
8707 * syntax.c (back_comment): Simplify string-parity counting (with
8708 the added benefit of handling multiple string-styles as long as
8709 they are not intertwined).
8710 Jump to the slow code as soon as a comment starter is found in
8711 a "string_lossage" position. Fixes the case: " /* " /* " */.
8712
4c343001
DL
87132000-06-21 Dave Love <fx@gnu.org>
8714
8715 * Makefile.in: Use GETLOADAVG_LIBS.
8716
8717 * config.in: Add HAVE_FCNTL_H, _FILE_OFFSET_BITS,
8718 _LARGEFILE_SOURCE, _LARGE_FILES, _XOPEN_SOURCE.
8719
e6365855
SM
87202000-06-20 Stefan Monnier <monnier@cs.yale.edu>
8721
8722 * syntax.c (describe_syntax): Recognize the `n'estable bit.
8723 (Fforward_comment, scan_lists):
8724 Check the comstyle of single-char comment-starters.
8725 (scan_sexps_forward): Don't try to recognize `half comment-enders' if
8726 we're just at the beginning of the comment (f.ex with (*) ... (*)).
d355bd8a
SM
8727 Check the comstyle of single-char comment-starters.
8728 Clarify control-flow around the Scomment case.
e6365855 8729
5700d2cc
DL
87302000-06-20 Dave Love <fx@gnu.org>
8731
d355bd8a
SM
8732 * fns.c (make_hash_table, maybe_resize_hash_table):
8733 Cast arg of next_almost_prime.
5700d2cc 8734
178c5d9c 8735 * tparam.c [emacs]: Include lisp.h.
5700d2cc
DL
8736
8737 * termcap.c [emacs]: Test HAVE_FCNTL_H, not USG5. Include lisp.h
8738 and unistd.h.
8739
4a27bdfb
GM
87402000-06-20 Gerd Moellmann <gerd@gnu.org>
8741
a61d762c 8742 * keyboard.c (adjust_point_for_property): Check if display
52283633 8743 property should be treated as intangible by looking at its value.
a61d762c 8744
178c5d9c 8745 * xdisp.c (single_display_prop_intangible_p)
a61d762c
GM
8746 (display_prop_intangible_p): New functions.
8747
8748 * dispextern.h (display_prop_intangible_p): Add prototype.
8749
8750 * xdisp.c (dump_glyph_row): Show type of glyph->object.
178c5d9c 8751
4a27bdfb
GM
8752 * s/isc4-0.h (sigblock): Redefined to pass a pointer as second
8753 argument to sigprocmask.
8754
8755 * s/sco5.h (sigblock): Redefined to pass a pointer as second
8756 argument to sigprocmask.
8757
8758 * syssignal.h (sigblock, sigunblock) [USG5_4]: Set
8759 sigprocmask_set, and pass a pointer to it to sigprocmask.
8760
8761 * sysdep.c (sigprocmask_set): New variable.
8762
8763 * fileio.c (make_temp_name): Don't use `%s' in string passed to
8764 report_file_error.
8765
427ec082
SS
87662000-06-20 Sam Steingold <sds@gnu.org>
8767
8768 * xrdb.c: Don't declare xmalloc, xrealloc.
8769
8972fe79 87702000-06-20 Stefan Monnier <monnier@cs.yale.edu>
8972fe79
SM
8771
8772 * regex.c (re_match, re_match_2): Protect calls to alloca (0).
8773 (re_comp): Cast gettext return value to avoid complaints when
8774 !HAVE_LIBINTL.
8775
074b6efe
DL
87762000-06-20 Dave Love <fx@gnu.org>
8777
52283633 8778 * m/stride.h, m/mips.h: Don't define HAVE_GETWD, HAVE_GETTIMEOFDAY.
f85c008a 8779
5700d2cc 8780 * m/ibmrt-aix.h: Don't declare HAVE_GETTIMEOFDAY, HAVE_VFORK.
f85c008a 8781
d355bd8a 8782 * m/ibmrs6000.h, m/ibmps2-aix.h, m/dpx2.h: Don't declare HAVE_GETWD.
f85c008a
DL
8783
8784 * m/alpha.h: Don't declare xmalloc, xrealloc.
8785
0af4f205
DL
8786 * s/ux4800.h: Don't declare GETTIMEOFDAY_ONE_ARGUMENT.
8787
8788 * s/usg5-4-2.h: Don't declare HAVE_GETWD, VFORK_RETURN_TYPE.
8789
8790 * s/umips.h: Don't declare HAVE_GETWD, HAVE_GETTIMEOFDAY.
8791
8792 * s/cxux.h, s/gnu-linux.h, s/iris3-6.h, s/irix3-3.h: Don't declare
8793 HAVE_GETWD.
8794
074b6efe
DL
8795 * keyboard.h (poll_for_input_1): Declare.
8796
8797 * getloadavg.c: Don't define NLIST_STRUCT (handled by configure).
8798
8799 * alloc.c (xmalloc, xrealloc, xfree): Define using POINTER_TYPE.
8800
8801 * doprnt.c: Don't declare xmalloc, xrealloc.
8802
8803 * lisp.h (x_set_tool_bar_lines, free_frame_xic, compose_text)
8804 (getenv, ctime, getwd): Removed.
8805 (xmalloc, xrealloc, xfree): Declare using POINTER_TYPE.
8806
8807 * xterm.h: Remove duplicate prototypes. Declare free_frame_xic,
8808 x_set_tool_bar_lines.
8809
8810 * config.in: Add HAVE_GETWD. Move some definitions above
8811 machine/system includes.
8812
68a5e97b
KH
88132000-06-20 Kenichi Handa <handa@etl.go.jp>
8814
95417e1e
KH
8815 * s/bsd386.h (HAVE_GETLOADAVG): Define it as 1.
8816
68a5e97b
KH
8817 * xfaces.c (font_list): Handle the case that REGISTRY doesn't
8818 contain information about ENCODING.
8819
8820 * fontset.c (FONTSET_ASCII): Use the first element of char table
8821 for an ASCII font, not defalt slot.
8822 (fontset_ref_via_base): If FONTSET doesn't contain information for
8823 C, try the default fontset.
8824 (make_fontset): Don't copy the default fontset.
8825 (fontset_font_pattern): Likewise.
8826 (accumulate_font_info): If ELT is nil, use the corresponding
8827 element in the default fontset.
8828
3b4fa1b2
DL
88292000-06-19 Dave Love <fx@gnu.org>
8830
943e731c
DL
8831 * syntax.c (Fparse_partial_sexp): Doc fix.
8832
8833 * regex.h: Test PROTOTYPES as well as __STDC__.
8834
3b4fa1b2
DL
8835 * unexalpha.c: Include errno.h, string.h, unistd.h. Don't declare
8836 errno, strerror. Put text after #endif in comment.
8837
52283633 8838 * xdisp.c (dump_glyph_matrix): Add `static' to declaration (for pcc).
3b4fa1b2
DL
8839
8840 * xterm.c (x_frame_of_widget): Likewise.
8841
cdf0357b
GM
88422000-06-19 Gerd Moellmann <gerd@gnu.org>
8843
8844 * abbrev.c (syms_of_abbrev): Set buffer_default's abbrev table
8845 to Vfundamental_mode_abbrev_table.
8846
8847 * alloc.c (mark_object) [GC_CHECK_MARKED_OBJECTS]: Check that no
8848 bogus objects are marked. This slows down GC by ~80 percent, but
8849 it might be worth trying when debugging GC-related problems.
8850 This feature requires conservative stack marking to be enabled.
8851
8852 * xterm.c (XTread_socket) <KeyPress>: In case XmbLookupString
8853 returns XLookupChars, reset `modifiers' to zero.
8854
998e9f8c
DL
88552000-06-19 Dave Love <fx@gnu.org>
8856
8857 * mktime.c: Unprotoized.
8858
18e21ce8 88592000-06-19 Richard Stallman <rms@gnu.org>
d1504184
GM
8860
8861 * data.c (set_internal): If variable is frame-local,
8862 store the new value immediately into the frame parameter alist.
8863
140c4ac6
KR
88642000-06-19 Ken Raeburn <raeburn@gnu.org>
8865
14358466
KR
8866 * xfns.c (jpeg_load): Fetch error-handling data first, then fill
8867 in the custom handler pointer.
8868
140c4ac6
KR
8869 * keyboard.c (follow_key, read_key_sequence): Use XUINT on key
8870 value, or checks for CHAR_META can fail when Lisp_Object is a
8871 union type.
8872 * keymap.c (get_keyelt): Likewise.
8873
10d7bf84
KH
88742000-06-19 Kenichi Handa <handa@etl.go.jp>
8875
8876 * ccl.h (struct ccl_program): New member eol_type.
8877 (struct ccl_spec): New member cr_carryover.
8878
8879 * ccl.c (CCL_WRITE_CHAR): Convert NL according to ccl->eol_type.
8880 (setup_ccl_program): Initialize ccl->eol_type to CODING_EOL_LF.
8881
8882 * coding.c (setup_coding_system) <4>: Reset member `cr_carryover'.
8883 (ccl_coding_driver): On encoding, initialize ccl->eol_type.
8884 (decode_eol_post_ccl): New function.
8885 (decode_coding): Don't detect EOL format here for CCL based coding
8886 systems.
8887 (decode_coding) <coding_type_ccl>: Handle carryovered CR. Call
8888 decode_eol_post_ccl after running the CCL program.
8889 (code_convert_region): Don't detect EOL format here for CCL based
8890 coding systems.
8891 (decode_coding_string): Likewise.
8892
52e386c2
KR
88932000-06-18 Ken Raeburn <raeburn@gnu.org>
8894
8895 * charset.c (update_charset_table): Use XINT on "iso_final_char"
8896 when treating it as an integer.
8897
8898 * coding.h (encode_coding_string): Declare.
8899
8900 * keyboard.c (read_key_sequence): Use XINT on "pos" when treating
8901 it as an integer.
8902
8903 * keymap.c (Fwhere_is_internal): Rename argument "keymap" to
8904 "xkeymap" to avoid shadowing the "enum map_type" value that needs
8905 to be passed to get_local_map.
8906
8907 * sound.c (Fplay_sound): Don't call make_number on
8908 Frun_hook_with_args count argument.
8909
8910 * xterm.c (x_send_scroll_bar_event): Fudge lisp object/integer
8911 for lisp objects in X event structure data field, when lisp
8912 objects are represented with unions.
8913 (x_scroll_bar_to_input_event): Ditto.
8914
b357b9d4
KR
89152000-06-16 Ken Raeburn <raeburn@gnu.org>
8916
8917 * xdisp.c (decode_mode_spec): In "no_value" case, do NUL
37d034d3
KR
8918 termination of string. Fix sense of test whether
8919 Vline_number_display_limit is an integer.
b357b9d4 8920
a871441d
GM
89212000-06-16 Gerd Moellmann <gerd@gnu.org>
8922
a9021acd
GM
8923 * xfaces.c (syms_of_xfaces) [DEBUG_X_COLORS]: Defsubr dump_colors
8924 only if HAVE_X_WINDOWS.
8925
6344985d
GM
8926 * keymap.c (describe_buffer_bindings): Add `\f\n' in front
8927 of titles.
8928
427ec082 8929 * dispnew.c (update_frame_1): Handle case that cursor vpos is
a871441d
GM
8930 out of bounds.
8931
228b083e
EZ
89322000-06-15 Eli Zaretskii <eliz@is.elta.co.il>
8933
8934 * unexec.c (toplevel): Fix last change, so as not to deprive MSDOS
8935 of its headers.
8936
c25b53a2
KH
89372000-06-15 Kenichi Handa <handa@etl.go.jp>
8938
8939 * coding.c (decode_coding_emacs_mule): Always set src_base at the
8940 start of the while loop.
8941
a6981b11
GM
89422000-06-15 Gerd Moellmann <gerd@gnu.org>
8943
e9924e52
GM
8944 * atimer.c (alarm_signal_handler): Add forward declaration.
8945
a6981b11
GM
8946 * data.c (set_internal): Remove debug code.
8947
25fa6deb
GM
89482000-06-14 Gerd Moellmann <gerd@gnu.org>
8949
dce6b995
GM
8950 * Makefile.in (bootstrap-temacs): Add `-I../src'.
8951
9f817ea4
GM
8952 * unexec.c (toplevel) [COFF]: Include coff.h.
8953
8954 * s/lynxos.h: New file.
8955
8956 * keymap.c (Fsingle_key_description): Enclose function key and
8957 event symbol names in angle brackets.
8958
8a4e3c0c
GM
8959 * xdisp.c (setup_echo_area_for_printing): Call
8960 message_log_maybe_newline if message_buf_print is not set.
8961
8962 * print.c (printchar, strout): Don't check message_buf_print
427ec082 8963 before calling setup_echo_area_for_printing because that
8a4e3c0c
GM
8964 function does something useful even when message_buf_print is
8965 already set.
8966
52283633
SM
8967 * xdisp.c (message_truncate_lines, Qmessage_truncate_lines):
8968 New variables.
25fa6deb
GM
8969 (ensure_echo_area_buffers): Initialize echo buffer's
8970 truncate lines setting to nil.
8971 (with_echo_area_buffer): Don't set the echo buffer's truncate
8972 lines setting here.
8a4e3c0c 8973 (set_message_1): Set it here instead, based on the value
25fa6deb
GM
8974 of message_truncate_lines.
8975 (resize_mini_window): Handle case that lines are truncated.
52283633
SM
8976 (syms_of_xdisp): Initialize Qmessage_truncate_lines.
8977 DEFVAR_BOOL message-truncate-lines.
25fa6deb
GM
8978
8979 * keyboard.c (read_char): Bind message-truncate-lines to t
8980 while displaying a help-echo.
8981
8982 * lisp.h (Qmessage_truncate_lines): External declaration.
8983
163dcff3
GM
89842000-06-13 Gerd Moellmann <gerd@gnu.org>
8985
1681ead6
GM
8986 * xdisp.c (Vline_number_display_limit): Renamed from
8987 line_number_display_limit.
8988 (syms_of_xdisp): Use DEFVAR_LISP for line-number-display-limit.
8989 Extend documentation string. Initialize
8990 Vline_number_display_limit to nil meaning no limit.
8991 (decode_mode_spec): Use Vline_number_display_limit with its new
8992 meaning.
8993
163dcff3
GM
8994 * xterm.c (x_check_font) [GLYPH_DEBUG]: Add prototype.
8995
18e21ce8 89962000-06-13 Richard Stallman <rms@gnu.org>
163dcff3
GM
8997
8998 * frame.c (Fmodify_frame_parameters): Doc fix.
427ec082 8999
163dcff3
GM
9000 * xfns.c (x_set_frame_parameters): Comment fix.
9001
9002 * frame.c (store_frame_param): Call swap_in_global_binding if the
9003 variable's current binding was chosen based on this frame.
9004
9005 * data.c (swap_in_global_binding): New function.
9006
a704139d
EZ
90072000-06-13 Eli Zaretskii <eliz@is.elta.co.il>
9008
9009 * msdos.c (IT_write_glyphs): Don't use CODING_REQUIRE_ENCODING
9010 macro, instead AND with CODING_REQUIRE_ENCODING_MASK.
9011
9b6610db
EZ
90122000-06-13 Eli Zaretskii <eliz@is.elta.co.il>
9013
9014 * msdos.h (EMACS_MSDOS_H): Renamed from MSDOS_H_.
9015
c68833d2
JR
90162000-06-12 Jason Rumney <jasonr@gnu.org>
9017
9018 * w32bdf.h (EMACS_W32BDF_H): Renamed from __W32BDF_H__
9019
9020 * w32.h (EMACS_W32_H): Renamed from _NT_H_
9021
9022 * w32gui.h (EMACS_W32GUI_H): Renamed from __W32GUI_H__
9023
9024 * w32inevt.h (EMACS_W32INEVT_H): Renamed from __NTINEVT_H__
9025
ed1056b3
GM
90262000-06-12 Gerd Moellmann <gerd@gnu.org>
9027
9028 * xfaces.c (Fdump_colors) [DEBUG_X_COLORS]: New function.
9029 (syms_of_xfaces): Defsubr Sdump_colors.
9030 (x_free_colors): Don't treat b&w specially on default visual.
9031 (x_free_dpy_colors): New function.
9032 (free_face_colors): Don't check visual class; it's done
9033 in x_free_colors.
9034
9035 * xterm.c (x_frame_of_widget): New function.
9036 (x_alloc_nearest_color_for_widget): Use it.
9037 (x_copy_dpy_color): New function.
9038 (x_destroy_window): Free various colors.
9039
5050a2ef
KH
90402000-06-12 Kenichi Handa <handa@etl.go.jp>
9041
9042 * ccl.h (EMACS_CCL_H): Renamed from _CCL_H.
9043
9044 * charset.h (EMACS_CHARSET_H): Renamed from _CHARSET_H.
9045
9046 * coding.h (EMASC_CODING_H): Renamed from _CODING_H.
9047
9048 * composite.h (EMACS_COMPOSITE_H): Renamed from _COMPOSITE_H.
9049
9050 * fontset.h (EMACS_FONTSET_H): Renamed from _FONTSET_H.
9051
fb1b041d
DL
90522000-06-11 Dave Love <fx@gnu.org>
9053
9054 * systime.h (EMACS_SYSTIME_H): Renamed from _SYSTIME_H.
9055
ff96b5f4
EZ
90562000-06-11 Eli Zaretskii <eliz@is.elta.co.il>
9057
9058 * msdos.h: Don't use _MSDOS_H_ as a symbol, use MSDOS_H_ instead.
9059
db8eeecd
GM
90602000-06-11 Gerd Moellmann <gerd@gnu.org>
9061
ed1056b3 9062 * xmenu.c (xmenu_show): Cast second parameter of lw_popup_menu
db8eeecd
GM
9063 to `XEvent *'.
9064
49b71c5f
KH
90652000-06-10 Kenichi Handa <handa@etl.go.jp>
9066
c479bd55
KH
9067 * regex.c (MAKE_CHAR) [!emacs]: Dummy macro for non-Emacs env.
9068 (regex_compile): Fix the code for handling the case of single byte
9069 char and multibyte char being mixed in a range within [...].
9070
ff6a65c2
KH
9071 * fileio.c (Finsert_file_contents): Be sure to setup src_multibyte
9072 and dst_multibyte members of coding.
9073
49b71c5f
KH
9074 * charset.c (update_charset_table): Update the table
9075 bytes_by_char_head.
9076 (init_charset_once): Initialize elements of bytes_by_char_head to
9077 1 except for leading codes for private charases.
9078
9079 * charset.h (CHARSET_8_BIT_GRAPHIC): Define as 0x80.
52283633 9080 (UNIBYTE_STR_AS_MULTIBYTE_P): Fix for an invalid multibyte sequence.
49b71c5f 9081
9e80b57d
KR
90822000-06-09 Ken Raeburn <raeburn@gnu.org>
9083
9084 * xterm.c (x_connection_closed): If dpyinfo is NULL, don't try to
9085 access the data it doesn't point to.
9086
f83fe4b4
GM
90872000-06-08 Gerd Moellmann <gerd@gnu.org>
9088
9089 * xterm.c (XTread_socket) <FocusIn>: Queue a FOCUS_IN_EVENT which
db8eeecd 9090 will be translated to a switch-frame event when reading the
f83fe4b4
GM
9091 event queue. This is necessary because Emacs otherwise won't
9092 perform a switch-frame to a new frame until some other event, for
9093 example a keystroke event, forces it to do so. This has various
9094 effects, one visible being that the cursor of a frame created with
9095 C-x 5 2 or switched to with a window manager key binding like
9096 A-TAB stays hollow because selected_window isn't on the newly
9097 focused frame until the switch-frame is performed.
9098
9099 * keyboard.c (kbd_buffer_get_event): Handle FOCUS_IN_EVENT by
9100 generating a switch-frame event if necessary.
9101
9102 * termhooks.h (enum event_kind): Add FOCUS_IN_EVENT.
9103
9104 * xdisp.c (handle_fontified_prop): Don't GCPRO local var `pos';
9105 it's an integer.
9106
0890801b
KH
91072000-06-08 Kenichi Handa <handa@etl.go.jp>
9108
52283633 9109 * fontset.c (Fset_fontset_font): The arg CHARACTER may be a charset.
0890801b 9110
173cbca8
GM
91112000-06-07 Gerd Moellmann <gerd@gnu.org>
9112
3091c2a6
GM
9113 * window.c (displayed_window_lines): Take empty lines at
9114 the bottom of a window into account.
427ec082 9115
f38952fe
GM
9116 * window.c (displayed_window_lines): New function.
9117 (Fmove_to_window_line): Use displayed_window_lines to determine
9118 the number of lines to move, instead of using the window's height.
9119
9120 * lread.c (readevalloop): If READCHARFUN sets point to ZV, arrange
9121 to stop reading, even if the form read sets point to a different
9122 value when evaluated.
9123
427ec082 9124 * xdisp.c (display_line): Fix code deciding in which line to
173cbca8
GM
9125 put the cursor.
9126
6ba6c818
KH
91272000-06-07 Kenichi Handa <handa@etl.go.jp>
9128
9129 * fileio.c (e_write): Free composition data if stored in
9130 coding->cmp_data.
9131
5f1aea9a
GM
91322000-06-06 Gerd Moellmann <gerd@gnu.org>
9133
666852af
GM
9134 * xdisp.c (display_line): Set row's and iterator's
9135 starts_in_middle_of_char_p and ends_in_middle_of_char_p flags.
9136 Set cursor even if row ends in the middle of a character.
9137 (dump_glyph_row): Print values of new flags.
9138 (redisplay_window) <cursor movement in unchanged window>: When
9139 point has been moved forward, and PT is at the end of the cursor
9140 row, don't place the cursor in the next row if the cursor row ends
9141 in the middle of a character or at ZV.
9142
9143 * dispextern.h (struct it): Add starts_in_middle_of_char_p.
9144 (struct glyph_row): Add starts_in_middle_of_char_p and
9145 ends_in_middle_of_char_p.
9146 (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P): Test row's
9147 ends_in_middle_of_char_p flag.
9148 (MATRIX_ROW_STARTS_IN_MIDDLE_OF_CHAR_P): Likewise.
9149
d13f3e2e
GM
9150 * term.c (append_glyph): Revert change of 2000-06-06.
9151
9152 * xdisp.c (display_line): Revert change of 2000-06-06. Treat
9153 padding glyph not fitting on line as whole character not
9154 fitting on line.
9155
5f1aea9a
GM
9156 * xterm.c (x_produce_glyphs): Don't xassert `it->descent > 0';
9157 this isn't true for images with `:ascent 100'.
9158
10cda9b0
KH
91592000-06-06 Kenichi Handa <handa@etl.go.jp>
9160
ed00559d
KH
9161 * buffer.c (Fset_buffer_multibyte): Don't make the current buffer
9162 as modified if it is originally unmodified.
9163
10cda9b0
KH
9164 * term.c (encode_terminal_code): Change the way to check if
9165 terminal coding does any conversion.
9166 (append_glyph): Set glyph->pixel_width correctly.
9167
9168 * xdisp.c (display_line): While checking line continuation, pay
9169 attention to a padding glyph.
9170
1969fae2
GM
91712000-06-05 Gerd Moellmann <gerd@gnu.org>
9172
9173 * xdisp.c (redisplay_window): Always use set_buffer_internal_1.
9174
162ccef4
DL
91752000-06-05 Dave Love <fx@gnu.org>
9176
f19f32dd
DL
9177 * xdisp.c: Include fontset.h.
9178
9179 * xfns.c (x_real_positions): Declare tmp_nchildren as unsigned.
9180
9181 * xterm.c (x_calc_absolute_position): Declare nchildren unsigned.
9182
9183 * dispnew.c: Conditionally include term.h.
9184
9185 * coding.h: Declare code_convert_string_norecord.
9186
9187 * frame.h (struct frame): Use volatile unconditionally.
9188
9189 * buffer.h: Remove Vbefore_change_function, Vafter_change_function.
9190
9191 * xmenu.c (menu_item_selection): Declare volatile unconditionally.
9192
9193 * systime.h: Protect against multiple inclusion.
9194 (timezone) [USG5_4]: Define as time_t.
9195
9196 * lisp.h (DEFUN, EXFUN): Test PROTOTYPES.
9197 (Foptimize_char_table, make_temp_name): Declare.
9198
9199 * Makefile.in (xdisp.o): Depend on fontset.h.
9200
9201 * xterm.c (x_calc_absolute_position): Declare nchildren unsigned.
9202
9203 * lisp.h (DEFUN, EXFUN): Test PROTOTYPES.
9204 (Foptimize_char_table, make_temp_name): Declare.
9205
427ec082 9206 * s/irix4-0.h:
162ccef4
DL
9207 * s/irix5-0.h:
9208 * s/netbsd.h: Don't define autoconfiscated MATHERR.
9209
2082fe81
DL
92102000-06-02 Dave Love <fx@gnu.org>
9211
9212 * lread.c (_XOPEN_SOURCE, __EXTENSIONS__): Don't define.
9213
dcf671d2
GM
92142000-06-02 Gerd Moellmann <gerd@gnu.org>
9215
9216 * xfaces.c (realize_x_face): When copying BASE_FACE bitwise to the
1969fae2 9217 result face, set flags in that face indicating that colors may not
dcf671d2
GM
9218 be freed.
9219
9220 * xterm.c (x_set_mouse_face_gc): If first glyph isn't a character
9221 glyph, use the ASCII NUL character to determine the face.
9222
d42122a3
DL
92232000-06-02 Dave Love <fx@gnu.org>
9224
9225 * sysdep.c: Conditionally include stdlib.h, unistd.h.
9226 (VFORK_RETURN_TYPE): Remove.
427ec082 9227
d42122a3
DL
9228 * config.in: Add NO_MATHERR.
9229
dd432f16
DL
92302000-06-01 Dave Love <fx@gnu.org>
9231
90aa4ea8
DL
9232 * cmds.c (internal_self_insert): Don't check
9233 Vbefore_change_function, Vafter_change_function.
9234
9235 * insdel.c (signal_before_change, signal_after_change): Likewise.
9236
9237 * buffer.c (Vbefore_change_function, Vafter_change_function):
9238 Variables and their initializations deleted.
9239
2330c9d4
DL
9240 * callint.c (Fcall_interactively): Doc fix.
9241
dd432f16
DL
9242 * terminfo.c (ospeed) [HAVE_SPEED_T]: Don't declare extern.
9243
bf9e8804
DL
92442000-05-31 Dave Love <fx@gnu.org>
9245
9246 * textprop.c: Revert last change -- duplicated.
9247
3694b4ab
GM
92482000-05-31 Gerd Moellmann <gerd@gnu.org>
9249
9250 * dispnew.c (find_glyph_row_slice, swap_glyphs_in_rows): Put
9251 in #if 0.
9252
9253 * lisp.h (eassert) [!ENABLE_CHECKING]: Define as `(void) 0'.
9254
f14156cd
JR
92552000-05-31 Jason Rumney <jasonr@gnu.org>
9256
8119aab8
JR
9257 * search.c (Fre_search_forward, Fre_search_backward)
9258 (Fposix_search_backward, Fposix_search_forward): Fix newlines in docs.
9259
f14156cd
JR
9260 * w32select.c (Fw32_set_clipboard_data): Change QNil to Qnil.
9261
4aab9be3
JR
92622000-05-30 Jason Rumney <jasonr@gnu.org>
9263
9264 * coding.h (ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: New macros.
9265 [WINDOWSNT]: Add extern for Vw32_system_coding_system.
9266
52283633 9267 * dispextern.h (struct glyph) [WINDOWSNT]: Add w32_font_type member.
4aab9be3
JR
9268
9269 * fileio.c (Fread_file_name) [HAVE_NTGUI]: Use file dialog.
9270 (Fread_file_name) [HAVE_NTGUI, USE_MOTIF]: Do not attempt to
9271 expand a nil default_filename.
9272
9273 * keyboard.c (make_lispy_event) [WINDOWS_NT]: Pass a window
9274 pointer to glyph_to_pixel_coords, not a frame.
9275
9276 * makefile.nt (w32fns.obj, w32menu.obj): Add charset.h and
9277 coding.h to dependencies.
9278
9279 * w32bdf.c (w32_load_bdf_font): Initialize font->double_byte_p.
9280
9281 * w32console.c (glyph_to_pixel_coords): Change first parameter to
9282 window pointer to be consistent with w32term.c and xterm.c.
9283
9284 * w32fns.c: Format and doc changes to bring closer to xfns.c.
9285 (VIETNAMESE_CHARSET): Define if not defined in system headers.
9286 (Qline_spacing, Qcenter): New variables.
9287 (Qw32_charset_*, w32_codepage_for_font): Moved from w32term.c.
9288 (x_set_line_spacing): New function.
52283633 9289 (x_set_frame_parameters): Use FRAME_NEW_WIDTH, FRAME_NEW_HEIGHT macros.
4aab9be3
JR
9290 (x_specified_cursor_type): New function.
9291 (x_set_cursor_type): Use it.
9292 (x_set_name, x_set_title): Use ENCODE_SYSTEM to encode titlebar
9293 and icon strings.
9294 (validate_x_resource_name, x_get_resource_string): Measure lengths
9295 of external strings in bytes.
9296 (w32_wnd_proc) [WM_MEASURE_ITEM]: Avoid calling
9297 GetTextExtentPoint32 with NULL title.
9298 (Fx_create_frame): Initialize Qline_spacing.
9299 (w32_load_system_font): Initialize font->double_byte_p.
9300 (x_to_w32_charset): Use Vw32_charset_info_alist.
9301 (Image, busy cursor, tooltip functions): Merged changes from
9302 xfns.c. Not yet functional on Windows.
9303
9304 * w32gui.h (W32FontStruct): Add double_byte_p member.
9305
9306 * w32inevt.c (NUM_TRANSLATED_MOUSE_BUTTONS): New constant.
9307 (emacs_button_translation): Use it.
9308 (do_mouse_event): Allow up to 32 mouse buttons by allowing any bit
9309 in `mask' to be set.
9310
9311 * w32menu.c (single_submenu, w32_menu_show): Call ENCODE_SYSTEM on
9312 menu strings.
9313
9314 * w32term.c: Format and doc changes to bring closer to xterm.c.
9315 (w32_char_font_type): New enum.
9316 (Qw32_charset_*, w32_codepage_for_font): Moved to w32fns.c.
9317 (w32_per_char_metric): Use w32_char_font_type instead of unicode_p.
9318 (w32_encode_char): New function.
9319 (x_encode_char): Removed.
9320 (x_get_glyph_and_face_encoding): Use w32_encode_char in place of
9321 x_encode_char and w32_font_is_double_byte.
9322 (x_produce_image_glyph): Use image_ascent.
9323 (x_produce_glyphs): Use new version of w32_per_char_metric and
9324 handle NULL return value. Allow extra line spacing.
9325 (W32_TEXTOUT): Distinguish between Unicode and DBCS text.
9326 (w32_get_glyph_overhangs): Remove unicode_p param. Use
9327 w32_font_type member of glyph instead.
9328 (x_draw_glyph_string): Draw underline and strike-out for BDF fonts.
9329 (fast_find_position): Make sure not to consider rows not visible
9330 in the window.
9331 (w32_read_socket) [WM_MENUSELECT]: Cannot call
9332 w32_menu_display_help with input blocked, as it can abort.
9333 (x_display_and_set_cursor): Choose cursor depending
9334 on buffer-local value of cursor_type.
9335 (x_draw_bar_cursor): Add parameter WIDTH.
9336
9337 * w32term.h (CP_DEFAULT): Define.
9338 (Fx_display_color_p, Fx_display_grayscale_p, image_ascent): Declare.
9339
10fc3187
GM
93402000-05-30 Gerd Moellmann <gerd@gnu.org>
9341
9342 * search.c (Fre_search_forward, Fre_search_backward)
9343 (Fposix_search_backward, Fposix_search_forward): Doc fix.
9344
d0555360
KH
93452000-05-30 Kenichi Handa <handa@etl.go.jp>
9346
9347 * coding.c (detect_coding_iso2022): Fix code for checking
9348 CODING_CATEGORY_MASK_ISO_8_2.
9349
f1ad044f
SM
93502000-05-29 Stefan Monnier <monnier@cs.yale.edu>
9351
9352 * regex.c (PREFETCH_NOLIMIT): New function.
9353 (re_match_2_internal): Use it and adjust the end_match_2 logic.
9354
84ec3b4b
GM
93552000-05-29 Gerd Moellmann <gerd@gnu.org>
9356
66254a13
GM
9357 * syntax.c (find_defun_start): Move test for
9358 open_paren_in_column_0_is_defun_start outside of the loop.
9359
49e70dec
GM
9360 * xdisp.c (redisplay_window): Really switch buffers when
9361 displaying mode lines, and temporarily set selected_frame to the
9362 frame of the window that's redisplayed.
9363
84ec3b4b
GM
9364 * xfaces.c (free_realized_faces): Block/unblock input.
9365 (free_realized_multibyte_face): Ditto.
9366
869a3a14
DL
93672000-05-29 Dave Love <fx@gnu.org>
9368
9369 * textprop.c (Qkeymap): New variable.
9370 (syms_of_textprop): Intern it.
9371
9372 * keymap.c: Include intervals.h.
9373 (Fkey_binding, Fwhere_is_internal): Deal with `keymap' property.
9374
9375 * Makefile.in (keymap.o): Depend on intervals.h.
9376
9377 * keyboard.c (menu_bar_items, tool_bar_items)
9378 (Fexecute_extended_command): Deal with `keymap' property.
9379 (read_key_sequence): Track map from `keymap' property as well as
9380 `local_map'.
9381
9382 * intervals.c (get_local_map): Extra arg to allow looking for
9383 `keymap' too.
9384
9385 * intervals.h (map_property): New enum.
9386 (get_local_map): Extra arg using it.
9387 (Qkeymap): Declare.
9388
84ec3b4b 9389 * lisp.h (get_local_map): Don't declare here.
869a3a14 9390
89d0c844
KH
93912000-05-29 Kenichi Handa <handa@etl.go.jp>
9392
9393 * Makefile.in (callproc.o): Depend on composite.h.
9394
9395 * callproc.c: Include composite.h.
9396 (Fcall_process): Handle composition correctly.
9397
9398 * coding.h (coding_allocate_composition_data): Extern it.
9399 (coding_restore_composition): Likewise.
9400
9401 * coding.c (DECODE_COMPOSITION_START): If coding->cmp_data is not
9402 yet allocated, finish decoding with result
9403 CODING_FINISH_INSUFFICIENT_CMP.
9404 (coding_allocate_composition_data): Make it non-static.
9405 (coding_restore_composition): Likewise.
9406
797a084a
EZ
94072000-05-29 Eli Zaretskii <eliz@is.elta.co.il>
9408
9409 * charset.c (syms_of_charset): Revert last change.
9410
cf872af5
EZ
94112000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
9412
9413 * term.c (produce_glyphs): Treat characters from the eight-bit-*
d7d0dac0
SM
9414 charsets as unibyte, with 1-column screen width. Sent by Kenichi
9415 Handa.
cf872af5 9416
5b1ae051
EZ
94172000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
9418
9419 * charset.c (syms_of_charset): Set width of character sets
9420 eight-bit-control and eight-bit-graphic to 1 column.
9421
34ec9ebe
GM
94222000-05-26 Gerd Moellmann <gerd@gnu.org>
9423
9424 * config.in (HAVE_SPEED_T): New define.
9425
9426 * sysdep.c, terminfo.c (ospeed) [HAVE_SPEED_T]: Declare as
9427 `extern speed_t'.
9428
dd854dc2
DL
94292000-05-26 Dave Love <fx@gnu.org>
9430
9431 * coding.c (shrink_decoding_region): Initialize eol_conversion.
9432
9433 * data.c (Qsubrp, Qmany, Qunevalled): New variables.
9434 (Fsubr_arity): New function.
9435 (syms_of_data): Install them.
9436
ba9f8f95
KH
94372000-05-26 Kenichi Handa <handa@etl.go.jp>
9438
0f3e0672
KH
9439 * charset.c (init_charset_once): Set the table bytes_by_char_head
9440 correctly.
9441
cebefb44
KH
9442 * fontset.c (syms_of_fontset): Adjust the font name for ascii of
9443 the default fontset to what Emacs uses by default.
0f3e0672
KH
9444 (check_registry_encoding): This function deleted.
9445 (Fset_fontset_font): Remove the adhoc condition for the default
9446 fontset. Allow cons in FONTNAME.
cebefb44 9447
0f3e0672
KH
9448 * fns.c (map_char_table): Ignore char-table entries for
9449 charsets eight-bit-control and eight-bit-graphic.
ba9f8f95 9450
7a18af49
KR
94512000-05-25 Ken Raeburn <raeburn@gnu.org>
9452
9453 * emacs.c (main): Initialize keyboard syms before initializing
9454 window code, so face names are available.
9455
d2af47df
SM
94562000-05-25 Stefan Monnier <monnier@cs.yale.edu>
9457
9458 * regex.c (at_begline_loc_p): Also recognize the \\(?:^ case
9459 of an anchor at the beginning of a shy-group.
9460
fc6a6a4e
GM
94612000-05-25 Gerd Moellmann <gerd@gnu.org>
9462
9463 * xdisp.c (handle_invisible_prop): Don't try to skip over
9464 invisible text if end of text is already reached.
9465
005f0d35
DL
94662000-05-25 Dave Love <fx@gnu.org>
9467
02513cdd
DL
9468 * xdisp.c (Fdump_glyph_matrix): Declare the arg.
9469
005f0d35
DL
9470 * coding.c (encode_eol): Add null statement after label.
9471
89f6ca4e
EZ
94722000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
9473
9474 * w16select.c (Fw16_set_clipboard_data): Fix the change from
9475 2000-05-20.
9476
a4e1759e
KH
94772000-05-25 Kenichi Handa <handa@etl.go.jp>
9478
9479 * ccl.c (ccl_driver): Fix previous change.
9480
eacfd7fe
KH
94812000-05-25 Kenichi Handa <handa@etl.go.jp>
9482
46ab33a9
KH
9483 * coding.c (run_pre_post_conversion_on_str): Set point to the
9484 beginning of buffer before calling coding->post_read_conversion.
9485 (decode_coding_string): Give correct args to
9486 run_pre_post_conversion_on_str.
9487 (encode_coding_string): Likewise.
9488
eacfd7fe
KH
9489 * ccl.c (ccl_driver) <CCL_ReadMultibyteChar2>
9490 <CCL_WriteMultibyteChar2>: Handle charsets eight-bit-control and
9491 eight-bit-graphic correctly.
9492
f8569325
DL
94932000-05-24 Kenichi HANDA <handa@etl.go.jp>
9494
9495 * fileio.c (Finsert_file_contents): Even if a file is not found,
9496 execute codes for setting up coding system. Call
9497 after-insert-file-functions unconditionally.
9498
04545643
GM
94992000-05-24 Gerd Moellmann <gerd@gnu.org>
9500
9501 * callproc.c, emacs.c, sysdep.c (setpgrp): Don't define if USG and
9502 BSD_PGRPS are not defined.
9503
747d90ea
KH
95042000-05-24 Kenichi Handa <handa@etl.go.jp>
9505
9506 * charset.c (update_charset_table): Accept nil in LONG_NAME and
9507 DESCRIPTION.
9508 (syms_of_charset): Avoid building same strings.
9509
716e3b88
GM
95102000-05-23 Gerd Moellmann <gerd@gnu.org>
9511
9512 * lread.c (Fload): Add a comment about the meaning of
9513 Vuser_init_file being t.
9514
9515 * puresize.h (BASE_PURESIZE): Increase to 675000.
9516
9517 * s/gnu-linux.h (setpgrp): Don't define it here because this
9518 prevents compilation on GNU/Linux systems with glib 2.2.
9519
9520 * callproc.c, emacs.c, sysdep.c (setpgrp) [HAVE_SETPGID]: Define
9521 as setpgid.
427ec082 9522
9aeb39fa
EZ
95232000-05-23 Eli Zaretskii <eliz@is.elta.co.il>
9524
9525 * Makefile.in (SOME_MACHINE_LISP): Add disp-table.elc,
9526 dos-vars.elc, ccl.elc, and codepage.elc, all loaded by the MS-DOS
9527 version.
9528 (MSDOS_SUPPORT): Add dos-vars.elc, ccl.elc, and codepage.elc.
9529
29ced61b
KH
95302000-05-23 Kenichi Handa <handa@etl.go.jp>
9531
52283633 9532 * syntax.c (skip_chars): Use FETCH_STRING_CHAR_ADVANCE unconditionally.
0574a2ed 9533
3d80f24d
KH
9534 * msdos.c (IT_write_glyphs): Set coding->src_multibyte to 1.
9535
52283633 9536 * term.c (encode_terminal_code): Set coding->src_multibyte properly.
3d80f24d 9537
29ced61b
KH
9538 * coding.c (encode_eol): Fix a bug of DOS style EOL encoding.
9539
d7e00792
KH
95402000-05-22 Kenichi Handa <handa@etl.go.jp>
9541
c9d80d38
KH
9542 * keyboard.c (read_char): Allow character codes 128..255 to be
9543 handled by input-method-function.
9544
d7e00792
KH
9545 * insdel.c (adjust_markers_for_replace): Fix previous change.
9546 (adjust_after_replace): If PREV_TEXT is nil, call
9547 adjust_markers_for_insert, not adjust_markers_for_replace.
9548
087121cc 95492000-05-20 NIIBE Yutaka <gniibe@mri.co.jp>
427ec082 9550
087121cc
GM
9551 * s/gnu-linux.h (UNIX98_PTYS) [HAVE_GRANDPT]: Define.
9552 (PTY_ITERATION, PTY_NAME_SPRINTF, PTY_OPEN, PTY_TTY_NAME_SPRINTF)
9553 [HAVE_GRANDPT]: Define.
9554 (C_SWITCH_SYSTEM): Add -D_XOPEN_SOURCE.
9555
9556 * sysdep.c (setup_pty): Treat case that UNIX98_PTYS is defined
9557 like SYSV_PTYS.
9558
9559 * config.in (HAVE_GRANDPT, HAVE_GETPT): New defines.
9560
9561 * process.c (toplevel) [UNIX98_PTYS]: Include stdlib.h.
9562
c9671f81
KH
95632000-05-20 Kenichi Handa <handa@etl.go.jp>
9564
9565 The following changes are to handle 8-bit characters in a
9566 multibyte buffer/string without facing with byte combining
9567 problem. Two new charsets eight-bit-control (for 0x80..0x9F) and
9568 eight-bit-graphic (for 0xA0..0xFF) are introduced.
9569
9570 * Makefile.in (fns.o): Depend on charset.h.
9571
9572 * alloc.c (Fmake_byte_code): If BYTECODE-STRING is multibyte,
9573 convert it to unibyte.
9574 (make_string): Use parse_str_as_multibyte, not chars_in_text.
9575
9576 * buffer.c (advance_to_char_boundary): Don't use DEC_POS to find a
9577 apparent char boundary.
9578 (Fset_buffer_multibyte): Convert 8-bit characters in the range
9579 0x80..0x9F to/from multibyte form.
9580
9581 * bytecode.c (Fbyte_code): If arg BYTESTR is multibyte, convert it
9582 to unibyte.
9583
9584 * callproc.c (Fcall_process): Always encode an argument string if
9585 it is multibyte. Setup src_multibyte and dst_multibyte members of
9586 process_coding properly.
ce75fd23 9587
c9671f81
KH
9588 * category.c (Fmodify_category_entry): Use SPLIT_CHAR, not
9589 SPLIT_NON_ASCII_CHAR.
9590
9591 * ccl.c (CCL_WRITE_CHAR): Be sure to write single byte characters
9592 as is.
9593 (CCL_MAKE_CHAR): Use MAKE_CHAR, not MAKE_NON_ASCII_CHAR.
9594
52283633 9595 * charset.c (Qeight_bit_control, Qeight_bit_graphic): New variables.
c9671f81 9596 (SPLIT_CHARACTER_SEQ): This macro deleted.
52283633 9597 (SPLIT_MULTIBYTE_SEQ): Assume that multibyte sequence at STR is valid.
c9671f81
KH
9598 (CHAR_COMPONENTS_VALID_P): Handle new charsets; eight-bit-control
9599 and eight-bit-graphic.
9600 (char_to_string): Likewise. Signal an error for too large
9601 character code.
9602 (char_printable_p): Return 0 for 8-bit characters.
9603 (update_charset_table): Update iso_charset_table only when a final
9604 character is non-negative.
9605 (find_charset_in_text): Renamed from find_charset_in_str.
9606 Arguments and return value changed. Callers changed.
9607 (Fdefine_charset): Args ISO-FINAL-CHAR and ISO-GRAPHIC-PLANE can
9608 be -1 if CHARSET is used only internally.
9609 (Fmake_char_internal): Handle new charsets; eight-bit-control and
9610 eight-bit-graphic.
9611 (Fcharset_after): Simplified.
9612 (char_valid_p): Use SPLIT_CHAR, not SPLIT_NON_ASCII_CHAR.
9613 (char_bytes): Return 2 for chars of the range 0xA0..0xFF.
9614 (multibyte_chars_in_text): Simplified by assuming there's no
9615 invalid multibyte sequence.
52283633
SM
9616 (parse_str_as_multibyte, str_as_multibyte, str_to_multibyte)
9617 (str_as_unibyte): New functions.
9618 (Fstring): Simpified by assuming that byte combining never happens.
c9671f81
KH
9619 (init_charset_once): Initialization for
9620 LEADING_CODE_8_BIT_CONTROL.
9621 (syms_of_charset): Intern and staticpro Qeight_bit_control and
9622 Qeight_bit_graphic. Include them in Vcharset_list. Make charsets
9623 eight-bit-control and eight-bit-graphic.
9624
52283633
SM
9625 * charset.h (LEADING_CODE_8_BIT_CONTROL, CHARSET_8_BIT_CONTROL)
9626 (CHARSET_8_BIT_GRAPHIC): New macros.
c9671f81
KH
9627 (SINGLE_BYTE_CHAR_P): Make it faster by using casting.
9628 (CHARSET_ISO_GRAPHIC_PLANE): Use XINT instead of XFASTINT.
9629 (CHARSET_REVERSE_CHARSET): Likewise.
9630 (CHARSET_VALID_P): Handle new charsets; eight-bit-control and
9631 eight-bit-graphic.
9632 (BYTES_BY_CHAR_HEAD, WIDTH_BY_CHAR_HEAD): Optimize for ASCII.
9633 (CHAR_CHARSET, MAKE_CHAR, SPLIT_CHAR, CHAR_BYTES): Likewise.
9634 (PARSE_MULTIBYTE_SEQ) [BYTE_COMBINING_DEBUG]: Abort if we
9635 encounter an invalid multibyte sequence.
9636 (PARSE_MULTIBYTE_SEQ) [not BYTE_COMBINING_DEBUG]: Assume multibyte
9637 sequence is always valid.
9638 (MAKE_NON_ASCII_CHAR, SPLIT_NON_ASCII_CHAR): These macros Deleted.
52283633 9639 (UNIBYTE_STR_AS_MULTIBYTE_P, MULTIBYTE_STR_AS_UNIBYTE_P): New macros.
c9671f81
KH
9640 (CHAR_STRING): For 8-bit characters, call char_to_string.
9641 (INC_POS) [not BYTE_COMBINING_DEBUG]: Faster version. Assume
9642 multibyte sequence is always valid.
9643 (BUF_INC_POS) [not BYTE_COMBINING_DEBUG]: Likewise.
52283633
SM
9644 (parse_str_as_multibyte, str_as_multibyte, str_to_multibyte)
9645 (str_as_unibyte): Extern them.
c9671f81 9646 (BCOPY_SHORT): Fix a bug.
52283633 9647 (CHAR_LEN): This macro deleted. Callers changed to use CHAR_BYTES.
c9671f81
KH
9648 (FETCH_STRING_CHAR_ADVANCE): Check multibyteness of STRING.
9649 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): New macro.
9650 (FETCH_CHAR_ADVANCE): Check multibyteness of the current buffer.
9651
bd4bde7f 9652 * coding.c (ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->result to
c9671f81 9653 CODING_FINISH_INSUFFICIENT_SRC if there's not enough source.
52283633
SM
9654 (ONE_MORE_CHAR, EMIT_CHAR, EMIT_ONE_BYTE, EMIT_TWO_BYTE)
9655 (EMIT_BYTES): New macros.
9656 (THREE_MORE_BYTES, DECODE_CHARACTER_ASCII)
9657 (DECODE_CHARACTER_DIMENSION1, DECODE_CHARACTER_DIMENSION2): These
c9671f81
KH
9658 macros deleted.
9659 (CHECK_CODE_RANGE_A0_FF): This macro deleted.
9660 (detect_coding_emacs_mule): Use UNIBYTE_STR_AS_MULTIBYTE_P to
9661 check the validity of multibyte sequence.
9662 (decode_coding_emacs_mule): New function.
9663 (encode_coding_emacs_mule): New macro.
9664 (detect_coding_iso2022): Use ONE_MORE_BYTE to fetch a byte from
9665 the source.
9666 (DECODE_ISO_CHARACTER): Just return a character code.
9667 (DECODE_COMPOSITION_START): Set coding->result instead of result.
9668 (decode_coding_iso2022, decode_coding_sjis_big5, decode_eol): Use
9669 EMIT_CHAR to produced decoded characters. Exit the loop only by
9670 macros ONE_MORE_BYTE or EMIT_CHAR. Don't handle the case of last
9671 block here.
9672 (ENCODE_ISO_CHARACTER): Don't translate character here. Produce
9673 only position codes for an invalid character.
9674 (encode_designation_at_bol): Return new destination pointer. 5th
9675 arg DSTP is changed to DST.
9676 (encode_coding_iso2022, decode_coding_sjis_big5): Get a character
9677 from the source by ONE_MORE_CHAR. Don't handle the case of last
9678 block here.
9679 (DECODE_SJIS_BIG5_CHARACTER, ENCODE_SJIS_BIG5_CHARACTER): These
9680 macros deleted.
52283633
SM
9681 (detect_coding_sjis, detect_coding_big5, detect_coding_utf_8)
9682 (detect_coding_utf_16, detect_coding_ccl): Use ONE_MORE_BYTE and
c9671f81
KH
9683 TWO_MORE_BYTES to fetch a byte from the source.
9684 (encode_eol): Pay attention to coding->src_multibyte.
9685 (detect_coding, detect_eol): Preserve members src_multibyte and
9686 dst_multibyte.
9687 (DECODING_BUFFER_MAG): Return 2 even for coding_type_raw_text.
9688 (encoding_buffer_size): Set magnification to 3 for all coding
9689 systems that require encoding.
9690 (ccl_coding_driver): For decoding, be sure that the result is
9691 valid multibyte sequence.
9692 (decode_coding): Initialize coding->errors and coding->result.
9693 For emacs-mule, call decode_coding_emacs_mule. For no-conversion
9694 and raw-text, always call decode_eol. Handle the case of last
9695 block here. If not coding->dst_multibyte, convert the resulting
9696 sequence to unibyte.
9697 (encode_coding): Initialize coding->errors and coding->result.
9698 For emacs-mule, call encode_coding_emacs_mule. For no-conversion
9699 and raw-text, always call encode_eol. Handle the case of last
9700 block here.
9701 (shrink_decoding_region, shrink_encoding_region): Detect cases
9702 that we can't skip data more rigidly.
9703 (code_convert_region): Setup src_multibyte and dst_multibyte
9704 members of coding. For decoding, if the buffer is multibyte,
9705 convert the source sequence to unibyte in advance. For encoding,
9706 if the buffer is multibyte, convert the resulting sequence to
9707 multibyte afterward.
9708 (run_pre_post_conversion_on_str): New function.
9709 (code_convert_string): Deleted and divided into the following two.
9710 (decode_coding_string, encode_coding_string): New functions.
9711 (code_convert_string1, code_convert_string_norecord): Call one of
9712 above.
9713 (Fdecode_sjis_char, Fdecode_big5_char): Use MAKE_CHAR instead of
9714 MAKE_NON_ASCII_CHAR.
52283633
SM
9715 (Fset_terminal_coding_system_internal)
9716 (Fset_safe_terminal_coding_system_internal): Setup src_multibyte
c9671f81
KH
9717 and dst_multibyte members.
9718 (init_coding_once): Initialize iso_code_class with new enum
9719 ISO_control_0 and ISO_control_1.
9720
9721 * coding.h (enum iso_code_class_type): Member ISO_control_code is
9722 devided into ISO_control_0 and ISO_control_1.
9723 (struct coding_system): New members src_multibyte, dst_multibyte,
9724 errors, and result. Delete member fake_multibyte.
9725 (CODING_REQUIRE_DECODING): Return 1 if coding->dst_multibyte is
9726 nonzero.
9727 (CODING_REQUIRE_ENCODING): Return 1 if coding->src_multibyte is
9728 nonzero.
9729
9730 * data.c (Faref): Use SPLIT_CHAR instead of SPLIT_NON_ASCII_CHAR.
9731 (Faset): Likewise.
9732
9733 * editfns.c (Fformat): Be sure to convert 8-bit characters to
9734 multibyte form.
9735 (Ftranspose_region) [BYTE_COMBINING_DEBUG]: Abort if byte
9736 combining occurs.
9737 (Ftranspose_region): Delete codes for handling byte combining.
9738
9739 * fileio.c (Finsert_file_contents): Setup src_multibyte and
9740 dst_multibyte members of coding. On handling REPLACE on unibyte
9741 buffer, convert the result of decode_coding to unibyte. On
9742 inserting into a mutibyte buffer, always call code_convert_region.
bd4bde7f 9743 (e_write): Setup coding->src_multibyte according to the
c9671f81
KH
9744 multibyteness of the source (buffer or string).
9745
9746 * fns.c (concat): Handle 8-bit characters correctly.
9747 (Fstring_as_unibyte): Be sure to make all 8-bit characters in
9748 unibyte in the result.
9749 (Fstring_as_multibyte): Be sure to make all 8-bit characters in
9750 valid multibyte form in the result.
9751 (map_char_table): Use MAKE_CHAR instead of MAKE_NON_ASCII_CHAR.
9752 (Fbase64_encode_region, Fbase64_encode_string): If base64_encode_1
9753 return -1, signal an error.
9754 (base64_encode_1): New arg MULTIBYTE. Get each character by
9755 CHAR_STRING_AND_LENGTH if MULTIBYTE is nonzero. If a multibyte
9756 character is found, return -1.
9757 (Fbase64_decode_region): Delete codes for handling byte-combining.
9758 Treat each decoded byte as a unibyte character.
9759 (Fbase64_decode_string): Return unibyte string.
9760 (Fcompare_strings, concat, string_byte_to_char): Use
9761 FETCH_STRING_CHAR_ADVANCE_NO_CHECK instead off
9762 FETCH_STRING_CHAR_ADVANCE.
9763 (Fstring_lessp): Use FETCH_STRING_CHAR_ADVANCE unconditionally.
9764 (mapcar1): If SEQ is string, always use FETCH_STRING_CHAR_ADVANCE.
9765
9766 * fontset.c (fontset_ref): Use SPLIT_CHAR instead of
9767 SPLIT_NON_ASCII_CHAR.
9768 (fontset_ref_via_base, fontset_set): Likewise
9769
9770 * insdel.c (adjust_markers_for_record_delete): Deleted.
9771 (adjust_markers_for_insert): Argument changed. Caller changed.
9772 (adjust_markers_for_replace): Likewise.
52283633
SM
9773 (ADJUST_CHAR_POS, combine_bytes, byte_combining_error)
9774 (CHECK_BYTE_COMBINING_FOR_INSERT): Deleted.
c9671f81
KH
9775 (copy_text): Delete unused local varialbe c_save. For converting
9776 to multibyte, be sure to make all 8-bit characters in valid
9777 multibyte form.
9778 (count_size_as_multibyte): Handle 8-bit characters correctly.
52283633
SM
9779 (insert_1_both, insert_from_string_1, insert_from_buffer_1)
9780 (adjust_after_replace, replace_range, del_range_2)
c9671f81 9781 [BYTE_COMBINING_DEBUG]: Abort if byte combining occurs.
52283633
SM
9782 (insert_1_both, insert_from_string_1, insert_from_buffer_1)
9783 (adjust_after_replace, replace_range, del_range_2) Delete codes for
c9671f81
KH
9784 handling byte combining.
9785 (adjust_before_replace): Deleted.
427ec082 9786
c9671f81
KH
9787 * keymap.c (Fsingle_key_description): Use SPLIT_CHAR instead of
9788 SPLIT_NON_ASCII_CHAR.
9789 (describe_vector): Use MAKE_CHAR instead of MAKE_NON_ASCII_CHAR.
52283633 9790 (Faccessible_keymaps): Use FETCH_STRING_CHAR_ADVANCE unconditionally.
c9671f81
KH
9791 (Fkey_description): Likewise.
9792
9793 * lread.c (read1): On reading multibyte string, be sure to make
9794 all 8-bit chararacters in valid multibyte form.
9795 (readchar): Use FETCH_STRING_CHAR_ADVANCE unconditionally.
9796
9797 * print.c (print_object): Use FETCH_STRING_CHAR_ADVANCE
9798 unconditionally.
9799
9800 * process.c (Fstart_process): GCPRO current_dir before calling
9801 Ffind_operation_coding_system. Encode arguments here.
9802 (create_process): Don't encode arguments here. Setup
9803 src_multibyte and dst_multibyte members of struct coding.
9804 (read_process_output): Setup src_multibyte and dst_multibyte
9805 members of struct coding. If the output is to multibyte buffer,
9806 always decode the output of the process. Adjust the
52283633 9807 representation of 8-bit characters to the multibyteness of the output.
c9671f81
KH
9808 (send_process): Setup coding->src_multibyte according to the
9809 multibyteness of the source.
9810
52283633 9811 * search.c (wordify): Use FETCH_STRING_CHAR_ADVANCE unconditionally.
c9671f81
KH
9812 (Freplace_match): Use FETCH_STRING_CHAR_ADVANCE and
9813 FETCH_STRING_CHAR_ADVANCE_NO_CHECK appropriately.
9814
52283633 9815 * term.c (produce_special_glyphs): Use CHAR_BYTES instead of CHAR_LEN.
c9671f81
KH
9816
9817 * w16select.c (Fw16_set_clipboard_data): Setup members
9818 src_multibyte and dst_multibyte of coding. Adjusted for the
9819 change for find_charset_in_str.
9820 (Fw16_get_clipboard_data): Likewise.
9821
9822 * w32fns.c (w32_to_x_font): Setup members src_multibyte and
9823 dst_multibyte of coding.
9824 (x_to_w32_font): Likewise.
9825
9826 * w32select.c (Fw32_set_clipboard_data): Setup members
9827 src_multibyte and dst_multibyte of coding. Adjusted for the
9828 change for find_charset_in_str.
9829 (Fw32_get_clipboard_data): Likewise.
9830
9831 * xdisp.c (get_next_display_element): Handle 8-bit characters
9832 correctly.
52283633
SM
9833 (next_element_from_display_vector): Use CHAR_BYTES instead of CHAR_LEN.
9834 (disp_char_vector): Use SPLIT_CHAR instead of SPLIT_NON_ASCII_CHAR.
c9671f81
KH
9835
9836 * xselect.c (selection_data_to_lisp_data): Setup members
9837 src_multibyte and dst_multibyte of coding. Adjusted for the
9838 change for find_charset_in_str.
9839 (lisp_data_to_selection_data): Likewise.
9840
5f64c9e0
GM
98412000-05-19 Gerd Moellmann <gerd@gnu.org>
9842
52283633 9843 * buffer.c (Fbury_buffer): Avoid trouble from burying a killed buffer.
2b63d473 9844
5f64c9e0
GM
9845 * dispextern.h (Vimage_types): Add extern declaration.
9846
9847 * xdisp.c (Vimage_types): Moved here from xfns.c.
9848 (syms_of_xdisp): Move `image-types' variable here from xfns.c.
9849
9850 * xfns.c (Vimages_types): Moved to xdisp.c.
9851 (syms_of_xfns): Move `image-types' to xdisp.c.
9852
9853 * w32fns.c (Vimage_types): Removed.
9854 (syms_of_w32fns): Remove `image-types'.
9855
813086ea
KH
98562000-05-18 Kenichi Handa <handa@etl.go.jp>
9857
9858 * fns.c (map_char_table): Pay attention to character number of
9859 charset. Check the validity of charset at the first level. For
9860 leaf nodes that has nil value, call C_FUNCTION or FUNCTION with
9861 the default value.
9862
9863 * fontset.c: Include "buffer.h".
9864 (fs_load_font): If the face has fontset, record the face ID in
9865 that fontset.
9866 (Finternal_char_font): New function.
9867 (accumulate_font_info): New function.
9868 (Ffontset_info): Rewritten for the new fontset implementation.
9869 (syms_of_fontset): Register Vdefault_fontset in the first element
9870 of Vfontset_table. Include Vdefault_fontset in
9871 Vfontset_alias_alist. Declare `internal-char-font' as a Lisp
9872 function.
9873
bdaebbf0
DL
98742000-05-16 Dave Love <fx@gnu.org>
9875
9876 * m/iris5d.h: Deleted -- unused.
9877
cb613bb8
GM
98782000-05-16 Gerd Moellmann <gerd@gnu.org>
9879
b15f3b77
GM
9880 * xdisp.c, w32.c, print.c, msdos.c, emacs.c: Use the term
9881 `invalid' instead of `illegal'.
9882
9883 * indent.c (Fmove_to_column): When ending within a tab, insert
9884 spaces first so that markers at the end of the tab get adjusted.
9885
835c1b36
GM
9886 * frame.c (frames_bury_buffer): Don't add a buffer to the frame's
9887 buffer list that wasn't selected in that frame.
9888
cb613bb8
GM
9889 * filelock.c (get_boot_time): To obtain an 8 char file name, which
9890 is needed on mescaline, use a 2 char prefix, and call
9891 make_temp_name with second arg non-zero.
9892
9893 * fileio.c (make_temp_name): New function, extracted from
9894 Fmake_temp_name.
9895 (Fmake_temp_name): Use it.
9896
f685bea9
EZ
98972000-05-15 Eli Zaretskii <eliz@is.elta.co.il>
9898
52283633 9899 * window.c (coordinates_in_window): Subtract 1 when computing right_x.
f685bea9 9900
a1b8d58b
GM
99012000-05-15 Gerd Moellmann <gerd@gnu.org>
9902
9903 * Makefile.in (lisp): Add env.elc.
9904
9905 * callproc.c (Fgetenv_internal): Renamed from Fgetenv.
9906
a265079f
GM
99072000-05-12 Gerd Moellmann <gerd@gnu.org>
9908
9909 * search.c (Freplace_match): Handle case of `\N' in the
9910 replacement when there's no group N.
9911
da4496b6
GM
99122000-05-11 Gerd Moellmann <gerd@gnu.org>
9913
0ace421a
GM
9914 * xdisp.c (add_to_log): Don't pass the terminating NUL byte
9915 of the message to message_dolog.
9916
1172eb8d
GM
9917 * keyboard.c (read_char): Don't clear current message for help
9918 events; let the code handling help events handle this. Change
9919 code detecting help events that should be ignored.
9920
da4496b6
GM
9921 * xdisp.c (handle_single_display_prop): Don't try to set PT if
9922 we're interating over a string.
9923
0623e40f
DL
99242000-05-09 Dave Love <fx@gnu.org>
9925
9926 * fileio.c (Fwrite_region): If APPEND arg is an integer, seek to
9927 that offset before writing. Move gcpro region past call of
9928 Ffile_regular_p.
9929
bae2503b
DL
99302000-05-04 Dave Love <fx@gnu.org>
9931
9932 * buffer.c (syms_of_buffer) [auto-fill-function]: Doc fix.
9933
ec82fb2f
GM
99342000-05-04 Gerd Moellmann <gerd@gnu.org>
9935
9936 * insdel.c (insert_from_buffer_1): Adjust FROM position by number
9937 of inserted characters when BUF equals the current buffer, and PT
9938 is in front of or equal to FROM.
9939
cbf18892
GM
99402000-05-03 Gerd Moellmann <gerd@gnu.org>
9941
4ff40dd0
GM
9942 * xdisp.c (handle_single_display_prop): If display property value
9943 is invalid, or something not supported on the frame, restore
9944 iterator's position to what it was initially. Make sure to return
9945 0 for invalid and unsupported property values.
9946
cbf18892
GM
9947 * xterm.c (x_produce_glyphs) <composite chars>: Handle case
9948 that x_per_char_metric returns null.
9949
1b0672c3
GM
99502000-05-02 Gerd Moellmann <gerd@gnu.org>
9951
576da55d
GM
9952 * xterm.h (struct face): Add forward declaration.
9953 (struct image): Ditto.
9954 (image_ascent): Add prototype.
9955
9956 * xterm.c (x_produce_image_glyph, x_draw_image_foreground)
9957 (x_draw_image_relief, x_draw_image_foreground_1): Call function
9958 image_ascent instead of using IMAGE_ASCENT.
9959
9960 * dispextern.h (DEFAULT_IMAGE_HEIGHT): New macro.
9961 (IMAGE_ASCENT): Removed.
9962
9963 * xfns.c (Qcenter): New variable.
9964 (enum image_value_type): Add IMAGE_ASCENT_VALUE.
9965 (parse_image_spec): Handle IMAGE_ASCENT_VALUE.
9966 (image_ascent): New function.
9967 (lookup_image): Recognize `:ascent center'.
9968 (xbm_format, xpm_format, pbm_format, png_format, jpeg_format)
9969 (tiff_format, gif_format, gs_format): Use IMAGE_ASCENT_VALUE.
9970 (xbm_load): Don't set image's ascent here.
9971 (xbm_image_p, xpm_image_p, pbm_image_p, png_image_p)
9972 (jpeg_image_p, tiff_image_p, gif_image_p, gs_image_p): Don't
9973 check ascent values here.
9974 (Fimagep, Flookup_image [GLYPH_DEBUG]: Removed.
9975 (syms_of_xfns) [GLYPH_DEBUG]: Don't defsubr removed functions.
9976 (syms_of_xfns): Initialize Qcenter.
9977
1b0672c3
GM
9978 * eval.c (Fsignal): If lisp_eval_depth or spepdl_size are near
9979 to the limits, increase the limits.
9980
0d7811ed
KH
99812000-05-01 Kenichi Handa <handa@etl.go.jp>
9982
9983 * fontset.c (fs_load_font): By default, use 0x00..0x7f for ASCII.
52283633 9984 Check Vfont_encoding_alist against the full name of the opened font.
0d7811ed 9985
a943a5ca
GM
99862000-04-28 Gerd Moellmann <gerd@gnu.org>
9987
9988 * xdisp.c (make_cursor_line_fully_visible): Handle case of rows
9989 taller than the window.
9990
5dba1e29
KH
99912000-04-28 Kenichi Handa <handa@etl.go.jp>
9992
9993 * xfaces.c (realize_x_face): Fix the argument of the second
9994 xassert. BASE_FACE may not be a face for ASCII.
9995
353964e3
GM
99962000-04-27 Gerd Moellmann <gerd@gnu.org>
9997
c76e04a8
GM
9998 * print.c (print_object): Treat print-length < 0 as nil.
9999
10000 * Makefile.in (termcapobj): Don't use TERMCAP_OBJ.
10001
10002 * s/freebsd.h (TERMCAP_OBJ): Removed.
10003 (LIBS_TERMCAP): Don't define for __FreeBSD_version >= 400000.
10004
10005 * lread.c (read1): Don't treat period followed by certain
10006 characters as symbol start.
10007
10008 * xfns.c (slurp_file): New function.
10009 (xbm_image_p): Handle case of in-memory XBM files.
10010 (xbm_scan): Rewritten to work on memory buffers instead of files.
10011 (xbm_read_bitmap_data): Renamed from xbm_read_bitmap_file_data.
10012 Work on memory buffers instead of files. If DATA is null test
10013 if buffer looks like an in-memory XBM file.
10014 (xbm_load_image): Renamed from xbm_load_image_file. Work on
10015 memory buffers instead of files.
10016 (xbm_file_p): New function.
10017 (xbm_load): Accept :data DATA where DATA is an in-memory XBM file.
10018
353964e3
GM
10019 * lread.c (end_of_file_error): New function.
10020 (read1): Call it instead of signaling `end-of-file' directly.
10021
427ec082 10022 * print.c (print_error_message): Print data of `end-of-file'
353964e3
GM
10023 with Fprinc instead of Fprin1.
10024
24d744ac
KR
100252000-04-26 Ken Raeburn <raeburn@gnu.org>
10026
10027 * window.c (freeze_window_start): Check that minibuffer scroll
10028 window isn't nil before extracting the window structure pointer
10029 from it.
10030
10031 * undo.c (record_delete): If we hit the end of the undo list, stop
10032 picking elements apart.
10033
7464346d
GM
100342000-04-26 Gerd Moellmann <gerd@gnu.org>
10035
10036 * xdisp.c (display_line): If lines are continued, restore
10037 iterator's ascent/descent information to the values before the
10038 first glyph not fitting on the line.
10039
612839b6
GM
100402000-04-25 Gerd Moellmann <gerd@gnu.org>
10041
10042 * xdisp.c (try_window_id) <all changes above window start>: Adjust
52283633 10043 positions in glyph matrix. Don't compute new window end positions.
612839b6
GM
10044
10045 * dispnew.c (increment_matrix_positions): Renamed from
10046 increment_glyph_matrix_buffer_positions.
10047 (increment_row_positions): Renamed from
10048 increment_glyph_row_buffer_positions.
10049
10050 * dispextern.h: Change names of renamed functions from dispnew.c
10051 in prototypes.
10052
cc181e95
GM
100532000-04-24 Gerd Moellmann <gerd@gnu.org>
10054
abfcc168
GM
10055 * fileio.c (Fdo_auto_save): Create directories for auto-save
10056 list file if necessary.
10057
cc181e95
GM
10058 * xdisp.c (init_iterator): Set iterator's extra_line_spacing
10059 from buffer or frame.
10060 (automatic_hscrolling_p): New variable.
10061 (hscroll_windows): Scroll windows horizontally only if automatic
10062 hscrolling is allowed.
10063 (syms_of_xdisp): New variable `automatic-hscrolling'.
10064
10065 * frame.h (struct frame): Add member extra_line_spacing.
10066
10067 * xfns.c (x_set_line_spacing): New function.
10068 (Fx_create_frame): Set line spacing from resources.
10069 (Qline_spacing): New variable.
10070 (syms_of_xfns): Initialize Qline_spacing.
427ec082 10071
cc181e95
GM
10072 * emacs.c (USAGE2): Add `--line-spacing' and `-lsp'.
10073
10074 * buffer.c (init_buffer_once): Handle extra_line_spacing.
10075 (syms_of_buffer): Add `default-line-spacing' and `line-spacing'.
abfcc168 10076 (reset_buffer): Don't initialize extra2 and extra3. Initialize
cc181e95
GM
10077 extra_line_spacing from default value.
10078 (init_buffer_once): Initialize default value of extra_line_spacing.
10079
10080 * buffer.h (struct buffer): Add extra_line_spacing, remove extra2
10081 and extra3.
10082
10083 * xterm.c (x_produce_glyphs): Remove reference to struct it's
10084 prompt_width. Add extra line spacing.
10085
10086 * term.c (produce_glyphs): Remove reference to struct it's
10087 prompt_width.
10088
10089 * dispextern.h (struct it): Remove member prompt_width, add
10090 extra_line_spacing.
10091
58827478
GM
100922000-04-22 Gerd Moellmann <gerd@gnu.org>
10093
10094 * dispnew.c (update_frame_line): When writing a whole line, make
10095 sure cursor is in the right row afterwards, otherwise a use of
10096 capability `ch' in cmgoto might leave the cursor in the row below.
10097
25a87f42
GM
100982000-04-21 Gerd Moellmann <gerd@gnu.org>
10099
10100 * lisp.h (struct Lisp_Buffer_Cons): Remove.
10101
10102 * keyboard.c (timer_check): Fix typo in comment.
10103
54edf5c2
KH
101042000-04-21 Kenichi Handa <handa@etl.go.jp>
10105
10106 * fontset.c (Fset_fontset_font): Fix docstring. Local variable
10107 name change: ch -> character.
10108
3a64eef5
GM
101092000-04-20 Gerd Moellmann <gerd@gnu.org>
10110
10111 * keyboard.c (echo_message_buffer): New variable.
10112 (echo_now): Set echo_message_buffer to the echo area buffer used
10113 to display the echo.
10114 (cancel_echoing): Reset echo_message_buffer to nil.
10115 (read_char): Code rewritten that handles canceling an echo or
10116 echoing a dash, respectively.
10117
10118 * fileio.c (Ffile_writable_p) [WINDOWSNT]: Return nil if parent
10119 directory doesn't exist.
10120
6142fdcb
DL
101212000-04-19 Dave Love <fx@gnu.org>
10122
10123 * fns.c (syms_of_fns): Defsubr mapc.
a9cacab7
DL
10124 (concat): Don't allow numeric args.
10125 (Fconcat): Doc change.
6142fdcb 10126
ac6b5352
SM
101272000-04-19 Stefan Monnier <monnier@cs.yale.edu>
10128
10129 * regex.c (re_match_2_internal): Don't shorten the strings anymore,
10130 instead define end_match(1|2) more carefully.
10131 Use GET_CHAR_BEFORE_2 for `begline'.
10132
cb9215e4
GM
101332000-04-19 Gerd Moellmann <gerd@gnu.org>
10134
5e3dac3f
GM
10135 * frame.h (SELECTED_FRAME): Change definition to compile cleanly
10136 on 64-bit systems where NULL is defined as `0'.
10137
10138 * xdisp.c (with_echo_area_buffer): Add more `int' parameters for
10139 the `variable argument list' to make it work on Alpha.
10140
cb9215e4
GM
10141 * m/alpha.h (_LP64) [!_LP64]: Define.
10142 (ORDINARY_LINK): Define for NetBSD.
10143
10144 * m/macppc.h (ORDINARY_LINK): Define for NetBSD.
427ec082 10145
f532dca0
DL
101462000-04-19 Dave Love <fx@gnu.org>
10147
c750667e
DL
10148 * s/bsd386.h, s/freebsd.h, s/gnu.h, s/netbsd.h: Revert 2000-04-14
10149 change.
10150
10151 * Makefile.in (LIBS): Don't use.
10152 (GETLOADAVG_OBJ): Define again.
10153 (otherobj): Add GETLOADAVG_OBJ.
10154
f532dca0
DL
10155 * buffer.c (Fmake_indirect_buffer): Escape newline in doc.
10156
1c7e22fd
GM
101572000-04-18 Gerd Moellmann <gerd@gnu.org>
10158
f6d3257b
GM
10159 * lread.c (read_filtered_event): Cancel and start busy cursor.
10160
427ec082 10161 * xterm.c (x_produce_glyphs) <ASCII chars>: Take into account
1c7e22fd
GM
10162 that the per-character metrics may be null.
10163
e10f64e7
GM
101642000-04-17 Gerd Moellmann <gerd@gnu.org>
10165
0daee095
GM
10166 * buffer.c (clone_per_buffer_values): New function.
10167 (Fmake_indirect_buffer): Add optional argument CLONE. Call
10168 clone_per_buffer_values if CLONE is not nil.
10169
e10f64e7
GM
10170 * xfaces.c (Ftty_suppress_bold_inverse_default_colors): Doc fix.
10171
38687d43
DL
101722000-04-16 Dave Love <fx@gnu.org>
10173
10174 * Makefile.in: Remove obsolete localcpp stuff.
10175 (GETLOADAVG_OBJ): Don't define.
10176 (obj): Move LIBOBJS...
10177 (otherobj): ... to here.
10178 (MSDOS_OBJ): Convert to make variable -- preprocessing zapped
10179 whitespace-only lines after the continuation (Irix).
10180
c21c7262
GM
101812000-04-14 Gerd Moellmann <gerd@gnu.org>
10182
10183 * xfns.c (xpm_load) [DEBUG_X_COLORS]: Register colors.
10184
10185 * s/freebsd.h (LD_SWITCH_SYSTEM): Add `-L /usr/local/lib'.
10186
314767c0
DL
101872000-04-14 Dave Love <fx@gnu.org>
10188
10189 * s/aix3-1.h, s/bsd4-2.h, s/bsd4-3.h, s/cxux.h, s/dgux.h, s/gnu.h:
10190 * s/hpux.h, s/iris3-5.h, s/iris3-6.h, s/irix3-3.h, s/rtu.h:
10191 * s/unipl5-0.h, s/unipl5-2.h, s/usg5-0.h, s/usg5-2-2.h, s/usg5-2.h:
10192 * s/usg5-3.h, s/xenix.h, s/umax.h: Don't define autoconfiscated
10193 NLIST_STRUCT.
10194
10195 * s/bsd386.h, s/freebsd.h, s/gnu.h, s/netbsd.h: Don't define
10196 autoconfiscated HAVE_GETLOADAVG.
10197
10198 * s/nextstep.h, s/sco4.h, s/sco5.h: Don't define autoconfiscated
10199 BROKEN_MKTIME.
10200
a2522dca
GM
102012000-04-14 Gerd Moellmann <gerd@gnu.org>
10202
10203 * filelock.c (MAKE_LOCK_NAME): Allocate 2 more bytes.
52283633 10204 (fill_in_lock_file_name): Avoid existing files that aren't links.
a2522dca 10205
33744b5d
DL
102062000-04-14 Dave Love <fx@gnu.org>
10207
c21c7262 10208 * Makefile.in (LIBS, LIBOBJS): New variable.
33744b5d
DL
10209 (INTERVAL_SRC): Convert to make variable.
10210 (INTERVAL_OBJ, MKTIME_OBJ, FLOAT_SUPPORT, FACE_SUPPORT)
10211 (HAVE_X_WINDOWS, OBJECTS_SYSTEM): Remove.
10212 (obj): Substitute INTERVAL_OBJ, add MKTIME_OBJ, GETLOADAVG_OBJ and
10213 add LIBOBJS.
10214 (SOME_MACHINE_OBJECTS): Remove interval stuff.
10215 (lisp): Substitute FACE_SUPPORT, FLOAT_SUP.
10216 (shortlisp): Add facemenu, float-sup, frame.
10217 (SOME_MACHINE_LISP): Remove them from here.
10218 (LIBES): Change unused LDLIBS to autoconf LIBS.
10219
10220 * config.in: Add BROKEN_MKTIME, NLIST_STRUCT, NLIST_NAME_UNION.
10221
9d3d5916
KH
102222000-04-14 Kenichi Handa <handa@etl.go.jp>
10223
10224 * composite.c (update_compositions): If FROM and TO are not in a
10225 valid range, do nothing.
10226
198e3c7a
GM
102272000-04-13 Gerd Moellmann <gerd@gnu.org>
10228
52283633 10229 * tparam.c (tparam1): Abort when encountering an unknown `%'-specifier.
198e3c7a 10230
52283633 10231 * s/freebsd.h (TERMCAP_OBJ) [__FreeBSD__ >= 4]: Define as terminfo.o.
198e3c7a
GM
10232
10233 * Makefile.in (termcapobj) [LIBS_TERMCAP && TERMCAP_OBJ]: Define
10234 as TERMCAP_OBJ.
10235
055a28c9
EZ
102362000-04-13 Eli Zaretskii <eliz@is.elta.co.il>
10237
10238 * fileio.c (a_write): Remove redundant semi-colons.
10239 (e_write): Return -1 if failed to write all the data.
10240 This fixes the changes made at 1999-12-15.
10241
f5c75033
DL
102422000-04-12 Dave Love <fx@gnu.org>
10243
10244 * fns.c (mapcar1): Test for null vals to support mapc.
10245 (Fmapc): New function.
10246
0c3cfc51
EZ
102472000-04-12 Eli Zaretskii <eliz@is.elta.co.il>
10248
10249 * msdos.c (NUM_MOUSE_BUTTONS): Define.
10250 (IT_frame_up_to_date): Support the buffer local value of
10251 cursor-type, if defined.
10252
33465a31
DL
102532000-04-10 Dave Love <fx@gnu.org>
10254
10255 * editfns.c (preceding-char, following-char): Doc fix.
10256
6ed56568
KR
102572000-04-10 Ken Raeburn <raeburn@gnu.org>
10258
10259 * Makefile.in (temacs): Revert 2000-03-12 change.
10260
7cf80d4e
JR
102612000-04-10 Jason Rumney <jasonr@gnu.org>
10262
10263 * xfaces.c (realize_face): Change FRAME_X_P to FRAME_WINDOW_P.
10264
34f3f342
GM
102652000-04-10 Gerd Moellmann <gerd@gnu.org>
10266
1a1b1895
GM
10267 * xdisp.c (setup_echo_area_for_printing): Choose an echo
10268 area buffer, if it's not set up yet.
10269
34f3f342
GM
10270 * indent.c (compute_motion): Set immediate_quit.
10271
be0dbdab
GM
102722000-04-09 Gerd Moellmann <gerd@gnu.org>
10273
52283633 10274 * xfaces.c (tty_suppress_bold_inverse_default_colors_p): New variable.
c45be9ac
GM
10275 (realize_tty_face): Suppress boldness if colors are the inverse of
10276 the default colors, and tty_suppress_bold_inverse_default_colors_p
10277 is set.
10278 (Ftty_suppress_bold_inverse_default_colors): New function.
10279 (syms_of_xfaces): Defsubr it.
10280
be0dbdab
GM
10281 * buffer.c (Frestore_buffer_modified_p): New function.
10282 (syms_of_buffer): Defsubr it.
10283
e8413c3b
KR
102842000-04-08 Ken Raeburn <raeburn@gnu.org>
10285
87f67317
KR
10286 * charset.c (Fmake_char_internal): CHAR_COMPONENTS_VALID_P takes a
10287 charset id (int) argument, not a charset (Lisp_Object).
10288
e8413c3b
KR
10289 * coding.h (code_convert_string): Declare.
10290 * coding.c (code_convert_string_norecord): Pass an int, not a lisp
10291 object, as the fourth argument to code_convert_string.
10292
52283633 10293 * fontset.c (make_fontset_for_ascii_face): Use XINT on return value.
e8413c3b
KR
10294 (Fset_fontset_font): Use EQ to compare lisp objects.
10295
7c752c80
KR
102962000-04-05 Ken Raeburn <raeburn@gnu.org>
10297
c0333abc
KR
10298 * intervals.h (SET_INTERVAL_PARENT): Use INT_LISPLIKE to test for
10299 a pointer that looks like a lisp object.
10300 (SET_INTERVAL_OBJECT): Don't explicitly compare the object with
10301 zero, instead see whether it's an integer object, since they can't
10302 have intervals.
10303 (GET_INTERVAL_OBJECT): Simply assign to the destination.
10304
52283633
SM
10305 * dispnew.c (allocate_matrices_for_frame_redisplay)
10306 (direct_output_forward_char): Use X(U)INT and make_number as needed
7c752c80
KR
10307 to convert between (unsigned) int values and lisp integers.
10308 * keyboard.c (read_key_sequence): Likewise.
10309 * lread.c (substitute_object_recurse): Likewise.
10310 * fns.c (concat, hash_lookup, hash_remove): Likewise.
52283633
SM
10311 * minibuf.c (do_completion, Fminibuffer_complete_word)
10312 (Fminibuffer_completion_help): Likewise.
7c752c80
KR
10313 * term.c (produce_special_glyphs): Likewise.
10314
10315 * fileio.c (Fwrite_region): Use EQ when comparing lisp objects.
10316 * print.c (print_preprocess, print_object): Likewise.
10317
10318 * search.c (compile_pattern): Use NILP when checking for nil.
10319
74e49b38
KR
10320 * lisp.h (make_number) [!NO_UNION_TYPE && __GNUC__ >= 2 &&
10321 __OPTIMIZE__]: Provide a GNU C macro version that handles
10322 lisp-object unions.
10323 (XSET) [!NO_UNION_TYPE]: Set the value field first, then the type
10324 field, to better cope with ENABLE_CHECKING and calls that modify a
10325 Lisp_Object using its old value.
10326
685e5ed2
GM
103272000-04-04 Gerd Moellmann <gerd@gnu.org>
10328
c407c570
GM
10329 * window.c (compare_window_configurations): Signal an error
10330 if parameters C1 or C2 aren't window configurations.
10331
685e5ed2
GM
10332 * bytecode.c (Fbyte_code): Add a bunch of BEFORE_POTENTIAL_GC/
10333 AFTER_POTENTIAL_GC calls around calls to functions that can
10334 signal an error and thus invoke the debugger.
10335
587a49ab
GM
103362000-04-03 Gerd Moellmann <gerd@gnu.org>
10337
62f20204
GM
10338 * fns.c (Fbase64_decode_region, Fbase64_decode_string): Signal
10339 an error if decoding fails.
10340
587a49ab
GM
10341 * keyboard.c (lispy_mouse_names): Variable removed.
10342 (Vlispy_mouse_stem): New variable.
10343 (syms_of_keyboard): Initialize Vlispy_mouse_stem.
10344 (make_lispy_event) <mouse_click, scroll_bar_click>: Don't abort
10345 for any mouse button number. Increase size of mouse_syms and
10346 button_down_location as needed. Call modify_event_symbol with
10347 different arguments.
10348 (make_lispy_event) <scroll_bar_click> [USE_TOOLKIT_SCROLL_BARS]:
10349 Call modify_event_symbol with different arguments.
10350 (make_lispy_event) <w32_scroll_bar_click> [WINDOWSNT]: Don't abort
10351 for any button number. Call modify_event_symbol with different
10352 arguments.
10353 (modify_event_symbol): Rename NAME_ALIST to NAME_ALIST_OR_STEM.
10354 Accept a string for NAME_ALIST_OR_STEM.
10355
10356 * lisp.h (larger_vector): Add prototype.
10357
10358 * fns.c (larger_vector): Make externally visible.
10359
10360 * termhooks.h (NUM_MOUSE_BUTTONS): Removed.
10361
2d1675e4
SM
103622000-04-02 Stefan Monnier <monnier@cs.yale.edu>
10363
10364 * regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
10365 (RE_MULTIBYTE_P, RE_STRING_CHAR_AND_LENGTH): New macros.
10366 (GET_CHAR_BEFORE_2): Moved from charset.h plus fixed minor bug when
10367 we are between str1 and str2.
10368 (MAX_MULTIBYTE_LENGTH, CHAR_STRING) [!emacs]: Provide trivial default.
10369 (PATFETCH): Use `TRANSLATE'.
10370 (PATFETCH_RAW): Fetch multibyte char if applicable.
10371 (PATUNFETCH): Remove.
10372 (regex_compile): Rely on PATFETCH to do most of the multibyte magic.
10373 When writing a char, write it directly into the pattern buffer rather
10374 than going needlessly through a temp char-array.
10375 (re_match_2_internal): Similarly, rely on RE_STRING_CHAR to do the
10376 multibyte magic and remove the useless `#ifdef emacs'.
10377 (bcmp_translate): Don't compare as multibyte chars when in a unibyte
10378 buffer.
10379
10380 * regex.h (struct re_pattern_buffer): Make field `multibyte'
10381 conditional on `emacs'.
10382
10383 * charset.h (GET_CHAR_BEFORE_2): Moved to regex.c.
10384
cc2d8c6b
KR
103852000-04-01 Ken Raeburn <raeburn@gnu.org>
10386
10387 * alloc.c (MARK_STRING, UNMARK_STRING, STRING_MARKED_P): Expand
10388 non-union-type versions of XMARK and friends here, because XMARK
10389 and friends won't work on an integer field if NO_UNION_TYPE is not
10390 defined.
52283633 10391 (make_number): Define as a function if it's not defined as a macro.
cc2d8c6b 10392
52283633 10393 * composite.c (run_composite_function): Use NILP when checking for nil.
09654086
KR
10394 (syms_of_composite): Delete local var NARGS, pass an int as first
10395 argument to Fmake_hash_table.
10396
2387b382
KR
10397 * editfns.c (text_property_stickiness): Use NILP to test
10398 Lisp_Object boolean value.
10399 (Fmessage_or_box): Don't use NILP to test int variable.
c01fbf95
KR
10400 (Fformat): Use a temporary variable to avoid ENABLE_CHECKING
10401 problems reading from and changing the same lisp value in an
10402 XSETSTRING call.
10403
27660e89
GM
104042000-04-01 Gerd Moellmann <gerd@gnu.org>
10405
10406 * term.c (TN_no_color_video): New variable.
10407 (term_init): Intitialize TN_no_color_video.
10408 (enum no_color_bit): New enumeration.
10409 (MAY_USE_WITH_COLORS_P): New macro.
10410 (turn_on_face): Use it to determine if attributes may be used
10411 combined with colors.
10412
3578db3c
KR
104132000-04-01 Ken Raeburn <raeburn@gnu.org>
10414
10415 * window.c (CURBEG, CURSIZE): Don't overload lisp object lvalues
52283633 10416 with int lvalues via casts; instead, just yield lisp object lvalues.
3578db3c
KR
10417 (enlarge_window): Variable sizep now points to Lisp_Object. Use
10418 proper accessor macros.
10419 (shrink_window_lowest_first): w->top is Lisp_Object; use XINT.
10420 (grow_mini_window): Fix typo getting int value of root->height.
10421
6fc556fd
KR
10422 * xdisp.c (compute_string_pos): Fix order of arguments to
10423 string_pos_nchars_ahead.
10424 (handle_fontified_prop, add_to_log): Pass int, not Lisp_Object, as
10425 count arg to variable-arg routines like Frun_hook_with_args and
10426 Fformat.
587a49ab
GM
10427 (back_to_previous_visible_line_start)
10428 (build_desired_tool_bar_string): Pass Lisp_Object, not int, to
6fc556fd
KR
10429 fixed-arg routines like Fget_char_property and Fmake_string.
10430 (reconsider_clip_changes): Use XINT when comparing integer lisp
10431 objects, or passing them as int arguments.
587a49ab
GM
10432 (mark_window_display_accurate, insert_left_trunc_glyphs)
10433 (append_space, extend_face_to_end_of_line): Use make_number when
6fc556fd
KR
10434 storing or passing integer values as lisp objects.
10435 (set_cursor_from_row, highlight_trailing_whitespace): Use
10436 INTEGERP, not implicit test against zero, for glyph object.
10437 (try_window_id): Don't use make_number when we want an int value.
10438
10439 * xfaces.c (xlfd_symbolic_value): Make last argument a
10440 Lisp_Object, to be consistent with callers.
10441 (Fbitmap_spec_p): Use XINT to get numeric value of height.
10442 (lface_hash): Apply XFASTINT to lisp values before folding in.
10443
10444 * xfns.c (Fx_show_tip): Use make_number to get lisp objects to
10445 fill in window width and height. Pass an int, not a lisp object,
10446 as first arg to Finsert.
10447
6e7b2457
GM
104482000-04-01 Gerd Moellmann <gerd@gnu.org>
10449
610d841e
GM
10450 * xfaces.c (realize_basic_faces): Block input while realizing
10451 the faces.
10452
6e7b2457
GM
10453 * keyboard.c (lispy_mouse_names): Add additional mouse names.
10454
10455 * termhooks.h (NUM_MOUSE_BUTTONS): Increase to 15.
10456
aa110c0c
GM
104572000-03-31 Gerd Moellmann <gerd@gnu.org>
10458
10459 * xterm.c (x_produce_glyphs): When displaying unibyte text
610d841e 10460 or ASCII, handle case that per-char metric is null.
aa110c0c 10461
8801a864
KR
104622000-03-30 Ken Raeburn <raeburn@gnu.org>
10463
c6129d7e
KR
10464 * lisp.h (NO_UNION_TYPE) [ENABLE_CHECKING]: Undef.
10465
52283633
SM
10466 * lisp.h (XCONS, XSTRING, XSYMBOL, XFLOAT, XPROCESS, XWINDOW)
10467 (XSUBR, XBUFFER): Verify correct object type before returning
8801a864
KR
10468 pointer, using eassert.
10469 * frame.h (XFRAME): Likewise.
10470
52283633
SM
10471 * buffer.c (Frename_buffer, Fset_buffer_multibyte)
10472 (swap_out_buffer_local_variables, Fmove_overlay): Don't apply
10473 XSYMBOL, XBUFFER, etc, to values that may be nil or of the wrong type.
8801a864 10474 * data.c (set_internal): Likewise.
52283633
SM
10475 * dispextern.h (WINDOW_WANTS_MODELINE_P)
10476 (WINDOW_WANTS_HEADER_LINE_P): Likewise.
8801a864
KR
10477 * fileio.c (auto_save_1): Likewise.
10478 * insdel.c (check_markers): Likewise.
10479 * marker.c (buf_charpos_to_bytepos, unchain_marker): Likewise.
10480 * undo.c (record_insert): Likewise.
10481 * vmsproc.c (child_sig): Likewise.
10482 * window.c (unshow_buffer, window_loop): Likewise.
10483 * xterm.c (x_erase_phys_cursor): Likewise.
10484
8e7af858
GM
104852000-03-30 Gerd Moellmann <gerd@gnu.org>
10486
10487 * xfns.c (free_image_cache): Free the cache structure itself
10488 last, after all its members have been freed.
10489
10490 * lisp.h (xstrdup): Add prototype.
10491
10492 * alloc.c (xstrdup): Moved here from xfaces.c.
10493 (allocating_for_lisp): Variable removed.
52283633 10494 (lisp_malloc): Block input around the calls to malloc and mem_insert.
8e7af858
GM
10495
10496 * xfaces.c (realize_tty_face): Use find_symbol_value instead
10497 of Fsymbol_value.
10498 (xstrdup): Moved to alloc.c.
10499
e0b8c689
KR
105002000-03-29 Ken Raeburn <raeburn@gnu.org>
10501
b96f9fb7
KR
10502 * scroll.c (CHECK_BOUNDS): Renamed from CHECK.
10503
10504 * emacs.c (main): Fix sense of no-loadup test.
10505
e0b8c689
KR
10506 * config.in (ENABLE_CHECKING): Undef.
10507
10508 * lisp.h (struct interval): Replace "parent" field with a union of
10509 interval pointer and Lisp_Object; add new bitfield to use as
10510 discriminant. Change other flag fields to bitfields.
10511 (CHECK): New macro for consistency checking. If ENABLE_CHECKING
52283633
SM
10512 is defined and the supplied test fails, print a message and abort.
10513 (eassert): New macro. Use CHECK to provide an assert-like facility.
e0b8c689
KR
10514
10515 * intervals.h (NULL_INTERVAL_P): Now applies only to real interval
10516 pointers; abort if the value looks like a lisp object.
52283633
SM
10517 (NULL_INTERVAL_P, NULL_PARENT, HAS_PARENT, HAS_OBJECT, SET_PARENT)
10518 (SET_OBJECT, INTERVAL_PARENT, GET_INTERVAL_OBJECT, COPY_PARENT):
e0b8c689
KR
10519 Modify for new interval parent definition.
10520
52283633
SM
10521 * alloc.c (mark_interval_tree, MARK_INTERVAL_TREE)
10522 (UNMARK_BALANCE_INTERVALS): Update references that need an
e0b8c689
KR
10523 addressable lisp object in the interval structure.
10524 (die): New function.
10525 (suppress_checking): New variable.
10526
10527 * intervals.c (interval_start_pos): Just return 0 if there's no
10528 parent object.
10529
f83c5440
GM
105302000-03-29 Gerd Moellmann <gerd@gnu.org>
10531
10532 * lread.c (read1): Accept `.' (period) as symbol start like in CL
10533 and earlier Emacs versions.
10534
10535 * keyboard.c (Ftop_level): Cancel busy-cursor.
10536
10537 * eval.c (call_debugger): Cancel busy-cursor.
10538
fdce64ff
KH
105392000-03-29 Kenichi Handa <handa@etl.go.jp>
10540
10541 * search.c (Freplace_match): Adjust multibyteness of the current
52283633 10542 buffer and NEWTEXT. Free allocated memory before signaling an error.
fdce64ff 10543
f6a3f532
SM
105442000-03-28 Stefan Monnier <monnier@cs.yale.edu>
10545
10546 * regex.c (analyse_first): New function obtained by ripping out most
10547 of re_compile_fastmap and generalizing it a little bit so that it
10548 can also just return whether a given (sub)pattern can match the empty
10549 string or not.
10550 (regex_compile): Use `analyse_first' to decide whether the loop-check
10551 needs to be done or not for *, +, *? and +? (the loop check is costly
10552 for non-greedy repetition).
10553 (re_compile_fastmap): Delegate the actual work to `analyse_first'.
10554
e9b309ac
DL
105552000-03-28 Dave Love <fx@gnu.org>
10556
52283633 10557 * s/gnu-linux.h (GC_SETJMP_WORKS): Define for i386, sparc, m68k, alpha.
bb15bd9a 10558
e9b309ac
DL
10559 * alloc.c: Include stdio.h. Test STDC_HEADERS, not __STDC__.
10560
ed0767d8
SM
105612000-03-27 Stefan Monnier <monnier@cs.yale.edu>
10562
10563 * regex.c (REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as
10564 an expression.
10565 (enum re_opcode_t): Update description of succeed_n.
10566 (PATFETCH): Always define.
10567 (regex_compile): Use lookahead rather than PATUNFETCH (for repetition
10568 operators, char classes, shy-groups and intervals).
10569 Optimize special cases of intervals so as to only use succeed_n and
10570 jump_n when really needed.
10571 (re_compile_fastmap): Simplify handling of jump_n and succeed_n now
10572 that we don't have to handle the special cases any more.
10573 Simplify on_failure_jump handling as well.
10574
e11e7e46
JR
105752000-03-28 Jason Rumney <jasonr@gnu.org>
10576
10577 * lread.c (Fload): Move safe_p definition to above #ifdef DOS_NT.
10578
88faab89
GM
105792000-03-27 Gerd Moellmann <gerd@gnu.org>
10580
182ff242
GM
10581 * s/freebsd.h (GC_SETJMP_WORKS): Define.
10582
10583 * s/msdos.h (GC_SETJMP_WORKS): Define.
427ec082 10584
182ff242
GM
10585 * alloc.c (mark_maybe_object): New function.
10586 (mark_memory): Use it.
10587 (SETJMP_WILL_LIKELY_WORK, SETJMP_WILL_NOT_WORK): New macros.
10588 (setjmp_tested_p, longjmp_done): New variables.
10589 (test_setjmp): New function.
10590 (mark_stack) [!GC_SETJMP_WORKS]: Call test_setjmp.
10591 (init_alloc): Initialize setjmp_tested_p and longjmp_done.
10592
c1005d06
GM
10593 * xdisp.c (face_before_or_after_it_pos): Pass multibyteness
10594 to DEC_TEXT_POS and INC_TEXT_POS.
10595
10596 * dispnew.c (direct_output_for_insert): Use DEC_TEXT_POS
10597 with parameter MULTIBYTE_P.
10598
52283633 10599 * dispextern.h (INC_TEXT_POS, DEC_TEXT_POS): Add parameter MULTIBYTE_P.
c1005d06 10600
7439e5b9 10601 * editfns.c (Fsubst_char_in_region): Don't use INC_POS in unibyte
182ff242
GM
10602 buffers because it looks for multibyte character byte sequences
10603 which don't exist in unibyte text.
7439e5b9 10604
d9c545da
GM
10605 * xterm.h (x_specified_cursor_type, x_copy_color): Add prototypes.
10606
11fd416e 10607 * xfaces.c (register_color, unregister_color, unregister_colors)
d9c545da
GM
10608 [DEBUG_X_COLORS]: New functions.
10609 (x_free_colors) [DEBUG_X_COLORS]: Unregister colors.
10610
10611 * xfns.c (x_set_cursor_color): Get color reference counts right.
10612
10613 * xterm.c (x_copy_color): New function.
10614 (x_alloc_nearest_color) [DEBUG_X_COLORS]: Call register_color.
10615
10616 * buffer.h (MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
10617 (PER_BUFFER_VAR_OFFSET): Renamed from BUFFER_LOCAL_VAR_OFFSET.
10618 (PER_BUFFER_VAR_IDX): Renamed from BUFFER_LOCAL_VAR_IDX.
10619 (PER_BUFFER_VALUE_P): Renamed from BUFFER_HAS_LOCAL_VALUE_P.
10620 (SET_PER_BUFFER_VALUE_P): Renamed from SET_BUFFER_HAS_LOCAL_VALUE_P.
10621 (PER_BUFFER_IDX): Renamed from BUFFER_LOCAL_IDX.
10622 (PER_BUFFER_DEFAULT): Renamed from BUFFER_LOCAL_DEFAULT_VALUE.
10623 (PER_BUFFER_VALUE): Renamed from BUFFER_LOCAL_VALUE.
10624 (PER_BUFFER_SYMBOL): Renamed from BUFFER_LOCAL_SYMBOL.
10625 (PER_BUFFER_TYPE): Renamed from BUFFER_LOCAL_TYPE.
10626
11fd416e
GM
10627 * category.c, data.c, syntax.c, print.c, lread.c: Use new macro
10628 names for handling per-buffer variables.
d9c545da
GM
10629
10630 * buffer.c (buffer_permanent_local_flags): Use MAX_PER_BUFFER_VARS
10631 instead of MAX_BUFFER_LOCAL_VARS.
10632 (last_per_buffer_idx): Renamed from max_buffer_local_idx.
10633
10634 * xfaces.c (lookup_face): Don't assert FACE_SUITABLE_FOR_CHAR_P.
10635
88faab89
GM
10636 * xfns.c (x_specified_cursor_type): New function.
10637 (x_set_cursor_type): Use it.
10638
10639 * buffer.h (struct buffer): Add cursor_type.
10640
d80f42b7
SM
106412000-03-26 Stefan Monnier <monnier@cs.yale.edu>
10642
10643 * regex.c (enum re_opcode_t): New opcode on_failure_jump_nastyloop.
52283633
SM
10644 (print_partial_compiled_pattern, re_compile_fastmap):
10645 Handle new opcode.
d80f42b7
SM
10646 (regex_compile): Use on_failure_jump_nastyloop for non-greedy loops.
10647 (re_match_2_internal): Add code for on_failure_jump_nastyloop when
10648 executing it as well as when popping it off the stack to find infinite
10649 loops in non-greedy repetition operators.
10650
89e80928
GM
106512000-03-26 Gerd Moellmann <gerd@gnu.org>
10652
3d4ff2dd
GM
10653 * doc.c (Qfunction_documentation): New variable.
10654 (syms_of_doc): Initialize Qfunction_documentation.
10655 (Fdocumentation): If FUNCTION is a symbol with non-nil
10656 `function-documentation' property, return a documentation derived
10657 from that.
10658
bd96bd79
GM
10659 * buffer.c (syms_of_buffer): Add default-cursor-type.
10660 (init_buffer_once): Don't let cursor_type have a local value
10661 in every buffer.
10662
19d1bc27
GM
10663 * xterm.c (x_display_and_set_cursor): Choose cursor depending
10664 on buffer-local value of cursor_type.
10665 (x_draw_bar_cursor): Add parameter WIDTH.
10666
10667 * buffer.c (reset_buffer): Initialize buffer's cursor_type.
10668 (init_buffer_once): Set default cursor_type value to t.
10669 Mark cursor_type as local everywhere.
10670 (syms_of_buffer): New per-buffer variable cursor-type.
10671
89e80928
GM
10672 * buffer.h (struct buffer): Remove member local_var_flags,
10673 add local_flags.
10674 (MAX_BUFFER_LOCAL_VARS): New macro.
10675 (BUFFER_LOCAL_VAR_OFFSET, BUFFER_LOCAL_VAR_IDX)
10676 (BUFFER_HAS_LOCAL_VALUE_P, SET_BUFFER_HAS_LOCAL_VALUE_P)
10677 (BUFFER_LOCAL_IDX, BUFFER_LOCAL_DEFAULT_VALUE, BUFFER_LOCAL_VALUE)
10678 (BUFFER_LOCAL_SYMBOL, BUFFER_LOCAL_TYPE): New macros.
10679
52283633 10680 * print.c (print_object): Use new macros for per-buffer variables.
89e80928
GM
10681
10682 * category.c (Fset_category_table): Use new macros for per-buffer
10683 variables.
10684
10685 * buffer.c (buffer_permanent_local_flags): Make a char array.
10686 (max_buffer_local_idx): New variable.
10687 (reset_buffer_local_variables, Fbuffer_local_variables): Rewritten
10688 for new handling of per-buffer variables.
10689 (buffer_slot_type_mismatch): Use new macros for per-buffer vars.
10690 (init_buffer_once): Initialize per-buffer vars differently.
10691 Set max_buffer_local_idx.
10692
10693 * syntax.c (Fset_syntax_table): Use new macros for per-buffer
10694 variables.
10695
52283633 10696 * lread.c (defvar_per_buffer): Use new macros for per-buffer variables.
89e80928
GM
10697
10698 * data.c (do_symval_forwarding, store_symval_forwarding)
10699 (find_symbol_value, set_internal, default_value, Fset_default)
10700 (Fkill_local_variable, Flocal_variable_p): Use new macros for
10701 per-buffer variables.
10702
10703 * Makefile.in (bootstrap-emacs): Use `mv -f' instead of `mv'.
10704
9a0dd3dc
GM
107052000-03-24 Gerd Moellmann <gerd@gnu.org>
10706
b68c375f
GM
10707 * xterm.c (x_term_init): Unblock input around call1 of
10708 Qvendor_specific_keysyms.
10709
9a0dd3dc
GM
10710 * syntax.c (open_paren_in_column_0_is_defun_start): New variable.
10711 (find_defun_start): Consider an open parenthesis in column 0
10712 a defun start only if open_paren_in_column_0_is_defun_start is set.
10713 (syms_of_syntax): New variable open-paren-in-column-0-is-defun-start.
10714
7973e637
SM
107152000-03-24 Stefan Monnier <monnier@cs.yale.edu>
10716
10717 * eval.c (Fautoload): Add entry in load-history (if after dump).
10718 * lread.c (load-history): Update docstring.
10719
39210e90
GM
107202000-03-24 Gerd Moellmann <gerd@gnu.org>
10721
10722 * indent.c (Fvertical_motion): Always use the current buffer.
10723 Temporarily change the window's buffer, if necessary.
10724
72db3ab5
GM
107252000-03-23 Gerd Moellmann <gerd@gnu.org>
10726
10727 * xterm.c (fast_find_position): Make sure not to consider rows
10728 not visible in the window.
10729
990b2375
SM
107302000-03-22 Stefan Monnier <monnier@cs.yale.edu>
10731
10732 * regex.c (enum syntaxcode): Provide default for non-Emacs.
10733 (re_compile_fastmap, re_match_2_internal): Undo Dave's previous fix.
10734
ff4df011
JR
107352000-03-22 Jason Rumney <jasonr@gnu.org>
10736
10737 * w32menu.c (single_submenu): Set help string to NULL if none.
10738 (w32_menu_show): Set help string correctly.
10739 (add-menu-item): Set help string in MIIM_DATA for menu item.
10740 Load SetMenuItemInfoA explicitly.
10741 (w32_menu_display_help): New function.
427ec082 10742
ff4df011
JR
10743 * w32fns.c (w32_wnd_proc): Handle WM_MENUSELECT message.
10744 (QCdata): Moved to xdisp.c.
10745
10746 * w32term.c (w32_read_socket): Handle WM_MENUSELECT message.
10747 (Vw32_charset_to_codepage_alist): Removed.
10748 (Vw32_charset_info_alist): New variable.
52283633
SM
10749 (Qw32_charset_[ansi, default, symbol, shiftjis, hangul, gb2312)
10750 (chinesebig5, oem, easteurope, turkish, baltic, russian, arabic)
10751 (greek, hebrew, thai, johab, mac, unicode]): New symbols.
ff4df011
JR
10752 (x_produce_glyphs): Remove out of date #ifdef 0'd section. Replace
10753 with TODO comment.
10754 (w32_codepage_for_font): Use Vw32_charset_info_alist.
10755 (syms_of_w32term): Remove Vw32_charset_to_codepage_alist.
10756 Define Vw32_charset_info_alist and w32_charset symbols.
10757
107582000-03-22 Jason Rumney <jasonr@gnu.org>
10759
10760 * makefile.nt (w32bdf.obj): Update dependencies.
10761
10762 * w32bdf.c: Include frame.h and dispextern.h before fontset.h.
10763
10764 * w32fns.c: Include fontset.h after dispextern.h.
10765 (Fx_create_frame): Do not create fontset.
10766 (w32_load_system_font): Doc fix.
10767 (Fx_close_connection): Free full_name if it is not shared.
10768
10769 * w32term.c: Include fontset.h after dispextern.h.
52283633
SM
10770 (x_get_glyph_face_and_encoding): New parameter two_byte_p.
10771 Callers updated.
ff4df011
JR
10772 (w32_per_char_metric): If PCM is invalid, delete and return NULL.
10773 (x_get_char_and_face_encoding): Use FACE_FOR_CHAR to get face_id.
10774 (w32_font_is_double_byte): New function, needs body.
10775 (x_append_glyph): Set glyph->glyph_not_available_p.
10776 (x_produce_glyphs): Set it->glyph_not_available_p. Don't set
10777 it->charset. If it->multibyte_p is zero and it->c is a multibyte
10778 character, convert it to a unibyte character.
10779 (struct glyph_string): Delete member `charset'.
10780 (W32_TEXTOUT): Temporarily remove charset_dim until another way of
10781 calculating it is found.
10782 (x_set_mouse_face_gc): Call FACE_FOR_CHAR to get face_id. Handle
10783 the case that per char metric is not available correctly.
10784 (x_fill_glyph_string): Handle the case that the specific glyph is
10785 not available correctly.
10786 (BUILD_CHAR_GLYPH_STRINGS): Don't set s->charset.
10787 (BUILD_COMPOSITE_GLYPH_STRING): Likewise.
10788 (x_new_font): Call FS_LOAD_FONT, not fs_load_font.
10789 (x_new_fontset): Call fontset_ascii to get ASCII font name of the
10790 fontset. Don't call FS_LOAD_FONT.
10791
439d5cb4
KR
107922000-03-22 Ken Raeburn <raeburn@gnu.org>
10793
10794 * intervals.h (NULL_INTERVAL): Cast to INTERVAL type.
10795 (INT_LISPLIKE): New macro.
10796 (NULL_INTERVAL_P): Use it.
52283633
SM
10797 (INTERVAL_HAS_PARENT, INTERVAL_HAS_OBJECT, SET_INTERVAL_PARENT)
10798 (SET_INTERVAL_OBJECT, INTERVAL_PARENT, COPY_INTERVAL_PARENT)
10799 (GET_INTERVAL_OBJECT, INTERVAL_PARENT_OR_NULL): New macros.
439d5cb4
KR
10800
10801 * alloc.c (make_interval, gc_sweep): Use new macros; eliminate all
10802 explicit references to "parent" field of struct interval and
10803 associated unclean type conversions.
52283633
SM
10804 * intervals.c (create_root_interval, root_interval, rotate_right)
10805 (rotate_left, balance_possible_root_interval, split_interval_right)
10806 (split_interval_left, interval_start_pos, find_interval)
10807 (next_interval, previous_interval, update_interval)
10808 (adjust_intervals_for_insertion, delete_node, delete_interval)
10809 (adjust_intervals_for_deletion, merge_interval_right)
10810 (merge_interval_left, reproduce_tree, graft_intervals_into_buffer)
10811 (copy_intervals_to_string): Likewise.
439d5cb4
KR
10812 * intervals.h (AM_LEFT_CHILD, AM_RIGHT_CHILD, RESET_INTERVAL):
10813 Likewise.
10814 * syntax.c (update_syntax_table): Likewise.
10815
10816 * intervals.c (reproduce_tree_obj): New function, like
10817 reproduce_tree but takes a Lisp_Object for the parent. Declare
10818 with prototype.
10819 (graft_intervals_into_buffer): Use it when appropriate.
10820 (reproduce_tree): Declare with prototype.
10821 (balance_possible_root_interval): Check that the parent is a lisp
10822 object before trying to examine its type.
10823
ee1c5b21
GM
108242000-03-22 Gerd Moellmann <gerd@gnu.org>
10825
10826 * xfaces.c (lface_same_font_attributes_p): Compare font attributes
10827 as strings only if both are known to be strings.
10828
10829 * s/openbsd.h (LIBS_TERMCAP): Undef.
10830
1fb352e0
SM
108312000-03-21 Stefan Monnier <monnier@cs.yale.edu>
10832
10833 * regex.c (CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
10834 definitions for non-Emacs compilation.
10835 (enum re_opcode_t): Remove (not)wordchar and move (not)syntaxspec
10836 outside of `#ifdef emacs'.
10837 (print_partial_compiled_pattern): Update.
10838 (regex_compile): Use (not)syntaxspec(Sword) instead of (not)wordchar.
10839 (re_compile_fastmap): Merge handling of charset and charset_not (for
10840 emacs and non-emacs compilation as well).
10841 Similarly for (not)categoryspec and (not)syntaxspec.
10842 Don't use the fastmap when reaching `anychar' since the added
10843 complexity is not justified.
10844 (re_match_2_internal): Merge (not)wordchar (emacs and non-emacs)
10845 and (not)syntaxspec. Merge (not)categoryspec.
10846
fdaa1f77
KH
108472000-03-22 Kenichi Handa <handa@etl.go.jp>
10848
52283633
SM
10849 * dispextern.h [!HAVE_WINDOW_SYSTEM] (FACE_SUITABLE_FOR_CHAR_P)
10850 (FACE_FOR_CHAR): Define them differently for the configuration of
ff1a0d8e 10851 --without-x.
fdaa1f77 10852
d152fb46
DL
108532000-03-21 Dave Love <fx@gnu.org>
10854
10855 * fontset.c (Fset_fontset_font, Ffontset_font): Fix newlines in
10856 doc string.
10857
d2cafc8c
GM
108582000-03-21 Gerd Moellmann <gerd@gnu.org>
10859
10860 * xfaces.c (check_lface_attrs) [GLYPH_DEBUG]: Fix syntax error.
10861 (lface_fully_specified_p): Don't check contents of
10862 LFACE_FONT_INDEX because that attribute is optional.
10863 (realize_x_face): Remove now unwarranted xassert.
10864
9111d4b5
KH
108652000-03-21 Kenichi HANDA <handa@etl.go.jp>
10866
10867 The following changes are to make font selection based on
10868 characters, not charset. In addition, they recover fontset
10869 facilities while utilizing the new font selection mechanism.
10870
6c4bfdc0
KH
10871 * Makefile.in (fontset.o): Depend on dispextern.h.
10872
10873 * alloc.c (mark_face_cache): Don't mark face->registry.
10874
9111d4b5
KH
10875 * dispextern.h (struct glyph): New member glyph_not_available_p.
10876 Use 22 bits for face_id.
10877 (enum lface_attribute_index): Add LFACE_FONT_INDEX.
10878 (struct face): Delete member registry, new member ascii_face.
10879 (FACE_SUITABLE_FOR_CHAR_P): Renamed from
10880 FACE_SUITABLE_FOR_CHARSET_P. Caller changed.
10881 (FACE_FOR_CHAR): Renamed from FACE_FOR_CHARSET. Caller changed.
52283633 10882 (struct it): Delete member charset, new member glyph_not_available_p.
9111d4b5
KH
10883
10884 * fontset.h (FONT_NOT_OPENED, FONT_NOT_FOUND): Macros removed.
10885 (struct fontset_info, struct fontset_data): Structs removed.
52283633
SM
10886 (allloc_fontset_data, free_fontset_data, fs_regiser_fontset)
10887 (Vglobale_fontset_alist, font_idx_temp): Externs removed.
9111d4b5 10888 (fs_load_font, fs_query_fontset): Adjusted for new argument.
52283633
SM
10889 (fs_free_face_fontset, fontset_font_pattern)
10890 (face_suitable_for_char_p, face_for_char)
10891 (make_fontset_for_ascii_face): Extern them.
9111d4b5
KH
10892 (FS_LOAD_FONT): Adjusted for the change of fontset implementation.
10893 (FS_LOAD_FACE_FONT): New macro.
10894
10895 * fontset.c: All codes rewritten or adjusted for the change of
10896 fontset implementation. Now fontset is represented by char table.
52283633
SM
10897 (Vglobal_fontset_alist, font_idx_temp, my_strcasetbl):
10898 Variables removed.
9111d4b5 10899 (my_strcasecmp): Function removed.
52283633 10900 (Vfontset_table, next_fontset_id, Vdefault_fontset): New variables.
9111d4b5 10901 (AREF, ASIZE): New macros.
52283633
SM
10902 (FONTSET_FROM_ID, FONTSET_ID, FONTSET_NAME, FONTSET_FRAME)
10903 (FONTSET_ASCII, FONTSET_BASE, BASE_FONTSET_P, FONTSET_REF)
10904 (FONTSET_REF_VIA_BASE, FONTSET_SET): New macros.
10905 (fontset_ref, fontset_ref_via_base, fontset_set, make_fontset)
10906 (fontset_id_valid_p, font_family_registry, fontset_name)
10907 (fontset_ascii, free_face_fontset, face_suitable_for_char_p)
10908 (face_for_char, make_fontset_for_ascii_face, fontset_font_pattern):
9111d4b5
KH
10909 New functions.
10910 (fs_load_font): New arg FACE. Caller changed.
10911 (fs_query_fontset): Argument changed. Caller changed.
10912 (Fquery_fontset): call fs_query_fontset.
10913 (fs_register_fontset, alloc_fontset_data, free_fontset_data):
10914 Functions removed.
52283633
SM
10915 (clear_fontset_elements, check_registry_encoding)
10916 (check_fontset_name): New functions.
9111d4b5
KH
10917 (syms_of_fontset): Set char-table-extra-slots property of fontset
10918 to 3. Staticpro and initialize Vfontset_table and
10919 Vdefault_fontset. Defsubr fontset_font and fontset_list.
10920
10921 * frame.h (struct frame): Member `fontset_data' removed.
10922 (FRAME_FONTSET_DATA): Macro removed.
10923
10924 * frame.c (make_frame): Don't allocate f->fontset_data.
10925 (Fdelete_frame): Don't free f->fontset_data.
10926
6c4bfdc0
KH
10927 * msdos.c (XMenuActivate): Args to lookup_derived_face changed.
10928
9111d4b5
KH
10929 * xdisp.c (charset_at_position): Function removed.
10930 (init_iterator): Don't set member charset of struct `it'.
52283633
SM
10931 (handle_face_prop, reseat_to_string, set_iterator_to_next)
10932 (next_element_from_display_vector, insert_left_trunc_glyphs):
9111d4b5
KH
10933 Likewise.
10934 (face_before_or_after_it_pos): Call FACE_FOR_CHAR, not
10935 FACE_FOR_CHARSET.
52283633
SM
10936 (get_next_display_element, append_space)
10937 (extend_face_to_end_of_line): Likewise.
9111d4b5
KH
10938
10939 * xfaces.c (Qx_charset_registry, Vface_default_registry):
10940 Variables removed.
10941 (clear_font_table, frame_update_line_height, load_face_font):
10942 Adjusted for the change of fontset implementation.
10943 (load_face_fontset_font): Function removed.
10944 (pixel_point_size): New function.
10945 (font_list): Argument type changed. Caller changed.
10946 (LFACE_FONT): New macro.
10947 (check_lface_attrs): Check attr[LFACE_FONT_INDEX].
10948 (set_lface_from_font_name): Type of arg FONTNAME is changed to
10949 Lisp_Object. Determine the font name by actually loading a font
10950 by the specified pattern. Set LFACE_FONT (lface) to the specified
10951 pattern. Even if a font is not found, don't try alternatives.
10952 (Finternal_set_lisp_face_attribute): Handle `font' slot in lface.
10953 (set_font_frame_param): If `font' is specified in lface, use it.
10954 (Finternal_get_lisp_face_attribute): Handle `font' slot in lface.
10955 (lface_same_font_attributes_p): Likewise.
10956 (make_realized_face): Arguent changed. Caller changed. Set
10957 face->ascii_face to face itself.
10958 (free_realized_face): Free face->fontset if face is for ASCII.
52283633
SM
10959 (face_suitable_for_iso8859_1_p, face_suitable_for_charset_p)
10960 (deduce_unibyte_registry, x_charset_registry): Functions removed.
9111d4b5
KH
10961 (free_realized_multibyte_face): New function.
10962 (lookup_face, lookup_named_face, lookup_derived_face): Argument
10963 changed. Caller changed.
10964 (try_font_list): Argument type changed.
10965 (face_fontset): Check `font' slot of ATTRS, not `family' slot.
10966 (choose_face_font): Argument changed. Handle fontset properly.
10967 (choose_face_fontset_font): Function removed.
10968 (realize_default_face, realize_named_face): Don't remove the
10969 former face here.
10970 (realize_face): Argument changed. Caller changed. Remove face
52283633 10971 with the arg former_face_id in advance. Load font for the new face.
9111d4b5
KH
10972 (realize_x_face): Argument changed. Caller changed. For a
10973 multibyte character, share fontset with base_face. For a single
52283633 10974 byte character, make a new realized fontset. Don't load a font here.
9111d4b5
KH
10975 (realize_tty_face): Argument changed. Caller changed.
10976 (compute_char_face): Call FACE_FOR_CHAR, not FACE_FOR_CHARSET.
10977 (face_at_buffer_position): Don't check multibyte_p for returning
10978 DEFAULT_FACE_ID.
10979 (face_at_string_position): Call FACE_SUITABLE_FOR_CHAR_P, not
10980 FACE_SUITABLE_FOR_CHARSET_P.
10981 (syms_of_xfaces): Remove code for Qx_charset_registry and
10982 Vface_default_registry.
10983
6c4bfdc0
KH
10984 * xterm.c: Include fontset.h after dispextern.h. Undo the changes
10985 related to PER_CHAR_METRIC done by Gerd on 2000-03-03.
9111d4b5
KH
10986 (x_per_char_metric): Don't try FONT->default_char. Even if
10987 pcm->width is zero, glyph bits may exist.
10988 (x_encode_char): Always initialize char2b->byte1.
10989 (x_get_char_face_and_encoding): Call FACE_FOR_CHAR to get face_id.
52283633 10990 (x_get_glyph_face_and_encoding): New arg two_byte_p. Caller changed.
9111d4b5
KH
10991 (x_append_glyph): Set glyph->glyph_not_available_p.
10992 (x_produce_glyphs): Set it->glyph_not_available_p. Don't set
10993 it->charset. Handle the case that per char metric is not
10994 available. If it->multibyte_p is zero and it->c is a multibyte
10995 character, convert it to a unibyte character.
10996 (struct glyph_string): Delete member `charset'.
10997 (x_set_mouse_face_gc): Call FACE_FOR_CHAR to get face_id. Handle
10998 the case that per char metric is not available correctly.
10999 (x_fill_glyph_string): Handle the case that the specific glyph is
11000 not available correctly.
11001 (BUILD_CHAR_GLYPH_STRINGS): Don't set s->charset.
11002 (BUILD_COMPOSITE_GLYPH_STRING): Likewise.
11003 (x_new_font): Call FS_LOAD_FONT, not fs_load_font.
11004 (x_new_fontset): Call fontset_ascii to get ASCII font name of the
11005 fontset. Don't call FS_LOAD_FONT.
11006
11007 * xfns.c (Fx_create_frame): Don't cal fs_register_fontset.
11008 (x_create_tip_frame): Likewise.
11009 (Fx_close_connection): Free full_name of font_info.
11010
11011 * fns.c (optimize_sub_char_table): New function.
11012 (Foptimize_char_table): New function.
11013 (syms_of_fns): Defsubr Soptimize_char_table.
11014
b33dd3b0
GM
110152000-03-20 Gerd Moellmann <gerd@gnu.org>
11016
11017 * buffer.c (Fset_buffer_modified_p): Set update_mode_lines
11018 only if buffer is displayed in some window.
11019
11020 * xdisp.c (handle_single_display_prop): Initialize local `value'.
11021 (try_window_reusing_current_matrix): Don't call scroll run
11022 function if run's current and desired position are the same;
11023 this prevents cursor flickering.
11024
4e8a9132
SM
110252000-03-19 Stefan Monnier <monnier@cs.yale.edu>
11026
11027 * regex.h (RE_TRANSLATE. RE_TRANSLATE_P): Moved to regex.c.
11028
11029 * regex.c (RE_STRING_CHAR): New macro.
11030 (GET_CHAR_AFER_2): Remove.
11031 (RE_TRANSLATE, RE_TRANSLATE_P): New macros moved from regex.h.
11032 (enum re_opcode_t): Remove on_failure_jump_exclusive.
11033 (print_partial_compiled_pattern, re_compile_fastmap)
11034 (re_match_2_internal): Remove on_failure_jump_exclusive.
11035 (regex_compile): Turn optimizable P+ loops into PP*, so that the
11036 optimization only need to work for * (ie. can use of_keep_string_jump).
11037 Remove the special case for .*\n since it is now covered by the general
11038 optimization.
11039 (re_search_2): Don't bother with `room'.
11040 (skip_one_char): New function.
11041 (skip_noops): Simplify since `memory' is not needed any more.
11042 (mutually_exclusive_p): Restructure slightly to use `switch' and
11043 add handling for "all" remaining cases.
11044 (re_match_2_internal): Change on_failure_jump_smart to use
11045 on_failure_keep_string_jump (and redirect the end-of-loop jump)
11046 rather than on_failure_jump_exclusive.
11047
2136fdd4
GM
110482000-03-19 Gerd Moellmann <gerd@gnu.org>
11049
11050 * xfns.c (select_visual): Don't set dpyinfo->n_planes to the
11051 number of bits per RGB because it's everywhere used as the depth
11052 of the visual.
11053
11054 * term.c (calculate_costs): Remove code dealing with X frames.
11055
18e21ce8 110562000-03-19 Richard M. Stallman <rms@gnu.org>
e53ae11c
RS
11057
11058 * lread.c (syms_of_lread): Doc fix for load-convert-to-unibyte.
11059
d7b511c4
GM
110602000-03-18 Gerd Moellmann <gerd@gnu.org>
11061
11062 * lread.c (read_integer): Unread the last char not consumed.
11063
16b5d424
GM
110642000-03-17 Gerd Moellmann <gerd@gnu.org>
11065
11066 * xterm.c (x_update_window_cursor): Don't update in frames
d7b511c4 11067 which are in the process of being deleted.
16b5d424 11068
1fa28578
GM
110692000-03-16 Gerd Moellmann <gerd@gnu.org>
11070
83488cce
GM
11071 * Makefile.in (mostlyclean): Add `*.core'.
11072 (clean): Add `bootstrap-emacs'.
11073
1fa28578
GM
11074 * lread.c (read_integer): New function.
11075 (read1): Support read syntax #o, #x, #b, #r.
11076
99633e97
SM
110772000-03-15 Stefan Monnier <monnier@cs.yale.edu>
11078
1fa28578
GM
11079 * regex.c (re_match_2): Fix string shortening (to fit `stop') to
11080 make sure POINTER_TO_OFFSET gives the same value before and after
11081 PREFETCH. Use `dfail' to guarantee "atomic" matching.
99633e97
SM
11082 (PTR_TO_OFFSET): Use POINTER_TO_OFFSET.
11083 (debug): Now only active if > 0 rather than if != 0.
11084 (DEBUG_*): Update for the new meaning of `debug'.
1fa28578
GM
11085 (print_partial_compiled_pattern): Add missing `succeed' case. Use
11086 CHARSET_* macros in the charset(_not) branch. Fix off-by-two bugs
11087 in `succeed_n', `jump_n' and `set_number_at'.
99633e97
SM
11088 (store_op1, store_op2, insert_op1, insert_op2)
11089 (at_begline_loc_p, at_endline_loc_p): Add prototype.
1fa28578
GM
11090 (group_in_compile_stack): Move to after its arg's types are
11091 declared and add a prototype.
99633e97 11092 (PATFETCH): Define in terms of PATFETCH_RAW.
52283633 11093 (GET_UNSIGNED_NUMBER): Add the usual `do { ... } while(0)' wrapper.
99633e97 11094 (QUIT): Redefine as a nop except for NTemacs.
1fa28578
GM
11095 (regex_compile): Handle intervals {,M} as if it was {0,M}. Fix
11096 indentation of the greedy-op and shy-group code.
99633e97
SM
11097 (at_(beg|end)line_loc_p): Fix argument's types.
11098 (re_compile_fastmap): Ifdef out failure_stack_ptr to shut up gcc.
11099 (re_search_2): Use POS_AS_IN_BUFFER. Simplify `room' computation.
11100 (MATCHING_IN_FIRST_STRING): Remove.
1fa28578
GM
11101 (re_match_2): Use POS_AS_IN_BUFFER. Ifdef out failure_stack_ptr
11102 to shut up gcc. Use FIRST_STRING_P and POINTER_TO_OFFSET. Use
11103 QUIT unconditionally.
99633e97 11104
699238d9
GM
111052000-03-15 Gerd Moellmann <gerd@gnu.org>
11106
11107 * minibuf.c (Fminibuffer_complete): Set point to ZV if finding
11108 a sole completion.
11109
11110 * process.c (send_process): Add a hint that the function
11111 can call Lisp code to its comment.
11112
11113 * lread.c (load_dangerous_libraries): New variable.
11114 (Vbytecomp_version_regexp): New variable.
11115 (safe_to_load_p): New function.
11116 (Fload): Handle files not compiled with Emacs specially.
11117 (syms_of_lread): New Lisp variable load-dangerous-libraries.
11118
34e23e5a
GM
111192000-03-14 Gerd Moellmann <gerd@gnu.org>
11120
9c763cca
GM
11121 * lisp.h (free_frame_xic) [HAVE_X_I18N]: Add missing semicolon.
11122
11123 * xterm.c (xim_close_dpy, xim_initialize): Use X11R6-style XIM
11124 support functions only if HAVE_X11R6_XIM is defined.
11125 (xim_instantiate_callback): Define only if HAVE_X11R6_XIM.
11126
11127 * s/sol2.h (INHIBIT_X11R6_XIM): Define.
11128
11129 * xfns.c (X_I18N_INHIBITED): Don't define.
52283633 11130 (create_frame_xic): Remove conditional compilation on X_I18N_INHIBITED.
9c763cca
GM
11131 (x_kill_gs_process, x_window): Use FRAME_X_VISUAL.
11132
11133 * config.in (HAVE_X_I18N): Moved here from xterm.h.
11134 (HAVE_X11R6_XIM): Define.
11135
11136 * xterm.h (HAVE_X_I18N) [HAVE_X11R6]: Moved to config.in.
11137
34e23e5a
GM
11138 * xterm.c (x_term_init): Add support for X resource `synchronous'.
11139 If set, call XSynchronize.
11140
66f0296e
SM
111412000-03-13 Stefan Monnier <monnier@cs.yale.edu>
11142
34e23e5a
GM
11143 * regex.c: Declare a new type `re_char' used throughout the code
11144 for the string char type. It's `const unsigned char' to match the
11145 rest of Emacs. Consistently make sure all pointers to strings use
52283633 11146 it and make sure all pointers into the pattern use `unsigned char'.
66f0296e 11147 (re_match_2_internal): Use `PREFETCH+STRING_CHAR' instead of
34e23e5a
GM
11148 GET_CHAR_AFTER_2. Also merge wordbound and notwordbound to reduce
11149 code duplication.
66f0296e
SM
11150
11151 * charset.h (GET_CHAR_AFTER_2): Remove.
11152 (GET_CHAR_BEFORE_2): Use unsigned chars, like everywhere else.
11153
854a025c
KR
111542000-03-12 Ken Raeburn <raeburn@gnu.org>
11155
11156 * Makefile.in (temacs): Evaluate ALL_LDFLAGS into a temporary
11157 variable before the invocation of YMF_PASS_LDFLAGS, in case both
11158 of them try to use backquotes.
11159
b9d2c7e2
DL
111602000-03-12 Dave Love <fx@gnu.org>
11161
11162 * unexelf.c: Restore changes of 1999-10-19.
11163 (unexec): Don't adjust bss for sbss type SHT_PROGBITS; otherwise
11164 fix its type and alignment; copy it from current process.
11165
5e5dff44
GM
111662000-03-12 Gerd Moellmann <gerd@gnu.org>
11167
9b2f3c38
GM
11168 * atimer.c (cancel_atimer): Break out of the loop as soon as timer
11169 has been found. Fix bug not computing timer's predecessor.
11170
427ec082 11171 * fileio.c (Fread_file_name): Handle case that DIR contains a
9172b88d
GM
11172 file name.
11173
e1cff360
GM
11174 * window.c (Fsave_window_excursion): Doc fix.
11175
52283633 11176 * xfns.c (x_defined_color): Rewritten to use x_allocate_nearest_color.
5e5dff44 11177
e411ce4b
EZ
111782000-03-12 Eli Zaretskii <eliz@is.elta.co.il>
11179
11180 * msdos.c (vga_installed): New function, code moved from
11181 dos_set_window_size.
11182 (Qbar, Qcursor_type, outside_cursor): New variables.
11183 (syms_of_msdos): Intern and staticpro them.
11184 (dos_ttraw) [__DJGPP__ >= 2, !HAVE_X_WINDOWS]: Save the cursor
11185 shape used outside Emacs when called for the first time.
11186 (dos_ttcooked) [__DJGPP__ >= 2, !HAVE_X_WINDOWS]: Restore the
11187 cursor shape used outside Emacs.
11188 (msdos_set_cursor_shape, IT_set_cursor_type): New functions.
11189 (IT_frame_up_to_date): Call IT_set_cursor_type, in case the cursor
11190 type has changed.
11191 (IT_set_frame_parameters): Call IT_set_cursor_type if the frame
11192 parameters specify the cursor. Make qreverse a global
11193 variable (renamed to Qreverse).
11194
80460654
GM
111952000-03-09 Gerd Moellmann <gerd@gnu.org>
11196
11197 * fns.c (Fy_or_n_p): Cancel busy-cursor.
11198
95cd4c40
SM
111992000-03-08 Stefan Monnier <monnier@cs.yale.edu>
11200
11201 This is a big redesign of failure-stack and register handling, prompted
11202 by bugs revealed when trying to add shy-groups. Overall, what happened
11203 is that loops are now structured a little differently, groups can be
11204 shy and the code is a little simpler.
11205
11206 * regex.h: Update the copyright.
11207 (RE_SHY_GROUPS): New value.
11208 (RE_UNMATCHED_RIGHT_PAREN_ORD): Renumber.
11209 (RE_SYNTAX_EMACS): Add RE_SHY_GROUPS.
11210
80460654
GM
11211 * regex.c (enum re_opcode_t): Remove jump_past_alt,
11212 maybe_pop_jump, push_dummy_failure and dumy_failure_jump. Add
11213 on_failure_jump_(exclusive, loop and smart). Also fix the comment
11214 for (start|stop)_memory since they now only take one argument (the
11215 second has becomes unnecessary).
52283633 11216 (print_partial_compiled_pattern): Adjust for changes in re_opcode_t.
80460654
GM
11217 (print_compiled_pattern): Use %ld to printf long ints and flush to
11218 make debugging a little easier.
95cd4c40
SM
11219 (union fail_stack_elt): Make the integer unsigned.
11220 (struct fail_stack_type): Add a `frame' element.
11221 (INIT_FAIL_STACK): Init `frame' as well.
11222 (POP_PATTERN_OP): New macro for re_compile_fastmap.
11223 (DEBUG_PUSH, DEBUG_POP): Remove.
11224 (NUM_REG_ITEMS): Remove.
11225 (NUM_NONREG_ITEMS): Adjust.
80460654
GM
11226 (FAILURE_PAT, FAILURE_STR, NEXT_FAILURE_HANDLE)
11227 (TOP_FAILURE_HANDLE): New macros for the cycle detection.
95cd4c40 11228 (ENSURE_FAIL_STACK): New macro for PUSH_FAILURE_(REG|POINT).
52283633
SM
11229 (PUSH_FAILURE_REG, POP_FAILURE_REG, CHECK_INFINITE_LOOP):
11230 New macros.
80460654
GM
11231 (PUSH_FAILURE_POINT): Don't push registers any more. The pattern
11232 address pushed is not the destination of the jump but the source
11233 of it instead.
95cd4c40
SM
11234 (NUM_FAILURE_ITEMS): Remove.
11235 (POP_FAILURE_POINT): Adapt to the new stack structure (i.e. pop
80460654
GM
11236 registers before the actual failure point). Don't hardcode any
11237 meaning for str==NULL anymore.
95cd4c40 11238 (union register_info_type, REG_MATCH_NULL_STRING_P, IS_ACTIVE)
80460654
GM
11239 (MATCHED_SOMETHING, EVER_MATCHED_SOMETHING, SET_REGS_MATCHED):
11240 Remove.
95cd4c40
SM
11241 (REG_UNSET_VALUE): Use NULL (why not?).
11242 (compile_range): Remove declaration since it doesn't exist.
11243 (struct compile_stack_elt_t): Remove inner_group_offset.
11244 (old_reg(start|end), reg_info, reg_dummy, reg_info_dummy): Remove.
11245 (regex_grow_registers): Remove dead code.
11246 (FIXUP_ALT_JUMP): New macro.
80460654
GM
11247 (regex_compile): Add shy-groups Change loops to use
11248 on_failure_jump_smart&jump instead of
11249 on_failure_jump&maybe_pop_jump. Change + loops to eliminate the
11250 initial (dummy_failure_)jump. Remove c1_base (looks like unused
11251 variable to me). Use `jump' instead of `jump_past_alt' and don't
11252 bother with push_dummy_failure in alternatives since it is now
11253 unnecessary. Use FIXUP_ALT_JUMP. Eliminate a useless `#ifdef
11254 emacs' for (re)allocating the stack.
11255 (re_compile_fastmap): Remove dead variables i and num_regs. Exit
11256 from loop when bufp->can_be_null rather than jumping to `done'.
11257 Avoid jumping backwards so as to ensure termination. Use
11258 PATTERN_STACK_EMPTY and POP_PATTERN_OP. Improved handling of
11259 backreferences. Remove dead code in handling of `anychar'.
95cd4c40 11260 (skip_noops, mutually_exclusive_p): New functions taken from the
80460654
GM
11261 handling of `maybe_pop_jump' in re_match_2_internal. Slightly
11262 improve mutually_exclusive_p to handle ".+\n".
52283633
SM
11263 (lowest_active_reg, highest_active_reg)
11264 (NO_(LOWEST|HIGHEST)_ACTIVE_REG) Remove.
80460654
GM
11265 (re_match_2_internal): Use %p instead of 0x%x when printf'ing
11266 ptrs. Don't SET_REGS_MATCHED anymore. Remove many dead
11267 variables. Push register (in `start_memory') on the stack rather
11268 than storing it in old_reg(start|end). Remove the cycle detection
11269 from `stop_memory', replaced by the use of on_failure_jump_loop
11270 for greedy loops. Add code for the new on_failure_jump_<foo>.
11271 Remove ad-hoc code in `on_failure_jump' to push more registers in
11272 the case of a loop. Take out code from `maybe_pop_jump' into
11273 separate functions and adapt it to the semantics of
11274 `on_failure_jump_smart'. Remove jump_past_alt, dummy_failure_jump
11275 and push_dummy_failure. Remove dummy_failure handling and
11276 handling of `failures to jump to on_failure_jump' (this last one
11277 was already dead code, it seems).
11278 (group_match_null_string_p, alt_match_null_string_p)
11279 (common_op_match_null_string_p): Remove.
95cd4c40 11280
7397acc4
DL
112812000-03-08 Dave Love <fx@gnu.org>
11282
11283 * config.in: Don't depend on __STDC__ for volatile.
11284 Add POINTER_TYPE, PTR, PROTOTYPES.
11285
11286 * hftctl.c, strftime.c: Use PROTOTYPES.
11287 * eval.c (find_handler_clause): Likewise.
11288
11289 * mem-limits.h: Use POINTER_TYPE.
11290
11291 * lisp.h (P_): Define based on PROTOTYPES, not __STDC__.
11292 (memory_warnings): Declare using POINTER_TYPE.
11293
5e91ff9e
GM
112942000-03-08 Gerd Moellmann <gerd@gnu.org>
11295
feab4fba
GM
11296 * xfns.c (x_set_cursor_type): If ARG is nil, give frame no cursor.
11297
52283633 11298 * xdisp.c (display_echo_area): Temporarily inhibit garbage collection.
25edb08f 11299
5e91ff9e
GM
11300 * xfns.c: Remove obsolete code in #if 0.
11301 (Fx_focus_frame): New function.
11302
a735b7e1
KH
113032000-03-07 Miyashita Hisashi <himi@bird.scphys.kyoto-u.ac.jp>
11304
11305 * coding.c (coding_category_name): Add coding-category-utf-8,
11306 coding-category-utf-16-be, coding-category-utf-16-le.
11307 (UTF_8_1_OCTET_P, UTF_8_EXTRA_OCTET_P, UTF_8_2_OCTET_LEADING_P,
11308 UTF_8_3_OCTET_LEADING_P, UTF_8_4_OCTET_LEADING_P,
11309 UTF_8_5_OCTET_LEADING_P, UTF_8_6_OCTET_LEADING_P): New macros.
11310 (detect_coding_utf_8): New function.
11311 (UTF_16_INVALID_P, UTF_16_HIGH_SURROGATE_P
11312 UTF_16_LOW_SURROGATE_P): New macros.
11313 (detect_coding_utf_16): New function
11314 (detect_coding_mask): When priorities are specified, skip any
11315 categories that have `nil' coding-system. Fix bug of returning
11316 wrong mask when PRIORITIES is specified and detect_coding_XXX()
11317 returns a mask not set in PRIORITIES.
11318 (detect_eol_type_in_2_octet_form): New function.
11319 (detect_eol): selects detect_eol_type_XXX to call according to
11320 cooding->category_idx.
11321 (detect_coding_system): Remove `nil' coding-system in the result.
11322 (Fupdate_coding_systems_internal): Update all coding-categories.
11323
52283633
SM
11324 * coding.h (CODING_CATEGORY_IDX_UTF_8)
11325 (CODING_CATEGORY_IDX_UTF_16_BE, CODING_CATEGORY_IDX_UTF_16_LE):
11326 New macros.
11327 (CODING_CATEGORY_IDX_RAW_TEXT, CODING_CATEGORY_IDX_BINARY)
11328 (CODING_CATEGORY_IDX_MAX): Adjusted for the above macros.
11329 (CODING_CATEGORY_IDX_UTF_16_LE)
11330 (CODING_CATEGORY_MASK_UTF_8, CODING_CATEGORY_MASK_UTF_16_BE)
11331 (CODING_CATEGORY_MASK_UTF_16_LE): New macros.
a735b7e1
KH
11332 (CODING_CATEGORY_MASK_ANY): Include the above macros.
11333 (CODING_CATEGORY_MASK_UTF_16_BE_LE): New macro.
11334
9994cc69
GM
113352000-03-07 Gerd Moellmann <gerd@gnu.org>
11336
e9b4e5ff
GM
11337 * doc.c (Fdocumentation_property): If value is not a string,
11338 and doesn't refer to etc/DOC, evaluate it to obtain a string.
11339
f7daf1e1
GM
11340 * xterm.c (x_connection_closed) [USE_X_TOOLKIT]: Don't try to
11341 close the display with XtCloseDisplay. This caused a bus error
11342 on OpenWindows.
11343
9994cc69
GM
11344 * minibuf.c (Fminibuffer_complete): Move point to ZV when input is
11345 complete but not unique.
11346
4336c705
GM
113472000-03-06 Gerd Moellmann <gerd@gnu.org>
11348
18bb0684
GM
11349 * process.c (send_process): Remove local variable `procname' that
11350 might become invalid when a GC happens. Instead, access the
11351 process name slot directly.
11352
4336c705
GM
11353 * xfns.c (x_set_menu_bar_lines_1): Adjust window's orig_top and
11354 orig_height if set.
11355
11356 * frame.c (set_menu_bar_lines_1): Adjust window's orig_top and
11357 orig_height if set.
11358
515d0d0e
EZ
113592000-03-06 Eli Zaretskii <eliz@is.elta.co.il>
11360
11361 * msdos.c (IT_note_mouse_highlight): Return immediately if frame's
11362 glyph matrices have been freed.
11363
100b3cbb
GM
113642000-03-05 Gerd Moellmann <gerd@gnu.org>
11365
50df5e5a 11366 * Makefile.in (tags): Include ../lwlib/TAGS in TAGS.
6178bc23 11367 (bootstrap-temacs): Set LC_ALL to C like for temacs.
50df5e5a
GM
11368
11369 * xfns.c (QCdata): Moved to xdisp.c.
11370
11371 * xdisp.c (QCdata): Moved here from xfns.c.
11372 (syms_of_xdisp): Initialize QCdata.
11373
11374 * frame.h (FRAME_INTERNAL_BORDER_WIDTH) [!HAVE_X_WINDOWS]: Define.
11375
11376 * window.c (coordinates_in_window): Use
11377 FRAME_INTERNAL_BORDER_WIDTH_SAFE instead of
11378 FRAME_INTERNAL_BORDER_WIDTH.
11379
100b3cbb 11380 * xdisp.c (try_window_id): Recompute unchanged information if
4336c705 11381 it is obviously invalid.
100b3cbb
GM
11382
11383 * xterm.c (x_term_init): Create a colormap if not using the
11384 default visual.
11385
11386 * xterm.h (select_visual): Change prototype.
11387
11388 * xfns.c (select_visual): Rewritten. Recognize user-specified
11389 visual classes.
11390 (visual_classes): New variable.
11391
64d739c4
GM
113922000-03-04 Gerd Moellmann <gerd@gnu.org>
11393
11394 * xfns.c (x_defined_color, x_set_mouse_color, lookup_rgb_color)
11395 (lookup_pixel_color, x_laplace, x_build_heuristic_mask)
11396 (png_load): Access colormap of frame using FRAME_X_COLORMAP.
52283633 11397 (x_decode_color): Don't handle allocation of white and black specially.
64d739c4
GM
11398 (x_window) [USE_X_TOOLKIT]: Set XtNvisual, XtNdepth, and
11399 XtNcolormap resources.
11400 (x_window) [!USE_X_TOOLKIT]: Pass colormap to XCreateWindow.
11401 (Fx_create_frame): Initialize color members of x_output structure.
11402 (xpm_load): Pass colormap to XPM lib.
11403
11404 * xfaces.c (x_free_colors): Access colormap of frame using
11405 FRAME_X_COLORMAP. Be paranoid about freeing black and white
11406 when default colormap is used.
11407
11408 * xterm.c (x_term_init): Set Colormap member of x_display_info
11409 structure. Copy colormap if resource `privateColormap' is
11410 specified (PseudoColor only).
11411 (x_setup_relief_color): Access colormap of frame using
11412 FRAME_X_COLORMAP.
11413
11414 * xterm.h (struct x_display_info): Add Colormap member `cmap'.
11415 (FRAME_X_COLORMAP, FRAME_X_VISUAL): New macros.
11416
c3cee013
JR
114172000-03-04 Jason Rumney <jasonr@gnu.org>
11418
11419 * xfaces.c Change many FRAME_X... macros to FRAME_WINDOW... or
11420 other non-platform-specific equivalents.
64d739c4 11421 [WINDOWSNT]: Include w32term.h, fontset.h and define X
c3cee013
JR
11422 specific functions and macros as their w32 equivalents where
11423 non-platform-specifics are not available.
11424 [HAVE_X_WINDOWS]: Change most of these to HAVE_WINDOW_SYSTEM.
11425 (x_create_gc, x_free_gc) [WINDOWSNT]: Add W32 versions.
11426 (clear_font_table) [WINDOWSNT]: Call w32_unload_font.
11427 (frame_update_line_height): Use macros to access f->output_data.
11428 (defined_color): Remove FIXME comments; fixed.
11429 (x_face_list_fonts, prepare_face_for_display): Put X specifics
11430 into #ifdef blocks. Add WINDOWSNT blocks.
11431 (Fx_list_fonts): Use macros for accessing font data.
11432 (set_lface_from_font_name): Different default fonts for X and
11433 WINDOWSNT.
11434 (font_scalable_p) [WINDOWSNT]: Treat wildcard XLFD_AVGWIDTH as
11435 scalable for backward compatibility.
64d739c4 11436 (realize_tty_face) [MSDOS]: Do the same for WINDOWSNT.
c3cee013
JR
11437 (syms_of_xfaces) [WINDOWSNT]: Allow scalable fonts by default.
11438
64d739c4 11439 * emacs.c (main) [HAVE_NTGUI]: Call syms_of_xfaces instead of
c3cee013
JR
11440 syms_of_w32faces.
11441
11442 * makefile.nt (w32faces.obj): Remove.
11443 (xfaces.obj): Add.
11444
807cc41c
JR
114452000-03-03 Jason Rumney <jasonr@gnu.org>
11446
11447 * keyboard.c (make_lispy_event): Call buffer_posn_from_coords with
11448 correct parameters.
11449
0007072a
KR
114502000-03-03 Ken Raeburn <raeburn@gnu.org>
11451
11452 * unexelf.c (PT_LOAD, SHT_*, SHN_*) [__NetBSD__]: Only provide
11453 standard ELF definitions here if the system header does not.
11454
71a6ba55
GM
114552000-03-03 Gerd Moellmann <gerd@gnu.org>
11456
11457 * xterm.c (PER_CHAR_METRIC): Removed.
11458 (x_per_char_metric_1, x_default_char): New functions.
11459 (x_per_char_metric): If font's default char is invalid, return
11460 metrics of a suitably chosen usable default char.
11461 (x_draw_glyph_string_foreground): If font has an invalid default
64d739c4
GM
11462 char, replace occurrences of unprintable chars with a suitably
11463 chosen usable default char.
71a6ba55 11464
900fa1f1
GM
114652000-03-02 Gerd Moellmann <gerd@gnu.org>
11466
42f55fe0
GM
11467 * xterm.c (note_mouse_highlight): Return quickly if frame's
11468 glyph matrices have been freed.
11469
11470 * dispnew.c (free_glyphs): Block input while freeing matrices.
11471
900fa1f1
GM
11472 * xfns.c (x_clear_image, x_kill_gs_process): Use x_free_colors.
11473
52283633
SM
11474 * xterm.c (x_alloc_lighter_color, x_setup_relief_color):
11475 Use x_free_colors.
900fa1f1
GM
11476
11477 * dispextern.h (x_free_colors): Add prototype.
11478
11479 * xfaces.c (x_free_colors): New function.
11480 (unload_color, free_face_colors): Use it.
11481
2f950292
EZ
114822000-03-02 Eli Zaretskii <eliz@is.elta.co.il>
11483
11484 * msdos.h (FRAME_INTERNAL_BORDER_WIDTH): Define to zero.
11485
11486 * window.c [MSDOS]: Include msdos.h.
11487
54d04320
DL
114882000-03-02 Dave Love <fx@gnu.org>
11489
11490 * m/powerpcle.h, m/sparc.h: Don't set C_OPTIMIZE_SWITCH.
11491
11492 * m/mips-siemens.h, m/news-r6.h, m/news-risc.h, m/tekxd88.h: Don't
11493 set C_OPTIMIZE_SWITCH for gcc.
11494
0ba93ac4
KH
114952000-03-02 Kenichi Handa <handa@etl.go.jp>
11496
11497 * coding.c (coding_save_composition): Be sure to allocate
11498 composition data area in coding even if there's no composition in
11499 the current run.
11500
a2bc11d4
JR
115012000-03-01 Jason Rumney <jasonr@gnu.org>
11502
11503 * w32term.c: Equivalent changes to those made to xterm.c on
11504 2000-02-25 and 2000-02-24.
11505
11506 * w32fns.c: Equivalent changes to those made to xfns.c on
11507 2000-02-25 and 2000-02-21.
11508
11509 * sysdep.c: [WINDOWSNT]: Use sys_read and sys_write to ensure
11510 correct line-end convention is followed.
11511
11512 * w32menu.c [HAVE_BOXES]: Remove #undef.
11513 (single_keymap_panes): Remove code for simulating checkmarks.
11514 (single_menu_item): Remove notbuttons_ptr argument. Callers changed.
11515 Remove code for drawing simulated checkmarks.
11516 (w32_menu_show): make unibyte help string correctly.
11517 (add_menu_item): draw standard Windows checkmarks. Draw radio
11518 buttons as radio buttons if possible.
11519
72d19d75
GM
115202000-03-01 Gerd Moellmann <gerd@gnu.org>
11521
2df636f4
GM
11522 * sysdep.c (start_of_text): Don't define this function for NetBSD
11523 with ELF.
11524
427ec082 11525 * m/pmax.h (START_FILES, CANNOT_DUMP) [__NetBSD__ || __OpenBSD__]:
2df636f4
GM
11526 Don't define.
11527 (UNEXEC) [__NetBSD__ || __OpenBSD__]: Define to unexelf.o.
11528 (LINKER): Don't undef if __NetBSD__ is defined.
11529
11530 * m/mips.h (LINKER) [__NetBSD__ || __OpenBSD__]: Don't define.
11531
11532 * fileio.c [__NetBSD__]: Define `unix'.
11533
72d19d75
GM
11534 * xfns.c (start_busy_cursor): Allow floats for busy-cursor-delay.
11535
ed4d0512
GM
115362000-02-29 Gerd Moellmann <gerd@gnu.org>
11537
50b1039f
GM
11538 * atimer.c (start_atimer): Don't abort when timers are stopped.
11539 (append_atimer_lists): New function.
11540 (cancel_atimer, stop_other_atimers, run_all_atimers): Handle
11541 arbitrary lists of stopped and running atimers.
11542
ed4d0512
GM
11543 * atimer.c (cancel_atimer): Handle canceling an atimer when
11544 some timers are stopped.
11545
11546 * xfns.c (cancel_busy_cursor): Set busy_cursor_atimer to null
11547 after canceling it.
11548
11549 * fns.c (maybe_resize_hash_table): Handle case of new size
11550 coming out as being the same as old size.
11551
387023ee
JR
115522000-02-27 Jason Rumney <jasonr@gnu.org>
11553
11554 * makefile.nt: Add atimer.h to dependencies.
11555 * w32.c (init_environment): Set Vw32_num_mouse_buttons here.
11556 * w32console.c: Only disable window system features for dispextern.h
11557 (initialize_w32_display): Build a display info for the console.
11558 * w32faces.c (tty_defined_color): Apply xfaces.c change from 02-17.
11559 * w32fns.c (w32_wnd_proc) [WM_LBUTTON_DOWN, WM_RBUTTON_DOWN,
11560 WM_LBUTTON_UP, WM_RBUTTON_UP]: Do not treat 4 or more button mice
11561 as 2 button mice.
11562 * w32gui.h (struct W32FontStruct): Revert last change after change
11563 to xdisp.c.
11564 * w32menu.c (single_submenu): Set up help string.
11565 [!HAVE_MULTILINGUAL_MENU]: Don't overwrite item_name with descrip.
11566 (w32_dialog_show): Set up help string.
11567 * w32term.c (w32_display_info_for_display): Remove unused function.
11568 (w32_draw_bitmap): Use pre-built bitmaps.
11569 (w32_initialize_display_info): New function to initialize parts of
11570 display info that are common to both GUI and console frames.
11571 (w32_term_init): Use w32_initialize_display_info. Do not set
11572 Vw32_num_mouse_buttons here, as it is not called for console
11573 frames. Build bitmaps for indicating truncated lines etc.
11574 (x_delete_display): Destroy pre-built bitmaps.
11575 * xdisp.c (handle_single_display_prop): Use FONT_HEIGHT macro.
11576 (echo_area_display): Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM.
11577
4516715a
DL
115782000-02-27 Dave Love <fx@gnu.org>
11579
11580 * lisp.h: Add a bunch of prototypes.
11581
171ca836
KH
115822000-02-26 Kenichi Handa <handa@etl.go.jp>
11583
11584 * keyboard.c (read_char): Set `usec' correctly.
11585
4013921d
KH
115862000-02-25 Miyashita Hisashi <himi@bird.scphys.kyoto-u.ac.jp>
11587
11588 * ccl.c (ccl_driver) [CCL_MapMultiple]: When the mapped value is
11589 `lambda', set reg[RRR] to the map index.
11590 (ccl_driver) [CCL_MapSingle]: When the mapped value is found, set
11591 reg[RRR] to 0. Otherwise, set it to -1.
11592
9244a058
GM
115932000-02-25 Gerd Moellmann <gerd@gnu.org>
11594
2df636f4 11595 * emacs.c (main): Remove code snippet commented out with `//'.
9244a058 11596
18e21ce8 115972000-02-25 Richard M. Stallman <rms@gnu.org>
427ec082 11598
f43d79c1
GM
11599 * fileio.c (Ffile_symlink_p): If result starts with a `/'
11600 and contains a `:', prepend `/:'.
11601
11602 * window.c (select_window_1): If selected_window is nil,
11603 don't "swap out" the buffer's point.
11604 (Fset_window_configuration): Set selected_window to nil
11605 before calling Fselect_window.
11606 (unshow_buffer): Don't set point in buffer from window's point
11607 if another more recently selected window also shows the buffer.
11608
bed0c171
GM
116092000-02-25 Gerd Moellmann <gerd@gnu.org>
11610
449c3c52
GM
11611 * keyboard.c (recursive_edit_1): Cancel busy-cursor.
11612
f5b58615
GM
11613 * xfns.c (inhibit_busy_cursor, busy_count): Removed.
11614 (Fx_show_busy_cursor, Fx_hide_busy_cursor): Removed.
52283633
SM
11615 (busy_cursor_atimer, busy_cursor_shown_p, Vbusy_cursor_delay):
11616 New variables.
f5b58615
GM
11617 (DEFAULT_BUSY_CURSOR_DELAY): New define.
11618 (start_busy_cursor, cancel_busy_cursor, show_busy_cursor)
11619 (hide_busy_cursor): New functions.
11620 (syms_of_xfns): DEFVAR_LISP Vbusy_cursor_delay.
11621
11622 * minibuf.c (read_minibuf): Cancel busy-cursor.
11623
11624 * keyboard.c (command_loop_1): Call start_busy_cursor before
11625 Fcommand_execute and cancel_busy_cursor after it.
11626 (timer_check): Remove busy-cursor code.
11627 (Fread_key_sequence, Fread_key_sequence_vector): Start/cancel busy
11628 cursor timer.
11629
11630 * process.c (wait_reading_process_input): Remove busy-cursor code.
11631
11632 * eval.c (Fsignal): Call cancel_busy_cursor instead of
11633 Fx_hide_busy_cursor.
11634
11635 * dispextern.h (Fx_show_busy_cursor, Fx_hide_busy_cursor):
11636 Remove prototyoes.
11637 (start_busy_cursor, cancel_busy_cursor): Add prototypes.
11638
11639 * lisp.h (Fx_hide_busy_cursor): Remove prototype.
11640
11641 * xterm.c (XTread_socket): Remove busy-cursor code.
11642
4eb8436f
GM
11643 * dispnew.c (flush_stdout) [GLYPH_DEBUG]: New function.
11644 (build_frame_matrix_from_leaf_window): Put code handling
11645 glyph row's not being a slice of a frame row in #if 0.
11646 (sync_window_with_frame_matrix_rows): New function.
11647 (frame_row_to_window): New function.
11648 (mirror_line_dance): Handle copies between windows.
11649
3cb65b0e
GM
11650 * lread.c (Fload): Use `xfree' instead of `free'.
11651 (init_obarray): Use `xmalloc' instead of `malloc'.
11652
bed0c171
GM
11653 * window.c (Fset_window_buffer): Set WINDOW to the window
11654 after decoding.
2add4349
GM
11655 (coordinates_in_window): Take frame's internal border width
11656 into account.
bed0c171 11657
42088c12
GM
116582000-02-24 Gerd Moellmann <gerd@gnu.org>
11659
11660 * xterm.c (x_display_and_set_cursor): Display cursor of
11661 non-selected windows depending on the setting of
11662 cursor_in_non_selected_windows.
11663
11664 * xdisp.c (cursor_in_non_selected_windows): New variable.
11665 (syms_of_xdisp): DEFVAR_BOOL it.
11666
d1e103b2
GM
116672000-02-23 Gerd Moellmann <gerd@gnu.org>
11668
723e779c
GM
11669 * data.c (Fstring_to_number): If number is greater than what
11670 fits into an integer, return a float.
11671
d1e103b2
GM
11672 * eval.c (specbind): Remove references to
11673 keyword_symbols_constant_flag.
11674
11675 * data.c (keyword_symbols_constant_flag): Removed.
11676 (Fmakunbound, set_internal, syms_of_data): Remove references to
11677 keyword_symbols_constant_flag.
11678
11679 * bytecode.c (Fbyte_code): Remove keyword_symbols_constant_flag.
11680
214f877f
KH
116812000-02-23 Kenichi Handa <handa@etl.go.jp>
11682
11683 * syntax.c (multibyte_syntax_as_symbol): New variable.
11684 (syms_of_syntax): Declare it as a Lisp variable.
11685 (SYNTAX_WITH_MULTIBYTE_CHECK): New macro.
11686 (scan_lists): If both sexpflag and multibyte_syntax_as_symbol are
11687 nonzero, treat all multibyte characters as symbol.
52283633 11688 (init_syntax_once): Give syntax `word' to all multibyte characters.
214f877f 11689
130adcb7
EZ
116902000-02-22 Eli Zaretskii <eliz@is.elta.co.il>
11691
3cb65b0e 11692 * frame.c (Fdelete_frame): Don't let echo_area_window remain on
d7d0dac0 11693 a deleted frame.
130adcb7 11694
17cbbf95
GM
116952000-02-21 Gerd Moellmann <gerd@gnu.org>
11696
11697 * frame.c (Fmouse_position): GCPRO retval instead of x and y.
11698
11699 * xfns.c (x_window_to_frame, x_any_window_to_frame)
11700 (x_non_menubar_window_to_frame): Check the busy-cursor window.
11701
beb0bc36
DL
117022000-02-21 Dave Love <fx@gnu.org>
11703
11704 * frame.c (Vmouse_position_function): New variable.
11705 (Fmouse_position): Use it.
11706 (syms_of_frame): Install it.
11707
11708 * charset.c (find_charset_in_str): Fix use of `c' instead of `c1'.
11709
1d92afcd
GM
117102000-02-20 Gerd Moellmann <gerd@gnu.org>
11711
11712 * fileio.c (Finsert_file_contents): Unbind the binding of
11713 standard-output done by temp_output_buffer_setup.
329eed9f
GM
11714
11715 * eval.c (funcall_lambda): Don't bind Qmocklisp_arguments unless
11716 Vmocklisp_arguments is nil. Inline Fcar and Fcdr.
11717 (specbind, unbind_to): Handle most common case of non-constant
11718 symbol with trivial value specially.
11719
11720 * bytecode.c (Fbyte_code) <Bvarset>: Inline most common case.
11721
18e21ce8 117222000-02-20 Richard M. Stallman <rms@gnu.org>
2d06696f
RS
11723
11724 * data.c (Fmake_variable_buffer_local): Doc fix.
11725 Init found_for_buffer to 0.
11726 (Fmake_variable_frame_local): If the variable has already
11727 been buffer-local, set the check_frame field.
11728
1d4311c3
EZ
117292000-02-20 Eli Zaretskii <eliz@is.elta.co.il>
11730
11731 * msdos.c (IT_write_glyphs): Allocate a larger screen_buf as data
11732 produced for CODING_MODE_LAST_BLOCK requires.
11733
2dc95ddd
DL
117342000-02-18 Dave Love <fx@gnu.org>
11735
11736 * keyboard.c (echo_keystrokes): Remove declaration.
11737 (Vecho_keystrokes) New variable.
11738 (read_char, record_menu_key, read_key_sequence): Use it to allow
11739 use of float value.
11740 (syms_of_keyboard): Change Vecho_keystrokes declaration.
11741
11742 * lread.c: Undef feature selection macros before defining.
11743
f0930f35
GM
117442000-02-18 Gerd Moellmann <gerd@gnu.org>
11745
11746 * data.c (let_shadows_buffer_binding_p): Ignore specbindings
11747 for symbols other than the symbol in question.
11748
e3d4de90
DL
117492000-02-17 Dave Love <fx@gnu.org>
11750
11751 * s/sol2.h (C_DEBUG_SWITCH): Define to allow optimization.
11752
0b378936
GM
117532000-02-17 Gerd Moellmann <gerd@gnu.org>
11754
d621caf7
GM
11755 * emacs.c (main): Use #if GC_MARK_STACK instead of #ifdef.
11756
0b378936
GM
11757 * alloc.c (enum mem_type): Compile unconditionally.
11758
3b451f74
EZ
117592000-02-17 Eli Zaretskii <eliz@is.elta.co.il>
11760
11761 * xfaces.c (tty_defined_color): Don't return faulire indication
11762 for unspecified-fg and unspecified-bg pseudo-colors.
11763
10689a01
GM
117642000-02-17 Gerd Moellmann <gerd@gnu.org>
11765
1216f5e4
GM
11766 * alloc.c (mark_object): Don't mark symbol names in pure space.
11767 (gc_sweep): Don't unmark symbol names in pure space.
11768
11769 * lisp.h (GC_USE_GCPROS_AS_BEFORE, GC_MAKE_GCPROS_NOOPS)
11770 (GC_MARK_STACK_CHECK_GCPROS, GC_USE_GCPROS_CHECK_ZOMBIES)
11771 [GC_MARK_STACK]: New defines.
427ec082 11772 (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5, UNGCPRO)
1216f5e4
GM
11773 [GC_MARK_STACK == GC_MAKE_GCPROS_NOOPS]: Define as no-ops.
11774
11775 * emacs.c (main) [GC_MARK_STACK]: Initialize stack_base.
11776
11777 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Use
11778 allocate_buffer instead of xmalloc.
11779
11780 * alloc.c (toplevel): Include setjmp.h.
11781 (PURE_POINTER_P): New define.
11782 (enum mem_type) [GC_MARK_STACK]: New enumeration.
11783 (Vdead) [GC_MARK_STACK]: New variable.
11784 (lisp_malloc): Add parameter TYPE, call mem_insert if
11785 GC_MARK_STACK is defined.
11786 (allocate_buffer): New function.
427ec082 11787 (lisp_free) [GC_MARK_STACK]: Call mem_delete.
1216f5e4
GM
11788 (free_float) [GC_MARK_STACK]: Set type to Vdead.
11789 (free_cons) [GC_MARK_STACK]: Set car to Vdead.
11790 (stack_base, mem_root, mem_z) [GC_MARK_STACK]: New variables.
11791 (MEM_NIL) [GC_MARK_STACK]: New define.
11792 (struct mem_node) [GC_MARK_STACK]: New structure.
11793 (mem_init, mem_find, mem_insert, mem_delete, mem_insert_fixup)
11794 (mem_delete_fixup, mem_rotate_left, mem_rotate_right)
11795 (live_string_p, live_cons_p, live_symbol_p, live_float_p)
11796 (live_misc_p, live_vector_p, live_buffer_p, mark_memory)
11797 (mark_stack) [GC_MARK_STACK]: New functions.
11798 (Fgarbage_collect) [GC_MARK_STACK]: Call mark_stack.
11799 (clear_marks): Removed.
11800 (gc_sweep): Set free conses' car, free floats' type, free
11801 symbols' function to Vdead. Use lisp_free to free buffers.
11802 (init_alloc_once): Initialize Vdead.
11803 (survives_gc_p): Return non-zero for pure objects.
11804
11805 * alloc.c: Add comments throughout the file.
11806
2503c8b1
GM
11807 * atimer.c (stop_other_atimers): Don't call cancel_atimer because
11808 that unblocks alarms.
11809
8389e1e2
GM
11810 * alloc.c, bytecode.c, data.c, dispnew.c, ecrt0.c, editfns.c,
11811 emacs.c, floatfns.c, fns.c, lread.c, print.c, config.in, lisp.h,
11812 Makefile.in: Remove `LISP_FLOAT_TYPE' and `standalone'.
11813
10689a01 11814 * frame.c (make_frame): Set frame initiallly to `garbaged'.
427ec082 11815
bfc17d18
KH
118162000-02-17 Kenichi Handa <handa@etl.go.jp>
11817
4a09dee0
KH
11818 * xdisp.c (decode_mode_spec_coding): Delete superfluous code to
11819 avoid infinite error signaling. Allocate sufficient memory for
11820 eol_str in the case that eoltype is Lisp_Int.
bfc17d18 11821
2b927d02
SM
118222000-02-17 Stefan Monnier <monnier@cs.yale.edu>
11823
11824 * syntax.c (Fforward_comment): Undo the previous change, since cc-mode
11825 depends on the previous behavior.
11826
b49cb764
GM
118272000-02-16 Gerd Moellmann <gerd@gnu.org>
11828
11829 * sysdep.c (vfork) [!HAVE_VFORK]: Removed.
11830
99e95407
GM
118312000-02-15 Gerd Moellmann <gerd@gnu.org>
11832
11833 * s/freebsd.h (BROKEN_PTY_READ_AFTER_EAGAIN): Define.
11834
11835 * process.c (send_process) [BROKEN_PTY_READ_AFTER_EAGAIN]:
b49cb764 11836 Workaround for FreeBSD bug. Clear output queue after EAGAIN in
99e95407
GM
11837 write(2).
11838
6ffd3cf7
RS
118392000-02-15 Richard M. Stallman <rms@gnu.org>
11840
11841 * data.c (set_internal): Don't make variable buffer-local
11842 if within a let-binding for the same buffer.
11843 (let_shadows_buffer_binding_p): New function.
11844
11845 * eval.c (specbind): For buffer-local value,
11846 record the current buffer also.
11847 (unbind_to): Cope with that change.
11848
cad53475
GM
118492000-02-15 Gerd Moellmann <gerd@gnu.org>
11850
11851 * window.c (Fsave_window_excursion): Doc fix.
11852
1aa963c8
SM
118532000-02-15 Stefan Monnier <monnier@cs.yale.edu>
11854
11855 * syntax.c (back_comment): Make sure we only consider comment-starters
11856 of the relevant style and return -1 in case of a failure to find the
11857 beginning of the comment.
11858 (Fforward_comment): If back_comment fails, go back to the position just
11859 after the comment-end.
11860 (scan_lists): Add comment describing a very minor bug.
11861
b9b84fd3
SM
118622000-02-14 Stefan Monnier <monnier@cs.yale.edu>
11863
11864 * minibuf.c (Ftry_completion, Fall_completions): Add a reference to
11865 `completion-regexp-list' in the docstring.
11866
3a28db80
DL
118672000-02-14 Dave Love <fx@gnu.org>
11868
11869 * xfaces.c (tty_defined_color): Declare color_idx unsigned long.
11870
fb4a568d
SM
118712000-02-14 Stefan Monnier <monnier@cs.yale.edu>
11872
11873 * regex.h (RE_SYNTAX_EMACS): Add RE_CHAR_CLASSES and RE_INTERVALS
11874 to Emacs' syntax. Also fix the comment about set/not-set meanings
11875 since Emacs syntax is not the value 0 any more.
11876 * search.c (compile_pattern_1): Remove RE_CHAR_CLASSES from the syntax
11877 since it's now part of RE_SYNTAX_EMACS.
11878
1063ebb5
DL
118792000-02-12 Dave Love <fx@gnu.org>
11880
52283633 11881 * frame.h (SELECTED_FRAME): Use NULL, not 0 to avoid warnings on Alpha.
1063ebb5 11882
fb07a302
GM
118832000-02-12 Gerd Moellmann <gerd@gnu.org>
11884
11885 * xdisp.c (syms_of_xdisp): Doc fix for scroll-conservatively.
11886
aaf2320c
DL
118872000-02-12 Dave Love <fx@gnu.org>
11888
11889 * s/aix3-2.h, s/osf-1.h: Define C_DEBUG_SWITCH for non-gcc.
11890
11891 * s/ux4800.h, s/umips.h, s/umax.h, s/sol2.h, s/sco5.h, s/rtu.h:
fb07a302
GM
11892 * s/ptx4.h, s/umax.h, s/dgux.h, s/bsd4-2.h, s/bsd4-3.h:
11893 * s/hpux.h: Don't define HAVE_VFORK.
aaf2320c
DL
11894
11895 * s/gnu-linux.h: Don't define HAVE_VFORK or HAVE_SYS_SIGLIST.
11896
11897 * s/nextstep.h: Don't define HAVE_ALLOCA.
11898
11899 * config.in: Add vfork bits.
11900
eedf8bde
GM
119012000-02-12 Gerd Moellmann <gerd@gnu.org>
11902
11903 * process.c (Fopen_network_stream) [POLL_FOR_INPUT]: Register
11904 unwind function to undo the effect of stopping atimers.
11905
52283633 11906 * keyboard.c (bind_polling_period): Stop all timers except poll_timer.
eedf8bde
GM
11907
11908 * atimer.c (stopped_atimers): New variable.
11909 (stop_other_atimers, run_all_atimers, unwind_stop_other_atimers):
11910 New functions.
11911
11912 * atimer.h (stop_other_atimers, run_all_atimers)
11913 (unwind_stop_other_atimers): Add function prototypes.
427ec082 11914
eedf8bde
GM
11915 * s/hpux10.h (HAVE_XRMSETDATABASE): Define if not already defined.
11916
8476c2f8
KR
119172000-02-11 Ken Raeburn <raeburn@gnu.org>
11918
11919 * Makefile.in (LIBX): Link in tiff library before jpeg, since tiff
11920 library may depend on jpeg.
11921 (atimer.o): Depends on atimer.c.
11922
0e85e4a3
KH
119232000-02-11 Kenichi Handa <handa@etl.go.jp>
11924
11925 * insdel.c (del_range_1): Call update_compositions.
11926 (del_range_both): Call update_compositions just once..
11927
97fa0cc8
DL
119282000-02-10 Dave Love <fx@gnu.org>
11929
11930 * xfns.c (create_frame_xic): Fix initialization of automatic
11931 aggregates for pcc.
11932
25566a3c
KH
119332000-02-09 Kenichi Handa <handa@etl.go.jp>
11934
11935 * ccl.c (CCL_MAKE_CHAR): New macro.
11936 (ccl_driver) <CCL_TranslateCharacter>: Check the validity of
11937 registers by CCL_MAKE_CHAR before calling translate_char.
11938 <CCL_TranslateCharacterConstTbl> Likewise.
11939
69da54ba
DL
119402000-02-08 Dave Love <fx@gnu.org>
11941
11942 * lread.c (__EXTENSIONS__): Define.
11943
f7136ee8
GM
119442000-02-08 Gerd Moellmann <gerd@gnu.org>
11945
11946 * puresize.h (BASE_PURESIZE): Increase to 650000.
11947
7768790b
EZ
119482000-02-07 Eli Zaretskii <eliz@is.elta.co.il>
11949
11950 * msdos.c (XMenuActivate): Turn off the cursor after displaying
11951 the help message.
11952
38fd211b
EZ
119532000-02-07 Eli Zaretskii <eliz@is.elta.co.il>
11954
11955 * s/msdos.h (INTERNAL_TERMINAL): Add capabilities se, so, us, ue,
11956 md, mh, mb, mr, and me to the fake termcap entry.
11957
66e4690f
KR
119582000-02-06 Ken Raeburn <raeburn@gnu.org>
11959
11960 * sound.c (sound_cleanup): Don't call device close routine if the
11961 function pointer is null.
11962
a75dfea0
AI
119632000-02-06 Andrew Innes <andrewi@gnu.org>
11964
11965 * dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
11966 around image definitions and prototypes.
11967 (gamma_correct) [WINDOWSNT]: New prototype.
11968
11969 * w32term.c (x_make_frame_visible): Replace call to
11970 input_poll_signal with poll_for_input.
11971
11972 * window.c [WINDOWSNT]: Include w32term.h.
11973
11974 * xdisp.c [WINDOWSNT]: Include w32term.h.
11975
11976 * makefile.nt: Add dependencies on w32gui.h.
11977 (OBJ1): Include atimer.obj.
11978 ($(BLD)\atimer.obj): New dependency rule.
11979
11980 * w32.c (sigmask): New function (does nothing).
11981 (sigunblock): Ditto.
11982
11983 * frame.c [WINDOWSNT]: Include w32term.h.
11984
11985 * w32gui.h (struct W32FontStruct): Add ascent and descent slots.
11986
11987 * lread.c (syms_of_lread): Fix literal newlines.
11988
11989 * emacs.c (USAGE): Split into USAGE1 and USAGE2, to work-around
11990 the string constant limit (2048 bytes) in MSVC.
11991 (main): Ditto.
11992
59ddecde
GM
119932000-02-05 INOUE Seiichiro <inoue@ainet.or.jp>
11994
52283633 11995 * xterm.c (x_display_and_set_cursor) [HAVE_X_I18N]: Set pre-edit area.
59ddecde
GM
11996 (x_display_cursor) [HAVE_X_I18N]: Don't set it here.
11997 (XTread_socket) [HAVE_X_I18N]: <KeyPress, KeyRelease>: Don't
11998 dispatch the event.
11999
07590973
DL
120002000-02-04 Dave Love <fx@gnu.org>
12001
12002 * fileio.c: Remove some unused vars.
12003 (_GNU_SOURCE): Define (for euidaccess).
12004
12005 * lread.c (_XOPEN_SOURCE): Declare (for ftello).
12006
12007 * minibuf.c (read_minibuf_noninteractive): Remove undeclared
12008 gcpro1, gcpro2.
12009 (read_minibuf): Deal with allow_props correctly.
12010
649351f9
EZ
120112000-02-03 Eli Zaretskii <eliz@is.elta.co.il>
12012
12013 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Enlarge to 60000.
12014
66e4690f 120152000-02-03 Ken Raeburn <raeburn@gnu.org>
f1b9c7c1
KR
12016
12017 * search.c (compile_pattern): If a cache entry has a nil regexp,
12018 fill in that entry instead of clobbering a previously cached
12019 string regexp.
12020
66e4690f 120212000-02-02 Ken Raeburn <raeburn@gnu.org>
15c9cf81
KR
12022
12023 * puresize.h (BASE_PURESIZE): Increase to 610000.
12024
d240a249
GM
120252000-02-02 Gerd Moellmann <gerd@gnu.org>
12026
12027 * frame.c (Fframe_parameters): Add GCPRO because tty_color_name
12028 can GC.
12029
ca91fb26
KH
120302000-02-02 Kenichi Handa <handa@etl.go.jp>
12031
25660570
KH
12032 * ccl.c (ccl_driver) <CCL_WriteExprRegister>: Set jump_address
12033 instead of incrementing ic directly.
12034 <CCL_WriteExprConst> Likewise.
12035 <ccl_set_expr>: Set ic to jump_address.
12036
ca91fb26
KH
12037 * fileio.c (e_write): Fix the handling of
12038 CODING_FINISH_INSUFFICIENT_SRC.
12039
2ede9689
DL
120402000-02-01 Dave Love <fx@gnu.org>
12041
12042 * editfns.c (Fpropertize): Doc fix.
12043
12044 * process.c (Fstart_process): Doc fix.
12045
12046 * eval.c: Fix various doc strings not to duplicate information
12047 from help-manyarg-func-alist.
12048
52283633 12049 * window.c (Fset_window_margins): Don't make interactive. Doc fix.
2ede9689
DL
12050
12051 * doc.c (Vhelp_manyarg_func_alist): New variable.
12052 (Fdocumentation): Use it.
12053 (syms_of_doc): Define it.
12054
b6680a0e
GM
120552000-01-31 Gerd Moellmann <gerd@gnu.org>
12056
2cb750ba
GM
12057 * xterm.c (xim_open_dpy): Remove unused local variable.
12058
52283633 12059 * emacs.c (USAGE): Use term `display options' instead of `X options'.
74e9213b
GM
12060
12061 * xdisp.c (Ftrace_to_stderr) [GLYPH_DEBUG]: New function.
12062 (syms_of_xdisp) [GLYPH_DEBUG]: Defsubr it.
12063
b6680a0e
GM
12064 * fns.c (sweep_weak_table): New function.
12065 (sweep_weak_hash_tables): Use it. Keep on marking until there
12066 is no more change.
12067
994c5afe
GM
120682000-01-30 Gerd Moellmann <gerd@gnu.org>
12069
12070 * xterm.c (x_delete_display): Update next_noop_dpyinfo to ensure
12071 that XTread_socket does not crash by trying to call XNoOp on a
12072 closed display.
427ec082 12073
f00276e3
JR
120742000-01-30 Jason Rumney <jasonr@gnu.org>
12075
12076 * w32inevt.c (get_frame, w32_console_mouse_position, mouse_moved_to):
12077 Change selected_frame to SELECTED_FRAME ().
12078 (w32_console_mouse_position): Remove #ifndef MULE from around
12079 `insist' parameter.
12080
12081 * makefile.nt: Remove dosfns.obj.
12082
12083 * term.c (term_init) [WINDOWSNT]: Initialize TN_max_colors.
12084
12085 * w32fns.c (w32_defined_color): Check for valid frame before
12086 applying gamma correction. Eliminate dependency on frame elsewhere.
12087 (w32_load_system_font): Switch FIXED_PITCH and VARIABLE_PITCH.
12088 (w32_to_x_font): Use resx and resy not height_in and width_in.
12089 (x_to_w32_font): Doc fix.
12090 (xlfd_strip_height): New function to strip and return font height.
12091 (w32_font_match): Compare height separately from rest of xlfd
12092 spec, using xlfd_strip_height.
12093
12094 * w32term.c (w32_term_init): Swap resx and height_in, resy and
12095 width_in. Use w32_defined_color in place of defined_color.
12096
12097 * w32faces.c: Merge more of DOS and X specifics in preparation for
12098 merge with xfaces.c.
12099 (defined_color): Remove FIXME comment.
12100 (tty_color_name): Provide w32-specific function.
12101 (realize_tty_face): Handle FACE_TTY_DEFAULT*_COLOR specially.
12102
12103 * w32console.c (turn_on_face, turn_off_face): Removed.
12104 (w32_face_attributes): New function.
12105 (Global_variables): Reduce scope where possible.
12106 (clear_frame, ins_del_lines, scroll_line): Use char_attr_normal as
12107 fill attribute.
12108 (hl_mode): Don't modify text attributes.
12109 (write_glyphs): Don't do anything if len <= 0. Use
12110 w32_face_attributes to get attributes for drawing. Write
12111 terminating codes using char_attr_normal.
12112 (reset_terminal_modes, set_terminal_modes): Turn off highlight.
12113 (update_begin, update_end): Likewise.
12114 (vga_stdcolor_name): New function.
12115 (initialize_w32_display): Remove char_attr_reverse and char_attr.
12116 (Fset_screen_color): Remove char_attr_reverse.
12117
b08e8bb2
GM
121182000-01-29 Gerd Moellmann <gerd@gnu.org>
12119
12120 * xfns.c (xic_set_preeditarea): Take window parameter and
12121 window-relative pixel-positions.
12122
12123 * xterm.c (x_display_cursor): Set XIC pre-edit area only if window
12124 is its frame's selected window.
12125 (xim_instantiate_callback): Likewise.
12126
12127 * xfns.c (x_create_im): Removed.
12128 (DEFAULT_STYLE, DEFAULT_FONT): Removed.
12129 (supported_xim_styles): Renamed from supported_styles.
12130 (best_xim_style): Renamed from best_style.
12131 (create_frame_xic): Renamed from xic_create_frame.
12132 (free_frame_xic): Renamed from xic_destroy_frame.
427ec082 12133
b08e8bb2
GM
121342000-01-29 INOUE Seiichiro <inoue@ainet.or.jp>
12135
12136 * xterm.c (XTread_socket) [HAVE_X_I18N]: If event is for none of
12137 our frames, call XFilterEvent with 2nd parameter `None'.
12138 (XTread_socket) <KeyPress> [HAVE_X_I18N]: Handle XmbLookupString
12139 returning XBufferOverflow.
52283633 12140 (XTread_socket) <ConfigureNotify> [HAVE_X_I18N]: Set XIC status area.
b08e8bb2
GM
12141 (x_display_cursor) [HAVE_X_I18N]: Set XIC pre-edit area.
12142 (x_new_fontset) [HAVE_X_I18N]: Create XIC status area fontset.
12143 (xim_destroy_callback, xim_open_dpy, xim_instantiate_callback)
12144 (xim_initialize, xim_close)
12145 [HAVE_X_I18N && HAVE_X11R6]: New functions.
12146 (x_destroy_window) [HAVE_X_I18N]: Call xic_destroy_frame.
12147 (x_term_init) [HAVE_X_I18N]: Call xim_initialize.
12148 (x_delete_display) [HAVE_X_I18N]: Call xim_close.
12149
12150 * xterm.h (struct x_display_info) [HAVE_X_I18N]: Add members `xim'
12151 and `xim_styles'.
12152 (struct x_output) [HAVE_X_I18N]: Remove member `xim', add
12153 `xic_style' and `xic_xfs'.
12154 (FRAME_MENUBAR_HEIGHT, FRAME_X_XIM, FRAME_X_XIM_STYLES)
12155 (FRAME_XIC_STYLE, FRAME_XIC_FONTSET): New macros.
12156 (FRAME_XIM): Removed.
12157
12158 * xfns.c (supported_styles): New variable.
12159 (DEFAULT_STYLE, DEFAULT_FONT): New macros
12160 (xic_create_xfontset, best_style, xic_create_frame)
12161 (xic_destroy_frame, xic_set_preeditarea, xic_set_statusarea)
12162 (xic_set_xfontset): New functions.
12163
142e109c
DL
121642000-01-28 Dave Love <fx@gnu.org>
12165
12166 * s/irix6-5.h: Revert last change after change to irix5-0.h.
12167
12168 * m/iris4d.h (C_SWITCH_MACHINE): Don't use -G0.
12169
b02786f9
GM
121702000-01-28 Gerd Moellmann <gerd@gnu.org>
12171
d060bc9f
GM
12172 * buffer.c (Fother_buffer): Don't call Fset_buffer_major_mode
12173 for *scratch* if it already existed.
12174
b02786f9
GM
12175 * emacs.c (USAGE): New macro.
12176 (main): Use it to display usage information.
12177
2c52d7e4
EZ
121782000-01-27 Eli Zaretskii <eliz@is.elta.co.il>
12179
12180 Support for the menu-help feature:
12181
52283633 12182 * msdos.h: Change prototypes of XMenuAddSelection and XMenuActivate.
2c52d7e4
EZ
12183
12184 * msdos.c (IT_clear_end_of_line): Print the extent of the cleared
12185 part of the line to the termscript file.
12186 (IT_clear_to_end): Clear the entire line, not just its beginning.
12187 (menu_help_message, prev_menu_help_message): New variables.
12188 (IT_menu_make_room): Make room for the help_text member.
12189 (IT_menu_display): New argument disp_help; all callers changed.
12190 If disp_help is non-zero, store the help text of the active menu
12191 item in menu_help_message.
12192 (XMenuAddPane): Initialize the help_text member to NULL.
12193 (XMenuAddSelection): New argument help_text. Store it in the
12194 XMenu structure.
12195 (XMenuActivate): New argument help_callback. If the value of
12196 menu_help_message has changed since the last time, display the
12197 menu help message text while waiting for the mouse to move. Clear
12198 the echo area before exiting.
12199 (XMenuDestroy): Free the help_text member.
12200
ffe0bcd1
GM
122012000-01-27 Gerd Moellmann <gerd@gnu.org>
12202
12203 * xmenu.c (xmenu_show) [!USE_X_TOOLKIT]: Pass help to
12204 XMenuAddSelection. Pass help callback to XMenuActivate.
12205 (menu_help_callback) [!USE_X_TOOLKIT]: New function.
12206
50dbd23f
EZ
122072000-01-27 Eli Zaretskii <eliz@is.elta.co.il>
12208
12209 * atimer.c (start_atimer) [!HAVE_SETITIMER]: Use EMACS_SET_SECS
12210 and EMACS_SET_USECS.
12211
f5941bf8
GM
122122000-01-26 Dave Love <fx@gnu.org>
12213
6c67ddee
DL
12214 * editfns.c (Fchar_after, Fchar_before): Doc fix.
12215
f5941bf8
GM
12216 * bytecode.c (Fbyte_code): Use {BEFORE,AFTER}_POTENTIAL_GC where
12217 an error may be signalled.
12218
9e49c990
GM
122192000-01-26 Gerd Moellmann <gerd@gnu.org>
12220
fc3cb460
GM
12221 * s/irix6-5.h [__GNUC__ && __GNUC_MINOR__ >= 95]: Undef
12222 LD_SWITCH_SYSTEM inherited from irix5-0.h.
12223
9e49c990
GM
12224 * bytecode.c (Fbyte_code) [BYTE_CODE_SAFE]: Fix typo.
12225
d0c037d8
GM
122262000-01-25 Gerd Moellmann <gerd@gnu.org>
12227
12228 * charset.c (Fstring): If there is a multibyte char among
12229 the args, always return a multibyte string.
12230
e12489f9
GM
122312000-01-25 Gerd Moellmann <gerd@gnu.org>
12232
12233 * sysdep.c (sys_select): Turn atimers off and on instead of
12234 recording and restoring old alarm handler
12235
12236 * process.c (toplevel): Include atimer.h.
12237 (create_process_1): Rewritten.
12238 (create_process): Use atimers instead of alarm.
12239 (wait_reading_process_input) [hpux]: Turn atimers off instead
12240 of turning off SIGALRM.
12241 (wait_reading_process_input): Turn off atimers instead off
12242 calling stop_polling.
12243
12244 * emacs.c (main): Call init_atimer.
12245
12246 * keyboard.c (toplevel): Include systime.h and atimer.h.
12247 (polling_for_input): Removed because unused.
12248 (input_poll_signal) [POLL_FOR_INPUT]: Removed.
12249 (poll_timer): New variable.
12250 (poll_for_input, poll_for_input_1): New functions.
12251 (start_polling, stop_polling): Rewritten.
12252
12253 * keyboard.h (polling_for_input): Removed.
427ec082 12254
e12489f9
GM
12255 * atimer.h, atimer.c: New files.
12256
12257 * Makefile.in (obj): Add atimer.o.
12258 (atimer.o): New target.
12259
12260 * blockinput.h (pending_atimers): Add extern declaration.
12261 (UNBLOCK_INPUT): Rewritten. Handle pending atimers.
12262
12263 * lisp.h (popup_activated_flag): Add extern declaration.
12264
12265 * xmenu.c (popup_activated_flag): Make externally visible.
52283633 12266 (popup_activate_callback) [USE_MOTIF]: Increment popup_activated_flag.
e12489f9
GM
12267 (popup_deactivate_callback) [USE_MOTIF]: Decrement it.
12268
12269 * xterm.c (toplevel): Include atimer.h.
12270 (toolkit_scroll_bar_interaction): New variable.
12271 (Fxt_process_timeouts): Removed.
12272 (x_process_timeouts): New function.
12273 (xt_action_hook): Clear toolkit_scroll_bar_interaction.
12274 (x_send_scroll_bar_event): Set toolkit_scroll_bar_interaction.
12275 (x_make_frame_visible): Call poll_for_input_1 instead of
12276 input_poll_signal. Don't call alarm.
12277 (x_initialize): Install timer calling x_process_timeouts.
427ec082 12278
1e5279b9
DL
122792000-01-24 Dave Love <fx@gnu.org>
12280
6c67ddee 12281 * s/irix5-0.h: Don't set LD_SWITCH_SYSTEM -- we use unexelf now.
1e5279b9
DL
12282 Don't use -cckr -- apparently not now necessary.
12283
edf6aeb8
EZ
122842000-01-24 Eli Zaretskii <eliz@is.elta.co.il>
12285
12286 * msdos.c (IT_menu_display): Truncate long menu lines at the right
12287 screen boundary.
12288
9badad41
JR
122892000-01-23 Jason Rumney <jasonr@gnu.org>
12290
12291 * w32fns.c (w32_defined_color): Apply gamma correction before
12292 trying to map to the palette.
12293 (w32_wnd_proc) [WM_ERASE_BACKGROUND]: Pass device context of frame
12294 to w32_clear_rect.
12295
12296 * w32term.c (w32_fill_rect): Do not try to deal with NULL hdc
12297 here. Callers changed to always pass real device context.
12298 (w32_draw_bitmap): Likewise.
12299 (w32_get_glyph_overhangs): Likewise.
52283633 12300 (w32_draw_box_rect): Make use of s->hdc rather than getting a new one.
9badad41
JR
12301 (w32_set_vertical_scroll_bar): Pass correct HWND parameters to
12302 pfnSetScrollInfo and SetScrollRange.
12303 (x_get_char_face_and_encoding): Don't turn iso8859-1 characters
12304 back into MULE characters after decoding them.
12305 (x_get_glyph_face_and_encoding): Likewise.
12306 (w32_per_char_metric): Use GetCharExtentPoint32W as fallback when
12307 GetCharABCWidthsW fails, since this is defined on Windows 9x.
12308 (x_produce_glyphs): Calculate per char metrics for a character
12309 that we know exists in default font when font_not_found_p is true.
12310
63bd786b
JR
123112000-01-22 Jason Rumney <jasonr@gnu.org>
12312
12313 * makefile.nt (intervals.obj, composite.obj): New modules.
12314 (composite.h): Added as dependency where appropriate.
12315
12316 * w32gui.h (XGCValue): New struct for emulating X GCs.
12317
12318 * w32term.h (XCharStruct): New struct for emulating X.
12319
12320 * w32console.c (turn_on_face, turn_off_face): New functions.
12321 (change_line_highlight): New prototype for new redisplay.
12322 (write_glyphs): Support multibyte text. Support faces.
12323
52283633 12324 * w32faces.c: Complete rewrite for new redisplay based on new xfaces.c.
63bd786b
JR
12325
12326 * w32fns.c: Use SELECTED_FRAME macro in place of selected_frame
12327 throughout. struct frame * in place of FRAME_PTR.
12328 Skeleton support for images, toolbars, tooltips from xfns.c.
52283633 12329 (Fx_create_frame): Use system default for default scroll bar width.
63bd786b
JR
12330 (w32_get_arg): Renamed from x_get_arg.
12331 (Fx_file_dialog): New function.
12332 (w32_list_fonts): Check cache before asking system.
12333 (Vw32_enable_synthesized_fonts): New variable.
12334 (Vw32_enable_italics): Obsolete, removed.
12335
12336 * w32inevt.c (get_frame, w32_console_mouse_position, mouse_moved_to):
12337 Use SELECTED_FRAME macro.
12338
12339 * w32menu.c: Add skeleton support for help strings on menus.
12340 (add_menu_item): Native checkbox and radio support added, but not
12341 yet enabled due to bugs.
12342 (push_menu_item): Add parameters type, selection and help.
12343 Callers updated.
12344 Formatting changes to reduce unnecessary diffs with xmenu.c.
12345
12346 * w32select.c (Fw32_set_clipboard_data): Update call to
12347 find_charset_in_str.
12348
12349 * w32term.c: Complete rewrite for new redisplay based on new
12350 xterm.c with necessary sections merged back in from old w32term.c.
12351
6ffd3cf7 123522000-01-21 Richard M. Stallman <rms@gnu.org>
b50c9214
RS
12353
12354 * data.c (set_internal): Further fix in same criterion.
12355
6ffd3cf7 123562000-01-20 Richard M. Stallman <rms@gnu.org>
8cc95642
RS
12357
12358 * data.c (set_internal): Fix the criteria for whether
12359 to swap out the old cached binding.
12360
60af03f1
DL
123612000-01-19 Dave Love <fx@gnu.org>
12362
12363 * lread.c: (syms_of_lread) [user-init-file]: Doc change.
12364
f9be074f
KH
123652000-01-18 Kenichi Handa <handa@etl.go.jp>
12366
12367 * regex.c (re_compile_fastmap): While checking a range table for
12368 `charset', skip flag bits for a character class correctly.
12369
52b8dbf9
GM
123702000-01-17 Gerd Moellmann <gerd@gnu.org>
12371
d36100c9
GM
12372 * m/news-risc.h (LD_SWITCH_MACHINE): Define differently for GCC.
12373
52283633 12374 * xfns.c (x_window): Call lw_create_widget with new parameter list.
52b8dbf9
GM
12375
12376 * widget.c (EmacsFrameSetCharSize): Change size of children first
52283633 12377 because of problems with main window geometry management under Lesstif.
52b8dbf9
GM
12378
12379 * xmenu.c (enum menu_item_idx): New enumeration replacing defines
12380 MENU_ITEMS_ITEM_.*.
12381 (MENU_ITEMS_ITEM_HELP): New enumerator.
12382 (push_menu_item): Add parameter HELP. Record help in menu_items.
12383 (single_menu_item, single_submenu, list_of_items): Call
12384 push_menu_item with new parameter.
12385 (single_submenu): Set help string in widget value.
12386 (menu_highlight_callback): New function.
12387 (set_frame_menubar): Call lw_create_widget with new
12388 parameter list.
12389 (xmenu_show, xdialog_show): Ditto.
12390
3139018f
GM
123912000-01-13 Gerd Moellmann <gerd@gnu.org>
12392
12393 * sound.c (Fplay_sound): Improve doc string.
12394
83c8f461
RS
123952000-01-11 Richard M. Stallman <rms@gnu.org>
12396
12397 * lisp.h (set_internal): Enter the new arg.
12398
12399 * eval.c (specbind): Record buffer-local variables specially,
12400 indicating which buffer's binding was saved.
12401 (unbind_to): Restore buffer-local variables specially
12402 in the proper buffer.
12403
12404 * data.c (set_internal): New arg BUF.
427ec082 12405
83c8f461
RS
12406 * eval.c (specbind, unbind_to): Pass new arg to set_internal.
12407 * data.c (Fset): Pass new arg to set_internal.
12408 * bytecode.c (Fbyte_code): Pass new arg to set_internal.
427ec082 12409
1fab1775
GM
124102000-01-11 Gerd Moellmann <gerd@gnu.org>
12411
52283633 12412 * .gdbinit: Adapt to new strings. Add xbacktrace, xreload, xprintsym.
1fab1775 12413
83c8f461 124142000-01-11 Richard M. Stallman <rms@gnu.org>
6f59462e
RS
12415
12416 * minibuf.c (Ftry_completion): Doc fix.
12417
7a85e4df
GM
124182000-01-11 Gerd Moellmann <gerd@gnu.org>
12419
12420 * keyboard.c (Fclear_this_command_keys): Clear recent_keys
12421 vector, too.
12422
a970dae4
AS
124232000-01-11 Andreas Schwab <schwab@suse.de>
12424
12425 * coding.c (code_convert_region): Initialize total_skip.
12426
c65d14ee
DL
124272000-01-08 Dave Love <fx@gnu.org>
12428
12429 * eval.c (Fuser_variable_p): Check customizability too.
12430
834938d2
GM
124312000-01-07 Gerd Moellmann <gerd@gnu.org>
12432
12433 * minibuf.c (Fcompleting_read): Doc fix.
12434
e0303cd6
GM
124352000-01-05 Gerd Moellmann <gerd@gnu.org>
12436
8a26744b
GM
12437 * s/freebsd.h (C_SWITCH_SYSTEM): Add -I /usr/local/include and
12438 -L /usr/local/lib.
12439
e0303cd6
GM
12440 * xfns.c (x_create_im): New function to set IM and IC of a frame.
12441 Check that input style is supported before trying to create an
12442 IC for it.
12443 (x_window): Call x_create_im.
427ec082 12444
2e471eb5
GM
124452000-01-04 Gerd Moellmann <gerd@gnu.org>
12446
560a7bd2
GM
12447 * xfns.c (current_gif_memory_src): New variable.
12448 (gif_load): Record the address of the current memory source
12449 in current_gif_memory_src.
12450 (gif_read_from_memory): Use current_gif_memory_src.
12451
f9ee84a3
GM
12452 * systime.h (EMACS_GET_TIME, EMACS_ADD_TIME, EMACS_SUB_TIME): Give
12453 macros statement form.
12454
d1299cde
GM
12455 * sound.c (struct sound): Renamed from struct sound_file.
12456 (struct sound): Add members `data' and `header_size'.
12457 (enum sound_attr): Add SOUND_DATA.
12458 (current_sound, current_sound_device): Variables renamed from
12459 sound_file and sound_device.
12460 (parse_sound): Parse :data.
12461 (parse_sound): Handle sound data in strings.
12462 (find_sound_type): Function renamed from find_sound_file_type.
427ec082 12463 (wav_init, au_init): Fail if sound's header_size is smaller than
d1299cde
GM
12464 needed header size.
12465 (wav_play, au_play): Play sounds from string data.
12466
2e471eb5
GM
12467 * puresize.h (BASE_PURE_SIZE): Increase to 600000.
12468
12469 * lisp.h: Add prototype for allocate_string_data.
12470
52283633 12471 * alloc.c (Fgarbage_collect): Return number of live and free strings.
2e471eb5
GM
12472
12473 * alloc.c (mark_buffer): Remove code in #if 0.
12474 (gc_sweep): Ditto.
12475 (UNMARK_BALANCE_INTERVALS): Give the macro statement form.
12476 (strings_consed): New variable.
12477 (allocate_string): Set it.
12478 (syms_of_alloc): Add DEFVAR_INT for strings_consed.
12479 (Fmemory_use_counts): Return strings_consed. Use Flist.
12480
12481 * alloc.c: General cleanup in comments etc. Remove conditional
12482 compilation for `standalone'.
12483
12484 * lisp.h (struct Lisp_String): Make DATA member `unsigned char *'.
12485
12486 * alloc.c (MARK_STRING, UNMARK_STRING, STRING_MARKED_P):
12487 (GC_STRING_BYTES, GC_STRING_CHARS): New macros.
12488 (DONT_COPY_FLAG): Removed.
12489 (SBLOCK_SIZE, LARGE_STRING_BYTES): New macros.
12490 (struct sdata, struct sblock): New
12491 (struct string_block): Rewritten.
12492 (STRINGS_IN_STRING_BLOCK): New macro.
12493 (oldest_sblock, current_sblock, total_strings, total_free_strings)
12494 (large_sblocks, string_blocks, string_free_list): New variables.
12495 (NEXT_FREE_LISP_STRING, SDATA_OF_STRING, SDATA_SIZE): New macros.
12496 (init_strings): Rewritten.
12497 (allocate_string, allocate_string_data, compact_small_strings)
12498 (free_large_strings, sweep_strings): New functions.
12499 (STRING_BLOCK_SIZE, STRING_BLOCK_OUTSIZE)
12500 (struct string_block_head, current_string_block)
12501 (first_string_block, large_string_blocks, STRING_FULLSIZE)
12502 (STRING_PAD): Removed.
12503 (make_uninit_multibyte_string, make_pure_string): Rewritten.
12504 (Fgarbage_collect): Don't set mark bit in large strings.
12505 (mark_object): Mark strings differently. Mark symbol names
12506 differently.
12507 (survives_gc_p): Test marked strings differently.
427ec082 12508 (gc_sweep): Sweep strings differently, unmark strings in
2e471eb5
GM
12509 symbol names.
12510 (compact_strings): Removed.
12511
42608ba8
EZ
125122000-01-04 Eli Zaretskii <eliz@is.elta.co.il>
12513
12514 * xfaces.c (syms_of_xfaces): defsubr Scolor_gray_p and
12515 Scolor_supported_p even if HAVE_X_WINDOWS is not defined.
12516
e0a09e1a
KH
125172000-01-04 Kenichi Handa <handa@etl.go.jp>
12518
dd9f0750 12519 * fileio.c (Finsert_file_contents): Signal error if visiting file
427ec082 12520 in a non-empty buffer.
dd9f0750 12521
3c0f3b15 12522 * term.c (encode_terminal_code): Fix the previous change.
e0a09e1a 12523
44cd3ae5
GM
125242000-01-03 Gerd Moellmann <gerd@gnu.org>
12525
12526 * xfaces.c (syms_of_xfaces): Change Sface_color_gray_p to
12527 Scolor_gray_p, Sface_color_supported_p to Scolor_supported_p.
12528
12529 * s/hpux9.h (NO_EDITRES): Define even if HAVE_LIBXMU.
12530
c182a70f
EZ
125312000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
12532
12533 * xdisp.c (handle_single_display_prop) [HAVE_WINDOW_SYSTEM]: No
12534 need to test for MSDOS frames.
12535
24480d5b
EZ
125362000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
12537
12538 * dosfns.c (unspecified_colors): Remove.
12539 (msdos_stdcolor_idx): Use global variables unspecified_fg and
12540 unspecified_bg.
12541 (msdos_stdcolor_name): Return strings for unspecified fore- and
12542 back-ground colors.
12543
12544 * xfaces.c (Qunspecified_fg, Qunspecified_bg): Remove.
aaf2320c 12545 (syms_of_xfaces): Remove their staticpro's.
24480d5b
EZ
12546 (tty_color_name): Return Lisp strings for unspecified fore- and
12547 back-ground colors.
12548 (Finternal_set_lisp_face_attribute): Remove the special treatment
12549 for Qunspecified_{f,b}g.
52283633 12550 (realize_default_face): Replace Qunspecified_{f,b}g with a Lisp string.
24480d5b 12551
047f434a
GM
125522000-01-03 Gerd Moellmann <gerd@gnu.org>
12553
12554 * xdisp.c (reseat_at_next_visible_line_start): Position before
12555 newline only if ending up on a newline.
12556 (next_element_from_ellipsis): Return success. Handle case of
52283633 12557 displaying no ellipsis. Fix case of ellipsis defined in display table.
047f434a
GM
12558 (next_element_from_buffer): Return 0 if next_element_from_ellipsis
12559 returns 0.
12560
d684c676
EZ
125612000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
12562
12563 * xfaces.c (Fcolor_gray_p): Renamed from face-color-gray-p.
12564 (Fcolor_supported_p): Renamed from face-color-supported-p.
12565
5fe1d139
EZ
125662000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
12567
12568 * xfaces.c (tty_defined_color): Pass frame to tty-color-desc. The
12569 list of colors renamed to tty-defined-color-alist.
12570 (tty_color_name): Pass the frame to tty-color-by-index.
12571 (realize_tty_face): tty-color-alist is now a function which
12572 accepts the frame as argument.
12573
52283633 12574 * term.c (Ftty_display_color_p): Accept an optional argument FRAME.
5fe1d139 12575
816be8b8
EZ
125762000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
12577
12578 * term.c (insert_glyphs): Pass glyph, not &glyph, to
12579 encode_terminal_code.
12580
b635321e
EZ
125812000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
12582
12583 * dispnew.c (mode_line_string): Support termcap frames as well.
12584
9b784e96
GM
125852000-01-01 Gerd Moellmann <gerd@gnu.org>
12586
27189709
GM
12587 * syntax.c (Fforward_word): Undo previous change.
12588
12589 * editfns.c (Fconstrain_to_field): Don't constrain if
12590 inhibit-field-text-motion is non-nil.
12591 (Fline_beginning_position): Undo previous change.
12592 (Fline_end_position): Ditto.
12593
12594 * syntax.c (Fforward_word): Notice field boundaries only if
12595 inhibit-field-text-motion is nil.
12596
12597 * lisp.h: Add extern declaration for Vinhibit_field_text_motion.
12598
12599 * editfns.c (Vinhibit_field_text_motion): New variable.
12600 (inhibit-field-text-motion): New DEFVAR_LISP.
12601 (Fline_beginning_position, Fline_end_position): Notice field
12602 boundaries only if inhibit-field-text-motion is nil.
12603
45158a91
GM
12604 * xfns.c (x_create_x_image_and_pixmap): Remove parameter FILE.
12605 All calls adjusted.
12606 (x_build_heuristic_mask): Likewise.
12607 (xbm_load_image_from_file): Change error output.
12608 (xbm_load, xpm_load, pbm_load, png_load, jpeg_load, tiff_load)
12609 (gif_load, gs_load, x_kill_gs_process): Ditto.
12610
9b784e96
GM
12611 * xfns.c (gif_load): Avoid sign extension and thus out of bounds
12612 color indices when accessing raster pixels.
63cec32f
GM
12613 (gif_image_p, png_image_p, jpeg_image_p, tiff_image_p): Allow only
12614 one of :file or :data.
12615 (enum pbm_keyword_index): Add PBM_DATA.
12616 (pbm_format): Add :data.
12617 (pbm_image_p): Allow either :file or :data.
12618 (pbm_read_file): New function.
12619 (pbm_scan_number): Rewritten to read from string.
12620 (pbm_load): Support :data.
9b784e96 12621
2cb085db 12622See ChangeLog.8 for earlier changes.
6922b018
KH
12623
12624;; Local Variables:
49b3bd82 12625;; coding: iso-2022-7bit
6922b018 12626;; End: