* insdel.c (adjust_markers_for_insert): Call fix_start_end_in_overlays.
[bpt/emacs.git] / src / ChangeLog
1 2004-03-26 Masatake YAMATO <jet@gyve.org>
2
3 * insdel.c (adjust_markers_for_insert): Call
4 fix_start_end_in_overlays.
5
6 * buffer.c (fix_start_end_in_overlays): Rename
7 fix_overlays_in_range.
8
9 * editfns.c (Ftranspose_regions): Likewise.
10
11 * lisp.h (top_level): Likewise.
12
13 2004-03-20 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14
15 * xterm.c (handle_one_xevent): Do not pass key press events to
16 GTK.
17
18 2004-03-19 Richard M. Stallman <rms@gnu.org>
19
20 * s/sol2-6.h: Delete previous change.
21
22 2004-03-19 Kim F. Storm <storm@cua.dk>
23
24 * xdisp.c (move_it_in_display_line_to): Fix MOVE_TO_POS case when
25 to_charpos corresponds to newline in right fringe. Use local
26 BUFFER_POS_REACHED_P macro.
27
28 2004-03-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
29
30 * xdisp.c (calc_pixel_width_or_height): Add ifdef HAVE_WINDOW_SYSTEM
31 to compile on non-window system.
32
33 2004-03-19 Kim F. Storm <storm@cua.dk>
34
35 * dispextern.h (calc_pixel_width_or_height): Add prototype.
36
37 * image.c (Qcenter): Move to xdisp.c.
38
39 * xdisp.c (Qcenter): Declare here.
40 (syms_of_xdisp): intern and staticpro it.
41 (handle_single_display_prop): Allow space display property on all
42 platforms.
43 (display_mode_line): Set mode_line_p before displaying line.
44 (calc_pixel_width_or_height): Declare extern. Add separate :align-to
45 handling. Remove complex cases for fringes and scroll-bars.
46 Add left, right, and center alignment positions. Add text (area)
47 width/height. Return width or height for image specs.
48 (produce_stretch_glyph): Improve handling of :align-to. Is now
49 relative to left of text area by default, but other base offsets
50 can be specified -- also for text lines.
51
52 * term.c (produce_glyphs): Handle IT_STRETCH.
53 (produce_stretch_glyph): New function to handle space width and
54 align-to display properties on non-window systems.
55
56 2004-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
57
58 * fileio.c (Fread_file_name): Set completion-ignore-case for
59 case-insensitive systems.
60
61 2004-03-14 Masatake YAMATO <jet@gyve.org>
62
63 * xdisp.c (note_mode_line_or_margin_highlight): Accept HEADER_LINE
64 when keymap and cursor are setup.
65
66 2004-03-14 Steven Tamm <steventamm@mac.com>
67
68 * Makefile.in (XMENU_OBJ): Do not include xmenu.o if
69 HAVE_CARBON is defined.
70
71 2004-03-14 Kim F. Storm <storm@cua.dk>
72
73 * dispextern.h (x_find_image_file): Add prototype.
74
75 * image.c (x_find_image_file): Make extern.
76
77 * xfns.c (x_find_image_file): Remove prototype.
78
79 2004-03-13 Eli Zaretskii <eliz@elta.co.il>
80
81 * Makefile.in (XMENU_OBJ): Include xmenu.o if HAVE_MENUS is defined.
82
83 * emacs.c (main): Call syms_of_xmenu only if HAVE_MENUS is defined.
84
85 2004-03-12 Richard M. Stallman <rms@gnu.org>
86
87 * fns.c (internal_equal): New arg PROPS controls comparing
88 text properties. All callers changed.
89 (Fequal_including_properties): New function.
90 (syms_of_fns): defsubr it.
91
92 2004-03-12 Kim F. Storm <storm@cua.dk>
93
94 Fix image support on MAC. From YAMAMOTO Mitsuharu.
95
96 * dispextern.h (XImagePtr, XImagePtr_or_DC): Add typedefs.
97 (image_background, image_background_transparent): Fix prototypes.
98
99 * image.c (XImagePtr, XImagePtr_or_DC): Move typedefs to dispextern.h.
100
101 * macfns.c (x_list_fonts, x_get_font_info, x_load_font)
102 (x_query_font, x_find_ccl_program, x_set_window_size)
103 (x_make_frame_visible, mac_initialize, XCreatePixmap)
104 (XCreatePixmapFromBitmapData, XFreePixmap, XSetForeground)
105 (mac_draw_line_to_pixmap): Move prototypes to macterm.h.
106
107 * macterm.h (x_list_fonts, x_get_font_info, x_load_font)
108 (x_query_font, x_find_ccl_program, x_set_window_size)
109 (x_make_frame_visible, mac_initialize, XCreatePixmap)
110 (XCreatePixmapFromBitmapData, XFreePixmap, XSetForeground)
111 (mac_draw_line_to_pixmap): Add prototypes.
112
113 2004-03-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
114
115 * macterm.c (XTread_socket): Fix mouse click on tool bar.
116
117 2004-03-11 Kim F. Storm <storm@cua.dk>
118
119 * dispextern.h: Move image related prototypes from xfns.c section
120 to image.c. Condition them by HAVE_WINDOW_SYSTEM rather than
121 HAVE_X_WINDOWS.
122
123 * Makefile.in (XOBJ): Consolidate into one list. Add image.o.
124 Move gtkutil.o to new GTK_OBJ list.
125 (XMENU_OBJ) [HAVE_MENUS]: Move declaration to proper place.
126 (GTK_OBJ) [USE_GTK]: New declaration.
127 (obj): Add $(GTK_OBJ) to list.
128
129 2004-03-11 Steven Tamm <steventamm@mac.com>
130
131 * image.c [MAC_OSX]: Include sys/stat.h
132
133 * macfns.c (syms_of_macfns): Remove definitions of things now
134 defined in image.c
135
136 2004-03-11 Kim F. Storm <storm@cua.dk>
137
138 The following changes consolidates the identical/similar image
139 support code previously found in xfns.c, w32fns.c, and macfns.c
140 into a new file image.c.
141
142 * makefile.w32-in (OBJ1): Add image.o.
143 ($(BLD)/image.$(O)): Add dependencies.
144
145 * Makefile.in (XOBJ, MAC_OBJ): Add image.o.
146 (image.o): Add dependencies.
147
148 * image.c: New file with consolidated image support code.
149 (COLOR_TABLE_SUPPORT): New define to control whether
150 color table support is available (X only).
151 (Bitmap_Record): Common name for x_bitmap_record,
152 w32_bitmap_record, and mac_bitmap_record.
153 (XImagePtr): Common name for pointer to XImage or equivalent.
154 (XImagePtr_or_DC): New type to simplify code sharing; equivalent
155 to XImagePtr on X+MAC, and to HDC on W32.
156 (GET_PIXEL): Wrapper for XGetPixel or equivalent.
157 (NO_PIXMAP): Common name for "None" or equivalent.
158 (PNG_BG_COLOR_SHIFT): Bits to shift PNG background colors.
159 (RGB_PIXEL_COLOR): Common type for an integer "pixel color" value.
160 (PIX_MASK_RETAIN, PIX_MASK_DRAW): Portability macros (from macfns.c).
161 (FRAME_X_VISUAL, x_defined_color, DefaultDepthOfScreen):
162 Define with suitable equivalents on W32 and MAC for code sharing.
163 (XDrawLine): Define on MAC for code sharing.
164 (Destroy_Image, Free_Pixmap): Wrappers for code sharing.
165 (IF_LIB_AVAILABLE): Macro to simplify code sharing.
166 (Vx_bitmap_file_path, Vimage_cache_eviction_delay)
167 (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
168 (x_reference_bitmap, x_create_bitmap_from_data)
169 (x_create_bitmap_from_file, x_destroy_bitmap)
170 (x_destroy_all_bitmaps, x_create_bitmap_mask)
171 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
172 (QCascent, QCmargin, QCrelief, QCconversion, QCcolor_symbols)
173 (QCheuristic_mask, QCindex, QCmatrix, QCcolor_adjustment, QCmask)
174 (Qlaplace, Qemboss, Qedge_detection, Qheuristic, Qcenter)
175 (define_image_type, lookup_image_type, valid_image_p)
176 (image_error, enum image_value_type, struct image_keyword)
177 (parse_image_spec, image_spec_value, Fimage_size, Fimage_mask_p)
178 (make_image, free_image, prepare_image_for_display, image_ascent)
179 (four_corners_best, image_background, image_background_transparent)
180 (x_clear_image_1, x_clear_image, x_alloc_image_color)
181 (make_image_cache, free_image_cache, clear_image_cache)
182 (Fclear_image_cache, postprocess_image, lookup_image, cache_image)
183 (forall_images_in_image_cache, x_create_x_image_and_pixmap)
184 (x_destroy_x_image, x_put_x_image, x_find_image_file, slurp_file)
185 (find_image_fsspec, image_load_qt_1, image_load_quicktime)
186 (init_image_func_pointer, image_load_quartz2d)
187 (struct ct_color, init_color_table, free_color_table)
188 (lookup_rgb_color, lookup_pixel_color, colors_in_color_table)
189 (cross_disabled_images, x_to_xcolors, x_from_xcolors)
190 (x_detect_edges, x_emboss, x_laplace, x_edge_detection)
191 (x_disable_image, x_build_heuristic_mask)
192 (XBM support, XPM support, PBM support, PNG support, JPEG support)
193 (TIFF support, GIF support, Ghostscript support): Consolidate image
194 code from xfns.c, w32fns.c, and macfns.c.
195 (syms_of_image): Consolidate image related symbol setup here.
196 (init_image): Consolidate image related initializations here.
197
198 * emacs.c (main) [HAVE_WINDOW_SYSTEM]: Add calls to syms_of_image
199 and init_image. Remove call to init_xfns.
200
201 * macterm.h (struct mac_bitmap_record): Add file member.
202 Not currently used, but simplifies code sharing.
203
204 * macfns.c (Vx_bitmap_file_path, Vimage_cache_eviction_delay)
205 (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
206 (x_reference_bitmap, x_create_bitmap_from_data)
207 (x_create_bitmap_from_file, x_destroy_bitmap)
208 (x_destroy_all_bitmaps, x_create_bitmap_mask)
209 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
210 (QCascent, QCmargin, QCrelief, QCconversion, QCcolor_symbols)
211 (QCheuristic_mask, QCindex, QCmatrix, QCcolor_adjustment, QCmask)
212 (Qlaplace, Qemboss, Qedge_detection, Qheuristic, Qcenter)
213 (define_image_type, lookup_image_type, valid_image_p)
214 (image_error, enum image_value_type, struct image_keyword)
215 (parse_image_spec, image_spec_value, Fimage_size, Fimage_mask_p)
216 (make_image, free_image, prepare_image_for_display, image_ascent)
217 (four_corners_best, image_background, image_background_transparent)
218 (x_clear_image_1, x_clear_image, x_alloc_image_color)
219 (make_image_cache, free_image_cache, clear_image_cache)
220 (Fclear_image_cache, postprocess_image, lookup_image, cache_image)
221 (forall_images_in_image_cache, x_create_x_image_and_pixmap)
222 (x_destroy_x_image, x_put_x_image, x_find_image_file, slurp_file)
223 (find_image_fsspec, image_load_qt_1, image_load_quicktime)
224 (init_image_func_pointer, image_load_quartz2d)
225 (struct ct_color, init_color_table, free_color_table)
226 (lookup_rgb_color, lookup_pixel_color, colors_in_color_table)
227 (cross_disabled_images, x_to_xcolors, x_from_xcolors)
228 (x_detect_edges, x_emboss, x_laplace, x_edge_detection)
229 (x_disable_image, x_build_heuristic_mask)
230 (XBM support, XPM support, PBM support, PNG support, JPEG support)
231 (TIFF support, GIF support, Ghostscript support): Merge with image
232 code from xfns.c and macfns.c into image.c.
233 (syms_of_xfns): Move image related symbols to image.c.
234 (init_external_image_libraries, init_xfns): Remove; initialization
235 moved to init_image in image.c.
236
237 * w32fns.c (Vx_bitmap_file_path, Vimage_cache_eviction_delay)
238 (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
239 (x_reference_bitmap, x_create_bitmap_from_data)
240 (x_create_bitmap_from_file, x_destroy_bitmap)
241 (x_destroy_all_bitmaps, x_create_bitmap_mask)
242 (QCascent, QCmargin, QCrelief, QCconversion, QCcolor_symbols)
243 (QCheuristic_mask, QCindex, QCmatrix, QCcolor_adjustment, QCmask)
244 (Qlaplace, Qemboss, Qedge_detection, Qheuristic, Qcenter)
245 (define_image_type, lookup_image_type, valid_image_p)
246 (image_error, enum image_value_type, struct image_keyword)
247 (parse_image_spec, image_spec_value, Fimage_size, Fimage_mask_p)
248 (make_image, free_image, prepare_image_for_display, image_ascent)
249 (four_corners_best, image_background, image_background_transparent)
250 (x_clear_image_1, x_clear_image, x_alloc_image_color)
251 (make_image_cache, free_image_cache, clear_image_cache)
252 (Fclear_image_cache, postprocess_image, lookup_image, cache_image)
253 (forall_images_in_image_cache, x_create_x_image_and_pixmap)
254 (x_destroy_x_image, x_put_x_image, x_find_image_file, slurp_file)
255 (struct ct_color, init_color_table, free_color_table)
256 (lookup_rgb_color, lookup_pixel_color, colors_in_color_table)
257 (cross_disabled_images, x_to_xcolors, x_from_xcolors)
258 (x_detect_edges, x_emboss, x_laplace, x_edge_detection)
259 (x_disable_image, x_build_heuristic_mask)
260 (XBM support, XPM support, PBM support, PNG support, JPEG support)
261 (TIFF support, GIF support, Ghostscript support): Merge with image
262 code from xfns.c and macfns.c into image.c.
263 (syms_of_xfns): Move image related symbols to image.c.
264 (init_external_image_libraries, init_xfns): Remove; initialization
265 moved to init_image in image.c.
266
267 * xfns.c (Vx_bitmap_file_path, Vimage_cache_eviction_delay)
268 (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
269 (x_reference_bitmap, x_create_bitmap_from_data)
270 (x_create_bitmap_from_file, x_destroy_bitmap)
271 (x_destroy_all_bitmaps, x_create_bitmap_mask)
272 (QCascent, QCmargin, QCrelief, QCconversion, QCcolor_symbols)
273 (QCheuristic_mask, QCindex, QCmatrix, QCcolor_adjustment, QCmask)
274 (Qlaplace, Qemboss, Qedge_detection, Qheuristic, Qcenter)
275 (define_image_type, lookup_image_type, valid_image_p)
276 (image_error, enum image_value_type, struct image_keyword)
277 (parse_image_spec, image_spec_value, Fimage_size, Fimage_mask_p)
278 (make_image, free_image, prepare_image_for_display, image_ascent)
279 (four_corners_best, image_background, image_background_transparent)
280 (x_clear_image_1, x_clear_image, x_alloc_image_color)
281 (make_image_cache, free_image_cache, clear_image_cache)
282 (Fclear_image_cache, postprocess_image, lookup_image, cache_image)
283 (forall_images_in_image_cache, x_create_x_image_and_pixmap)
284 (x_destroy_x_image, x_put_x_image, x_find_image_file, slurp_file)
285 (struct ct_color, init_color_table, free_color_table)
286 (lookup_rgb_color, lookup_pixel_color, colors_in_color_table)
287 (cross_disabled_images, x_to_xcolors, x_from_xcolors)
288 (x_detect_edges, x_emboss, x_laplace, x_edge_detection)
289 (x_disable_image, x_build_heuristic_mask)
290 (XBM support, XPM support, PBM support, PNG support, JPEG support)
291 (TIFF support, GIF support, Ghostscript support): Merge with
292 w32fns.c and macfns.c image code into image.c.
293 (syms_of_xfns): Move image related symbols to image.c.
294 (init_xfns): Remove; initialization moved to init_image in image.c.
295
296 * lisp.h (syms_of_image, init_image): Add protoypes.
297 (init_xfns): Remove prototype.
298
299 * dispextern.h (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
300 (x_reference_bitmap, x_create_bitmap_from_data)
301 (x_create_bitmap_from_file, x_destroy_bitmap)
302 (x_create_bitmap_mask): Move prototypes from dispextern.h.
303 (gamma_correct) [MAC_OS]: Add prototype.
304
305 * xterm.h (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
306 (x_reference_bitmap, x_create_bitmap_from_data)
307 (x_create_bitmap_from_file, x_destroy_bitmap)
308 (x_create_bitmap_mask): Move prototypes to dispextern.h.
309
310 2004-03-09 Kenichi Handa <handa@etlken2>
311
312 * coding.c (decode_coding_emacs_mule): Handle insufficent source
313 correctly.
314
315 2004-03-04 Richard M. Stallman <rms@gnu.org>
316
317 * s/sol2-6.h (LD_SWITCH_SYSTEM_TEMACS): New definition.
318
319 * window.c (Fdisplay_buffer): Doc fix.
320
321 * buffer.c (Fpop_to_buffer): Doc fix.
322
323 2004-03-03 Kim F. Storm <storm@cua.dk>
324
325 * xdisp.c (display_line): Fix call to get_overlay_arrow_glyph_row.
326
327 2004-03-02 Stefan Monnier <monnier@iro.umontreal.ca>
328
329 * editfns.c (Ftranslate_region): Lisp_Object/int mixup.
330
331 2004-03-02 Richard M. Stallman <rms@gnu.org>
332
333 * indent.c (compute_motion): Save vpos in prev_vpos, like hpos etc.
334
335 2004-03-02 Kenichi Handa <handa@m17n.org>
336
337 * doc.c (Fsubstitute_command_keys): Fix counding bytes.
338
339 2004-03-02 Kim F. Storm <storm@cua.dk>
340
341 * window.h (struct window): New member overlay_arrow_bitmap.
342
343 * window.c (make_window): Initialize overlay_arrow_bitmap.
344
345 * xdisp.c (Voverlay_arrow_variable_list): New variable to properly
346 implement and integrate multiple overlay arrows with redisplay.
347 (syms_of_xdisp): DEFVAR_LISP and initialize it.
348 (last_arrow_position, last_arrow_string): Replace by properties.
349 (Qlast_arrow_position, Qlast_arrow_string)
350 (Qoverlay_arrow_string, Qoverlay_arrow_bitmap): New variables.
351 (syms_of_xdisp): Intern and staticpro them.
352 (overlay_arrow_string_or_property, update_overlay_arrows)
353 (overlay_arrow_in_current_buffer_p, overlay_arrows_changed_p)
354 (overlay_arrow_at_row): New functions for multiple overlay arrows.
355 (redisplay_internal): Use them instead of directly accessing
356 Voverlay_arrow_position etc. for multiple overlay arrows.
357 (mark_window_display_accurate): Use update_overlay_arrows.
358 (try_cursor_movement): Use overlay_arrow_in_current_buffer_p.
359 (try_window_id): Use overlay_arrows_changed_p.
360 (get_overlay_arrow_glyph_row): Add overlay_arrow_string arg.
361 (display_line): Use overlay_arrow_at_row to check multiple
362 overlay arrows, and get relevant overlay-arrow-string and
363 overlay-arrow-bitmap. Set w->overlay_arrow_bitmap accordingly.
364 (produce_image_glyph): Set pixel_width = 0 for fringe bitmap.
365 (syms_of_xdisp): Remove last_arrow_position and last_arrow_string.
366
367 * fringe.c (draw_fringe_bitmap): Use w->overlay_arrow_bitmap if set.
368 (update_window_fringes): Remove unused code.
369
370 2004-03-01 Jason Rumney <jasonr@gnu.org>
371
372 * w32term.c (w32_read_socket): Fix last change to ButtonPress handling.
373
374 2004-03-01 Juanma Barranquero <lektu@terra.es>
375
376 * fringe.c (Fdefine_fringe_bitmap): Fix typo in docstring.
377
378 * makefile.w32-in ($(BLD)/fringe.$(O)): Add dependencies.
379
380 2004-03-01 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
381
382 * xfns.c (Fx_display_color_cells): Use number of planes to calculate
383 how many colors can be displayed.
384
385 2004-03-01 Kenichi Handa <handa@m17n.org>
386
387 * editfns.c (Ftranslate_region): Handle multibyte chars in TABLE
388 correctly.
389
390 2004-02-28 Kim F. Storm <storm@cua.dk>
391
392 * dispnew.c (update_window): Update header line also if there are
393 no other changes in window (move code after set_cursor label).
394
395 * lisp.h (mark_window_display_accurate): Remove prototype.
396
397 * window.c (window_loop, Fforce_window_update): Force mode line
398 updates by setting prevent_redisplay_optimizations_p and
399 update_mode_lines.
400
401 2004-02-28 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
402
403 * xfns.c (x_window): Fix indentation.
404
405 * xterm.c (x_calc_absolute_position): Call x_real_positions
406 to get WM window sizes and use those to calculate position.
407 (x_set_offset): Remove code commented out.
408
409 2004-02-28 Miles Bader <miles@gnu.org>
410
411 * keyboard.c (adjust_point_for_property): #ifdef-out dodgy xassert.
412
413 2004-02-28 Kim F. Storm <storm@cua.dk>
414
415 * keyboard.c (kbd_buffer_store_event_hold): New function to store
416 an event into kbd fifo, but with special handling of quit event;
417 a quit event is saved for later, and further events are discarded
418 until the saved quit event has been processed.
419 (kbd_buffer_store_event): Use kbd_buffer_store_event_hold.
420 (gen_help_event): Store help event in kbd fifo.
421 (NREAD_INPUT_EVENTS): Remove.
422 (read_avail_input): Adapt to new read_socket_hook interface.
423 Remove allocation and initialization of local input_event buffer,
424 as read_socket_hook stores events directly in fifo. Allocate and
425 initialize local hold_quit event to handle postponed quit event
426 (and store it if set by kbd_buffer_store_event_hold).
427
428 * keyboard.h (kbd_buffer_store_event_hold): Add prototype.
429 (gen_help_event): Fix prototype.
430
431 * macterm.c (XTread_socket): Remove bufp_r and
432 numcharsp args. Add hold_quit arg.
433 Rework to use just one, local, inev input_event. Store inev
434 directly in fifo using kbd_buffer_store_event_hold.
435
436 * sysdep.c (BUFFER_SIZE_FACTOR): Remove.
437 (read_input_waiting): Adapt to new read_socket_hook interface.
438 Remove allocation and initialization of local input_event buffer,
439 as read_socket_hook stores events directly in fifo. Allocate and
440 initialize local hold_quit event to handle postponed quit event
441 (and store it if set by kbd_buffer_store_event_hold).
442
443 * term.c (read_socket_hook): Fix arg list.
444
445 * termhooks.h (read_socket_hook): Fix prototype.
446
447 * w32inevt.c (w32_console_read_socket): Remove bufp_r and
448 numcharsp args. Add hold_quit arg.
449 Rework to use just one, local, inev input_event. Store inev
450 directly in fifo using kbd_buffer_store_event_hold.
451
452 * w32inevt.h (w32_console_mouse_position): Fix prototype.
453
454 * w32term.c (w32_read_socket): Remove bufp_r and numcharsp args.
455 Add hold_quit arg. Rework to use just one, local, inev
456 input_event. Store inev directly in fifo using
457 kbd_buffer_store_event_hold. Update count in one place.
458 Postpone call to gen_help_event until inev is stored; use new
459 local do_help for this.
460 Remove local emacs_event in handing of ButtonPress event; just use
461 inev instead (so no reason to copy it later).
462
463 * xsmfns.c (x_session_check_input): Remove numchars arg.
464
465 * xterm.c (x_focus_changed, x_detect_focus_change):
466 Remove numchars arg. Always store event into bufp arg.
467 Return nothing. Callers changed accordingly.
468 (glyph_rect): Simplify.
469 (STORE_KEYSYM_FOR_DEBUG): New macro.
470 (SET_SAVED_MENU_EVENT): Use inev instead of bufp, etc.
471 (current_bufp, current_numcharsp) [USE_GTK]: Remove.
472 (current_hold_quit) [USE_GTK]: Add.
473 (event_handler_gdk): Adapt to new handle_one_xevent.
474 (handle_one_xevent): Remove bufp_r and numcharsp args.
475 Add hold_quit arg. Rework to use just one, local, inev
476 input_event. Store inev directly in fifo using
477 kbd_buffer_store_event_hold. Update count in one place.
478 Postpone call to gen_help_event until inev is stored; use new
479 local do_help for this.
480 Simplify handling of keysyms (consolidate common code). Fix bug
481 where count was updated with nchars instead of nbytes.
482 Remove local emacs_event in handing of ButtonPress event; just use
483 inev instead (so no reason to copy it later).
484 Remove `out' label. Rename label `ret' to `done'; add various
485 `goto done' to clarify code flow in deeply nested blocks.
486 (x_dispatch_event): Simplify as handle_one_xevent now calls
487 kbd_buffer_store_event itself.
488 (XTread_socket): Remove bufp_r and numcharsp args. Add hold_quit
489 arg. Call handle_one_xevent with new arglist. Store event from
490 x_session_check_input in fifo.
491 [USE_GTK]: Setup current_hold_quit.
492 Decrement handling_signal before unblocking input.
493 (x_initialize) [USE_GTK]: Initialize current_count.
494
495 * xterm.h (x_session_check_input): Fix prototype.
496
497 2004-02-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
498
499 * s/darwin.h (LD_SWITCH_SYSTEM_TEMACS): Add `-framework QuickTime'.
500
501 * dispextern.h [MAC_OSX]: Do not include Carbon/Carbon.h (now in
502 macgui.h).
503
504 * emacs.c (main) [HAVE_CARBON]: Call init_xfns.
505
506 * macgui.h [MAC_OSX]: Include Carbon/Carbon.h.
507 (mktime, DEBUG, Z, free, malloc, realloc, max, min)
508 (init_process) [MAC_OSX] : Avoid conflicts with Carbon/Carbon.h.
509 [!MAC_OSX]: Include QDOffscreen.h and Controls.h.
510 (INFINITY) [MAC_OSX]: Avoid conflict with definition in math.h.
511 (Bitmap): Remove typedef.
512 (Pixmap): Change int to GWorldPtr.
513
514 * macmenu.c [MAC_OSX]: Don't include Carbon/Carbon.h (now in macgui.h).
515
516 * macterm.h [MAC_OSX]: Don't include Carbon/Carbon.h (now in macgui.h).
517 (RED16_FROM_ULONG, GREEN16_FROM_ULONG, BLUE16_FROM_ULONG):
518 New #define to extract 16-bit depth color components from unsigned
519 long representation.
520 (PIX_MASK_DRAW, PIX_MASK_RETAIN): New #define to represent pixel
521 colors used for masks.
522 (struct mac_display_info): Add color_p. Remove n_cbits.
523
524 * macfns.c: Include sys/types.h and sys/stat.h.
525 [MAC_OSX]: Do not include Carbon/Carbon.h (now in macgui.h).
526 Include QuickTime/QuickTime.h.
527 (XCreatePixmap, XCreatePixmapFromBitmapData, XFreePixmap)
528 (XSetForeground, mac_draw_line_to_pixmap): Add externs for
529 functions defined in macterm.c.
530 (XImagePtr): New typedef. Corresponds to XImage * in xfns.c.
531 (ZPixmap): New #define for compatibility with xfns.c.
532 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
533 (x_create_x_image_and_pixmap, x_destroy_x_image, x_put_x_image)
534 (find_image_fsspec, image_load_qt_1, image_load_quicktime):
535 New functions.
536 (four_corners_best, x_create_x_image_and_pixmap)
537 (x_destroy_x_image, unwind_create_frame, x_disable_image)
538 (x_edge_detection, init_color_table, colors_in_color_table)
539 (lookup_rgb_color, lookup_pixel_color, postprocess_image)
540 (x_put_x_image, slurp_file, xbm_scan, xbm_load, xbm_load_image)
541 (xbm_image_p, xbm_read_bitmap_data, xbm_file_p, x_to_xcolors)
542 (x_from_xcolors, x_detect_edges): New declarations (from xfns.c).
543 (mac_color_map_lookup, x_to_mac_color): Fix Lisp_Object/unsigned
544 long mixup.
545 (mac_defined_color, x_to_x_colors): Use RED16_FROM_ULONG etc.
546 (x_decode_color): Don't use n_cbits (in struct mac_display_info).
547 (x_set_foreground_color, x_set_cursor_color): Sync with w32fns.c.
548 (x_set_cursor_type, Fxw_color_values, valid_image_p)
549 (image_value_type, parse_image_spec, image_ascent, x_clear_image)
550 (x_alloc_image_color, clear_image_cache, lookup_image)
551 (x_find_image_file, xbm_read_bitmap_file_data)
552 (enum xbm_keyword_index, xbm_format, xbm_image_p, xbm_scan)
553 (xbm_read_bitmap_data, xbm_load, pbm_image_p, pbm_scan_number)
554 (enum pbm_keyword_index, pbm_format, enum png_keyword_index)
555 (png_format, png_image_p, enum jpeg_keyword_index, jpeg_format)
556 (jpeg_image_p, enum tiff_keyword_index, tiff_format, tiff_image_p)
557 (enum gif_keyword_index, gif_format, gif_image_p): Sync with xfns.c.
558 (x_make_gc): Sync with xfns.c. Enclose unused `border_tile' with
559 #if 0.
560 (x_free_gcs): Sync with xfns.c. Enclose unused `border_tile' with
561 #if 0. Free white_relief.gc and black_relief.gc.
562 (unwind_create_frame, x_emboss, x_laplace, x_edge_detection):
563 New functions (from xfns.c).
564 (Fx_create_frame): Record unwind_create_frame.
565 (Fxw_display_color_p): Use dpyinfo->color_p.
566 (Fx_display_grayscale_p, Fx_display_planes): Don't use
567 dpyinfo->n_cbits.
568 (Fx_display_color_cells): Use dpyinfo->n_planes;
569 (QCmatrix, QCcolor_adjustment, QCmask, Qemboss, Qedge_detection)
570 (Qheuristic, cross_disabled_images, emboss_matrix)
571 (laplace_matrix): New variables (from xfns.c).
572 (Fimage_size, Fimage_mask_p, four_corners_best, image_background)
573 (x_clear_image_1, postprocess_image, slurp_file, xbm_load_image)
574 (xbm_file_p, x_to_xcolors, x_from_xcolors, x_detect_edges)
575 (image_background_transparent): New function (from xfns.c).
576 Use PIX_MASK_DRAW/PIX_MASK_RETAIN.
577 (image_load_quicktime): Add declaration.
578 [MAC_OSX] (image_load_quartz2d): Likewise.
579 [MAC_OSX] (CGImageCreateWithPNGDataProviderProcType): New typedef.
580 [MAC_OSX] (MyCGImageCreateWithPNGDataProvider): New variable.
581 [MAC_OSX] (init_image_func_pointer, image_load_quartz2d): New funs.
582 (xbm_load_image_from_file, x_laplace_read_row)
583 (x_laplace_write_row, pbm_read_file): Remove functions.
584 [HAVE_XPM] (enum xpm_keyword_index, xpm_format, xpm_image_p)
585 (xpm_load): Sync with xfns.c (although XPM is not supported yet).
586 (colors_in_color_table): Sync with xfns.c (although not used).
587 (lookup_rgb_color): Don't lookup color table. Just do gamma
588 correction.
589 (COLOR_INTENSITY): New #define (from xfns.c).
590 (x_disable_image): New function (from xfns.c).
591 Use PIX_MASK_DRAW/PIX_MASK_RETAIN.
592 (x_build_heuristic_mask): Sync with xfns.c.
593 Use PIX_MASK_DRAW/PIX_MASK_RETAIN.
594 (HAVE_PBM): Remove #ifdef.
595 (pbm_load): Sync with xfns.c. Set img->width and img->height
596 before IMAGE_BACKGROUND.
597 (png_image_p, png_load): Don't enclose declarations with #if HAVE_PNG.
598 (Qpng, enum png_keyword_index, png_format, png_type, png_image_p):
599 Don't enclose with #if HAVE_PNG.
600 [!HAVE_PNG] (png_load) [MAC_OSX]: Use image_load_quartz2d if a
601 symbol _CGImageCreateWithPNGDataProvider is defined.
602 Otherwise use image_load_quicktime.
603 [!HAVE_PNG] (png_load) [!MAC_OSX]: Use image_load_quicktime.
604 [HAVE_PNG] (png_load): Sync with xfns.c.
605 Use PIX_MASK_DRAW/PIX_MASK_RETAIN.
606 (jpeg_image_p, jpeg_load): Don't enclose declarations with #if
607 HAVE_JPEG.
608 (Qjpeg, enum jpeg_keyword_index, jpeg_format, jpeg_type)
609 (jpeg_image_p): Don't enclose with #if HAVE_JPEG.
610 [!HAVE_JPEG] (jpeg_load) [MAC_OSX]: Use image_load_quartz2d.
611 [!HAVE_JPEG] (jpeg_load) [!MAC_OSX]: Use image_load_quicktime.
612 [HAVE_JPEG] (jpeg_load): Sync with xfns.c.
613 (tiff_image_p, tiff_load): Don't enclose declarations with #if
614 HAVE_TIFF.
615 (Qtiff, enum tiff_keyword_index, tiff_format, tiff_type)
616 (tiff_image_p): Don't enclose with #if HAVE_TIFF.
617 [!HAVE_TIFF] (tiff_load): Use image_load_quicktime.
618 [HAVE_TIFF] (tiff_error_handler, tiff_warning_handler):
619 New functions (from xfns.c).
620 [HAVE_TIFF] (tiff_load): Sync with xfns.c.
621 (gif_image_p, gif_load): Don't enclose declarations with #if HAVE_GIF.
622 (Qgif, enum gif_keyword_index, gif_format, gif_type, gif_image_p):
623 Don't enclose with #if HAVE_GIF.
624 [!HAVE_GIF] (gif_load): Use Quicktime Movie Toolbox if it is
625 animated gif. Otherwise use image_load_quicktime.
626 [HAVE_GIF] (gif_lib.h): Temporarily define DrawText as
627 gif_DrawText to avoid conflict with QuickdrawText.h.
628 [HAVE_GIF] (gif_load): Sync with xfns.c.
629 (enum gs_keyword_index, gs_format, gs_image_p, gs_load)
630 [HAVE_GHOSTSCRIPT] (x_kill_gs_process): Sync with xfns.c (although
631 Ghostscript is not supported yet).
632 (syms_of_macfns): Initialize Qemboss, Qedge_detection, Qheuristic,
633 QCmatrix, QCcolor_adjustment, and QCmask. Add DEFVAR_BOOL
634 cross_disabled_images (from xfns.c). Remove #if 0 for supported
635 image types. Remove #if HAVE_JPEG, HAVE_TIFF, HAVE_GIF, and
636 HAVE_PNG. Add defsubr for Simage_size and Simage_mask_p.
637 (init_xfns): Remove #if HAVE_JPEG, HAVE_TIFF, HAVE_GIF, and
638 HAVE_PNG. Call EnterMovies to support animated gifs.
639 Call init_image_func_pointer to bind a symbol
640 _CGImageCreateWithPNGDataProvider if it is defined.
641
642 * macterm.c [MAC_OSX]: Don't include Carbon/Carbon.h (now in macgui.h).
643 (x_draw_bar_cursor): Sync declaration with xterm.c.
644 (XFreePixmap, mac_draw_rectangle_to_pixmap, mac_copy_area)
645 (mac_copy_area_to_pixmap): Implementation with GWorld (offscreen
646 graphics).
647 (mac_set_forecolor, mac_set_backcolor): Use RED16_FROM_ULONG etc.
648 (mac_draw_line_to_pixmap, XCreatePixmap)
649 (XCreatePixmapFromBitmapData, mac_fill_rectangle_to_pixmap)
650 (mac_copy_area_with_mask, mac_copy_area_with_mask_to_pixmap):
651 New functions.
652 (mac_draw_bitmap) [TARGET_API_MAC_CARBON]:
653 Use GetPortBitMapForCopyBits instead of the cast to Bitmap *.
654 Cast bits to char *.
655 (reflect_byte): New function (from w32fns.c).
656 (mac_create_bitmap_from_bitmap_data): Use it and don't stuff bits
657 due to byte alignment.
658 (mac_scroll_area) [TARGET_API_MAC_CARBON]:
659 Use GetPortBitMapForCopyBits instead of the cast to Bitmap *.
660 (XSetForeground): Remove static (now used in macfns.c).
661 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New #define (from w32term.c).
662 (mac_alloc_lighter_color, x_destroy_window): Sync with w32term.c.
663 (x_setup_relief_color, x_setup_relief_colors, x_draw_box_rect)
664 (x_draw_glyph_string_box, x_draw_image_foreground)
665 (x_draw_image_foreground_1, x_draw_image_glyph_string)
666 (x_draw_stretch_glyph_string, x_draw_glyph_string)
667 (x_draw_hollow_cursor, x_draw_bar_cursor, mac_draw_window_cursor):
668 Sync with xterm.c.
669 (x_draw_relief_rect): Sync with xterm.c. Make 1 pixel shorter
670 than the xterm.c version when a strictly horizontal or vertical
671 line is drawn.
672 (XTset_terminal_window): Add static.
673 (x_make_frame_visible): Add UNBLOCK_INPUT.
674 (x_free_frame_resources): New funcion (from xterm.c).
675 (XTread_socket): Call handle_tool_bar_click if mouse up/down event
676 occurs in tool bar area.
677 (mac_initialize_display_info): Remove dpyinfo->n_cbits.
678 Set dpyinfo->color_p. Determine dpyinfo->n_planes using HasDepth.
679 Initialize image cache.
680 (stricmp, wildstrieq, mac_font_pattern_match, mac_font_match):
681 Enclose unused functions with #if 0.
682 (Qbig5, Qcn_gb, Qsjis, Qeuc_kr): New variables.
683 (decode_mac_font_name): New function to apply code conversions
684 from a mac font name to an XLFD font name according to its script code.
685 (x_font_name_to_mac_font_name): Apply code conversion from an XLFD
686 font name to a mac font name according to REGISTRY and ENCODING fields.
687 (init_font_name_table) [TARGET_API_MAC_CARBON]: Don't use a font
688 whose name starts with `.'.
689 (init_font_name_table): Use decode_mac_font_name. Add both
690 jisx0208.1983-sjis and jisx0201.1976-0 entries if the script code
691 of a font is smJapanese.
692 (mac_do_list_fonts): New function to list fonts that match a given
693 pattern.
694 (x_list_fonts, XLoadQueryFont): Use it.
695 (XLoadQueryFont): Set rbearing field for each variable width
696 character to avoid needless redraw.
697 (syms_of_macterm): Initialize Qbig5, Qcn_gb, Qsjis, and Qeuc_kr.
698
699 2004-02-26 Kim F. Storm <storm@cua.dk>
700
701 * keyboard.c (NREAD_INPUT_EVENTS): Temporarily increase to 512
702 as read_socket_hook handler on X aborts if buffer is too small
703 and W32 handler doesn't always check buffer limit.
704
705 * xdisp.c (handle_single_display_prop): Handle left-fringe and
706 right-fringe similar to a display margin image. Specifically,
707 the characters having the fringe prop are no longer shown, and
708 we use IT_IMAGE/next_element_from_image with image_id = -1 to
709 do this. Set fringe bitmap face_id in it->face_id.
710 (produce_image_glyph): Handle image_id < 0 as "no image" case, but
711 still realize it->face (i.e. the fringe bitmap face).
712
713 2004-02-25 Miles Bader <miles@gnu.org>
714
715 * xdisp.c (check_it): Check string/string_pos consistency.
716 (init_iterator): Initialize string-related fields properly.
717
718 2004-02-11 Miles Bader <miles@gnu.org>
719
720 * xdisp.c (produce_image_glyph): Force negative descents to zero.
721
722 2004-02-10 Miles Bader <miles@gnu.org>
723
724 * xfns.c (lookup_image): Remove xassert(!interrupt_input_blocked);
725 BLOCK_INPUT can be nested, so it doesn't make much sense.
726
727 2004-02-24 Michael Mauger <mmaug@yahoo.com>
728
729 * w32fns.c (slurp_file, xbm_scan, xbm_load_image)
730 (xbm_read_bitmap_data): Use unsigned char for image data.
731
732 2004-02-23 Luc Teirlinck <teirllm@auburn.edu>
733
734 * abbrev.c (Finsert_abbrev_table_description): Doc fix.
735
736 2004-02-22 Jason Rumney <jasonr@gnu.org>
737
738 * w32term.c (w32_draw_fringe_bitmap): Draw overlaid bitmaps
739 correctly over other bitmaps.
740
741 2004-02-21 Eli Zaretskii <eliz@elta.co.il>
742
743 * emacs.c (USAGE1): Split into two halves.
744 (USAGE2): Second half of the old USAGE1.
745 (USAGE3): Rename from USAGE2.
746 (USAGE4): Rename from USAGE3.
747
748 2004-02-21 Juri Linkov <juri@jurta.org>
749
750 * emacs.c (USAGE1): Add --no-desktop. Move --display from USAGE2.
751 Fix --multibyte. Move --help, --version to USAGE2. Add alias
752 --file. Fix -f, -l. Sort options. Untabify.
753 (USAGE2): Add -hb. Fix --name, --title. Sort options. Untabify.
754
755 2004-02-19 Luc Teirlinck <teirllm@auburn.edu>
756
757 * category.c (Fdefine_category, Fcategory_docstring)
758 (Fget_unused_category, Fset_category_table)
759 (Fcategory_set_mnemonics): Doc fixes.
760
761 2004-02-20 Kim F. Storm <storm@cua.dk>
762
763 * keyboard.c: Undo 2004-02-16 and 2004-02-17 changes.
764 The following changes are relative to the 2004-01-21 revision.
765 (NREAD_INPUT_EVENTS): Define as max number of input events to read
766 in one call to read_socket_hook. Value is 8.
767 (read_avail_input): Separate and rework handling of read_socket_hook
768 and non-read_socket_hook cases. Use smaller input_event buffer
769 in read_socket_hook case, and repeat if full buffer is read.
770 Use new local variable 'discard' to skip input after C-g.
771 In non-read_socket_hook case, just use a single input_event, and
772 call kbd_buffer_store_event on the fly for each character.
773
774 2004-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
775
776 * lisp.h (union Lisp_Object): Give a more precise type for `type'.
777 Remove unused `gu' alternative.
778
779 2004-02-19 Andreas Schwab <schwab@suse.de>
780
781 * fringe.c (Fdefine_fringe_bitmap): Use && instead of & to avoid
782 warning.
783
784 2004-02-18 Kim F. Storm <storm@cua.dk>
785
786 * xdisp.c (get_window_cursor_type, display_and_set_cursor):
787 Fix last change.
788
789 2004-02-17 Kim F. Storm <storm@cua.dk>
790
791 * xdisp.c (fast_find_position): Fix return value of new version;
792 it was inverted compared to the 21.1 version.
793 (get_window_cursor_type): Don't look at glyph if NULL.
794 (display_and_set_cursor): Set glyph to NULL if cursor in fringe.
795
796 * keyboard.c: Rework previous change; it didn't consider that the
797 buf array was allocated on the stack.
798 (prev_read): Remove variable.
799 (read_avail_input_buf): New static event buffer array.
800 (in_read_avail_input): New static variable to handle re-entrancy.
801 (read_avail_input): Change buf to pinter to read_avail_input_buf.
802 Use in_read_avail_input to handle re-entrance; when re-entered,
803 fully initialize and use tmp_buf array instead of read_avail_input_buf.
804 Do not initialize read_avail_input_buf in full here; instead assume it
805 is always cleared on entry. To ensure that, we clear (just) the
806 entries that were used before we return.
807 (init_keyboard): Initialize read_avail_input_buf here.
808
809 2004-02-16 Jesper Harder <harder@ifa.au.dk> (tiny change)
810
811 * cmds.c (Fend_of_line): Doc fix.
812
813 2004-02-16 Dmitry Antipov <dmitry.antipov@mail.ru> (tiny change)
814
815 * keyboard.c (prev_read): New static variable.
816 (read_avail_input): Use it to zero out only those slots in buf[]
817 that were used last time we were called.
818
819 2004-02-16 Eli Zaretskii <eliz@elta.co.il>
820
821 * Makefile.in (obj): Move fringe.o from here...
822 (XOBJ, MAC_OBJ): ...to here.
823
824 2004-02-16 Stephen Eglen <stephen@gnu.org>
825
826 * fringe.c (init_fringe_bitmap): Define j in MAC_OS code.
827
828 2004-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
829
830 * data.c (Fbyteorder):
831 * fringe.c (Fdefine_fringe_bitmap):
832 * xdisp.c (handle_single_display_prop):
833 * xselect.c (x_handle_dnd_message): Lisp_Object/int mixup.
834
835 2004-02-16 Jason Rumney <jasonr@gnu.org>
836
837 * w32term.c (w32_draw_fringe_bitmap): Handle overlay fringe bitmaps.
838
839 2004-02-15 Steven Tamm <steventamm@mac.com>
840
841 * macterm.c (Vmac_emulate_three_button_mouse): New variable for
842 controlling emulation of a three button mouse with option and
843 command keys.
844 (Qreverse, mac_get_enumlated_btn): Handle the emulation
845 (mac_event_to_emacs_modifiers, XTread_socket): Ditto.
846
847 2004-02-15 Kim F. Storm <storm@cua.dk>
848
849 * buffer.c (syms_of_buffer): Doc fix for indicate-buffer-boundaries.
850
851 * fringe.c (init_fringe_bitmap) [MAC_OS, WORDS_BIG_ENDIAN]:
852 Perform byte-swapping.
853
854 2004-02-14 Kim F. Storm <storm@cua.dk>
855
856 * dispextern.h (struct draw_fringe_bitmap_params): Change member
857 bits from char to short to facilitate wider bitmaps.
858 (struct redisplay_interface): Fix prototype of define_fringe_bitmap
859 member.
860
861 * fringe.c (struct fringe_bitmap): Change member bits from char to
862 short to facilitate 16 bits wide bitmaps. Modify all standard
863 bitmaps accordingly.
864 (BYTES_PER_BITMAP_ROW, STANDARD_BITMAP_HEIGHT): New macros.
865 (FRBITS): Use STANDARD_BITMAP_HEIGHT instead of just sizeof.
866 (draw_fringe_bitmap): Ditto.
867 (init_fringe_bitmap) [MAC_OS]: Don't bitswap.
868 (init_fringe_bitmap) [HAVE_X_WINDOWS]: Enhance bitswapping to
869 handle up to 16 bits wide bitmaps.
870 (Fdefine_fringe_bitmap): Doc fix. Handle wider bitmaps.
871 (Ffringe_bitmaps_at_pos): Add missing arg declarations.
872
873 * macterm.c (mac_draw_bitmap): Handle 16 bits wide bitmaps directly.
874 (x_draw_fringe_bitmap): Use enhanced mac_draw_bitmap, so we no longer
875 need to call mac_create_bitmap_from_bitmap_data and mac_free_bitmap.
876
877 * w32term.c (w32_define_fringe_bitmap): Bitmaps are now 16 bits wide,
878 so it is no longer necessary to expand them here.
879
880 * xterm.c (x_draw_fringe_bitmap): Handle wider bitmaps (max 16 bits).
881
882 2004-02-12 Kim F. Storm <storm@cua.dk>
883
884 * window.c (Fwindow_fringes): Doc fix.
885
886 2004-02-10 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
887
888 * xselect.c (x_get_foreign_selection): Add new optional parameter
889 time_stamp.
890 (Fx_get_selection_internal): Ditto, pass time_stamp to
891 x_get_foreign_selection.
892
893 * data.c (Fbyteorder): New function.
894
895 2004-02-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
896
897 * atimer.c: Move include stdio.h to same place as in other files.
898
899 * region-cache.c: Ditto.
900
901 * sysdep.c: Ditto.
902
903 * xfaces.c: Ditto.
904
905 2004-02-09 Sam Steingold <sds@gnu.org>
906
907 * w32term.c (w32_draw_fringe_bitmap): Fixed a typo in the last patch.
908
909 2004-02-09 Kim F. Storm <storm@cua.dk>
910
911 * fringe.c: New file. Move original fringe related declarations
912 and code from dispextern.h and xdisp.c here.
913 Rework code to support user defined fringe bitmaps, redefining
914 standard bitmaps, ability to overlay user defined bitmap with
915 overlay arrow bitmap, and add faces to bitmaps.
916 (Voverflow_newline_into_fringe): Declare here.
917 (enum fringe_bitmap_align): New enum.
918 (..._bits): All bitmaps are now defined without bitswapping; that
919 is now done in init_fringe_once (if necessary).
920 (standard_bitmaps): New array with specifications for the
921 standard fringe bitmaps.
922 (fringe_faces): New array.
923 (valid_fringe_bitmap_id_p): New function.
924 (draw_fringe_bitmap_1): Rename from draw_fringe_bitmap.
925 (draw_fringe_bitmap): New function which draws fringe bitmap,
926 possibly overlaying bitmap with cursor in right fringe or the
927 overlay arrow in the left fringe.
928 (update_window_fringes): Do not handle overlay arrow here.
929 Compare and copy fringe bitmap faces.
930 (init_fringe_bitmap): New function.
931 (Fdefine_fringe_bitmap, Fdestroy_fringe_bitmap): New DEFUNs to
932 define and destroy user defined fringe bitmaps.
933 (Fset_fringe_bitmap_face): New DEFUN to set face for a fringe bitmap.
934 (Ffringe_bitmaps_at_pos): New DEFUN to read current fringe bitmaps.
935 (syms_of_fringe): New function. Defsubr new DEFUNs.
936 DEFVAR_LISP Voverflow_newline_into_fringe.
937 (init_fringe_once, init_fringe): New functions.
938 (w32_init_fringe, w32_reset_fringes) [WINDOWS_NT]: New functions.
939
940 * Makefile.in (obj): Add fringe.o.
941 (fringe.o): New dependencies.
942
943 * dispextern.h (FRINGE_ID_BITS): New definition for number of
944 bits allocated to hold a fringe number. Increase number of bits
945 from 4 to 8 to allow user defined fringe bitmaps.
946 (struct glyph_row, struct it): New members left_user_fringe_bitmap,
947 left_user_fringe_face_id, right_user_fringe_bitmap,
948 right_user_fringe_face_id.
949 (enum fringe_bitmap_type, struct fringe_bitmap, fringe_bitmaps):
950 Move to new file fringe.c.
951 (MAX_FRINGE_BITMAPS): Define here.
952 (struct draw_fringe_bitmap_params): New members bits, cursor_p,
953 and overlay_p. Change member which to int.
954 (struct redisplay_interface): New members define_fringe_bitmap
955 and destroy_fringe_bitmap.
956 (valid_fringe_bitmap_id_p): Add prototype.
957 (w32_init_fringe, w32_reset_fringes) [WINDOWS_NT]: Add prototypes.
958
959 * dispnew.c (row_equal_p): Compare fringe bitmap faces and overlay
960 arrows.
961 (update_frame): Do flush_display if force_flush_display_p to
962 ensure display (specifically fringes) are updated in a timely
963 manner when resizing the frame by dragging the mouse.
964 (update_window_line): Update row if overlay arrow changed.
965 (scrolling_window): Redraw fringe bitmaps if fringe bitmap faces
966 or overlay arrow changed.
967
968 * emacs.c (main) [HAVE_WINDOW_SYSTEM]: Call init_fringe_once,
969 syms_of_fringe, and init_fringe.
970
971 * frame.h (struct frame): New member force_flush_display_p.
972
973 * lisp.h (syms_of_fringe, init_fringe, init_fringe_once):
974 Add prototypes.
975
976 * macterm.c (mac_draw_bitmap): Add overlay_p arg.
977 (x_draw_fringe_bitmap): Handle overlayed fringe bitmaps;
978 thanks to YAMAMOTO Mitsuharu for advice on how to do this.
979 Use cursor color for displaying cursor in fringe.
980 (x_redisplay_interface): Add null handlers for
981 define_fringe_bitmap and destroy_fringe_bitmap functions.
982
983 * w32term.c (w32_draw_fringe_bitmap): Copy unadapted code from
984 xterm.c to handle overlayed fringe bitmaps and to use cursor color
985 for displaying cursor in fringe.
986 (w32_define_fringe_bitmap, w32_destroy_fringe_bitmap): New W32
987 specific functions to define and destroy fringe bitmaps in fringe_bmp.
988 (w32_redisplay_interface): Add them to redisplay_interface.
989 (w32_term_init): Call w32_init_fringe instead of explicitly
990 defining fringe bitmaps in fringe_bmp array.
991 (x_delete_display): Call w32_reset_fringes instead of explicitly
992 destroying fringe bitmaps in fringe_bmp array.
993
994 * xdisp.c (Voverflow_newline_into_fringe, syms_of_xdisp)
995 (left_bits, right_bits, up_arrow_bits, down_arrow_bits)
996 (continued_bits, continuation_bits, ov_bits, first_line_bits)
997 (last_line_bits, filled_box_cursor_bits, hollow_box_cursor_bits)
998 (bar_cursor_bits, hbar_cursor_bits, zv_bits, hollow_square_bits)
999 (fringe_bitmaps, draw_fringe_bitmap, draw_row_fringe_bitmaps)
1000 (draw_window_fringes, compute_fringe_widths, update_window_fringes):
1001 Move fringe handling vars and code to new file fringe.c.
1002 (handle_display_prop): Handle left-fringe and right-fringe
1003 display properties; store user fringe bitmaps in iterator.
1004 (move_it_in_display_line_to): Handle cursor in fringe at eob.
1005 (clear_garbaged_frames): Set force_flush_display_p if resized.
1006 (redisplay_window): Redraw fringe bitmaps if not just_this_one_p.
1007 (display_line): Handle cursor in fringe at eob.
1008 (display_line): Set row user fringe bitmaps from iterator.
1009
1010 * xterm.c (x_draw_fringe_bitmap): Handle overlayed fringe bitmaps.
1011 Use cursor color for displaying cursor in fringe.
1012 (x_redisplay_interface): Add null handlers for
1013 define_fringe_bitmap and destroy_fringe_bitmap functions.
1014
1015 2004-02-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1016
1017 * macfns.c (Fx_change_window_property): Make doc string and
1018 parameters same as for X version.
1019
1020 * w32fns.c (Fx_change_window_property): Ditto.
1021
1022 2004-02-07 Kim F. Storm <storm@cua.dk>
1023
1024 * xdisp.c (hscroll_window_tree): Position cursor near to right
1025 margin in hscrolled window when jumping to end of line (rather
1026 than centering cursor).
1027
1028 * process.c (wait_reading_process_input): Don't do adaptive read
1029 buffering if waiting for a specific process.
1030
1031 2004-02-05 Luc Teirlinck <teirllm@auburn.edu>
1032
1033 * minibuf.c (Fminibufferp, Fread_from_minibuffer)
1034 (Fread_minibuffer, Feval_minibuffer)
1035 (Fread_string, Fread_no_blanks_input)
1036 (Fcompleting_read): Doc fixes.
1037 (syms_of_minibuf): Doc fixes for minibuffer-completion-table and
1038 completion-regexp-list. Define Qcase_fold_search and staticpro it.
1039 (read_minibuf): Fix initial comment.
1040 (Ftry_completion, Fall_completions, Ftest_completion): Bind
1041 case-fold-serach to the value of completion-ignore-case when
1042 checking completion-regexp-list.
1043 (Fdisplay_completion_list): Make it handle arguments that are
1044 symbols. Doc fix.
1045
1046 2004-02-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1047
1048 * xterm.h: Add declaration of free_frame_menubar.
1049
1050 * xfns.c (x_create_bitmap_mask): Removed unused variable depth.
1051 (x_set_menu_bar_lines): Added ! defined USE_GTK for olines.
1052 (Fx_change_window_property): Add declaration of parameters type and
1053 format. Remove unused variable cons.
1054
1055 * xselect.c: Include stdio,h.
1056
1057 2004-02-05 Kenichi Handa <handa@m17n.org>
1058
1059 * fns.c (Fset_char_table_range): Fix previous change.
1060
1061 * buffer.c (Fset_buffer_multibyte): Fix docstring.
1062
1063 2004-02-04 Luc Teirlinck <teirllm@auburn.edu>
1064
1065 * editfns.c (Fchar_after, Fchar_before): Doc fixes.
1066
1067 2004-02-04 Stefan Monnier <monnier@iro.umontreal.ca>
1068
1069 * keymap.c (Vmouse_events): Rename from Vmenu_events.
1070 (syms_of_keymap): Add mouse-[45], header-line, and mode-line to it.
1071
1072 2004-02-04 Kenichi Handa <handa@m17n.org>
1073
1074 * fns.c (Fset_char_table_range): Handle charsets ascii,
1075 eight-bit-control, and eight-bit-graphic correctly.
1076
1077 2004-02-03 Jason Rumney <jasonr@gnu.org>
1078
1079 * w32select.c (Fw32_set_clipboard_data): Make coding iso2022 safe.
1080
1081 * w32fns.c (x_to_w32_font): Likewise.
1082
1083 2004-02-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1084
1085 * xterm.h: Add x_handle_dnd_message, x_check_property_data,
1086 x_fill_property_data, x_property_data_to_lisp and check_x_display_info.
1087
1088 * xterm.c (handle_one_xevent): Call x_handle_dnd_message for
1089 ClientMessages.
1090
1091 * xselect.c: Include termhooks.h and X11/Xproto.h
1092 (x_check_property_data, x_fill_property_data)
1093 (x_property_data_to_lisp, mouse_position_for_drop)
1094 (Fx_get_atom_name, x_handle_dnd_message): New functions for DND support.
1095 (Fx_send_client_event): Move here from xfns.c.
1096 (syms_of_xselect): Add Sx_get_atom_name and Sx_send_client_message.
1097
1098 * xfns.c (x-send-client-message): Move to xselect.c
1099 (Fx_change_window_property): Add optional arguments TYPE, FORMAT and
1100 OUTER_P.
1101 (Fx_window_property): Add optional arguments TYPE, SOURCE, DELETE_P,
1102 VECTOR_RET_P. Handle AnyPropertyType. Call x_property_data_to_lisp
1103 if vector_ret_p is true.
1104 (syms_of_xfns): Sx_send_client_message moved to xselect.c.
1105
1106 2004-02-02 Eli Zaretskii <eliz@elta.co.il>
1107
1108 * fileio.c (Fcopy_file): If NEWNAME is a directory, expand the
1109 basename of FILE relative to it, not FILE itself.
1110
1111 2004-02-02 Kenichi Handa <handa@m17n.org>
1112
1113 * coding.c (coding_restore_composition): Check invalid
1114 composition data more rigidly.
1115
1116 2004-01-30 Luc Teirlinck <teirllm@auburn.edu>
1117
1118 * fileio.c (Fread_file_name_internal): Correctly handle the case
1119 where insert-default-directory is nil.
1120 (Fread_file_name): Always return an empty string if the user exits
1121 with an empty minibuffer. Adapt the docstring accordingly.
1122 (syms_of_fileio): Adapt the docstring of insert-default-directory
1123 to the change in Fread_file_name.
1124
1125 2004-01-29 Eli Zaretskii <eliz@elta.co.il>
1126
1127 * alloca.c [!alloca]: Fix the prototype for xfree.
1128
1129 2004-01-29 Kenichi Handa <handa@m17n.org>
1130
1131 * fns.c (string_char_to_byte): Optimize for ASCII only string.
1132 (string_byte_to_char): Likewise.
1133
1134 2004-01-28 Peter Runestig <peter@runestig.com>
1135
1136 * makefile.w32-in, w32fns.c: Add `default-printer-name' function.
1137
1138 2004-01-27 Steven Tamm <steventamm@mac.com>
1139
1140 * unexmacosx.c (unexec_copy): Do not copy more than was
1141 requested to prevent overwriting during unexec.
1142
1143 2004-01-27 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1144
1145 * process.c (sigchld_handler): Add comment about not calling malloc.
1146
1147 * process.h: Add extern to synch_process_termsig.
1148
1149 2004-01-27 Steven Tamm <steventamm@mac.com>
1150
1151 * macterm.c (make_mac_frame, make_mac_terminal_frame):
1152 Move setting of scroll bars from make_mac_frame to
1153 make_mac_terminal_frame to prevent clobbering of scroll-bar-mode.
1154
1155 2004-01-26 Richard M. Stallman <rms@gnu.org>
1156
1157 * search.c (Freplace_match): Handle nonexistent
1158 back-references properly.
1159
1160 2004-01-03 Richard M. Stallman <rms@gnu.org>
1161
1162 * window.c (decode_any_window): New function.
1163 (Fwindow_height, Fwindow_width, Fwindow_edges)
1164 (Fwindow_pixel_edges, Fwindow_inside_edges)
1165 (Fwindow_inside_pixel_edges): Use decode_any_window.
1166
1167 2004-01-27 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1168
1169 * process.h: synch_process_termsig new variable.
1170
1171 * callproc.c: Define synch_process_termsig.
1172 (Fcall_process): Initiate synch_process_termsig to zero and
1173 check if non-zero and get signal name after subprocess has ended.
1174
1175 * process.c (sigchld_handler): Set synch_process_termsig
1176 if terminated by a signal. synch_process_death setting removed.
1177
1178 * sysdep.c (mkdir, rmdir): Also check synch_process_termsig.
1179
1180 2004-01-26 Andreas Schwab <schwab@suse.de>
1181
1182 * print.c (print_preprocess): Declare size as EMACS_INT to not
1183 lose bits.
1184 (print_object): Likewise.
1185 * alloc.c (Fpurecopy): Likewise.
1186
1187 2004-01-25 Luc Teirlinck <teirllm@auburn.edu>
1188
1189 * window.c (Fwindow_minibuffer_p): Doc fix.
1190
1191 2004-01-24 Jonathan Yavner <jyavner@member.fsf.org>
1192
1193 * editfns.c (Fformat): Make both passes accept the same set of flags.
1194
1195 2004-01-23 Kenichi Handa <handa@m17n.org>
1196
1197 * fns.c (Fmd5): If OBJECT is a buffer different from the current
1198 one, set buffer to OBJECT temporarily.
1199
1200 2004-01-21 Stefan Monnier <monnier@iro.umontreal.ca>
1201
1202 * keyboard.c (kbd_buffer_gcpro): Remove.
1203 (kbd_buffer_store_event, clear_event, Fdiscard_input)
1204 (stuff_buffered_input, init_keyboard, syms_of_keyboard):
1205 Don't initialize and/or maintain the variable any more. It was made
1206 redundant by my commit of 2003-06-15.
1207
1208 * lisp.h [USE_LSB_TAG && !DECL_ALIGN]: Signal an error.
1209
1210 2004-01-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1211
1212 * lisp.h: Add undef DECL_ALIGN.
1213
1214 2004-01-21 Stefan Monnier <monnier@iro.umontreal.ca>
1215
1216 * process.c (wait_reading_process_input) [SYNC_INPUT]:
1217 Check interrupt_input_pending explicitly.
1218
1219 * lisp.h (QUIT) [SYNC_INPUT]: Check interrupt_input_pending as well.
1220
1221 * keyboard.c (handle_async_input): New fun,
1222 extracted from input_available_signal.
1223 (input_available_signal, reinvoke_input_signal): Use it.
1224
1225 2004-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
1226
1227 * buffer.c (buffer_defaults, buffer_local_symbols): Use DECL_ALIGN.
1228
1229 * lisp.h [USE_LSB_TAG]: Add definitions for Lisp_Object value
1230 manipulation macros for when tags are in the lower bits.
1231 (struct Lisp_Free) [USE_LSB_TAG]: Add padding.
1232 (DECL_ALIGN): New macro.
1233 (DEFUN): Use it.
1234
1235 * lisp.h [ENABLE_CHECKING]: Don't force union type.
1236
1237 * s/darwin.h (__attribute__): Remove outdated workaround.
1238
1239 * macterm.c (main) [USE_LSB_TAG]: Don't range check the ram.
1240
1241 * alloc.c (lisp_malloc, lisp_align_malloc) [USE_LSB_TAG]:
1242 Don't check range of malloc address.
1243 (pure_alloc) [USE_LSB_TAG]: Enforce alignment.
1244
1245 * process.c (wait_reading_process_input): Lisp_Object/int mixup.
1246
1247 * dired.c (Ffile_attributes): Lisp_Object/int mixup.
1248
1249 2004-01-19 Kenichi Handa <handa@m17n.org>
1250
1251 * fontset.c (fontset_font_pattern): Fix previous change.
1252
1253 2004-01-16 Miles Bader <miles@gnu.ai.mit.edu>
1254
1255 * xdisp.c (Voverflow_newline_into_fringe)
1256 (move_it_in_display_line_to, redisplay_internal)
1257 (update_window_fringes, redisplay_window, display_line, window):
1258 Add `#ifdef HAVE_WINDOW_SYSTEM' around fringe-drawing stuff, so
1259 that it compiles without a window-system.
1260 * dispnew.c (direct_output_for_insert, update_window): Likewise.
1261
1262 2004-01-16 Kim F. Storm <storm@cua.dk>
1263
1264 * buffer.h (struct buffer): New member indicate_buffer_boundaries.
1265
1266 * buffer.c (init_buffer_once): Set buffer_defaults and
1267 buffer_local_flags for indicate_buffer_boundaries.
1268 (syms_of_buffer): Defvar_per_buffer it, and defvar_lisp_nopro
1269 default- variable for it.
1270
1271 * dispextern.h (struct glyph_row): New members left_fringe_bitmap,
1272 right_fringe_bitmap, redraw_fringe_bitmaps_p for new fringe handling.
1273 New members exact_window_width_line_p and cursor_in_fringe_p for
1274 overflowing newlines into right fringe.
1275 New members indicate_bob_p, indicate_top_line_p, indicate_eob_p,
1276 and indicate_bottom_line_p for buffer boundaries and scrolling.
1277 (enum fringe_bitmap_type): Add UP_ARROW_BITMAP, DOWN_ARROW_BITMAP,
1278 FIRST_LINE_BITMAP, LAST_LINE_BITMAP, FILLED_BOX_CURSOR_BITMAP,
1279 HOLLOW_BOX_CURSOR_BITMAP, BAR_CURSOR_BITMAP, HBAR_CURSOR_BITMAP,
1280 and HOLLOW_SQUARE_BITMAP.
1281 (draw_fringe_bitmap, draw_window_fringes, update_window_fringes):
1282 Add prototypes.
1283
1284 * dispnew.c (row_equal_p, update_window_line): Compare fringe bitmaps
1285 instead of related indicator fields.
1286 Compare exact_window_width_line_p and cursor_in_mouse_face_p indicators.
1287 (direct_output_for_insert): Handle exact width lines like
1288 contined lines. Call update_window_fringes.
1289 (update_window): Call update_window_fringes.
1290 (scrolling_window): Don't skip desired rows with changed bitmaps.
1291 Check if fringe bitmaps changes when assigning scrolled rows.
1292
1293 * xdisp.c (Voverflow_newline_into_fringe): New variable.
1294 (IT_OVERFLOW_NEWLINE_INTO_FRINGE): New macro.
1295 (move_it_in_display_line_to): Overflow newline into fringe for
1296 rows that are exactly as wide as the window.
1297 (up_arrow_bits, down_arrow_bits, first_line_bits, last_line_bits)
1298 (filled_box_cursor_bits, hollow_box_cursor_bits, bar_cursor_bits)
1299 (hbar_cursor_bits, hollow_square_bits): New fringe bitmaps.
1300 (fringe_bitmaps): Add new bitmaps.
1301 (draw_fringe_bitmap): Make extern. Remove WHICH arg.
1302 Select proper bitmap for cursor in fringe when appropriate.
1303 Handle alignment of bitmap to top or bottom of row.
1304 (draw_row_fringe_bitmaps): Don't select bitmaps here; that is now
1305 done by update_window_fringes.
1306 (update_window_fringes, draw_window_fringes): New functions.
1307 (redisplay_internal): Call update_window_fringes in case only
1308 cursor row is updated.
1309 (redisplay_window): Call update_window_fringes.
1310 Explicitly call draw_window_fringes if redisplay was done using
1311 the current matrix or the overlay arrow is in the window.
1312 (try_window_reusing_current_matrix): Mark scrolled rows for
1313 fringe update (to update buffer-boundaries / scrolling icons).
1314 (find_last_unchanged_at_beg_row): Handle exact width lines line
1315 continued lines.
1316 (display_line): Overflow newline into fringe for rows that are
1317 exactly as wide as the window. Don't append space for newline
1318 in this case.
1319 (notice_overwritten_cursor): Explicitly clear cursor bitmap
1320 in fringe as if it had been overwritten.
1321 (erase_phys_cursor): Erase cursor bitmap in fringe.
1322 (syms_of_xdisp): Mark show-trailing-whitespace and
1323 void-text-area-pointer as user options.
1324 DEFVAR_LISP Voverflow_newline_into_fringe. Enable by default.
1325
1326 * xterm.c (x_update_window_end): Call draw_window_fringes.
1327 (x_after_update_window_line): Just set redraw_fringe_bitmaps_p
1328 in row instead of actually drawing fringe bitmaps.
1329 (x_draw_fringe_bitmap): Handle bottom aligned bitmaps.
1330 (x_draw_window_cursor): Draw cursor in fringe.
1331
1332 * w32term.c (x_update_window_end): Call draw_window_fringes.
1333 (x_after_update_window_line): Just set redraw_fringe_bitmaps_p
1334 in row instead of actually drawing fringe bitmaps.
1335 (w32_draw_fringe_bitmap): Handle bottom aligned bitmaps.
1336 (w32_draw_window_cursor): Draw cursor in fringe.
1337
1338 * macterm.c (x_update_window_end): Call draw_window_fringes.
1339 (x_after_update_window_line): Just set redraw_fringe_bitmaps_p
1340 in row instead of actually drawing fringe bitmaps.
1341 (x_draw_fringe_bitmap): Handle bottom aligned bitmaps.
1342 (mac_draw_window_cursor): Draw cursor in fringe.
1343
1344 2004-01-16 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1345
1346 * xterm.c (handle_one_xevent): Don't handle characters that are part
1347 of an old style (XLookupString) compose sequence.
1348
1349 2004-01-15 Kenichi Handa <handa@m17n.org>
1350
1351 * search.c (Freplace_match): Use make_multibyte_string or
1352 make_unibyte_string according to the buffer multibyteness.
1353
1354 2004-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
1355
1356 * alloc.c (struct interval_block, struct string_block)
1357 (struct symbol_block, struct marker_block, live_string_p)
1358 (live_cons_p, live_symbol_p, live_float_p, live_misc_p):
1359 Better preserve alignment for objects in blocks.
1360 (FLOAT_BLOCK_SIZE): Adjust for possible alignment padding.
1361
1362 * lread.c (defvar_per_buffer): Remove dead declaration.
1363
1364 * macterm.c (do_check_ram_size): Don't hardcode the lisp address
1365 space size.
1366
1367 2004-01-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1368
1369 * xmenu.c (popup_get_selection): Check new parameter down_on_keypress
1370 if a key press should pop down. Only pop down if a key is pressed
1371 outside the menu/dialog.
1372 (create_and_show_popup_menu): Pass 0 for down_on_keypress to
1373 popup_get_selection.
1374 (create_and_show_dialog): Pass 1 for down_on_keypress to
1375 popup_get_selection.
1376
1377 2004-01-11 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1378
1379 * alloc.c (allocate_vectorlike): Surround calls to mallopt with
1380 BLOCK/UNBLOCK_INPUT.
1381
1382 2004-01-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1383
1384 * xmenu.c (Fx_popup_dialog): Add an Ok button if no buttons are
1385 specified.
1386
1387 2004-01-08 Kenichi Handa <handa@m17n.org>
1388
1389 * editfns.c (Fformat): Fix '&' to '&&'.
1390
1391 2004-01-08 Andreas Schwab <schwab@suse.de>
1392
1393 * print.c (print_preprocess) <case Lisp_Vectorlike>: Only mask
1394 size if PSEUDOVECTOR_FLAG is set.
1395
1396 2004-01-07 Kenichi Handa <handa@m17n.org>
1397
1398 * charset.c (Fdeclare_equiv_charset): Fix docstring.
1399
1400 * fontset.c (fontset_ref_via_base): Fix previous change.
1401
1402 2004-01-07 Kim F. Storm <storm@cua.dk>
1403
1404 * process.c (read_process_output): Only activate adaptive
1405 buffering if we read less than 256 bytes at a time.
1406
1407 2004-01-06 Kim F. Storm <storm@cua.dk>
1408
1409 * dispnew.c (buffer_posn_from_coords): Return both buffer/string
1410 object and image object. Return glyph width and height.
1411 (mode_line_string, marginal_area_string): Ditto.
1412
1413 * dispextern.h (buffer_posn_from_coords, mode_line_string)
1414 (marginal_area_string): Fix prototypes.
1415
1416 * keyboard.h (POSN_POSN, POSN_SET_POSN): Rename macros from
1417 POSN_BUFFER_POSN and POSN_SET_BUFFER_POSN. All uses changed.
1418 (POSN_INBUFFER_P, POSN_BUFFER_POSN): New macros.
1419
1420 * keyboard.c (make_lispy_position): Use modified mode_line_string,
1421 buffer_posn_from_coords, and marginal_area_string functions to
1422 include both string object and image object in the lispy position.
1423 Also add actual glyph width and height to position.
1424 (read_key_sequence): Use real buffer position from mouse
1425 event to find keymap property even when click is in marginal area.
1426
1427 * xdisp.c (note_mode_line_or_margin_highlight): Use modified
1428 mode_line_string and marginal_area_string functions to handle
1429 both string object and image object properties.
1430
1431 2004-01-06 Andreas Schwab <schwab@suse.de>
1432
1433 * syntax.c (skip_chars): Treat '-' at end of string as ordinary
1434 character.
1435
1436 2004-01-02 Andreas Schwab <schwab@suse.de>
1437
1438 * macterm.c (emacs_options, x_initialized, same_x_server):
1439 Remove unused (and duplicated) definitions.
1440
1441 2004-01-02 Kim F. Storm <storm@cua.dk>
1442
1443 * process.h (struct Lisp_Process): New members for adaptive read
1444 buffering: adaptive_read_buffering, read_output_delay, and
1445 read_output_skip.
1446
1447 * process.c (ADAPTIVE_READ_BUFFERING): New conditional.
1448 (READ_OUTPUT_DELAY_INCREMENT, READ_OUTPUT_DELAY_MAX)
1449 (READ_OUTPUT_DELAY_MAX_MAX): New constants.
1450 (process_output_delay_count, process_output_skip): New vars.
1451 (Vprocess_adaptive_read_buffering): New variable.
1452 (make_process): Initialize adaptive read buffering members.
1453 (Fstart_process): Set adaptive_read_buffering member.
1454 (deactivate_process): Cleanup adaptive read buffering.
1455 (wait_reading_process_input): Temporarily omit delayed
1456 subprocesses from the set of file descriptors to read from;
1457 adjust the select timeout if we skipped any subprocesses.
1458 (read_process_output): Increase adaptive read buffering delay if
1459 we read less than a full buffer; reduce delay when we read a
1460 full buffer.
1461 (send_process): Simplify using local Lisp_Process var.
1462 Reset adaptive read buffering delay after write.
1463 (init_process): Initialize process_output_delay_count and
1464 process_output_skip.
1465 (syms_of_process): DEFVAR_LISP Vprocess_adaptive_read_buffering.
1466
1467 2004-01-01 Jason Rumney <jasonr@gnu.org>
1468
1469 * w32term.c (w32_text_out): Use s->font, for consistency with callers.
1470
1471 2003-12-30 Luc Teirlinck <teirllm@auburn.edu>
1472
1473 * print.c (Ferror_message_string): Add hyperlink in the docstring
1474 to the definition of `signal' in the Elisp manual.
1475 * eval.c (Fsignal): Ditto.
1476
1477 2003-12-29 James Clark <jjc@jclark.com> (tiny change)
1478
1479 * fns.c (internal_equal): Return t for two NaN arguments.
1480
1481 2003-12-29 Richard M. Stallman <rms@gnu.org>
1482
1483 * data.c (store_symval_forwarding): Handle setting
1484 default-fill-column, etc., by changing the value in
1485 buffers that use the default.
1486
1487 * minibuf.c (Fset_minibuffer_window): Doc fix.
1488
1489 * fileio.c (choose_write_coding_system): Ignore auto_saving
1490 if using the visited file for auto saves.
1491 (Fwrite_region): Don't update SAVE_MODIFF
1492 if auto-saving in visited file.
1493
1494 2003-12-29 Kenichi Handa <handa@m17n.org>
1495
1496 * dispextern.h (face_font_available_p): Extern it.
1497
1498 * fontset.c (Voverriding_fontspec_alist): New variable.
1499 (lookup_overriding_fontspec): New function.
1500 (fontset_ref_via_base): Call lookup_overriding_fontspec if necessary.
1501 (fontset_font_pattern): Likewise.
1502 (regulalize_fontname): New function.
1503 (Fset_fontset_font): Call regulalize_fontname.
1504 (Fset_overriding_fontspec_internal): New function.
1505 (syms_of_fontset): Initialize and staticpro Voverriding_fontspec_alist.
1506 Defsubr Sset_overriding_fontspec_internal.
1507
1508 * xfaces.c (face_font_available_p): New function.
1509
1510 2003-12-28 Richard M. Stallman <rms@gnu.org>
1511
1512 * buffer.c (Fother_buffer): Don't crash if BUF is nil
1513 or if its name is nil.
1514
1515 * buffer.c (Fkill_buffer): Don't delete auto-save file
1516 if it's the same as the visited file.
1517
1518 2003-12-28 Luc Teirlinck <teirllm@auburn.edu>
1519
1520 * coding.c (Fcheck_coding_system): Doc fix.
1521
1522 2003-12-28 Kim F. Storm <storm@cua.dk>
1523
1524 * Makefile.in (eval.o): Depend on dispextern.h.
1525
1526 * dispnew.c (buffer_posn_from_coords): Fix calculation of dy for
1527 image glyph using image's ascent.
1528 (mode_line_string): Return image glyph as object clicked on.
1529 Adjust y0 for image glyph using image's ascent.
1530
1531 * dispextern.h (FACE_ID_BITS, MAX_FACE_ID): New defines.
1532 (struct glyph): New members, ascent and descent. Used to save
1533 this glyph's ascent and descent, instead of having.
1534 (struct glyph): Declare member face_id using FACE_ID_BITS.
1535 (find_hot_spot): Add prototype.
1536
1537 * keyboard.c (Qimage): Remove extern (now in lisp.h).
1538 (QCmap): Declare extern.
1539 (make_lispy_position): When position is inside image hot-spot,
1540 use hot-spot element's id as posn element.
1541
1542 * lisp.h (IMAGEP): New macro to test for image object type.
1543 (Qimage): Declare extern.
1544
1545 * macfns.c (Qimage): Remove extern (now in lisp.h).
1546 (valid_image_p, parse_image_spec): Use IMAGEP macro.
1547
1548 * macterm.c (Qface, Qmouse_face): Remove unused externs.
1549
1550 * w32fns.c (Qimage): Remove extern (now in lisp.h).
1551 (valid_image_p, parse_image_spec): Use IMAGEP macro.
1552
1553 * w32menu.c (Qmouse_click, Qevent_kind): Remove unused externs.
1554
1555 * w32term.c (Qface, Qmouse_face): Remove unused externs.
1556
1557 * xdisp.c (Qarrow, Qhand, Qtext, Qpointer): New variables for
1558 pointer types.
1559 (Qrelative_width, Qalign_to): Remove unused variables.
1560 (Vvoid_text_area_pointer): Replace Vshow_text_cursor_in_void.
1561 (QCmap, QCpointer, Qrect, Qcircle, Qpoly): New variables for
1562 image maps.
1563 (x_y_to_hpos_vpos): Return glyph relative coordinates through
1564 new dx and dy args.
1565 Remove buffer_only_p arg (always 0). Simplify code accordingly.
1566 (get_glyph_string_clip_rect): Draw cursor using glyph's rather
1567 than row's ascent and height, to get sensible height on tall rows.
1568 (build_desired_tool_bar_string): Remove Qimage extern.
1569 (get_tool_bar_item): Fix call to x_y_to_hpos_vpos.
1570 (produce_image_glyph): Adjust it.ascent to minimum row ascent if
1571 image glyph is alone on the last line.
1572 (append_glyph, append_composite_glyph, produce_image_glyph)
1573 (append_stretch_glyph): Set glyph's ascent and descent.
1574 (on_hot_spot_p): New function to check if position is inside an
1575 rectangular, circular, or polygon-shaped image hot-spot,
1576 (find_hot_spot): New function to search for image hot-spot.
1577 (Flookup_image_map): New defun to search for image hot-spot.
1578 (define_frame_cursor1): New aux function to determine frame pointer.
1579 (note_mode_line_or_margin_highlight, note_mouse_highlight):
1580 Handle `pointer' text property and :pointer image property to
1581 control frame pointer shape. Detect image hot-spots for pointer
1582 and help_echo properties. Use define_frame_cursor1.
1583 (note_mouse_highlight): Use Vvoid_text_area_pointer.
1584 (syms_of_xdisp): Defsubr new defun. Intern and staticpro new variables.
1585 DEFVAR_LISP Vvoid_text_area_pointer instead of Vshow_text_cursor_in_void.
1586
1587 * xfaces.c (cache_face): Abort if c->size exceeds MAX_FACE_ID.
1588
1589 * xfns.c (x_set_mouse_color): Remove bogus x_check_errors call.
1590 (Qimage): Remove extern (now in lisp.h).
1591 (valid_image_p, parse_image_spec): Use IMAGEP macro.
1592
1593 * xmenu.c (show_help_event): Remove unused code.
1594
1595 * xterm.c (Qface, Qmouse_face): Remove unused externs.
1596 (x_draw_hollow_cursor): Draw cursor using glyph's rather than
1597 row's ascent and descent, to get a sensible height on tall rows.
1598
1599 2003-12-25 Luc Teirlinck <teirllm@auburn.edu>
1600
1601 * minibuf.c (Fcompleting_read): Undo previous change.
1602
1603 2003-12-25 Lars Hansen <larsh@math.ku.dk>
1604
1605 * dired.c (Fdirectory_files, Fdirectory_files_and_attributes):
1606 Arguments GCPRO'ed in call to file name handler.
1607
1608 2003-12-25 Thien-Thi Nguyen <ttn@gnu.org>
1609
1610 * termcap.c (tgetst1): Scan for "%pN"; if all
1611 N are continuous in [1,9], remove all "%pN".
1612
1613 2003-12-24 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1614
1615 * gtkutil.c (xg_frame_set_char_size): Call x_wm_set_size_hint.
1616
1617 * xfaces.c (lface_fully_specified_p): Take into account that
1618 MAC OS always have unspecified stipple.
1619
1620 2003-12-24 Thien-Thi Nguyen <ttn@gnu.org>
1621
1622 * tparam.c (tparam1): Add handling for `%pN', which
1623 means use param N for the next substitution.
1624
1625 2003-12-24 Thien-Thi Nguyen <ttn@gnu.org>
1626
1627 * xfaces.c (Fcolor_gray_p): Fix omission bug:
1628 In case `frame' is nil, consult the selected frame.
1629 (Fcolor_supported_p): Likewise.
1630
1631 2003-12-23 Luc Teirlinck <teirllm@auburn.edu>
1632
1633 * fns.c (Frandom, Fstring_make_multibyte, Fset_char_table_range):
1634 Doc fixes.
1635
1636 * minibuf.c (read_minibuf): Allow INITIAL to be a cons of a string
1637 and an integer. Adapt the introductory comment accordingly.
1638 (Fread_from_minibuffer): Delete code moved into read_minibuf.
1639 Doc fix.
1640 (Fread_minibuffer, Fread_no_blanks_input): Adapt to changes in
1641 read_minibuf.
1642 (Fcompleting_read): Delete code moved into read_minibuf.
1643 (Ftest_completion): Make it handle obarrays and hash tables correctly.
1644
1645 2003-12-03 Kenichi Handa <handa@m17n.org>
1646
1647 * coding.c (decode_coding_iso2022): Fix for preserving UTF-8
1648 encoding sequence.
1649
1650 2003-12-01 Kenichi Handa <handa@m17n.org>
1651
1652 * composite.c (syms_of_composite): Don't make the compostion hash
1653 table week.
1654
1655 2003-11-30 Luc Teirlinck <teirllm@auburn.edu>
1656
1657 * intervals.h: Add EXFUN for Fget_char_property_and_overlay.
1658 * textprop.c (Fget_char_property_and_overlay): New function.
1659 (syms_of_textprop): Defsubr it.
1660
1661 2003-11-29 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1662
1663 * dispnew.c (buffer_posn_from_coords): Add ifdef HAVE_WINDOW_SYSTEM
1664 to compile on terminal configuration.
1665
1666 * fileio.c (Fread_file_name): Check use_file_dialog also before
1667 calling Fx_file_dialog.
1668
1669 * fns.c: use_file_dialog: New variable.
1670 (syms_of_fns): DEFVAR_BOOL use-file-dialog.
1671
1672 2003-11-29 Kim F. Storm <storm@cua.dk>
1673
1674 * msdos.c (Qcursor_type, Qbar, Qhbar): Declare extern.
1675 (syms_of_msdos): Don't intern and staticpro them.
1676
1677 2003-11-27 Kim F. Storm <storm@cua.dk>
1678
1679 * dispnew.c (buffer_posn_from_coords): Calculate and return pixel
1680 coordinates relative to glyph at posn. If glyph is an image,
1681 return that as object at posn. Callers changed.
1682 (mode_line_string, marginal_area_string): Calculate and return
1683 pixel coordinates relative to glyph. Callers changed.
1684
1685 * dispextern.h (buffer_posn_from_coords, mode_line_string)
1686 (marginal_area_string): Fix prototypes.
1687 (window_box_left_offset, window_box_right_offset): Add prototypes.
1688
1689 * frame.h (get_specified_cursor_type, get_window_cursor_type):
1690 Remove prototypes.
1691
1692 * keyboard.h (EVENT_CLICK_COUNT, POSN_SCROLLBAR_PART): Fix defines.
1693
1694 * keyboard.c (make_lispy_position): Add x and y coordinates
1695 relative to the current glyph as 7th element of position.
1696 If glyph is an image, return it in the object element.
1697 (read_key_sequence): Skip checks for keymap property in cases
1698 where POSN_STRING is not a string (e.g. an image).
1699
1700 * xdisp.c (Vdisplay_pixels_per_inch): New variable.
1701 (Vshow_text_cursor_in_void): New variable.
1702 (glyph_to_pixel_coords): Don't use negative hpos.
1703 (x_y_to_hpos_vpos): Fix for partially visible first glyph.
1704 (append_stretch_glyph): Change ascent arg to be actual value
1705 in pixels rather than ratio to height. Callers changed.
1706 (calc_pixel_width_or_height): New aux function, implementing
1707 pixel based artihmetic for glyph widths and heights.
1708 (produce_stretch_glyph): Use calc_pixel_width_or_height for
1709 :width, :height, :align-to, and :ascent, thus allowing these to
1710 be specified in pixels as well as multiples of characters.
1711 Don't produce stretch glyphs with zero width or height.
1712 (get_specified_cursor_type): Declare static.
1713 (get_window_cursor_type): Declare static. Add glyph arg to be
1714 able to know when cursor is on an image; always substitute
1715 hollow-box cursor for filled-box cursor on images, to avoid
1716 negative images and flicker when blinking the cursor.
1717 (display_and_set_cursor): Pass glyph to get_window_cursor_type.
1718 (note_mode_line_or_margin_highlight): Use non-text cursor rather
1719 than vertical scroll-bar cursor in display margins.
1720 (note_mouse_highlight): Use non-text cursor rather than text
1721 cursor in fringes and over images in the text area.
1722 Use non-text cursor when mouse pointer is outside editable text,
1723 i.e. in the void after end-of-line or end-of-buffer; this was
1724 already done for W32, but is now standard for all systems --
1725 user can toggle show-text-cursor-in-void to get old behaviour.
1726 (syms_of_xdisp): DEFVAR_LISP Vshow_text_cursor_in_void and
1727 Vdisplay_pixels_per_inch.
1728
1729 2003-11-25 Andreas Schwab <schwab@suse.de>
1730
1731 * fns.c (internal_equal) <case Lisp_Vectorlike>: Declare size as
1732 EMACS_INT to not lose bits.
1733 (Ffillarray): Don't set bits beyond the size of a bool vector.
1734
1735 2003-11-25 Kim F. Storm <storm@cua.dk>
1736
1737 * print.c (Fredirect_debugging_output) [!GNU_LINUX]: Do not
1738 define this defun on systems that cannot use stderr as lvalue.
1739
1740 2003-11-24 Gerd Moellmann <gerd@gnu.org>
1741
1742 * s/freebsd.h (LD_SWITCH_SYSTEM_TEMACS)
1743 [__FreeBSD_version >= 500042]: Define as -znocombreloc because
1744 ld's default is incompatible with unexec.
1745
1746 2003-11-23 Kim F. Storm <storm@cua.dk>
1747
1748 * window.c (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
1749 (window_loop): Handle REDISPLAY_BUFFER_WINDOWS.
1750 (Fforce_window_update): New defun.
1751 (syms_of_window): Defsubr it.
1752 (Fset_window_margins, Fset_window_fringes): Doc fix.
1753
1754 * print.c (Fredirect_debugging_output): New defun.
1755 (syms_of_print): Defsubr it.
1756
1757 2003-11-22 Luc Teirlinck <teirllm@auburn.edu>
1758
1759 * fns.c (Fset_char_table_parent): Doc fix.
1760
1761 2003-11-22 Kim F. Storm <storm@cua.dk>
1762
1763 * dispnew.c (buffer_posn_from_coords): Return actual row/column
1764 for glyph clicked on, rather than (unused) pixel positions.
1765 (mode_line_string, marginal_area_string): Change X and Y args to
1766 pointers for returning actual row/column for glyph clicked on.
1767 Simplify and optimize loops.
1768
1769 * dispextern.h (mode_line_string, marginal_area_string):
1770 Update prototypes.
1771
1772 * keyboard.c (make_lispy_position): New function for generating
1773 mouse click positions from frame and pixel coordinates.
1774 Enhanced to return buffer position and actual row/column for
1775 events outside the text area using updated mode_line_string and
1776 marginal_area_string functions.
1777 Return left-fringe and right-fringe clicks as such, rather than
1778 clicks in text area.
1779 (make_lispy_event) [USE_X_TOOLKIT, USE_GTK]: Don't call
1780 pixel_to_glyph_coords, as we never use the results.
1781 (make_lispy_event): Use make_lispy_position for MOUSE_CLICK_EVENT,
1782 WHEEL_EVENT, and DRAG_N_DROP_EVENT to replace redundant code.
1783 Eliminate unused code in WHEEL_EVENT handling.
1784 (make_lispy_movement): Use make_lispy_position.
1785
1786 * window.c (coordinates_in_window): Remove redundant tests.
1787 Fix returned X pixel value for left-margin.
1788
1789 * xdisp.c (note_mode_line_or_margin_highlight): Adapt to new
1790 mode_line_string and marginal_area_string parameters.
1791
1792 2003-11-22 Lars Hansen <larsh@math.ku.dk>
1793
1794 * w32.c (struct the_group, getgrgid): Add.
1795 * mac.c (struct my_group, getgrgid): Add.
1796
1797 2003-11-21 Luc Teirlinck <teirllm@auburn.edu>
1798
1799 * fns.c (Fassq, Fassoc, Frassq, Frassoc): Doc fixes.
1800
1801 2003-11-21 Lars Hansen <larsh@math.ku.dk>
1802
1803 * dired.c (Ffile_attributes): Add parameter ID-FORMAT and
1804 include in call to file name handler. Optionally translate numeric
1805 UID and GID to strings. Update docstring.
1806 (directory_files_internal): Add parameter ID-FORMAT.
1807 (Fdirectory_files_and_attributes): Add parameter ID-FORMAT and
1808 include in call to file name handler and call to
1809 directory_files_internal. Update Docstring.
1810 (Fdirectory_files): Add dummy parameter in call to
1811 directory_files_internal.
1812 * lisp.h (Qinteger): Add.
1813 (Qinteger_or_floatp, Qinteger_or_float_or_marker_p): Remove.
1814 (Ffile_attributes): Add parameter.
1815 * data.c (Qinteger): Export.
1816
1817 2003-11-21 Luc Teirlinck <teirllm@auburn.edu>
1818
1819 * fns.c (Freverse, Fnreverse): Doc fixes.
1820
1821 2003-11-19 Kim F. Storm <storm@cua.dk>
1822
1823 * xdisp.c (init_iterator): Initialize it->start to position
1824 before reseating (in case start position is invisible).
1825 (init_to_row_start): Set it->start to row-start.
1826 (redisplay_window): Accept optional_new_start if start position
1827 is invisible (in which case IT_CHARPOS overshoots PT).
1828 (display_line): Setup row->start from it->start (rather than
1829 it->current which is wrong if first char on line is invisible).
1830 When done, reseat it->start to it->current (= start of next row).
1831 (expose_area): Fix exposure of text area when first char (e.g. TAB)
1832 is only partially visible.
1833
1834 * dispextern.h (struct it): New member start.
1835
1836 2003-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
1837
1838 * alloc.c (make_float, Fcons): Clear the markbit at init time.
1839 (make_float, Fcons, Fmake_symbol, allocate_misc): Move the increment
1840 of block_index outside of the macro call.
1841 (Fgarbage_collect): Remove null code.
1842
1843 * m/amdx86-64.h: Don't redefine XPNTR.
1844
1845 * keyboard.c (parse_modifiers, apply_modifiers): Use INTMASK instead
1846 of VALMASK.
1847
1848 * fns.c (hashfn_eq, hashfn_eql, hashfn_equal, hash_put)
1849 (sxhash_string, sxhash): Use INTMASK instead of VALMASK.
1850 (maybe_resize_hash_table): Use MOST_POSITIVE_FIXNUM.
1851
1852 * lisp.h (VALMASK): Only define for non-union type.
1853 (MARKBIT): Remove.
1854 (ARRAY_MARK_FLAG): Use previous value of MARKBIT.
1855 (XTYPE): Define unconditionally.
1856 (XSETTYPE): Remove one more remnant.
1857 (EQ): Define differently for the union and non-union cases.
1858 (INTMASK): New bit mask.
1859 (struct Lisp_Marker): Move down to prepare for upcoming patch.
1860 (GC_EQ): Delegate to EQ.
1861
1862 * coding.c (coding_restore_composition): Lisp_Object/int mixup.
1863
1864 2003-11-17 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1865
1866 * xterm.c (x_window_to_scroll_bar): Move check of display to
1867 where window_id is compared.
1868
1869 2003-11-17 Kim F. Storm <storm@cua.dk>
1870
1871 * dispextern.h (struct it): New member first_vpos.
1872
1873 * xdisp.c (start_display): Set it->first_vpos.
1874 (try_window_id): Use first_vpos to start display in first _text_
1875 line if no reusable lines at start of window with header line.
1876
1877 2003-11-16 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1878
1879 * w32fns.c (XPutPixel):
1880 * w32bdf.c (w32_init_bdf_font):
1881 * sunfns.c (sel_read):
1882 * process.c (Fmake_network_process):
1883 * frame.c (store_frame_param):
1884 * fontset.c (Fset_fontset_font):
1885 * emacs.c (shut_down_emacs):
1886 * ccl.c (ccl_driver): Remove period at end of error message.
1887
1888 * config.in: Regenerate.
1889
1890 * xfns.c (x_window_to_frame, x_any_window_to_frame)
1891 (x_non_menubar_window_to_frame, x_menubar_window_to_frame)
1892 (x_top_window_to_frame): Add Display* argument to xg_win_to_widget.
1893 (x_create_bitmap_mask, xg_set_icon, create_frame_xic)
1894 (xic_set_statusarea, x_window, gif_load): Formatting adjustments.
1895
1896 * xterm.h (struct x_display_info): New field xg_cursor for GTK.
1897
1898 * xterm.c: Add Display * to x_window_to_scroll_bar declaration.
1899 (XTmouse_position, handle_one_xevent): Pass Display* to
1900 x_window_to_scroll_bar.
1901 (x_window_to_scroll_bar): Take a Display* argument.
1902 Check that display for frame is equal to Display* argument.
1903 (event_handler_gdk): Remove current_dpyinfo. Get dpyinfo from
1904 x_display_info_for_display instead. Use Display in xev instead
1905 of GDK_DISPLAY.
1906 (x_dispatch_event): Call x_display_info_for_display.
1907 (XTread_socket): Move GTK part out of loop. current_dpyinfo removed.
1908 (x_connection_closed): Call xg_display_close for GTK.
1909 (x_term_init): Call xg_display_open for additional displays.
1910 Initiate dpyinfo->xg_cursor with call to xg_create_default_cursor
1911 for GTK.
1912
1913 * xmenu.c (single_menu_item, mouse_position_for_popup)
1914 (x_activate_menubar): Formatting adjustments.
1915
1916 * xdisp.c (update_tool_bar, redisplay_tool_bar): Formatting
1917 adjustments.
1918
1919 * gtkutil.c (xg_get_gdk_display, xg_set_screen, xg_display_open)
1920 (xg_display_close, xg_create_default_cursor)
1921 (xg_get_gdk_pixmap_and_mask): New functions for multiple display
1922 handling.
1923 (xg_left_ptr_cursor): Remove.
1924 (xg_set_cursor): Change cursor to GdkCursor*. Do not create
1925 cursor here.
1926 (xg_win_to_widget): Take Display* argument, call
1927 gdk_xid_table_lookup_for_display.
1928 (xg_create_frame_widgets, xg_get_file_name, create_menus)
1929 (xg_create_widget, xg_modify_menubar_widgets): Call xg_set_screen.
1930 (xg_create_widget, xg_create_scroll_bar): Use xg_cursor
1931 in FRAME_X_DISPLAY_INFO.
1932 (xg_get_scroll_id_for_window): Take Display* argument.
1933 (update_frame_tool_bar): Call xg_get_gdk_pixmap_and_mask.
1934 (xg_initialize): Remove xg_left_ptr_cursor.
1935
1936 * gtkutil.h: xg_get_scroll_id_for_window, xg_win_to_widget takes
1937 Display* argument also. Declare xg_display_open,
1938 xg_display_close, xg_create_default_cursor.
1939
1940 2003-11-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1941
1942 * xterm.c (x_detect_focus_change): Do not change focus frame for
1943 Enter/LeaveNotify if the current focus frame has explicit focus.
1944
1945 2003-11-14 Kim F. Storm <storm@cua.dk>
1946
1947 * dispnew.c (update_text_area): Fix redisplay error when hscroll
1948 is active and first glyph is only partially visible.
1949
1950 2003-11-13 Kenichi Handa <handa@m17n.org>
1951
1952 * xdisp.c (select_frame_for_redisplay): New function.
1953 (redisplay_internal): Record also selected_frame for
1954 unwind_redisplay. Call select_frame_for_redisplay before
1955 redrawing each frame.
1956 (unwind_redisplay): Argument changed to a cons.
1957
1958 2003-11-12 Luc Teirlinck <teirllm@auburn.edu>
1959
1960 * fns.c (Fstring_to_multibyte): Doc fix.
1961
1962 2003-11-11 Kenichi Handa <handa@m17n.org>
1963
1964 * xterm.c (x_list_fonts): Fix excluding of auto-scaled fonts.
1965
1966 2003-11-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1967
1968 * xfns.c (x_window): Set XtNx and XtNy in shell widget for
1969 program specified positions.
1970
1971 2003-11-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1972
1973 * xterm.c (XAW_ARROW_SCROLLBARS): Define it for Xaw 1.5E.
1974
1975 2003-11-08 Kenichi Handa <handa@m17n.org>
1976
1977 * Makefile.in (lisp): Add kannada.el.
1978 (shortlisp): Likewise.
1979
1980 2003-11-07 Kenichi Handa <handa@m17n.org>
1981
1982 * coding.c (coding_allocate_composition_data):
1983 Reset coding->composing to COMPOSITION_NO.
1984 (coding_restore_composition): Detect invalid composition data.
1985 Give Fstring and Fvector a Lispy integer, not C int.
1986
1987 2003-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
1988
1989 * floatfns.c (Flogb): Don't use VALMASK.
1990
1991 * m/amdx86-64.h (VALBITS, XINT, XUINT): Remove.
1992 * m/ia64.h (VALBITS, XINT, XUINT): Remove.
1993
1994 * lisp.h (XINT): Move the cast to clarify what is going on.
1995 (GCTYPEMASK, XSETTYPE): Remove.
1996 (XGCTYPE): Make it an alias of XTYPE.
1997
1998 2003-11-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1999
2000 * xterm.c (x_term_init): Fix formatting.
2001
2002 2003-11-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2003
2004 * gtkutil.h: Declare xg_have_tear_offs, remove xg_keep_popup
2005 and xg_did_tearoff.
2006
2007 * gtkutil.c: Remove variable xg_did_tearoff.
2008 (xg_have_tear_offs): New function.
2009 (tearoff_remove): Just decrease xg_detached_menus.
2010 (tearoff_activate): Increase xg_detached_menus and call
2011 tearoff_remove when tearoff is removed.
2012 (xg_keep_popup): Remove function.
2013 (create_menus): Give add_tearoff_p as argument to recursive
2014 call to create_menus.
2015 (xg_create_widget): Use variables instead of multiple
2016 strcmp. Tell create_menus to create tear off only for
2017 menu bar menus.
2018 (xg_update_menubar): Change title for a detached menu also.
2019 (xg_modify_menubar_widgets): Always call xg_update_menubar, regardless
2020 of deep_p.
2021 (xg_initialize): Initialize xg_detached_menus, remove
2022 initialization of xg_did_tearoff.
2023
2024 * xmenu.c (set_frame_menubar): For GTK, set deep_p if
2025 xg_have_tear_offs returns non-zero.
2026 (create_and_show_popup_menu): Remove setting of xg_did_tearoff and
2027 call to xg_keep_popup.
2028
2029 2003-11-01 Andrew Choi <akochoi@shaw.ca>
2030
2031 * macterm.c (XTread_socket): Handle menubar selection and grow
2032 window only for mouseDown events.
2033
2034 2003-10-31 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2035
2036 * xterm.c (x_term_init): For GTK part, increase x_initialized
2037 to check for more than one display. Use error instead of return 0.
2038
2039 2003-10-31 Andrew Choi <akochoi@shaw.ca>
2040
2041 * unexmacosx.c (unrelocate): New function (contributed by Nozomu Ando).
2042 (copy_dysymtab): Call it.
2043
2044 2003-10-31 Luc Teirlinck <teirllm@auburn.edu>
2045
2046 * eval.c (Fdefvaralias): Doc fix.
2047
2048 2003-10-26 Luc Teirlinck <teirllm@auburn.edu>
2049
2050 * data.c (Fsetplist): Doc fix.
2051
2052 2003-10-14 Lute Kamstra <lute@gnu.org>
2053
2054 * window.c (Fset_window_fringes): Clarify docstring.
2055
2056 2003-10-14 Kim F. Storm <storm@cua.dk>
2057
2058 * window.c (Fset_window_margins): Simplify arg checking.
2059
2060 2003-10-13 Richard M. Stallman <rms@gnu.org>
2061
2062 * regex.c (MAX_BUF_SIZE): Reduce to 2**15.
2063 (print_partial_compiled_pattern): Replace assert with a printout.
2064 (skip_noops, mutually_exclusive_p): Change args, values to re_char *.
2065
2066 * alloc.c (lisp_align_malloc): If BASE is 0, call memory_full.
2067
2068 * window.c (Fset_window_margins): Allow only integers as args.
2069 (syms_of_window) <special-display-buffer-names, special-display-regexps>:
2070 Doc fixes.
2071
2072 2003-10-13 Lute Kamstra <lute@gnu.org>
2073
2074 * window.c (Fset_window_fringes): Elaborate docstring.
2075
2076 2003-10-12 Andrew Choi <akochoi@shaw.ca>
2077
2078 * macterm.c (XTread_socket): Call DragWindow only for mouseDown events.
2079
2080 * s/darwin.h (GC_MARK_STACK): Define.
2081
2082 2003-10-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2083
2084 * window.c (shrink_windows): New function.
2085 (size_window): Call shrink_windows to calculate window sizes when
2086 shrinking frame with more than one window.
2087
2088 2003-10-12 Kim F. Storm <storm@cua.dk>
2089
2090 * xdisp.c (compute_fringe_widths): Doc fix.
2091
2092 2003-10-08 Kenichi Handa <handa@m17n.org>
2093
2094 * coding.c (Fcoding_system_p): Return t for auto-loading coding system.
2095
2096 2003-10-07 Kenichi Handa <handa@m17n.org>
2097
2098 * coding.c (Qcoding_system_define_form): New variable.
2099 (syms_of_coding): Intern and staticpro it.
2100 (Fcheck_coding_system): Try to autoload the definition of
2101 CODING-SYSTEM.
2102
2103 2003-10-05 Luc Teirlinck <teirllm@auburn.edu>
2104
2105 * fns.c (Frequire): Doc fix.
2106
2107 2003-10-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2108
2109 * xfns.c (Fx_send_client_event): New function as a base for
2110 manipulating extended window manager hints.
2111 (Fx_send_client_event): Remove unused variable s.
2112
2113 * w32term.c (w32_read_socket): Remove call to x_check_fullscreen_move,
2114 that function is removed.
2115
2116 * xterm.c (x_set_offset): Use move_offset_left/top instead of
2117 x/y_pixels_outer_diff.
2118 (x_check_expected_move): Calculate move_offset_left/top.
2119
2120 * xterm.h (struct x_output): New members: move_offset_top/left.
2121
2122 * frame.c (x_set_frame_parameters): Remove x_fullscreen_move,
2123 call x_set_offset directly.
2124
2125 * frame.h (enum): FULLSCREEN_MOVE_WAIT removed.
2126
2127 * frame.c (Fdelete_frame): Free decode_mode_spec_buffer.
2128
2129 * xterm.c (x_delete_display): Free font names and font_encoder
2130 in dpyinfo->font_table.
2131
2132 * xfns.c (Fx_close_connection): Only call XFreeFont here.
2133 Move xfree of font names to x_delete_display.
2134
2135 * xterm.h (struct x_display_info): New member, wm_type.
2136 (struct x_output): New members, expected_top/left and
2137 check_expected_move.
2138
2139 * xterm.c (handle_one_xevent): Reset wm_type when ReparentNotify
2140 is received.
2141 (handle_one_xevent): Rename x_check_expected_move from
2142 x_check_fullscreen_move.
2143 (x_set_offset): Only add WM decoration sizes to modified_top/left
2144 for X_WMTYPE_A. Set check_expected_move when WM type is unknown.
2145 (x_check_expected_move): Rename from x_check_fullscreen_move.
2146 Removed fullscreen specific code. Use check_expected_move,
2147 expected_left/top instead. Also, set wm_type.
2148 (x_term_init): Initialize wm_type to unknown.
2149
2150 * frame.c (x_fullscreen_move): Remove addition of WM decoration
2151 sizes to move_x/y.
2152
2153 2003-10-03 Kenichi Handa <handa@m17n.org>
2154
2155 * macterm.c (x_load_font): Clear all members of FONTP before start
2156 filling them.
2157
2158 2003-10-02 Kenichi Handa <handa@m17n.org>
2159
2160 * fontset.c (fs_load_font): Don't set fontp->font_encoder to NULL
2161 before calling find_ccl_program_func. Call find_ccl_program_func
2162 only when fontp->font_encoder is not NULL.
2163
2164 * xterm.c (x_load_font): Clear all members of FONTP before start
2165 filling them.
2166
2167 2003-10-03 John Paul Wallington <jpw@gnu.org>
2168
2169 * keymap.c (map_keymap): Don't abort when binding is a vector.
2170
2171 2003-10-02 Jason Rumney <jasonr@gnu.org>
2172
2173 * makefile.w32-in (emacs.o, coding.o, bytecode.o):
2174 Sync dependencies with Makefile.in.
2175 (alloca.o): Remove.
2176
2177 * w32fns.c (w32_load_system_font): Clear all members of FONTP before
2178 filling them.
2179
2180 * w32bdf.c (w32_load_bdf_font): Likewise.
2181
2182 2003-09-30 Richard M. Stallman <rms@gnu.org>
2183
2184 * term.c (set_tty_color_mode): Calculate current_mode_spec
2185 regardless of value of VAL.
2186
2187 * intervals.c (graft_intervals_into_buffer):
2188 Set BUF_INTERVALS (buffer)->up_obj when appropriate.
2189 Handle over_used when splitting UNDER.
2190
2191 2003-09-30 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2192
2193 * regex.c (regex_compile): Free the stack when returning from function.
2194
2195 2003-09-28 Kenichi Handa <handa@m17n.org>
2196
2197 * fontset.c (Finternal_char_font): Change return value to
2198 cons (FONT-NAME . GLYPH-CODE).
2199
2200 2003-09-28 Eli Zaretskii <eliz@elta.co.il>
2201
2202 * term.c (tty_setup_colors): Treat any negative argument as -1.
2203
2204 2003-09-27 Gaute B Strokkenes <biggaute@uwc.net> (tiny change)
2205
2206 * process.c (send_process): Delete unused temp_buf.
2207
2208 2003-09-26 Dave Love <fx@gnu.org>
2209
2210 * xterm.c (x_bitmap_mask): Declare.
2211
2212 2003-09-25 Dave Love <fx@gnu.org>
2213
2214 * Makefile.in (fns.o): Depend on md5.h.
2215
2216 2003-09-25 Kim F. Storm <storm@cua.dk>
2217
2218 * window.c (set_window_buffer): Fix redisplay problems when
2219 switching between buffers with different display margin widths.
2220
2221 2003-09-23 Kim F. Storm <storm@cua.dk>
2222
2223 * process.c (set_socket_option): Fix :bindtodevice option.
2224 (Fset_network_process_option): Update process contact list when
2225 setting option succeeds.
2226 (Fmake_network_process): Doc fix.
2227
2228 2003-09-23 Dave Love <fx@gnu.org>
2229
2230 * process.c (Fnetwork_interface_info): Use HAVE_STRUCT_IFREQ... macros.
2231
2232 2003-09-22 Eli Zaretskii <eliz@elta.co.il>
2233
2234 * term.c (set_tty_color_mode): Use INTEGERP to test whether a
2235 color mode is an integer number (it could be -1).
2236
2237 2003-09-22 Richard M. Stallman <rms@gnu.org>
2238
2239 * intervals.c (graft_intervals_into_buffer): Correct the main loop
2240 in the case where OVER is longer than UNDER.
2241
2242 2003-09-22 Masatake YAMATO <jet@gyve.org>
2243
2244 * window.c (Fset_window_scroll_bars): Validate the value of
2245 `vertical_type'.
2246
2247 2003-09-21 Kim F. Storm <storm@cua.dk>
2248
2249 * frame.c (Vdefault_frame_scroll_bars): New variable.
2250 (x_set_vertical_scroll_bars): Use it instead of hardcoded values.
2251 (syms_of_frame): DEFVAR_LISP it, and initialize according to
2252 window-system default scroll bar position.
2253
2254 * window.c (Fwindow_scroll_bars): Doc fix.
2255
2256 2003-09-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2257
2258 * xterm.c (x_set_offset): Take window manager decorations into account.
2259
2260 2003-09-19 Richard M. Stallman <rms@gnu.org>
2261
2262 * atimer.h: Don't include lisp.h.
2263 (P_): Define it here (as well as elsewhere).
2264
2265 * print.c (Fprin1_to_string): Move the PRINTPREPARE
2266 later, so that PRINTFINISH won't unbind Qinhibit_modification_hooks.
2267
2268 * data.c (Fvariable_binding_locus): New function.
2269 (syms_of_data): defsubr it.
2270 (Flocal_variable_p): Delete duplicate call to indirect_variable.
2271
2272 2003-09-18 Dave Love <fx@gnu.org>
2273
2274 * alloc.c (GC_MALLOC_CHECK): Move conditional undef after lisp.h.
2275
2276 * process.c (Fnetwork_interface_info): Fix type error.
2277 (Fnetwork_interface_list): Doc fix.
2278 (read_process_output, read_process_output): Delete unused var.
2279
2280 2003-09-17 Kim F. Storm <storm@cua.dk>
2281
2282 * process.c (Fnetwork_interface_list, Fnetwork_interface_info):
2283 Require HAVE_NET_IF_H and HAVE_SYS_IOCTL_H to include these fns.
2284 (Fnetwork_interface_info): Check that ifreq struct has required
2285 fields before accessing them; this requires that those fields are
2286 defined as macros, which may be too restrictive on some platforms,
2287 but it is better than failing on other platforms.
2288 (syms_of_process): Only defsubr above fns when included.
2289
2290 2003-09-17 Dave Love <fx@gnu.org>
2291
2292 * unexalpha.c: Don't include varargs.h.
2293
2294 2003-09-17 Kim F. Storm <storm@cua.dk>
2295
2296 * process.c (Fset_process_sentinel): Add sentinel to childp plist
2297 for network process.
2298 (socket_options): Add `:' prefix to option names. Add optbit field.
2299 (set_socket_option): Remove no_error arg and special handling of s < 0.
2300 Return 1<<optbit for known option, 0 for unknown.
2301 Do not interpret 0 as false for boolean option (only nil).
2302 Pass failed option and value to report_file_error.
2303 (Fset_network_process_options): Replace by Fset_network_process_option.
2304 (Fset_network_process_option): New function to set just one option.
2305 (Fmake_network_process): Allow :coding arg to be a cons.
2306 Allow :server arg to be an integer specifying backlog size.
2307 Remove :options arg, and allow options to be specified directly
2308 as :KEY, VALUE pairs. Parse these options before binding socket.
2309 As before, :reuseaddr t is default for a server process, but this
2310 can now be disabled by specifying :reuseaddr nil.
2311 (Fnetwork_interface_info): Rename from Fget_network_interface_info.
2312 (init_process): Availability of network options is now checked with
2313 simpler syntax (featurep 'make-network-process :OPTION); use loop to
2314 setup features.
2315 (syms_of_process): Fix defsubr's for the replaced functions.
2316
2317 2003-09-16 Dave Love <fx@gnu.org>
2318
2319 * Makefile.in: Depend on coding.h.
2320
2321 2003-09-14 Kim F. Storm <storm@cua.dk>
2322
2323 * process.c [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
2324 (Fnetwork_interface_list, Fget_network_interface_info): New defuns.
2325 (syms_of_process): Defsubr them.
2326
2327 * config.in: Regenerate.
2328
2329 2003-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
2330
2331 * m/sr2k.h (XMARKBIT, XUNMARK): Remove.
2332 * m/news-r6.h (XUNMARK): Remove.
2333 * m/mips.h (XUNMARK): Remove.
2334 * m/mips-siemens.h (XUNMARK): Remove.
2335 * m/iris4d.h (XUNMARK): Remove.
2336 * m/hp800.h (XMARKBIT, XUNMARK): Remove.
2337
2338 2003-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
2339
2340 * lisp.h (VALBITS): Don't remove 1 for the markbit.
2341 (union Lisp_Object): Use unsigned int for types. Remove markbit.
2342 (MARKBIT): Remove 1 from VALBITS so we still use same old val.
2343 (XTYPE): Use unsigned right-shift.
2344 (XMARKBIT, XMARK, XUNMARK): Remove.
2345
2346 * alloc.c (init_intervals, init_symbol, init_marker):
2347 Don't preallocate anything.
2348 (Fgarbage_collect, mark_object): Ignore the markbit.
2349
2350 * bytecode.c (mark_byte_stack, unmark_byte_stack): Ignore the markbit.
2351
2352 2003-09-08 Lute Kamstra <lute@gnu.org>
2353
2354 * xdisp.c (pint2hrstr): New function.
2355 (decode_mode_spec): Add `%i' and `%I' specs.
2356 * buffer.c (syms_of_buffer): Document `%i' and `%I' constructs
2357 for `mode-line-format'.
2358
2359 2003-09-07 Andreas Schwab <schwab@suse.de>
2360
2361 * alloc.c: Use long instead of int when casting ABLOCKS_BUSY to
2362 avoid warning.
2363
2364 2003-09-07 Eli Zaretskii <eliz@elta.co.il>
2365
2366 * editfns.c (region_limit): Support any non-zero value of BEGINNINGP.
2367
2368 2003-09-03 Kim F. Storm <storm@cua.dk>
2369
2370 * xdisp.c (get_window_cursor_type): Partially undo 2002-03-01
2371 change (superseded by 2002-08-30 change); the default blink-off
2372 cursor is now again "no cursor".
2373
2374 2003-09-01 Jason Rumney <jasonr@gnu.org>
2375
2376 * makefile.w32-in (alloca.o): Remove.
2377 (coding.o): Depend on intervals.h
2378 (emacs.o, bytecode.o): Depend on window.h
2379
2380 2003-09-01 Dave Love <fx@gnu.org>
2381
2382 * Makefile.in (alloca.o): Remove commands.
2383 (coding.o): Depend on intervals.h composite.h window.h.
2384 (emacs.o): Depend on window.h keyboard.h keymap.h.
2385 (gtkutil.o): Depend on keyboard.h charset.h coding.h.
2386 (bytecode.o): Depend on window.h.
2387
2388 2003-08-31 Jason Rumney <jasonr@gnu.org>
2389
2390 * w32term.c (w32_per_char_metric): Allow cached metrics to be
2391 returned even when font_type is unknown.
2392
2393 * xdisp.c (init_iterator): Remove old WINDOWSNT conditional.
2394
2395 2003-08-30 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2396
2397 * xterm.c (x_term_init): Initialize new fields in x_display_info.
2398
2399 * xterm.h (struct x_display_info): Add red/green/blue_bits and
2400 *_offset.
2401
2402 * xfns.c (lookup_rgb_color): Use new fields in x_display_info to
2403 calculate pixel value.
2404
2405 2003-08-29 Gerd Moellmann <gerd.moellmann@t-online.de>
2406
2407 * xdisp.c (redisplay_internal): Fix change of 2003-04-30.
2408 Don't tell redisplay display is accurate when it's actually been
2409 paused for pending input.
2410
2411 2003-08-29 Richard M. Stallman <rms@gnu.org>
2412
2413 * dispnew.c (adjust_glyph_matrix): Call window_box
2414 whenever W is nonzero.
2415
2416 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
2417 (Fkill_local_variable, Fmake_variable_frame_local)
2418 (Flocal_variable_p, Flocal_variable_if_set_p):
2419 Use indirect_variable to trace thru variable aliases.
2420
2421 * config.in: Updated.
2422
2423 * callint.c (Fcall_interactively): Save and restore
2424 Vthis_command, Vthis_original_command, real_this_command,
2425 and current_kboard->Vlast_command.
2426
2427 * abbrev.c (Fexpand_abbrev): Insert before deleting.
2428
2429 2003-08-29 Gerd Moellmann <gerd@gnu.org>
2430
2431 * xfns.c (lookup_rgb_color): Handle TrueColor visuals specially.
2432
2433 2003-08-28 David Abrahams <dave@boost-consulting.com> (tiny change)
2434
2435 * coding.c (decode_coding_iso2022): Initialize local variable c2.
2436 (decode_coding_sjis_big5): Likewise.
2437
2438 2003-08-27 Jason Rumney <jasonr@gnu.org>
2439
2440 * w32.c (sys_pipe): Protect against file descriptor overflow.
2441
2442 * w32fns.c (syms_of_w32fns): Remove non-existent functions.
2443
2444 * w32term.c (w32_read_socket): Fix WM_MOUSEWHEEL assignment.
2445
2446 2003-08-26 Terje Rosten <terjeros@phys.ntnu.no>
2447
2448 * xfns.c (Vgtk_version_string): New variable.
2449 (syms_of_xfns): DEFVAR_LISP it. Provide gtk.
2450
2451 2003-08-24 Eli Zaretskii <eliz@elta.co.il>
2452
2453 * term.c (term_init): Remove `const' from buffer_size's declaration.
2454
2455 * Makefile.in (msdos.o): Depend on intervals.h.
2456
2457 * msdos.c: Include intervals.h, since STRING_INTERVALS requires that.
2458
2459 2003-08-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2460
2461 * xterm.h (struct x_display_info): New fields: client_leader_window
2462 and Xatom_wm_client_leader.
2463
2464 * xterm.c (x_initialize): Move call to x_session_initialize to ...
2465 (x_term_init): ... here. Initialize client_leader fields in dpyinfo.
2466
2467 * xsmfns.c (create_client_leader_window): New function.
2468 (x_session_initialize): Call create_client_leader_window, take
2469 dpyinfo as argument.
2470
2471 * xfns.c (Fx_create_frame): Set property WM_CLIENT_LEADER.
2472
2473 * Makefile.in (xsmfns.o): Add more depenedencies.
2474
2475 2003-08-21 Dave Love <fx@gnu.org>
2476
2477 * m/iris4d.h: Use _MIPS_SZLONG, not _LP64.
2478
2479 2003-08-21 Kenichi Handa <handa@m17n.org>
2480
2481 * term.c (term_init): Fix previous change; don't rely on the
2482 length of `buffer' if TERMINFO is defined.
2483
2484 2003-08-20 Dave Love <fx@gnu.org>
2485
2486 * atimer.h: Include lisp.h.
2487
2488 * lisp.h (EMACS_LISP_H): New.
2489 (popup_activated_flag): Don't declare.
2490
2491 * alloca.c: Some merging with gnulib. Change logic and doc
2492 concerning (x)malloc/(x)free -- no longer Emacs-specific.
2493 [DO_BLOCK_INPUT]: Don't include lisp.h.
2494 (xmalloc, xfree): Declare.
2495 (malloc): Don't declare.
2496
2497 * Makefile.in (LWLIB_OPTIONS): Remove (unused).
2498 (alloca.o): Remove obsolete stuff concerning alloca.s. Depend on
2499 atimer.h, blockinput.h.
2500
2501 * alloc.c (lisp_align_malloc): Change type of `aligned'.
2502
2503 * alloca.s: Removed.
2504
2505 2003-08-19 Gerd Moellmann <gerd@gnu.org>
2506
2507 * s/freebsd.h [__FreeBSD_version >= 400000]: Define TERMINFO,
2508 use -lncurses.
2509
2510 * term.c (term_init): Use a buffer of size 4096 for tgetent since
2511 FreeBSD returns something longer than 2044. Abort if the end of
2512 the buffer is overwritten.
2513
2514 2003-08-19 Miles Bader <miles@gnu.org>
2515
2516 * xterm.c (x_term_init): Correctly use result of Ffile_readable_p.
2517
2518 2003-08-19 Gerd Moellmann <gerd@gnu.org>
2519
2520 * alloc.c (lisp_align_malloc): Check for memory full when
2521 allocating ablocks, which also avoids freeing a pointer into an
2522 ablocks structure.
2523
2524 * puresize.h (BASE_PURESIZE): Increase to 1100000.
2525
2526 * buffer.c (Fmove_overlay): Set overlay's next pointer unconditionally.
2527
2528 2003-08-16 Richard M. Stallman <rms@gnu.org>
2529
2530 * editfns.c (Fencode_time): Doc fix.
2531
2532 2003-08-16 David Ponce <david@dponce.com>
2533
2534 * fileio.c (Fwrite_region): Fix conditional expression to issue
2535 the right message.
2536
2537 2003-08-16 Juri Linkov <juri@jurta.org> (tiny change)
2538
2539 * syntax.c (Fforward_word): Argument changed to optional.
2540 Set default value to 1.
2541
2542 2003-08-15 Kenichi Handa <handa@m17n.org>
2543
2544 * xfaces.c (better_font_p): Prefer a real scalable font; i.e. not
2545 what autoscaled.
2546 (best_matching_font): Once we find a better scalable font, set
2547 non_scalable_has_exact_height_p to 1.
2548 (try_font_list): Call try_alternative_families to try any family
2549 with the given registry.
2550
2551 2003-08-09 Andreas Schwab <schwab@suse.de>
2552
2553 * alloc.c (mark_object): Handle Lisp_Misc_Save_Value.
2554
2555 * print.c (print_string): Fix printing of multibyte string with
2556 nontrivial printcharfun.
2557
2558 2003-07-31 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2559
2560 * xfns.c (xg_set_icon): Rewrite to compile with GTK 2.0 and 2.2.
2561
2562 * xterm.c (x_bitmap_icon): Return if xg_set_icon succeeds.
2563
2564 2003-07-31 Kenichi Handa <handa@m17n.org>
2565
2566 * process.c (read_process_output): Return the actually read bytes
2567 instead of the result of decoding.
2568
2569 2003-07-31 Kenichi Handa <handa@m17n.org>
2570
2571 * xterm.h (struct x_bitmap_record): New member have_mask.
2572
2573 * xfns.c (x_create_bitmap_from_data): Initialize have_mask member
2574 to 0.
2575 (x_create_bitmap_from_file): Likewise.
2576 (x_destroy_bitmap): Check have_mask member before freeing a mask.
2577 (x_destroy_all_bitmaps): Likewise.
2578 (x_create_bitmap_mask): Set have_mask member to 1.
2579
2580 2003-07-30 Richard M. Stallman <rms@gnu.org>
2581
2582 * Makefile.in (CFLAGS) [!OPTIMIZE]: Undo previous change.
2583
2584 2003-07-29 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2585
2586 * gtkutil.c (xg_mark_data): Update calls to mark_object.
2587
2588 2003-07-29 Richard M. Stallman <rms@gnu.org>
2589
2590 * xterm.c (xim_open_dpy, xim_initialize, xim_close_dpy):
2591 Conditionalize XIM code on HAVE_XIM.
2592
2593 * fns.c (Fclear_string): New function.
2594 (syms_of_fns): defsubr it.
2595
2596 2003-07-28 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp> (tiny change)
2597
2598 * xfns.c (xic_set_preeditarea): Add the left fringe width to spot.x.
2599
2600 2003-07-22 Stefan Monnier <monnier@cs.yale.edu>
2601
2602 * xfns.c: Don't check HAVE_PNG_H: autoconf doesn't seem to find it.
2603
2604 * buffer.c (delete_all_overlays): New function.
2605 * buffer.h (delete_all_overlays): Declare.
2606 * coding.c (run_pre_post_conversion_on_str):
2607 * print.c (temp_output_buffer_setup):
2608 * fileio.c (Finsert_file_contents):
2609 * minibuf.c (get_minibuffer): Use it.
2610
2611 2003-07-22 Andrew Choi <akochoi@shaw.ca>
2612
2613 * unexmacosx.c (unexec_regions_sort_compare):
2614 (unexec_regions_merge): New functions. Sort and merge unexec
2615 regions before dumping them.
2616
2617 2003-07-22 Dave Love <fx@gnu.org>
2618
2619 * xfns.c [HAVE_PNG]: Consider both png.h and libpng/png.h.
2620
2621 2003-07-21 Stefan Monnier <monnier@cs.yale.edu>
2622
2623 * alloc.c (MARK_STRING, UNMARK_STRING, STRING_MARKED_P)
2624 (GC_STRING_CHARS, string_bytes): Use ARRAY_MARK_FLAG rather than
2625 MARKBIT as the gcmarkbit for strings.
2626
2627 2003-07-21 Richard M. Stallman <rms@gnu.org>
2628
2629 * s/openbsd.h (LD_SWITCH_SYSTEM_TEMACS): Add undef.
2630
2631 * fns.c (Flocale_info): Rename from Flanginfo. Doc fixes.
2632 (syms_of_fns): Corresponding change.
2633
2634 * alloc.c (syms_of_alloc): Doc fixes.
2635
2636 2003-07-20 Han Boetes <han@mijncomputer.nl> (tiny change)
2637
2638 * s/netbsd.h: Use -Wl syntax.
2639
2640 2003-07-17 Richard M. Stallman <rms@gnu.org>
2641
2642 * xterm.c (xim_initialize): Redo 6/24 change.
2643
2644 2003-07-15 Stefan Monnier <monnier@cs.yale.edu>
2645
2646 * buffer.c (copy_overlays): Use EMACS_INT for positions.
2647 (Fswitch_to_buffer): Don't signal an error when switching to the same
2648 buffer in a dedicated window.
2649
2650 * alloc.c: Use bitmaps for cons, as was done for floats.
2651 (init_float, init_cons): Let the normal code allocate the first block.
2652 (CONS_BLOCK_SIZE): Redefine based on BLOCK_BYTES and bitmap size.
2653 (CONS_BLOCK, CONS_INDEX, CONS_MARKED_P, CONS_MARK, CONS_UNMARK):
2654 New macros.
2655 (struct cons_block): Move conses to the beginning. Add gcmarkbits.
2656 (Fcons): Use lisp_align_malloc and CONS_UNMARK.
2657 (live_cons_p): Check the pointer is not past the `conses' array.
2658 (mark_maybe_object, mark_maybe_pointer): Use CONS_MARKED_P.
2659 (mark_object, mark_buffer): Use CONS_MARKED_P and CONS_MARK.
2660 (survives_gc_p): Use CONS_MARKED_P and simplify.
2661 (gc_sweep): Use CONS_MARKED_P, CONS_UNMARK, and lisp_align_free.
2662
2663 2003-07-13 Paul Eggert <eggert@twinsun.com>
2664
2665 GCC 3.3 (sparc) no longer puts "int foo = 0;" into data; it
2666 puts it into BSS instead, at least on Solaris 8 and 9.
2667 This is a valid optimization, and it may occur on other platforms,
2668 so Emacs should not assume that initializing a static variable to
2669 zero puts it into data.
2670 * alloc.c (pure, staticvec):
2671 Initialize these arrays to nonzero, so that they're not
2672 put into BSS by that optimization.
2673
2674 2003-07-13 Stefan Monnier <monnier@cs.yale.edu>
2675
2676 * alloc.c (BLOCK_PADDING): Rename from ABLOCKS_PADDING. Update users.
2677 (lisp_align_malloc): Use posix_memalign is available.
2678 (ABLOCKS_BASE): Use HAVE_POSIX_MEMALIGN as an optimization.
2679 (STRING_BLOCK_SIZE): Rename from STRINGS_IN_STRING_BLOCK
2680 for consistency. Update users.
2681
2682 2003-07-13 Richard M. Stallman <rms@gnu.org>
2683
2684 * s/netbsd.h (START_FILES_1, END_FILES_1): Always define them.
2685
2686 2003-07-13 Terje Rosten <terjeros@phys.ntnu.no>
2687
2688 * xterm.c (x_bitmap_icon,x_wm_set_icon_pixmap): Modify to add mask,
2689 and use the Gtk+ function gtk_window_icon_from_file if available.
2690
2691 * xfns.c (x_bitmap_mask, x_create_bitmap_mask): New functions to
2692 handle mask of bitmaps.
2693 (x_allocate_bitmap_record, x_destroy_bitmap): Modify to handle the
2694 mask property.
2695 (xg_set_icon): New function, wrapper for gtk_window_icon_from_file.
2696
2697 * xterm.h (xg_set_icon): New function.
2698
2699 2003-07-12 Paul Eggert <eggert@twinsun.com>
2700
2701 * unexelf.c (unexec): Consider a section to precede the .bss
2702 section if its addresses overlap that of .bss.
2703
2704 2003-07-12 Richard M. Stallman <rms@gnu.org>
2705
2706 * Makefile.in (CFLAGS) [!OPTIMIZE]: Set CFLAGS to -g.
2707
2708 * config.in (HAVE_CRTIN): Add #undef.
2709 (INLINE): Really inline only if OPTIMIZE is defined.
2710
2711 * s/netbsd.h (START_FILES, LIB_STANDARD): Use START_FILES_1,
2712 END_FILES_1.
2713 (START_FILES_1, END_FILES_1): New macros (conditional).
2714 (LD_SWITCH_SYSTEM_TEMACS): Define.
2715
2716 * s/openbsd.h: Don't include bsd4-3.h.
2717 (TERMINFO): Define.
2718 (LIBS_TERMCAP): Define.
2719 (LD_SWITCH_SYSTEM): Define (two definitions).
2720
2721 * xfns.c: Include libpng/png.h instead of png.h.
2722
2723 2003-07-11 Andreas Schwab <schwab@suse.de>
2724
2725 * buffer.c (modify_overlay): Update prototype.
2726 * lisp.h (adjust_overlays_for_insert, adjust_overlays_for_delete):
2727 Likewise.
2728
2729 2003-07-09 Stefan Monnier <monnier@cs.yale.edu>
2730
2731 * lisp.h (VALBITS): Define in terms of GCTYPEBITS.
2732 (struct interval): Move to intervals.h.
2733 (struct Lisp_Marker): Use EMACS_INT for position info.
2734 (forward_point): Remove prototype of defunct function.
2735 (Qmodification_hooks, Qrear_nonsticky, Fnext_property_change)
2736 (Fget_text_property, Fset_text_properties, Ftext_propertes_not_all)
2737 (syms_of_textprop, set_text_properties): Remove prototypes that are
2738 already in intervals.h.
2739
2740 * intervals.h (struct interval): Move from lisp.h.
2741 Use EMACS_INT for position and size info.
2742
2743 * coding.c: Include intervals.h for Fset_text_properties.
2744
2745 * buffer.h (struct buffer_text, struct buffer): Use EMACS_INT for
2746 position and length information.
2747
2748 2003-07-09 Stefan Monnier <monnier@cs.yale.edu>
2749
2750 * buffer.h (struct buffer_text, struct buffer): Use EMACS_INT for
2751 position and length information.
2752
2753 2003-07-09 Stefan Monnier <monnier@cs.yale.edu>
2754
2755 Change overlays_after and overlays_before so the overlays themselves
2756 are linked into lists, rather than using cons cells. After all each
2757 Lisp_Misc already occupies 5 words, so we can add a `next' field to
2758 Lisp_Overlay for free and save up one cons cell per overlay (not
2759 to mention one indirection when traversing the list of overlay).
2760
2761 * lisp.h (struct Lisp_Overlay): New field `next'.
2762
2763 * buffer.h (struct buffer): Change overlays_before and overlays_after
2764 from Lisp lists of overlays to pointers to overlays.
2765
2766 * buffer.c (overlay_strings, recenter_overlay_lists):
2767 Fix typo in eassert in last commit.
2768 (unchain_overlay): New function.
2769 (add_overlay_mod_hooklist): Use AREF.
2770 (copy_overlays, reset_buffer, overlays_at, overlays_in)
2771 (overlay_touches_p, overlay_strings, recenter_overlay_lists)
2772 (fix_overlays_in_range, fix_overlays_before, Fmake_overlay)
2773 (Fmove_overlay, Fdelete_overlay, Foverlay_lists)
2774 (report_overlay_modification, evaporate_overlays, init_buffer_once):
2775 Adjust to new type of overlays_(before|after).
2776
2777 * alloc.c (mark_object): Mark the new `next' field of overlays.
2778 (mark_buffer): Manually mark the overlays_(after|before) fields.
2779
2780 * coding.c (run_pre_post_conversion_on_str):
2781 * editfns.c (overlays_around):
2782 * xdisp.c (load_overlay_strings):
2783 * fileio.c (Finsert_file_contents):
2784 * indent.c (current_column):
2785 * insdel.c (signal_before_change, signal_after_change):
2786 * intervals.c (set_point_both):
2787 * print.c (temp_output_buffer_setup): Use new type for
2788 overlays_(before|after).
2789
2790 2003-07-08 Stefan Monnier <monnier@cs.yale.edu>
2791
2792 * buffer.c (report_overlay_modification): Don't run hooks while
2793 traversing the list of overlays.
2794
2795 * buffer.h (struct buffer): Use an int for overlay_center.
2796 (overlays_at, evaporate_overlays, recenter_overlay_lists)
2797 (overlay_strings, fix_overlays_before): Use EMACS_INT for positions.
2798
2799 * buffer.c (reset_buffer, recenter_overlay_lists)
2800 (adjust_overlays_for_insert, adjust_overlays_for_delete)
2801 (fix_overlays_in_range, Fmake_overlay, Fmove_overlay)
2802 (evaporate_overlays, init_buffer_once): Update use of overlay_center.
2803 (overlays_at, evaporate_overlays, recenter_overlay_lists)
2804 (overlay_strings, fix_overlays_before): Use EMACS_INT for positions.
2805
2806 * xdisp.c (fast_find_position): Remove unused var.
2807
2808 * cmds.c (Qexpand_abbrev): New sym.
2809 (syms_of_cmds): Initialize it.
2810 (internal_self_insert): Use it to call expand-abbrev.
2811
2812 2003-07-09 Kim F. Storm <storm@cua.dk>
2813
2814 * xterm.c (use_xim) [!USE_XIM]: Default to disable XIM if emacs
2815 was configured with --without-xim.
2816 (x_term_init) [!USE_XIM]: Use `useXIM' resource to turn on XIM.
2817
2818 2003-07-07 Richard M. Stallman <rms@gnu.org>
2819
2820 * xdisp.c (reseat_1): Set it->area to TEXT_AREA.
2821
2822 * alloc.c (Fgarbage_collect): Doc fix.
2823
2824 2003-07-07 Nozomu Ando <nand@mac.com> (tiny change)
2825
2826 * buffer.c (Fkill_buffer): Clear charpos cache if necessary.
2827
2828 2003-07-06 Stefan Monnier <monnier@cs.yale.edu>
2829
2830 * minibuf.c (read_minibuf): UNGCPRO before returning.
2831 (Ftry_completion, Fall_completions): Doc fix.
2832
2833 * alloc.c (live_float_p): Check that p is not past the `floats' array,
2834 now that `floats' is not the last element of the struct any more.
2835
2836 2003-07-06 Jason Rumney <jasonr@gnu.org>
2837
2838 * w32term.h (ClipboardSequence_Proc): New type.
2839
2840 * w32fns.c (clipboard_sequence_fn): New variable.
2841 (globals_of_w32fns): Initialize it.
2842
2843 * w32select.c (last_clipboard_sequence_number): New variable.
2844 (Fw32_set_clipboard_data, Fw32_get_clipboard_data): Use sequence
2845 number if possible.
2846
2847 2003-07-06 Stefan Monnier <monnier@cs.yale.edu>
2848
2849 * m/amdx86-64.h (MARKBIT):
2850 * m/ia64.h (MARKBIT): Remove definition since lisp.h does not compare
2851 MARKBIT and ARRAY_MARK_FLAG any more.
2852
2853 * m/hp800.h (XSETMARKBIT):
2854 * m/sr2k.h (XSETMARKBIT):
2855 * lisp.h (XSETMARKBIT): Remove unused macro.
2856
2857 * lisp.h (mark_object): Change prototype.
2858
2859 * alloc.c (mark_object): Change arg *Lisp_Object -> Lisp_Object.
2860 (last_marked): Change accordingly.
2861 (mark_interval, mark_maybe_object, mark_maybe_pointer)
2862 (Fgarbage_collect, mark_glyph_matrix, mark_face_cache, mark_image)
2863 (mark_buffer): Update calls to mark_object.
2864
2865 * bytecode.c (mark_byte_stack):
2866 * fns.c (sweep_weak_table):
2867 * keyboard.c (mark_kboards): Update calls to mark_object.
2868
2869 2003-07-06 Jason Rumney <jasonr@gnu.org>
2870
2871 * alloc.c (struct ablock): Only include padding when there is some.
2872
2873 2003-07-04 Stefan Monnier <monnier@cs.yale.edu>
2874
2875 * alloc.c (ALIGN): Add casts to simplify usage.
2876 (BLOCK_ALIGN, BLOCK_BYTES, ABLOCKS_PADDING, ABLOCKS_SIZE)
2877 (ABLOCKS_BYTES, ABLOCK_ABASE, ABLOCKS_BUSY, ABLOCKS_BASE): New macros.
2878 (struct ablock, struct ablocks): New types.
2879 (free_ablock): New global var.
2880 (lisp_align_malloc, lisp_align_free): New functions.
2881 (FLOAT_BLOCK_SIZE): Redefine in terms of BLOCK_BYTES.
2882 (struct float_block): Reorder and add gcmarkbits.
2883 (GETMARKBIT, SETMARKBIT, UNSETMARKBIT, FLOAT_BLOCK, FLOAT_INDEX)
2884 (FLOAT_MARKED_P, FLOAT_MARK, FLOAT_UNMARK): New macros.
2885 (init_float, make_float): Use lisp_align_malloc.
2886 (free_float, live_float_p): Don't use `type' any more.
2887 (make_float): Use FLOAT_UNMARK to access to mark bit.
2888 (mark_maybe_object, mark_maybe_pointer, survives_gc_p):
2889 Use FLOAT_MARKED_P to access the mark bit.
2890 (pure_alloc): Simplify use of ALIGN.
2891 (mark_object): Use FLOAT_MARK to access the mark bit.
2892 (gc_sweep): Use new macros to access the float's mark bit.
2893 (init_alloc_once): Init free_ablock.
2894
2895 * lisp.h (struct Lisp_Float): Remove unused field `type'.
2896
2897 2003-06-27 Stefan Monnier <monnier@cs.yale.edu>
2898
2899 * alloc.c (VECTOR_MARK, VECTOR_UNMARK, VECTOR_MARKED_P): New macros.
2900 (GC_STRING_BYTES): Don't mask markbit (it's only used on `size').
2901 (allocate_buffer): Move.
2902 (string_bytes): Don't mask markbit of `size_byte'.
2903 (mark_maybe_object, mark_maybe_pointer, Fgarbage_collect)
2904 (mark_object, mark_buffer, survives_gc_p, gc_sweep):
2905 Use the `size' field of buffers (rather than the `name' field) for
2906 the mark bit, as is done for all other vectorlike objects.
2907 Use the new macros to access the mark bit of vectorlike objects.
2908
2909 2003-06-26 Richard M. Stallman <rms@gnu.org>
2910
2911 * puresize.h (BASE_PURESIZE): Increment base size.
2912
2913 * xdisp.c (fast_find_position): Enable Gerd's new definition.
2914
2915 * xterm.c (xim_initialize): Undo previous change.
2916
2917 2003-06-26 Stefan Monnier <monnier@cs.yale.edu>
2918
2919 * alloc.c (survives_gc_p): Simplify.
2920
2921 * buffer.c (set_buffer_internal_1): Test CONSP for lists.
2922
2923 * window.c (Fset_window_dedicated_p): Simplify.
2924 (display_buffer_1): Don't raise the win from which minibuf was entered.
2925 (temp_output_buffer_show): Don't assume BEG == 1. Simplify.
2926 (Fminibuffer_selected_window): Simplify.
2927
2928 * buffer.h (struct buffer_text): Lisp_Object `markers' => Lisp_Marker.
2929
2930 * lisp.h (unchain_marker): Lisp_Object arg => Lisp_Marker.
2931 (struct Lisp_Marker): Lisp_Object `chain' => Lisp_Marker `next'.
2932
2933 * insdel.c (check_markers, adjust_markers_for_delete)
2934 (adjust_markers_for_insert, adjust_markers_for_replace)
2935 (prepare_to_modify_buffer, RESTORE_VALUE):
2936 * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos)
2937 (Fset_marker, set_marker_restricted, set_marker_both, unchain_marker)
2938 (set_marker_restricted_both, Fbuffer_has_markers_at, count_markers):
2939 * alloc.c (Fmake_marker, free_marker, gc_sweep):
2940 * buffer.c (Fget_buffer_create, Fkill_buffer, Fset_buffer_multibyte):
2941 * editfns.c (save_excursion_restore, transpose_markers):
2942 * window.c (delete_window):
2943 * xdisp.c (message_dolog): Update for new types.
2944
2945 2003-06-26 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2946
2947 * xfaces.c (set_font_frame_param): Set default_face_done_p to zero.
2948 (realize_default_face): Use default_face_done_p for the force_p
2949 argument to set_lface_from_font_name. Set default_face_done_p to one.
2950
2951 * frame.c (make_frame): Initialize default_face_done_p.
2952
2953 * frame.h (struct frame): Add default_face_done_p.
2954
2955 * config.in: Add XRegisterIMInstantiateCallback_arg6 so it
2956 will be defined.
2957
2958 2003-06-25 Stefan Monnier <monnier@cs.yale.edu>
2959
2960 * alloc.c (make_interval, Fmake_symbol, allocate_misc):
2961 Initialize the new field `gcmarkbit'.
2962 (mark_interval, MARK_INTERVAL_TREE): Use the new `gcmarkbit' field.
2963 (mark_interval_tree): Don't mark the tree separately from the nodes.
2964 (UNMARK_BALANCE_INTERVALS): Don't unmark the tree.
2965 (mark_maybe_object, mark_maybe_pointer, Fgarbage_collect)
2966 (mark_object, survives_gc_p, gc_sweep): Use new `gcmarkbit' fields.
2967
2968 * lisp.h (struct interval, struct Lisp_Symbol, struct Lisp_Free)
2969 (struct Lisp_Marker, struct Lisp_Intfwd, struct Lisp_Boolfwd)
2970 (struct Lisp_Kboard_Objfwd, struct Lisp_Save_Value)
2971 (struct Lisp_Buffer_Local_Value, struct Lisp_Overlay)
2972 (struct Lisp_Objfwd, struct Lisp_Buffer_Objfwd): Add `gcmarkbit' field.
2973
2974 2003-06-24 Dave Love <fx@gnu.org>
2975
2976 * xterm.c (xim_initialize): Use XRegisterIMInstantiateCallback_arg6.
2977
2978 * strftime.c: Test HAVE_SYS__MBSTATE_H, not __hpux. Merge changes
2979 from gnulib.
2980
2981 2003-06-21 Richard M. Stallman <rms@gnu.org>
2982
2983 * fileio.c (Fwrite_region): Alternate messages
2984 for append and partial write.
2985
2986 * keyboard.c (read_key_sequence): When converting upcase fn key to
2987 downcase, update fkey and keytran so `backspace' gets translated.
2988
2989 * keyboard.c (read_avail_input): Don't signal SIGHUP in batch mode.
2990
2991 * process.c (wait_reading_process_input): Don't signal SIGIO
2992 in batch mode.
2993
2994 2003-06-17 Kenichi Handa <handa@m17n.org>
2995
2996 * Makefile.in (xselect.o): Don't depend on charset.h, coding.h,
2997 composite.h.
2998
2999 * xselect.c: Don't include charset.h, coding.h, composite.h.
3000 (Qforeign_selection): New variable.
3001 (syms_of_xselect): Intern and static it.
3002 (selection_data_to_lisp_data): Return a unibyte string made from
3003 data with `foreign-selection' text property.
3004
3005 2003-06-15 Stefan Monnier <monnier@cs.yale.edu>
3006
3007 * termhooks.h (EVENT_INIT): New macro.
3008
3009 * keyboard.c (mark_kboards): Move from alloc.c. Mark kbd_buffer.
3010
3011 * alloc.c (mark_kboards): Move to keyboard.c.
3012
3013 * keyboard.c (record_asynch_buffer_change, read_avail_input):
3014 * xterm.c (x_dispatch_event):
3015 * xmenu.c (find_and_call_menu_selection):
3016 * xdisp.c (handle_tool_bar_click):
3017 * w32menu.c (menubar_selection_callback):
3018 * sysdep.c (kbd_input_ast, read_input_waiting):
3019 * msdos.c (dos_rawgetc):
3020 * macterm.c (mac_check_for_quit_char):
3021 * macmenu.c (menubar_selection_callback):
3022 * gtkutil.c (xg_tool_bar_callback): Don't pass uninitialized
3023 data to kbd_buffer_store_event.
3024
3025 2003-06-15 Kim F. Storm <storm@cua.dk>
3026
3027 * xdisp.c (x_fix_overlapping_area): Always use area relative X
3028 to fix redisplay problem with tall characters (such as \e,AC\e(B).
3029
3030 2003-06-13 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@gmx.net>
3031
3032 * fileio.c (Fcopy_file): Doc fix: copies file modes, too.
3033
3034 2003-06-12 Kenichi Handa <handa@m17n.org>
3035
3036 * fileio.c (Fwrite_region): Save and restore restriction.
3037
3038 2003-06-12 Dave Love <fx@gnu.org>
3039
3040 * alloca.c (alloca): Declare arg as size_t.
3041
3042 * sysdep.c: Remove redundant include of unistd.h, stdlib.h.
3043 Use HAVE_DECL_SYS_SIGLIST, not SYS_SIGLIST_DECLARED.
3044
3045 2003-06-11 Dave Love <fx@gnu.org>
3046
3047 * search.c (shrink_regexp_cache): Use xrealloc.
3048 (syms_of_search): Use xmalloc.
3049
3050 2003-06-10 Kim F. Storm <storm@cua.dk>
3051
3052 * xdisp.c (phys_cursor_in_rect_p): Fix 2003-05-24 change.
3053 Adjust phys_cursor.x to be relative to window box, rather than
3054 text area before checking -- to ensure cursor is redrawn when
3055 exposing window.
3056 Note: This also fixes a similar (older) bug if display margins
3057 are present.
3058
3059 2003-06-06 Kenichi Handa <handa@m17n.org>
3060
3061 * coding.c (encoding_buffer_size): If coding->type is
3062 coding_type_ccl, double magnification on CRLF encoding.
3063
3064 2003-06-06 Jason Rumney <jasonr@gnu.org>
3065
3066 * w32reg.c (SYSTEM_DEFAULT_RESOURCES): New constant.
3067 (w32_get_string_resource): Try SYSTEM_DEFAULT_RESOURCES last.
3068
3069 * xfaces.c (Finternal_face_x_get_resource): Do it on Windows and
3070 Mac too.
3071
3072 2003-06-05 Dave Love <fx@gnu.org>
3073
3074 * strftime.c: Merge changes from gnulib.
3075
3076 * mktime.c (__mktime_internal): Merge changes from gnulib
3077 involving year 69 and dst2.
3078
3079 Changes to merge with gnulib version and be consistent with the
3080 autoconf test:
3081
3082 * getloadavg.c: Set NLIST_STRUCT from HAVE_NLIST_H.
3083 Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not NLIST_NAME_UNION.
3084 [HAVE_LOCALE_H]: Include locale.h.
3085 (getloadavg) [HAVE_SETLOCALE]: Run sscanf in C locale.
3086
3087 2003-06-05 Kim F. Storm <storm@cua.dk>
3088
3089 * window.c (coordinates_in_window): Convert X and Y to window
3090 relative coordinates inside mode-line and header-line parts.
3091 Convert X and Y to margin area relative coordinates inside left
3092 and right display margin parts.
3093
3094 2003-06-05 Jason Rumney <jasonr@gnu.org>
3095
3096 * w32fns.c (add_system_logical_colors_to_map): New function.
3097 (Fx_open_connection): Use it.
3098
3099 2003-06-04 Stefan Monnier <monnier@cs.yale.edu>
3100
3101 * process.c (allocate_pty): Revert part of the previous patch.
3102 (Faccept_process_output): Simplify.
3103
3104 2003-06-04 Jason Rumney <jasonr@gnu.org>
3105
3106 * termhooks.h (enum event_kind): Remove MOUSE_WHEEL_EVENT.
3107
3108 * keyboard.c (Qmouse_wheel, mouse_wheel_syms)
3109 (lispy_mouse_wheel_names): Remove.
3110 (syms_of_keyboard): Remove Qmouse_wheel and mouse_wheel_syms.
3111 Always define drag_and_drop_syms.
3112
3113 * macterm.c (XTread_socket): Map mouse wheel events to Emacs
3114 WHEEL_EVENT events.
3115
3116 2003-06-03 Stefan Monnier <monnier@cs.yale.edu>
3117
3118 * xdisp.c (update_tool_bar): Add missing UNGCPRO.
3119
3120 * buffer.c (init_buffer_once): Make kill-buffer-hook permanent-local.
3121
3122 2003-06-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3123
3124 * gtkutil.c (make_menu_item): Make sure we don't crash on a NULL
3125 menu item label.
3126
3127 2003-06-03 Richard M. Stallman <rms@gnu.org>
3128
3129 * window.c (Fwindow_edges): Doc fix.
3130 (Fwindow_pixel_edges, Fwindow_inside_edges)
3131 (Fwindow_inside_pixel_edges): New functions.
3132 (syms_of_window): defsubr them.
3133
3134 * window.h (WINDOW_LEFT_FRINGE_COLS, WINDOW_RIGHT_FRINGE_COLS)
3135 (WINDOW_MODE_LINE_LINES, WINDOW_HEADER_LINE_LINES): New macros.
3136
3137 2003-06-02 Stefan Monnier <monnier@cs.yale.edu>
3138
3139 * dispnew.c (Fsit_for): Don't lie about the number of args.
3140
3141 2003-06-02 Dave Love <fx@gnu.org>
3142
3143 * callproc.c: Use HAVE_FCNTL_H, not USG5.
3144 (syms_of_callproc) <process-environment>: Doc fix.
3145
3146 * doc.c: Use HAVE_FCNTL_H, not USG5.
3147
3148 * xfaces.c (font_rescale_ratio): Fix for K&R.
3149
3150 * termcap.c: Use HAVE_FCNTL_H, not _POSIX_VERSION.
3151
3152 * mem-limits.h: Use HAVE_SYS_RESOURCE_H, HAVE_SYS_VLIMIT_H.
3153
3154 * lread.c [HAVE_FCNTL_H]: Include fcntl.h.
3155
3156 * gtkutil.c: Include keyboard.h, charset.h, coding.h.
3157 (xg_create_frame_widgets): Use ENCODE_UTF_8.
3158
3159 * xterm.c (Qutf_8): Move to coding.c
3160
3161 * xmenu.c (ENCODE_MENU_STRING): New.
3162 (list_of_panes, list_of_items, digest_single_submenu, xmenu_show):
3163 Use it.
3164
3165 * coding.h (ENCODE_UTF_8): New.
3166 (Qutf_8): Declare.
3167
3168 * coding.c (Qutf_8): New.
3169 (syms_of_coding): Intern it.
3170
3171 * fns.c: Doc fixes.
3172
3173 2003-06-02 Kenichi Handa <handa@m17n.org>
3174
3175 * buffer.c (Fset_buffer_multibyte): Fix previous change.
3176
3177 2003-06-01 Stefan Monnier <monnier@cs.yale.edu>
3178
3179 * lread.c (openp): Make sure STR is a string.
3180
3181 2003-06-01 David Ponce <david@dponce.com>
3182
3183 * termhooks.h (enum event_kind): Added new WHEEL_EVENT event.
3184 Declare MOUSE_WHEEL_EVENT only if MAC_OSX defined.
3185
3186 * keyboard.c (Qmouse_wheel): Declare only if MAC_OSX defined.
3187 (mouse_wheel_syms, lispy_mouse_wheel_names): Likewise.
3188 (discard_mouse_events): Discard WHEEL_EVENT events too.
3189 (lispy_wheel_names, wheel_syms): New.
3190 (syms_of_keyboard): Init and staticpro `wheel_syms'. Init and
3191 staticpro `Qmouse_wheel' and `mouse_wheel_syms' only if MAC_OSX
3192 defined.
3193 (make_lispy_event): Add WHEEL_EVENT handler.
3194
3195 * w32term.c (construct_mouse_wheel): Construct WHEEL_EVENT.
3196 (w32_read_socket): Map w32 WM_MOUSEWHEEL events to Emacs
3197 WHEEL_EVENT events.
3198
3199 2003-05-31 John Paul Wallington <jpw@gnu.org>
3200
3201 * Makefile.in (lisp, shortlisp): byte-run, float-sup, map-ynp, and
3202 timer are in lisp/emacs-lisp.
3203
3204 2003-05-31 Kenichi Handa <handa@m17n.org>
3205
3206 * buffer.c (Fset_buffer_multibyte): Correctly recover a narrowed
3207 region when a buffer is changed to unibyte.
3208
3209 * charset.h (VALID_LEADING_CODE_P): New macro.
3210 (UNIBYTE_STR_AS_MULTIBYTE_P): Check more rigidly.
3211
3212 * coding.c (DECODE_EMACS_MULE_COMPOSITION_CHAR): If coding->flags
3213 is nonzero, accept multibyte form of eight-bit-control chars.
3214 (decode_composition_emacs_mule): Likewise.
3215 (decode_coding_emacs_mule): Likewise.
3216 (encode_coding_emacs_mule): If coding->flags is nonzero, produce
3217 multibyte form of eight-bit-control chars.
3218
3219 * fileio.c (Qauto_save_coding, auto_save_coding): New variables.
3220 (Finsert_file_contents): If coding-system-for-read is bound to
3221 Qauto_save_coding, use the coding system emacs-mule with special
3222 setting for recovering a file.
3223 (choose_write_coding_system): On auto saving, use the coding
3224 system emacs-mule with special setting for auto saving.
3225 (syms_of_fileio) <Qauto_save_coding>: Intern and staticpro it.
3226
3227 2003-05-30 Kenichi Handa <handa@m17n.org>
3228
3229 * coding.c (ccl_coding_driver): Set ccl->eight_bit_control
3230 properly before calling ccl_driver.
3231
3232 * ccl.h (struct ccl_program) <eight_bit_control>: Comment fixed.
3233
3234 * ccl.c (CCL_WRITE_CHAR): Increment extra_bytes only when it is
3235 nonzero.
3236 (ccl_driver): Initialize extra_bytes to ccl->eight_bit_control.
3237 (setup_ccl_program): Initialize ccl->eight_bit_control to zero.
3238
3239 2003-05-29 Glenn Morris <gmorris@ast.cam.ac.uk>
3240
3241 * xfaces.c (realize_default_face): Do not abort if lface is
3242 non-existent - reverts change from 2003-05-19.
3243
3244 2003-05-29 Kenichi Handa <handa@m17n.org>
3245
3246 * coding.c (decode_coding_iso2022): Pay attention to the byte
3247 sequence of CTEXT extended segment, and retain those bytes as is.
3248
3249 2003-05-28 Kenichi Handa <handa@m17n.org>
3250
3251 * coding.c (ENCODE_UNSAFE_CHARACTER): Adjusted for the name change
3252 of CODING_REPLACEMENT_CHARACTER.
3253 (decode_coding_iso2022): If CODING_FLAG_ISO_SAFE, set
3254 CODING_MODE_INHIBIT_UNENCODABLE_CHAR flag in coding->mode, and
3255 check this flag on encoding.
3256 (encode_coding_sjis_big5): Check
3257 CODING_MODE_INHIBIT_UNENCODABLE_CHAR flag of coding->mode.
3258 (Fset_terminal_coding_system_internal): Set
3259 CODING_MODE_INHIBIT_UNENCODABLE_CHAR flag in terminal_coding.mode
3260 instead of setting CODING_FLAG_ISO_SAFE flag in
3261 terminal_coding.flags.
3262
3263 * coding.h (CODING_REPLACEMENT_CHARACTER): Renamed from
3264 CODING_INHIBIT_CHARACTER_SUBSTITUTION.
3265 (CODING_MODE_INHIBIT_UNENCODABLE_CHAR): New macro.
3266
3267 2003-05-28 Richard M. Stallman <rms@gnu.org>
3268
3269 * print.c (syms_of_print) <print-escape-nonascii>: Doc fix.
3270
3271 * eval.c (unbind_to): Move init of this_binding to separate statement.
3272
3273 2003-05-28 Kim F. Storm <storm@cua.dk>
3274
3275 * xdisp.c (expose_window): Fix error in calculation of
3276 window relative coordinates of area to redisplay.
3277
3278 2003-05-27 Jason Rumney <jasonr@gnu.org>
3279
3280 * w32term.c (GET_WHEEL_DELTA_WPARAM): New macro.
3281
3282 2003-05-27 David Ponce <david@dponce.com>
3283
3284 Handle W32 mouse wheel events as mouse click events, like in X.
3285
3286 * keyboard.c (make_lispy_event) [WINDOWSNT]: Don't handle
3287 MOUSE_WHEEL_EVENT anymore.
3288
3289 * w32term.c (construct_mouse_wheel): Result is a MOUSE_CLICK_EVENT.
3290 Scrolling down/up the mouse wheel is respectively mapped to mouse
3291 button 4 and 5.
3292 (w32_read_socket): Map w32 WM_MOUSEWHEEL events to Emacs
3293 MOUSE_CLICK_EVENT events. Forward w32 MSH_MOUSEWHEEL events as
3294 WM_MOUSEWHEEL events.
3295
3296 2003-05-27 Andreas Schwab <schwab@suse.de>
3297
3298 * buffer.c (syms_of_buffer) <default-direction-reversed>: Doc fix.
3299
3300 * xdisp.c (try_window_id): Avoid aborting if PT is inside a
3301 partially visible line.
3302
3303 * alloc.c (Fgarbage_collect): Fix last change.
3304
3305 2003-05-26 John Paul Wallington <jpw@gnu.org>
3306
3307 * xfns.c (Fx_create_frame): Don't call Qface_set_after_frame_default.
3308
3309 2003-05-25 Stefan Monnier <monnier@cs.yale.edu>
3310
3311 * window.c (Fset_window_buffer): Add type of `keep_margins'.
3312 (Fset_window_fringes, Fset_window_scroll_bars): Declare before use.
3313
3314 * window.h (window_box_text_cols): Declare.
3315
3316 * xdisp.c (window_text_bottom_y, draw_row_fringe_bitmaps)
3317 (x_draw_vertical_border): Remove unused var `f'.
3318
3319 * xfaces.c (build_scalable_font_name): Remove `unused var
3320 pixel_size' warning.
3321
3322 * xfns.c (png_load): Remove `unused vars intent, image_gamma' warning.
3323
3324 * unexelf.c (unexec): Remove `unused var n' warning.
3325
3326 * strftime.c (my_strftime_localtime_r): Remove `defined but
3327 unused' warning.
3328
3329 * process.c (allocate_pty): Remove `unused var stb' and
3330 `cp might be used uninitialized' warnings.
3331
3332 * dispnew.c (mode_line_string): Remove unused var `f'.
3333
3334 * coding.c (find_safe_codings): Remove unused var `i'.
3335
3336 * bytecode.c (Fbyte_code): Remove `unused val' warning.
3337
3338 * buffer.c (Fkill_buffer): Remove unused var `list'.
3339
3340 * alloc.c (Fgarbage_collect): Remove `unused var tail' warning.
3341
3342 2003-05-25 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3343
3344 * frame.c (make_frame): Condition want_fullscreen with
3345 HAVE_WINDOW_SYSTEM.
3346
3347 2003-05-25 Juanma Barranquero <lektu@terra.es>
3348
3349 * window.c (Fset_window_scroll_bars): Fix typo in argument name.
3350 (Fwindow_scroll_bars): Fix typo in docstring.
3351
3352 2003-05-24 Kim F. Storm <storm@cua.dk>
3353
3354 The following changes serve several purposes:
3355
3356 1) Swap the position of fringes and display margins in windows, i.e.
3357 the fringes are now displayed between the margins and the text area
3358 (by default).
3359
3360 2) Allow fringe and scroll bar parameters to be set per-buffer and
3361 per-window (like display margins). Such settings are now stored
3362 in window configurations, preserved when frames are resized, and
3363 copied when windows are split vertically or horizontally.
3364 Several bugs related to display margins have been fixed.
3365
3366 3) Consistently use FRAME_FONT and FRAME_FONTSET macros.
3367
3368 4) Use FRAME_COLUMN_WIDTH (f) consistently throughout the code
3369 rather than FRAME_WIDTH (FRAME_FONT (f)).
3370
3371 5) Introduce a consistent naming of variables, members and macros
3372 depending on whether their value is measured in pixels or in
3373 canonical columns/lines. Pixel dimensions are named *_width and
3374 *_height, while canonical columns/lines are named *_cols and
3375 *_lines. Pixel positions are named *_x and *_y, while column/line
3376 positions are named *_col and *_line.
3377
3378 6) Consolidate more of the X, W32, and MAC gui code by moving
3379 common data into struct frame, and generalize it for the non-gui
3380 case by using suitable defaults.
3381
3382 7) Cleanup and consolidate the macros controlling frame and window
3383 layout into frame.h and window.h, and generalize the use of the
3384 various window_box_* functions (enhanced to handle the new fringe
3385 position and the per-window fringe and scroll bar settings).
3386
3387 * frame.h (struct frame): Rename members height to text_lines,
3388 width to text_cols, window_height to total_lines, window_width to
3389 total_cols, new_height to new_text_lines, new_width to
3390 new_text_cols. All uses changed.
3391 (struct frame): New members which consolidate common members of
3392 x_output, w32_output, and mac_output structures: left_pos,
3393 top_pos, pixel_height, pixel_width, x_pixels_diff, y_pixels_diff,
3394 win_gravity, size_hint_flags, border_width, internal_border_width,
3395 line_height, fringe_cols, left_fringe_width, right_fringe_width,
3396 want_fullscreen. All uses changed.
3397 (struct frame): New member column_width contaning the canonical
3398 column width, analogue to line_height. All uses changed.
3399 (struct frame): Rename members scroll_bar_pixel_width to
3400 config_scroll_bar_width, and scroll_bar_cols to
3401 config_scroll_bar_cols. All uses changed.
3402 (struct frame): New member scroll_bar_actual_width which
3403 consolidates and renames the vertical_scroll_bar_extra member of
3404 x_output, w32_output, and mac_output structures. All uses changed.
3405 (FRAME_PIXEL_HEIGHT): Renamed from PIXEL_HEIGHT and moved
3406 from x/w32/macterm.h files. All uses changed. Also change code
3407 which referred to f->output_data...->pixel_height.
3408 (FRAME_PIXEL_WIDTH): Renamed from PIXEL_WIDTH and moved
3409 from x/w32/macterm.h files. All uses changed. Also change code
3410 which referred to f->output_data...->pixel_width.
3411 (FRAME_LINES): Renamed from FRAME_HEIGHT. All uses changed.
3412 Also change code which referred to f->height.
3413 (FRAME_COLS): Renamed from FRAME_WIDTH. All uses changed.
3414 Also change code which referred to f->width.
3415 (FRAME_NEW_HEIGHT, FRAME_NEW_WIDTH): Remove macros; change uses
3416 to update new_text_lines and new_text_cols members directly.
3417 (FRAME_CONFIG_SCROLL_BAR_WIDTH): Renamed from
3418 FRAME_SCROLL_BAR_PIXEL_WIDTH. All uses changed.
3419 (FRAME_CONFIG_SCROLL_BAR_COLS): Renamed from
3420 FRAME_SCROLL_BAR_COLS. All uses changed.
3421 (FRAME_LEFT_SCROLL_BAR_COLS, FRAME_RIGHT_SCROLL_BAR_COLS):
3422 Renamed from FRAME_LEFT_SCROLL_BAR_WIDTH and
3423 FRAME_RIGHT_SCROLL_BAR_WIDTH, resp. All uses changed.
3424 (FRAME_SCROLL_BAR_AREA_WIDTH, FRAME_LEFT_SCROLL_BAR_AREA_WIDTH)
3425 (FRAME_RIGHT_SCROLL_BAR_AREA_WIDTH): New macros.
3426 (FRAME_TOTAL_COLS): Renamed from FRAME_WINDOW_WIDTH.
3427 (SET_FRAME_COLS): Renamed from SET_FRAME_WIDTH.
3428 (FRAME_TOTAL_COLS_ARG): Renamed from FRAME_WINDOW_WIDTH_ARG.
3429 (WINDOW_VERTICAL_SCROLL_BAR_COLUMN): Remove unused macro.
3430 (WINDOW_VERTICAL_SCROLL_BAR_HEIGHT): Remove unused macro.
3431 (FRAME_LINE_HEIGHT): Renamed from CANON_Y_UNIT. Unconditionally
3432 return line_height member (it now has proper value also for
3433 non-window frames).
3434 (FRAME_COLUMN_WIDTH): Renamed from CANON_X_UNIT. Unconditionally
3435 return new column_width member (rather than the default font width).
3436 (FRAME_FRINGE_COLS, FRAME_LEFT_FRINGE_WIDTH)
3437 (FRAME_RIGHT_FRINGE_WIDTH): Renamed from FRAME_X_... and moved
3438 from x/w32/macterm.h files. Unconditionally return corresponding
3439 member of frame structure (they now have proper values also for
3440 non-window frames).
3441 (FRAME_TOTAL_FRINGE_WIDTH): Renamed from FRAME_FRINGE_WIDTH.
3442 Calculate return value from left and right widths.
3443 (FRAME_INTERNAL_BORDER_WIDTH): Unconditionally return
3444 internal_border_width member (has proper value for non-window frame).
3445 (FRAME_PIXEL_X_FROM_CANON_X): Renamed from PIXEL_X_FROM_CANON_X.
3446 (FRAME_PIXEL_Y_FROM_CANON_Y): Renamed from PIXEL_Y_FROM_CANON_Y.
3447 (FRAME_CANON_X_FROM_PIXEL_X): Renamed from CANON_X_FROM_PIXEL_X.
3448 (FRAME_CANON_Y_FROM_PIXEL_Y): Renamed from CANON_Y_FROM_PIXEL_Y.
3449 (FRAME_LINE_TO_PIXEL_Y): Renamed from CHAR_TO_PIXEL_ROW,
3450 consolidated from xterm.h, macterm.h, and w32term.h.
3451 (FRAME_COL_TO_PIXEL_X): Renamed from CHAR_TO_PIXEL_COL,
3452 consolidated from xterm.h, macterm.h, and w32term.h.
3453 (FRAME_TEXT_COLS_TO_PIXEL_WIDTH): Renamed from
3454 CHAR_TO_PIXEL_WIDTH consolidated from x/mac/w32term.h.
3455 (FRAME_TEXT_LINES_TO_PIXEL_HEIGHT): Renamed from
3456 CHAR_TO_PIXEL_HEIGHT consolidated from x/mac/w32term.h.
3457 (FRAME_PIXEL_Y_TO_LINE): Renamed from PIXEL_TO_CHAR_ROW
3458 consolidated from x/mac/w32term.h.
3459 (FRAME_PIXEL_X_TO_COL): Renamed from PIXEL_TO_CHAR_COL
3460 consolidated from x/mac/w32term.h.
3461 (FRAME_PIXEL_WIDTH_TO_TEXT_COLS): Renamed from
3462 PIXEL_TO_CHAR_WIDTH consolidated from x/mac/w32term.h.
3463 (FRAME_PIXEL_HEIGHT_TO_TEXT_LINES): Renamed from
3464 PIXEL_TO_CHAR_HEIGHT consolidated from x/mac/w32term.h.
3465
3466 * window.h (struct window): Rename members left to left_col,
3467 top to top_line, height to total_lines, width to total_cols,
3468 left_margin_width to left_margin_cols, right_margin_width to
3469 right_margin_cols, orig_height to orig_total_lines, orig_top to
3470 orig_top_line. All uses changed.
3471 (struct window): New members left_fringe_width, right_fringe_width,
3472 fringes_outside_margins, scroll_bar_width, vertical_scroll_bar_type.
3473 (WINDOW_XFRAME, WINDOW_FRAME_COLUMN_WIDTH, WINDOW_FRAME_LINE_HEIGHT):
3474 New macros primarily used to simplify other macros.
3475 (WINDOW_TOTAL_COLS): New macro. Change relevant code that
3476 referred to XINT (w->width).
3477 (WINDOW_TOTAL_LINES): New macro. Change relevant code that
3478 referred to XINT (w->height).
3479 (WINDOW_TOTAL_WIDTH): New macro. Change relevant code that
3480 referred to XINT (w->width) * canon_x_unit.
3481 (WINDOW_TOTAL_HEIGHT): New macro. Change relevant code that
3482 referred to XINT (w->height) * canon_y_unit.
3483 (WINDOW_LEFT_EDGE_COL): New macro. Change relevant code that
3484 referred to XINT (w->left).
3485 (WINDOW_RIGHT_EDGE_COL): Renamed from WINDOW_RIGHT_EDGE. Change
3486 all uses and code that referred to XINT (w->left) + XINT (w->width).
3487 (WINDOW_TOP_EDGE_LINE): New macro. Change relevant code that
3488 referred to XINT (w->top).
3489 (WINDOW_BOTTOM_EDGE_LINE): New macro. Change relevant code that
3490 referred to XINT (w->top) + XINT (w->height).
3491 (WINDOW_LEFT_EDGE_X): New macro. Change relevant code that
3492 referred to XINT (w->left) * canon_x_unit.
3493 (WINDOW_RIGHT_EDGE_X): New macro. Change relevant code that
3494 referred to (XINT (w->left) + XINT (w->width)) * canon_x_unit.
3495 (WINDOW_TOP_EDGE_Y): New macro. Change relevant code that
3496 referred to XINT (w->top) * canon_y_unit.
3497 (WINDOW_BOTTOM_EDGE_Y): New macro. Change relevant code that
3498 referred to (XINT (w->top) + XINT (w->height)) * canon_y_unit.
3499 (WINDOW_LEFTMOST_P): New macro.
3500 (WINDOW_BOX_LEFT_EDGE_COL): Renamed from WINDOW_LEFT_MARGIN.
3501 All uses changed.
3502 (WINDOW_BOX_RIGHT_EDGE_COL): Renamed from WINDOW_RIGHT_MARGIN.
3503 All uses changed.
3504 (WINDOW_BOX_LEFT_EDGE_X): Renamed from
3505 WINDOW_DISPLAY_LEFT_EDGE_PIXEL_X, moved from dispextern.h.
3506 Do not exclude left fringe width.
3507 (WINDOW_BOX_RIGHT_EDGE_X): Renamed from
3508 WINDOW_DISPLAY_RIGHT_EDGE_PIXEL_X, moved from dispextern.h.
3509 Do not exclude fringe widths.
3510 (WINDOW_LEFT_FRINGE_WIDTH, WINDOW_RIGHT_FRINGE_WIDTH)
3511 (WINDOW_FRINGE_COLS, WINDOW_TOTAL_FRINGE_WIDTH): New macros.
3512 Change relevant code that referred to FRAME_LEFT_FRINGE_WIDTH,
3513 FRAME_RIGHT_FRINGE_WIDTH, FRAME_FRINGE_COLS, and
3514 FRAME_TOTAL_FRINGE_WIDTH to allow per-window fringe settings.
3515 (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS): New macro.
3516 (WINDOW_VERTICAL_SCROLL_BAR_TYPE, WINDOW_HAS_VERTICAL_SCROLL_BAR)
3517 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT)
3518 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT)
3519 (WINDOW_CONFIG_SCROLL_BAR_WIDTH, WINDOW_CONFIG_SCROLL_BAR_COLS):
3520 New macros. Change code which referenced corresponding
3521 FRAME_VERTICAL_SCROLL_BAR_TYPE, FRAME_HAS_VERTICAL_SCROLL_BARS,
3522 FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT,
3523 FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT,
3524 FRAME_SCROLL_BAR_PIXEL_WIDTH, and FRAME_SCROLL_BAR_COLS macros to
3525 allow per-window scroll-bar settings.
3526 (WINDOW_LEFT_SCROLL_BAR_COLS, WINDOW_RIGHT_SCROLL_BAR_COLS): New macros.
3527 (WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH): New macro. Change code that
3528 referred to FRAME_LEFT_SCROLL_BAR_WIDTH.
3529 (WINDOW_RIGHT_SCROLL_BAR_AREA_WIDTH): New macro. Change code
3530 that referred to FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT and
3531 FRAME_SCROLL_BAR_WIDTH.
3532 (WINDOW_SCROLL_BAR_COLS, WINDOW_SCROLL_BAR_AREA_WIDTH)
3533 (WINDOW_SCROLL_BAR_AREA_X): New macros.
3534 (WINDOW_HEADER_LINE_HEIGHT): Renamed from
3535 WINDOW_DISPLAY_HEADER_LINE_HEIGHT, moved from dispextern.h.
3536 (WINDOW_BOX_HEIGHT_NO_MODE_LINE): Renamed from
3537 WINDOW_DISPLAY_HEIGHT_NO_MODE_LINE, moved from dispextern.h.
3538 (WINDOW_BOX_TEXT_HEIGHT): Renamed from
3539 WINDOW_DISPLAY_PIXEL_WIDTH, moved from dispextern.h.
3540 (WINDOW_TO_FRAME_PIXEL_X, WINDOW_TO_FRAME_PIXEL_Y)
3541 (FRAME_TO_WINDOW_PIXEL_X, FRAME_TO_WINDOW_PIXEL_Y)
3542 (WINDOW_TEXT_TO_FRAME_PIXEL_X): Moved here from dispextern.h.
3543 (WINDOW_LEFT_MARGIN_WIDTH): Renamed from
3544 WINDOW_DISPLAY_LEFT_AREA_PIXEL_WIDTH, moved from dispextern.h.
3545 (WINDOW_RIGHT_MARGIN_WIDTH): Renamed from
3546 WINDOW_DISPLAY_RIGHT_AREA_PIXEL_WIDTH, moved from dispextern.h.
3547 (window_from_coordinates): Update prototype.
3548 (Fset_window_buffer): Update EXFUN.
3549 (set_window_buffer): Update prototype.
3550
3551 * dispextern.h (struct glyph_matrix): Rename members window_left_x
3552 to window_left_col, window_top_y to window_top_line. All uses
3553 changed.
3554 (FRAME_INTERNAL_BORDER_WIDTH_SAFE): Remove macro; can now safely
3555 use FRAME_INTERNAL_BORDER_WIDTH macro instead as
3556 internal_border_width is now set to 0 for non-window frames.
3557 (WINDOW_DISPLAY_PIXEL_WIDTH, WINDOW_DISPLAY_PIXEL_HEIGHT)
3558 (WINDOW_DISPLAY_MODE_LINE_HEIGHT, WINDOW_DISPLAY_HEADER_LINE_HEIGHT)
3559 (WINDOW_DISPLAY_HEIGHT_NO_MODE_LINE, WINDOW_DISPLAY_TEXT_HEIGHT)
3560 (WINDOW_DISPLAY_LEFT_EDGE_PIXEL_X, WINDOW_DISPLAY_RIGHT_EDGE_PIXEL_X)
3561 (WINDOW_DISPLAY_TOP_EDGE_PIXEL_Y, WINDOW_DISPLAY_BOTTOM_EDGE_PIXEL_Y)
3562 (WINDOW_TO_FRAME_PIXEL_X, WINDOW_TO_FRAME_PIXEL_Y)
3563 (FRAME_TO_WINDOW_PIXEL_X, FRAME_TO_WINDOW_PIXEL_Y)
3564 (WINDOW_DISPLAY_LEFT_AREA_PIXEL_WIDTH)
3565 (WINDOW_DISPLAY_RIGHT_AREA_PIXEL_WIDTH, WINDOW_WANTS_MODELINE_P):
3566 Move to window.h and renamed [see window.h changes].
3567 (WINDOW_AREA_TO_FRAME_PIXEL_X, WINDOW_AREA_PIXEL_WIDTH)
3568 (WINDOW_DISPLAY_TEXT_AREA_PIXEL_WIDTH): Remove macros.
3569 (WINDOW_WANTS_MODELINE_P, WINDOW_WANTS_HEADER_LINE_P):
3570 Use WINDOW_TOTAL_LINES.
3571 (frame_update_line_height): Remove prototype.
3572
3573 * buffer.h (struct buffer): Rename members measured in columns:
3574 left_margin_width to left_margin_cols, right_margin_width to
3575 right_margin_cols. All uses changed.
3576 New members left_fringe_width, right_fringe_width,
3577 fringes_outside_margins for per-buffer fringe settings.
3578 New members scroll_bar_width and vertical_scroll_bar_type for
3579 per-buffer scroll bar settings.
3580
3581 * buffer.c (init_buffer_once): Set buffer_defaults and
3582 buffer_local_flags for new buffer-local variables
3583 left_fringe_width, right_fringe_width, fringes_outside_margins,
3584 scroll_bar_width, and vertical_scroll_bar_type.
3585 (syms_of_buffer): Defvar_per_buffer them, and defvar_lisp_nopro
3586 default-* variables for them.
3587
3588 * dispnew.c: Make (many) trivial substitutions for renamed and
3589 new macros in dispextern.h, frame.h and window.h.
3590 (mode_line_string): No need to adjust width for mode lines, as it
3591 is already adjusted by the caller.
3592 (marginal_area_string): Handle fringes inside/outside margins.
3593
3594 * frame.c: Make (many) trivial substitutions for renamed and
3595 new macros in dispextern.h, frame.h and window.h.
3596 (make_frame): Initialize left_fringe_width, right_fringe_width,
3597 fringe_cols, scroll_bar_actual_width, border_width,
3598 internal_border_width, column_width, line_height, x_pixels_diff,
3599 y_pixels_diff, want_fullscreen, size_hint_flags, and win_gravity
3600 members with values suitable for a non-window frames.
3601
3602 * gtkutil.c: Make (many) trivial substitutions for renamed and
3603 new macros in dispextern.h, frame.h and window.h.
3604
3605 * indent.c: Make (few) trivial substitutions for renamed and
3606 new macros in dispextern.h, frame.h and window.h.
3607
3608 * keyboard.c: Make (many) trivial substitutions for renamed and
3609 new macros in dispextern.h, frame.h and window.h.
3610 (make_lispy_event): Use window positions returned from
3611 window_from_coordinates when constructing the lisp event for
3612 MOUSE_CLICK_EVENT and DRAG_N_DROP_EVENT, rather than calculating
3613 (incorrect) values locally.
3614 (make_lispy_movement): Use window positions returned from
3615 window_from_coordinates when constructing the lisp event, rather
3616 than calculating (incorrect) values locally.
3617
3618 * scroll.c: Make (some) trivial substitutions for renamed and
3619 new macros in dispextern.h, frame.h and window.h.
3620
3621 * sunfns.c (Fsun_menu_internal): Adapt to per-window fringes and
3622 scroll-bars.
3623
3624 * sysdep.c: Make (few) trivial substitutions for renamed and
3625 new macros in dispextern.h, frame.h and window.h.
3626
3627 * term.c: Make (some) trivial substitutions for renamed and
3628 new macros in dispextern.h, frame.h and window.h.
3629
3630 * widget.c: Make (few) trivial substitutions for renamed and
3631 new macros in dispextern.h, frame.h and window.h.
3632
3633 * window.c: Make (many) trivial substitutions for renamed and
3634 new macros in dispextern.h, frame.h and window.h.
3635 (make_window): Initialize new members
3636 left_margin_cols, right_margin_cols, left_fringe_width,
3637 right_fringe_width, fringes_outside_margins, scroll_bar_width,
3638 and vertical_scroll_bar_type.
3639 (coordinates_in_window): Adapted to new fringe/margin positions
3640 and per-window fringes and scroll-bars.
3641 Fix bug related to incorrectly adjusting coordinates by
3642 frame's internal_border_width (the effect normally negible since
3643 the internal_border_width is typically 0 or 1 pixel, but very
3644 noticeable for an internal_border_width of e.g. 25 pixels).
3645 Upon successful return (other than ON_NOTHING), the coordinates
3646 are now always properly converted to window relative for the
3647 given display element.
3648 (window_from_coordinates): Add new parameters wx and wy to
3649 return the window relative x and y position in the returned
3650 window and part. A null arg means, don't return the position.
3651 All callers changed.
3652 (adjust_window_margins): New function which may reduce the width
3653 of the display margins if a window's text area is too small after
3654 resizing or splitting windows.
3655 (size_window): Fix bug that did not account for display margin
3656 widths when checking the minimum width of a window; use
3657 adjust_window_margins.
3658 (set_window_buffer): Call Fset_window_fringes and
3659 Fset_window_scroll_bars to setup per-window elements.
3660 Add new arg KEEP_MARGINS_P. Non-nil means to keep window's
3661 existing display margin, fringe widths, and scroll bar settings
3662 (e.g. after splitting a window or resizing the frame).
3663 All callers changed.
3664 (Fset_window_buffer): New arg KEEP_MARGINS. All callers changed.
3665 (Fsplit_window): Duplicate original window's display margin,
3666 fringe, and scroll-bar settings; then call Fset_window_buffer with
3667 KEEP_MARGINS non-nil. This fixes a bug which caused a split
3668 window to only preserve the display margins in one of the windows.
3669 When splitting horizontally, call adjust_window_margins on both
3670 windows to ensure that the text area of the new windows is non too
3671 narrow. This fixes a bug which could cause emacs to trap if the
3672 width of the split window was less than the width of the display
3673 margins.
3674 (window_box_text_cols): Renamed from window_internal_width.
3675 All uses changed. Adapt to per-window fringes and scroll bars.
3676 Fix bug that caused vertical separator to be subtracted also on
3677 window frames. Fix another bug that did not reduce the returned
3678 value by the columns used for display margins.
3679 (window_scroll_line_based): Fix bug related to scrolling too much
3680 when display margins are present (implicitly fixed by the fix to
3681 window_box_text_cols).
3682 (scroll_left, scroll_right): Fix bug related to scrolling too far
3683 by default when display margins are present (implicitly fixed by
3684 the fix to window_box_text_cols).
3685 (struct saved_window): Rename members left to left_col, top to
3686 top_line, width to total_cols, height to total_lines, orig_top to
3687 orig_top_line, orig_height to orig_total_lines. All uses changed.
3688 New members left_margin_cols, right_margin_cols,
3689 left_fringe_width, right_fringe_width, fringes_outside_margins,
3690 scroll_bar_width, and vertical_scroll_bar_type for saving
3691 per-window display elements.
3692 (Fset_window_configuration): Restore display margins, fringes,
3693 and scroll bar settings. This fixes a bug which caused display
3694 margins to be discarded when saving and restoring a window
3695 configuration.
3696 (save_window_save): Save display margins, fringes, and scroll bar
3697 settings. This fixes a bug which caused display margins to be
3698 discarded when saving and restoring a window configuration.
3699 (Fset_window_margins): Do nothing if display margins are not
3700 really changed. Otherwise, call adjust_window_margins to ensure
3701 the text area doesn't get too narrow. This fixes a bug which
3702 could cause emacs to trap if setting display margins wider than
3703 the width of the window.
3704 (Fset_window_fringes): New defun to allow user to specifically set
3705 this window's fringe widths and position vs. display margins.
3706 (Fwindow_fringes): New defun to return window's actual fringe
3707 settings.
3708 (Fset_window_scroll_bars): New defun to allow user to specifically
3709 set this window's scroll bar width and position.
3710 (Fwindow_scroll_bars): New defun to return window's actual scroll
3711 bar settings.
3712 (compare_window_configurations): Also compare display margins,
3713 fringes, and scroll bar settings.
3714 (syms_of_window): Defsubr new defuns for fringe and scroll bars.
3715
3716 * xdisp.c: Make (many) trivial substitutions for renamed and
3717 new macros in dispextern.h, frame.h and window.h.
3718 (window_box_width): Adapt to per-window fringes and scroll bars,
3719 and new fringe vs. display margin position. Note that returned
3720 value is no longer guaranteed to be a whole multiple of the frame
3721 column width, since per-window fringes may now be any width.
3722 (window_box_left_offset): New function like window_box_left, but
3723 value is relative to left border of window (rather than frame).
3724 (window_box_right_offset): New function like window_box_right,
3725 but value is relative to left border of window.
3726 (window_box_left): Adapt to per-window fringes and scroll bars,
3727 and new fringe vs. display margin position. Simplify by using
3728 WINDOW_LEFT_EDGE_X and window_box_left_offset.
3729 (window_box): Allow null args for unnecessary return values;
3730 change/simplify relevant callers.
3731 (x_y_to_hpos_vpos): Adapt to per-window fringes and scroll bars,
3732 and new fringe vs. display margin position.
3733 Use window_box_left_offset and window_box_right_offset
3734 (get_glyph_string_clip_rect): Adapt to per-window fringes and
3735 scroll bars, and new fringe vs. display margin position.
3736 Use WINDOW_LEFT_EDGE_X and WINDOW_TOTAL_WIDTH.
3737 (draw_fringe_bitmap): Rework to handle per-window fringes and new
3738 fringe vs. display margin position.
3739 (hscroll_window_tree): Use window_box_width instead of window_box.
3740 (redisplay_window): Adapt to per-window scroll bars.
3741 (draw_glyphs): Rework to handle per-window fringes and scroll
3742 bars, and new fringe vs. display margin position.
3743 Use WINDOW_LEFT_EDGE_X, WINDOW_TOTAL_WIDTH, and window_box_left.
3744 (x_clear_end_of_line): Adapt to per-window fringes and scroll
3745 bars, and new fringe vs. display margin position. Fix bug which
3746 increased total width of full_width rows by width of scroll bars
3747 although window's total width already includes that.
3748 (x_fix_overlapping_area): Simplify using window_box_left_offset.
3749 (expose_area): Simplify using window_box_left_offset.
3750 (x_draw_vertical_border): Handle per-window scroll bar settings,
3751 mixing windows with left, right and no scroll bars.
3752
3753 * xfaces.c [WINDOWSNT]: Move redefinition of FONT_WIDTH macro to
3754 where it's used in x_list_fonts (for clarity).
3755 (frame_update_line_height): Remove unused function; functionality
3756 is now done directly when setting the default font in x_set_font.
3757
3758 * xfns.c: Make (many) trivial substitutions for renamed and
3759 new macros in dispextern.h, frame.h and window.h.
3760
3761 * xmenu.c: Make (some) trivial substitutions for renamed and
3762 new macros in dispextern.h, frame.h and window.h.
3763
3764 * xterm.h (struct x_output): Move members left_pos, top_pos,
3765 border_width, pixel_height, pixel_width, line_height,
3766 internal_border_width, vertical_scroll_bar_extra,
3767 left_fringe_width, right_fringe_width, fringe_cols,
3768 fringes_extra, win_gravity, size_hint_flags, want_fullscreen,
3769 x_pixels_diff, and y_pixels_diff to struct frame (frame.h).
3770 (FRAME_INTERNAL_BORDER_WIDTH, FRAME_LINE_HEIGHT): Move to frame.h.
3771 (FRAME_DEFAULT_FONT_WIDTH): Remove macro.
3772 (PIXEL_WIDTH, PIXEL_HEIGHT)
3773 (FRAME_X_FRINGE_COLS, FRAME_X_FRINGE_WIDTH)
3774 (FRAME_X_LEFT_FRINGE_WIDTH, FRAME_X_RIGHT_FRINGE_WIDTH): Moved to
3775 frame.h and renamed [see frame.h changes].
3776 (CHAR_TO_PIXEL_ROW, CHAR_TO_PIXEL_COL, CHAR_TO_PIXEL_WIDTH)
3777 (CHAR_TO_PIXEL_HEIGHT, PIXEL_TO_CHAR_ROW, PIXEL_TO_CHAR_COL)
3778 (PIXEL_TO_CHAR_WIDTH, PIXEL_TO_CHAR_HEIGHT): Moved to frame.h
3779 and renamed [see frame.h changes].
3780
3781 * xterm.c: Make (several) trivial substitutions for renamed and
3782 new macros in dispextern.h, frame.h and window.h.
3783 (x_draw_glyph_string_box): Adapt to per-window fringes and
3784 scroll-bars.
3785 (scroll_run): Adapt to new fringe position.
3786 (glyph_rect): Use window coordinates returned from
3787 window_from_coordinates rather than frame_to_window_pixel_xy.
3788 (XTset_vertical_scroll_bar): Adapt to per-window fringes and
3789 scroll-bars.
3790 (handle_one_xevent): Simplify a USE_GTK conditional.
3791 (x_clip_to_row): Remove superfluous whole_line_p arg and code
3792 (fringes are now inside margins, i.e. always in the clipping area).
3793 All callers changed.
3794 (x_new_font): Set FRAME_COLUMN_WIDTH and FRAME_LINE_HEIGHT
3795 directly, then call compute_fringe_widths. Don't call
3796 frame_update_line_height.
3797
3798 * w32term.h (struct w32_output): Move members left_pos, top_pos,
3799 border_width, pixel_height, pixel_width, line_height,
3800 internal_border_width, vertical_scroll_bar_extra,
3801 left_fringe_width, right_fringe_width, fringe_cols,
3802 fringes_extra, win_gravity, size_hint_flags, want_fullscreen,
3803 x_pixels_diff, and y_pixels_diff to struct frame (frame.h).
3804 (FRAME_INTERNAL_BORDER_WIDTH, FRAME_LINE_HEIGHT): Move to frame.h.
3805 (FRAME_DEFAULT_FONT_WIDTH): Remove macro.
3806 (PIXEL_WIDTH, PIXEL_HEIGHT)
3807 (FRAME_X_FRINGE_COLS, FRAME_X_FRINGE_WIDTH)
3808 (FRAME_X_LEFT_FRINGE_WIDTH, FRAME_X_RIGHT_FRINGE_WIDTH): Moved to
3809 frame.h and renamed [see frame.h changes].
3810 (CHAR_TO_PIXEL_ROW, CHAR_TO_PIXEL_COL, CHAR_TO_PIXEL_WIDTH)
3811 (CHAR_TO_PIXEL_HEIGHT, PIXEL_TO_CHAR_ROW, PIXEL_TO_CHAR_COL)
3812 (PIXEL_TO_CHAR_WIDTH, PIXEL_TO_CHAR_HEIGHT): Moved to frame.h
3813 and renamed [see frame.h changes].
3814
3815 * w32term.c: Make (several) trivial substitutions for renamed and
3816 new macros in dispextern.h, frame.h and window.h.
3817 (x_draw_glyph_string_box): Adapt to per-window fringes and
3818 scroll-bars.
3819 (glyph_rect): Use window coordinates returned from
3820 window_from_coordinates rather than frame_to_window_pixel_xy.
3821 (XTset_vertical_scroll_bar): Adapt to per-window fringes and
3822 scroll-bars.
3823 (w32_clip_to_row): Remove superfluous whole_line_p arg and code
3824 (fringes are now inside margins, i.e. always in the clipping area).
3825 All callers changed.
3826 (x_new_font): Set FRAME_COLUMN_WIDTH and FRAME_LINE_HEIGHT
3827 directly, then call compute_fringe_widths. Don't call
3828 frame_update_line_height.
3829
3830 * w32console.c: Make (few) trivial substitutions for renamed and
3831 new macros in dispextern.h, frame.h and window.h.
3832
3833 * w32fns.c: Make (many) trivial substitutions for renamed and
3834 new macros in dispextern.h, frame.h and window.h.
3835
3836 * w32menu.c: Make (few) trivial substitutions for renamed and
3837 new macros in dispextern.h, frame.h and window.h.
3838
3839 * macterm.h (struct mac_output): Move members left_pos, top_pos,
3840 border_width, pixel_height, pixel_width, line_height,
3841 internal_border_width, vertical_scroll_bar_extra,
3842 left_fringe_width, right_fringe_width, fringe_cols,
3843 fringes_extra, win_gravity, size_hint_flags, want_fullscreen,
3844 x_pixels_diff, y_pixels_diff to struct frame (frame.h).
3845 (FRAME_INTERNAL_BORDER_WIDTH, FRAME_LINE_HEIGHT): Move to frame.h.
3846 (FRAME_DEFAULT_FONT_WIDTH): Remove macro.
3847 (PIXEL_WIDTH, PIXEL_HEIGHT)
3848 (FRAME_X_FRINGE_COLS, FRAME_X_FRINGE_WIDTH)
3849 (FRAME_X_LEFT_FRINGE_WIDTH, FRAME_X_RIGHT_FRINGE_WIDTH): Moved to
3850 frame.h and renamed [see frame.h changes].
3851 (CHAR_TO_PIXEL_ROW, CHAR_TO_PIXEL_COL, CHAR_TO_PIXEL_WIDTH)
3852 (CHAR_TO_PIXEL_HEIGHT, PIXEL_TO_CHAR_ROW, PIXEL_TO_CHAR_COL)
3853 (PIXEL_TO_CHAR_WIDTH, PIXEL_TO_CHAR_HEIGHT): Moved to frame.h
3854 and renamed [see frame.h changes].
3855
3856 * macterm.c: Make (several) trivial substitutions for renamed and
3857 new macros in dispextern.h, frame.h and window.h.
3858 (x_draw_glyph_string_box): Adapt to per-window fringes and
3859 scroll-bars.
3860 (glyph_rect): Use window coordinates returned from
3861 window_from_coordinates rather than frame_to_window_pixel_xy.
3862 (XTset_vertical_scroll_bar): Adapt to per-window fringes and
3863 scroll-bars.
3864 (x_clip_to_row): Remove superfluous whole_line_p arg and code
3865 (fringes are now inside margins, i.e. always in the clipping area).
3866 All callers changed.
3867 (x_new_font): Set FRAME_COLUMN_WIDTH and FRAME_LINE_HEIGHT
3868 directly, then call compute_fringe_widths. Don't call
3869 frame_update_line_height.
3870
3871 * macfns.c: Make (several) trivial substitutions for renamed and
3872 new macros in dispextern.h, frame.h and window.h.
3873 (x_real_positions): Set f->x_pixels_diff and f->y_pixels_diff to 0.
3874
3875 * macmenu.c: Make (few) trivial substitutions for renamed and
3876 new macros in dispextern.h, frame.h and window.h.
3877
3878 * msdos.h (struct x_output): Remove members left_pos, top_pos,
3879 and line_height, and use corresponding new members in struct
3880 frame. All uses changed.
3881 (FRAME_LINE_HEIGHT, FRAME_INTERNAL_BORDER_WIDTH): Remove macros;
3882 superseeded by corresponding macros in frame.h.
3883
3884 * msdos.c: Make (several) trivial substitutions for renamed and
3885 new macros in dispextern.h, frame.h and window.h.
3886 (IT_note_mouse_highlight): Use updated window coordinates returned
3887 by window_from_coordinates, rather than adjusting them locally.
3888 (internal_terminal_init): No need to initialize line_height here;
3889 it now defaults to 1.
3890
3891 2003-05-24 Stefan Monnier <monnier@cs.yale.edu>
3892
3893 * keyboard.c (read_key_sequence): Adjust fkey and keytran when
3894 dropping `down' events.
3895
3896 2003-05-24 Andreas Schwab <schwab@suse.de>
3897
3898 * coding.c (find_safe_codings): Fix last change.
3899
3900 2003-05-24 Istvan Marko <mi@imarko.dhs.org> (tiny change)
3901
3902 * xfns.c (x_window): Fix typo from 2003-05-21 change.
3903
3904 2003-05-23 Stefan Monnier <monnier@cs.yale.edu>
3905
3906 * xdisp.c (display_mode_element): Increase max depth.
3907 Simplify the error handling code. Use a different error string
3908 for the case where we hit the depth limit.
3909
3910 * lisp.h (Vfundamental_mode_abbrev_table): Don't declare.
3911
3912 * buffer.c (reset_buffer_local_variables): Remove redundant setting.
3913
3914 2003-05-21 Stefan Monnier <monnier@cs.yale.edu>
3915
3916 * intervals.c (get_local_map): Don't get char-property of previous
3917 point any more: get_pos_property already does it and better.
3918
3919 2003-05-21 Dave Love <fx@gnu.org>
3920
3921 [Merged from unicode branch.]
3922
3923 * xfns.c (x_window, x_window): Use use_xim.
3924
3925 * xterm.c (use_xim): Initialize.
3926 (xim_open_dpy, xim_initialize, xim_close_dpy): Use use_xim.
3927 (x_term_init): Maybe set use_xim.
3928
3929 * xterm.h (use_xim) [HAVE_X_I18N]: Declare.
3930
3931 2003-05-21 Jason Rumney <jasonr@gnu.org>
3932
3933 * unexw32.c (_start): Remove _fmode initialization.
3934
3935 * emacs.c (main) [WINDOWSNT]: Move it here.
3936
3937 2003-05-20 Dave Love <fx@gnu.org>
3938
3939 * s/gnu-linux.h (MAIL_USE_FLOCK): Make it conditional.
3940
3941 2003-05-19 Richard M. Stallman <rms@gnu.org>
3942
3943 * xfaces.c (Finternal_set_lisp_face_attribute): Handle Qunspecified
3944 as value for QCfont attribute.
3945 (realize_default_face): lface should already exist; crash if not.
3946 Specify 0 for FORCE_P when calling set_lface_from_font_name.
3947
3948 * frame.c (Fignore_event): Doc fix.
3949
3950 2003-05-19 Kenichi Handa <handa@m17n.org>
3951
3952 * coding.c (decode_coding_string): Handle post-read-conversion
3953 even if the coding doesn't require decoding.
3954
3955 2003-05-18 Richard M. Stallman <rms@gnu.org>
3956
3957 * callproc.c (Fcall_process_region): Doc fix.
3958
3959 2003-05-17 Stefan Monnier <monnier@cs.yale.edu>
3960
3961 * lread.c (Fload): Print a message if package is obsolete.
3962
3963 * window.c (Fselect_window): Add optional `norecord' arg.
3964 (select_window_1): Fold into Fselect_window.
3965 (select_window_norecord): New function.
3966 (temp_output_buffer_show): Use it. Preserve current buffer.
3967
3968 * window.h (Fselect_window): Update declaration.
3969
3970 * window.c (delete_window, Fother_window, Fset_window_configuration):
3971 * minibuf.c (read_minibuf):
3972 * macterm.c (x_new_focus_frame):
3973 * frame.c (do_switch_frame, Fset_frame_selected_window, Fdelete_frame):
3974 * callint.c (Fcall_interactively):
3975 * xterm.c (x_new_focus_frame): Pass nil as new arg to Fselect_window.
3976
3977 * buffer.c (Fpop_to_buffer): Pass norecord to Fselect_window.
3978
3979 2003-05-17 David Kastrup <dak@gnu.org>
3980
3981 * process.c (read_process_output): Back out change from 2003-03-09.
3982
3983 2003-05-17 Stefan Monnier <monnier@cs.yale.edu>
3984
3985 * editfns.c (get_pos_property): Don't assume that `object' = nil.
3986
3987 * textprop.c (text_property_stickiness): New arg `buffer'.
3988
3989 * intervals.h (text_property_stickiness): New arg `buffer'.
3990 (get_pos_property): Declare.
3991
3992 * intervals.c (get_local_map): Use get_pos_property, to obey
3993 stickiness and empty overlays.
3994 (create_root_interval, graft_intervals_into_buffer): Use BEG.
3995 (merge_properties, intervals_equal, merge_properties_sticky):
3996 Use XCAR, XCDR.
3997 (adjust_for_invis_intang): Pass new arg to text_property_stickiness.
3998
3999 2003-05-17 Richard M. Stallman <rms@gnu.org>
4000
4001 * minibuf.c (read_minibuf): If buffer is empty, record the default
4002 in the history.
4003 (Fminibuffer_complete_word): When deleting the overlap, take account
4004 of its real position.
4005
4006 * fns.c (map_char_table): Fix previous change.
4007
4008 * syntax.c (find_defun_start):
4009 When open_paren_in_column_0_is_defun_start,
4010 return beginning of buffer.
4011
4012 * lisp.h (map_char_table): Declare added arg.
4013
4014 * fns.c (map_char_table): New arg TABLE gets the master table.
4015 All calls changed.
4016 Process default and inheritance, resorting to Faref if necessary.
4017
4018 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap)
4019 (Faccessible_keymaps): Pass new arg to map_char_table.
4020
4021 * fontset.c (Ffontset_info): Pass new arg to map_char_table.
4022
4023 * casetab.c (set_case_table): Pass new arg to map_char_table.
4024
4025 * data.c (let_shadows_buffer_binding_p): Make target of p volatile.
4026
4027 * lisp.h (specbinding_func): New typedef.
4028 (struct specbinding): Use specbinding_func, to put the `volatile'
4029 in the right place.
4030
4031 * alloc.c (Fgarbage_collect): Cast pointers into specpdl
4032 to avoid GCC warning.
4033
4034 2003-05-16 Ralph Schleicher <rs@nunatak.allgaeu.org> (tiny change)
4035
4036 * fileio.c (Fdelete_file): Handle symlinks pointing to directories.
4037
4038 2003-05-15 Stefan Monnier <monnier@cs.yale.edu>
4039
4040 * keyboard.c (apply_modifiers): Don't fill the other cache.
4041
4042 2003-05-14 Stefan Monnier <monnier@cs.yale.edu>
4043
4044 * .gdbinit-union: New file, for USE_LISP_UNION_TYPE users.
4045
4046 * window.h (Qwindowp, Qwindow_live_p, Vwindow_list)
4047 (Fwindow_end, Fselected_window, Fdelete_window, Fwindow_buffer)
4048 (Fget_buffer_window, Fsave_window_excursion, Fsplit_window)
4049 (Fset_window_configuration, Fcurrent_window_configuration)
4050 (compare_window_configurations, Fcoordinates_in_window_p, Fwindow_at)
4051 (Fpos_visible_in_window_p, mark_window_cursors_off)
4052 (window_internal_height, window_internal_width, Frecenter)
4053 (Fscroll_other_window, Fset_window_start, temp_output_buffer_show)
4054 (replace_buffer_in_all_windows, init_window_once, init_window)
4055 (syms_of_window, keys_of_window): Move from lisp.h.
4056 * lisp.h: Move window.c declarations to window.h.
4057
4058 * bytecode.c: Include window.h.
4059 * emacs.c: Include window.h.
4060
4061 * keyboard.c (make_lispy_event): Apply modifiers to multibyte-char key.
4062 (keyremap): Add `parent' field.
4063 (keyremap_step): Use it. Remove `parent' argument.
4064 (read_key_sequence): Setup and use the new `parent' field.
4065
4066 2003-05-11 Stefan Monnier <monnier@cs.yale.edu>
4067
4068 * keyboard.c (adjust_point_for_property): Ensure termination.
4069
4070 2003-05-10 Stefan Monnier <monnier@cs.yale.edu>
4071
4072 * keyboard.c (follow_key): Remove dead variable `did_meta'.
4073 (access_keymap_keyremap, keyremap_step): New funs, extracted from the
4074 duplicated handling of function-key-map and key-translation-map
4075 in read_key_sequence.
4076 (read_key_sequence): Use them.
4077
4078 * keyboard.c (adjust_point_for_property): Try harder to move point
4079 to the non-sticky end of an invisible property.
4080
4081 * xdisp.c (single_display_prop_intangible_p): Make `space' display
4082 property intangible as well.
4083
4084 2003-05-10 Andreas Schwab <schwab@suse.de>
4085
4086 * xmenu.c (single_menu_item): Change last parameter to void* to
4087 avoid warning.
4088
4089 2003-05-09 Richard M. Stallman <rms@gnu.org>
4090
4091 * print.c (Fprin1_to_string): Instead of gcpro, set abort_on_gc.
4092 Bind Qinhibit_modification_hooks to t so there will be no GC.
4093 Rename local `tem' to `save_deactivate_mark'.
4094
4095 * eval.c (specpdl_ptr): Declare volatile.
4096 (unbind_to): Copy the whole binding and decrement specpdl_ptr
4097 before doing the work of unbinding it.
4098
4099 * lisp.h (struct specbinding): Declare elements volatile.
4100 (specpdl_ptr): Declare volatile.
4101
4102 * Makefile.in (alloca.o): Specify -DDO_BLOCK_INPUT in compiling.
4103
4104 * alloca.c: Test DO_BLOCK_INPUT rather than `emacs'
4105 for use of BLOCK_INPUT and inclusion of lisp.h and blockinput.h.
4106
4107 2003-05-08 Dave Love <fx@gnu.org>
4108
4109 * coding.c (Vlast_coding_system_used): Doc fix.
4110
4111 2003-05-07 Jason Rumney <jasonr@gnu.org>
4112
4113 * fileio.c (Ffile_symlink_p): Let handlers handle symlinks even
4114 when system does not support them.
4115
4116 2003-05-05 Stefan Monnier <monnier@cs.yale.edu>
4117
4118 * fileio.c (Qwrite_region_annotate_functions): New var.
4119 (build_annotations): Use it to process the global part of the hook.
4120 (syms_of_fileio): Init and staticpro it.
4121
4122 * keyboard.c (safe_run_hooks_error): Display a message instead of
4123 silently ignoring the error.
4124
4125 2003-05-03 Stefan Monnier <monnier@cs.yale.edu>
4126
4127 * keyboard.c (input_available_signal): Mark static.
4128 (menu_bar_items): Use map_keymap.
4129 (menu_bar_one_keymap): Remove.
4130 (menu_bar_item): Adjust arglist (for use in map_keymap).
4131 Properly hide a second binding when not both are keymaps.
4132
4133 * xmenu.c (struct skp): New struct, to pass args through map_keymap.
4134 (single_keymap_panes): Use it and map_keymap.
4135 (single_menu_item): Use skp as well.
4136
4137 * keymap.h (map_keymap_function_t): New type.
4138 (map_keymap): Declare.
4139
4140 * keymap.c (map_keymap_item, map_keymap_char_table_item, map_keymap)
4141 (map_keymap_call, Fmap_keymap): New functions.
4142 (syms_of_keymap): Defsubr map-keymap.
4143
4144 2003-05-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4145
4146 * gtkutil.c (create_dialog, make_widget_for_menu_item)
4147 (make_menu_item, create_menus, xg_update_menu_item): Don't call
4148 ..._with_mnemonic functions for menu items.
4149
4150 2003-05-01 Kenichi Handa <handa@m17n.org>
4151
4152 * coding.c (coding_system_accept_latin_extra_p): Delete this
4153 function.
4154 (find_safe_codings): Pay attention to
4155 the property tranlsation-table-for-encode of each codings.
4156 (syms_of_coding): Give Qtranslation_table the extra slot number 2.
4157
4158 2003-05-01 Stefan Monnier <monnier@cs.yale.edu>
4159
4160 * eval.c (Funwind_protect): Use func=Fprogn rather than symbol=Qnil.
4161
4162 2003-04-30 Stefan Monnier <monnier@cs.yale.edu>
4163
4164 * eval.c (unbind_to): Don't handle symbol = Qnil any more.
4165
4166 * lisp.h (CHECK): Wrap args in parenthesis.
4167 (specbind): Fix doc: symbol = Qnil is not supported any more.
4168
4169 * bytecode.c (Fbyte_code) <unwind-protect>:
4170 Use Fprogn rather than 0 and Qnil.
4171
4172 * keyboard.c (parse_modifiers_uncached): Parse `down', `drag',
4173 `double', and `triple' modifiers as well.
4174
4175 2003-04-30 Richard M. Stallman <rms@gnu.org>
4176
4177 * keyboard.c (echo_char): Don't clear out a dash that follows a space.
4178
4179 * alloc.c (abort_on_gc): New variable.
4180 (Fgarbage_collect): Abort if abort_on_gc is set.
4181
4182 * lisp.h (abort_on_gc): Add decl.
4183
4184 * eval.c (Fsignal): Clear abort_on_gc.
4185
4186 * editfns.c (Fformat): Set abort_on_gc during first scan of format.
4187 Reinit FORMAT_START and END before second scan.
4188
4189 * xdisp.c (move_it_vertically_backward): Do the final big else
4190 even if nlines is 0.
4191
4192 * xdisp.c (redisplay_internal): Finish the per-frame loop
4193 even if redisplay is suspended by input.
4194
4195 2003-04-24 Andrew Choi <akochoi@shaw.ca>
4196
4197 * macterm.c (x_list_fonts): Return all fonts that match if
4198 maxnames = -1.
4199
4200 2003-04-25 Kenichi Handa <handa@m17n.org>
4201
4202 * syntax.c (skip_chars): Fix previous change.
4203
4204 2003-04-24 Kenichi Handa <handa@m17n.org>
4205
4206 * syntax.c (skip_chars): Make the code faster by using the common
4207 technique of *p, *stop, and *endp.
4208
4209 2003-04-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4210
4211 * xdisp.c (update_tool_bar): BLOCK_INPUT before calling
4212 tool_bar_items so GTK tool bar expose callback does not access items
4213 being updated.
4214
4215 2003-04-19 Stefan Monnier <monnier@cs.yale.edu>
4216
4217 * eval.c (Fapply): Undo last change and add a comment about why.
4218
4219 2003-04-18 Miles Bader <miles@gnu.org>
4220
4221 * data.c (Faset): Calculate nbytes earlier, to satisfy the now
4222 pickier PARSE_MULTIBYTE_SEQ.
4223
4224 2003-04-17 Stefan Monnier <monnier@cs.yale.edu>
4225
4226 * eval.c (For, Fand, Fprogn, un_autoload, do_autoload):
4227 Use XCDR, XCAR, CONSP.
4228 (Fdefmacro): Fix docstring. Use XCAR, XCDR.
4229 (Fapply): Remove unnecessary GCPRO.
4230
4231 * doc.c (Fsubstitute_command_keys): Remove spurious casts.
4232
4233 * charset.h (PARSE_MULTIBYTE_SEQ): Pretend `length' is used.
4234
4235 * buffer.h: Don't hardcode BEG==1.
4236
4237 * abbrev.c (Fdefine_abbrev_table): Use XCAR, XCDR.
4238
4239 2003-04-16 Richard M. Stallman <rms@gnu.org>
4240
4241 * xdisp.c (try_window, try_window_reusing_current_matrix):
4242 When at end of window, set window_end_pos to Z-ZV.
4243
4244 * buffer.c (Foverlay_recenter): Doc fix.
4245
4246 2003-04-14 Stefan Monnier <monnier@cs.yale.edu>
4247
4248 * dispnew.c (Fsit_For): Support XEmacs-style arg list.
4249
4250 2003-04-14 Andrew Choi <akochoi@shaw.ca>
4251
4252 * macterm.c (mac_check_for_quit_char): Don't check more often than
4253 once a second.
4254
4255 2003-04-11 Stefan Monnier <monnier@cs.yale.edu>
4256
4257 * keyboard.c (kbd_buffer_get_event): Don't handle SELECT_WINDOW_EVENT
4258 specially, so that they can't hide an implicit switch-frame event.
4259 (make_lispy_event): Handle SELECT_WINDOW_EVENT.
4260 (head_table): Use switch-frame as event_kind for select-window.
4261 (keys_of_keyboard): Don't bind [select-window] in special-event-map.
4262
4263 * editfns.c (Fformat): Lisp_Object/int mixup.
4264 (format2): Remove unused var numargs.
4265
4266 2003-04-11 Kenichi Handa <handa@m17n.org>
4267
4268 * fileio.c (Vafter_insert_file_adjust_coding_function): Delete.
4269 (Qafter_insert_file_set_coding): New variable.
4270 (syms_of_fileio): Initialize and staticpro it. Delete declaration
4271 for after-insert-file-adjust-coding-function.
4272 (Finsert_file_contents): Call Qafter_insert_file_set_coding
4273 instead of Vafter_insert_file_adjust_coding_function.
4274
4275 2003-04-11 Kenichi Handa <handa@m17n.org>
4276
4277 * lisp.h (temp_echo_area_glyphs): Adjust prototype.
4278
4279 * minibuf.c (temp_echo_area_glyphs): Change the arg to Lisp
4280 string. Callers changed.
4281
4282 2003-04-10 Kenichi Handa <handa@m17n.org>
4283
4284 * fileio.c (Vafter_insert_file_adjust_coding_function): New variable.
4285 (syms_of_fileio): Declare it as a lisp variable.
4286 (Finsert_file_contents):
4287 Call Vafter_insert_file_adjust_coding_function before calling
4288 decode-format.
4289
4290 2003-04-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4291
4292 * xterm.c (xg_scroll_callback): Call gtk_range_get_adjustment to
4293 get GtkAdjustment as widget now is a GtkRange.
4294
4295 * gtkutil.c (xg_create_scroll_bar): Connect to value-changed on
4296 GtkRange to avoid memory leak.
4297
4298 2003-04-09 Kenichi Handa <handa@m17n.org>
4299
4300 * xfaces.c (Vface_font_rescale_alist): New variable.
4301 (struct font_name): New member rescale_ratio.
4302 (font_rescale_ratio): New function.
4303 (split_font_name): If NUMERIC_P is nonzero, set font->rescale_ratio.
4304 (better_font_p): On comparing point sized, pay attention to
4305 recale_ratio member of fonts.
4306 (build_scalable_font_name): Reflect font->rescale_ratio in the
4307 font name.
4308 (syms_of_xfaces): Declare Vface_font_rescale_alist as a Lisp variable.
4309
4310 * lread.c (read1): Before calling index, check if the 2nd
4311 arguemnt is in ASCII range.
4312
4313 2003-04-08 Richard M. Stallman <rms@gnu.org>
4314
4315 * fileio.c (Ffile_symlink_p): Doc fix.
4316
4317 * editfns.c (Fformat): Translate positions of text properties
4318 in the format string to apply them to the result.
4319
4320 * fileio.c (Finsert_file_contents): Doc fix.
4321 (syms_of_fileio) <after-insert-file-functions>: Doc fix.
4322
4323 2003-04-08 Ivan Zakharyaschev <imz@altlinux.org> (tiny change)
4324
4325 * lread.c (openp): Get the Qfile_exists_p handler for STRING, not FN.
4326
4327 2003-04-08 Steven Tamm <steventamm@mac.com>
4328
4329 * mac.c (init_mac_osx_environment): Switch libexec and bin so
4330 that self-contained application finds libexec files.
4331
4332 2003-04-08 Kenichi Handa <handa@m17n.org>
4333
4334 * coding.c (code_convert_region_unwind):
4335 Set Vlast_coding_system_used to the argument.
4336 (code_convert_region): If post-read-conversion function changed
4337 the value of last-coding-sytem, keep the new value in
4338 coding->symbol so that it won't be overridden.
4339 (run_pre_post_conversion_on_str): Likewise.
4340 (coding_system_accept_latin_extra_p): New function.
4341 (find_safe_codings): Pay attention to characters registered in
4342 latin-extra-code-table.
4343
4344 2003-04-07 Thien-Thi Nguyen <ttn@gnu.org>
4345
4346 * Makefile.in (md5.o): Add missing dependency info.
4347
4348 2003-04-06 Richard M. Stallman <rms@gnu.org>
4349
4350 * xselect.c (x_handle_selection_request): Move UNGCPRO to very end.
4351
4352 * marker.c (verify_bytepos): New function.
4353
4354 * intervals.c (set_intervals_multibyte_1): When becoming
4355 multibyte, adjust right and left child sizes to a whole set of
4356 characters. If an interval gets zero total-length, delete it.
4357 If an interval consists of just its children, delete one of them.
4358
4359 * intervals.h (CHECK_TOTAL_LENGTH): New macro.
4360 * intervals.c: Add many calls to CHECK_TOTAL_LENGTH.
4361
4362 * alloc.c: (VALIDATE_LISP_STORAGE): Macro deleted.
4363 All calls deleted.
4364 (lisp_malloc): Do the work here directly.
4365
4366 2003-04-06 Gareth Jones <emacs@referential.org.uk> (tiny change)
4367
4368 * fns.c (Flength): Return SUB_CHAR_TABLE_ORDINARY_SLOTS for sub
4369 char tables.
4370
4371 2003-04-04 Kenichi Handa <handa@m17n.org>
4372
4373 * editfns.c (Fformat): Use a copy of FORMAT string so that we can
4374 destructively change "%S" to "%s".
4375
4376 2003-04-03 Miles Bader <miles@gnu.org>
4377
4378 * xfaces.c (choose_face_font): Make sure *NEEDS_OVERSTRIKE is
4379 always set.
4380
4381 2003-04-01 Dave Love <fx@gnu.org>
4382
4383 * xfns.c (xpm_lookup_color): Grok "opaque".
4384
4385 2003-03-31 Andrew Choi <akochoi@shaw.ca>
4386
4387 * frame.c (x_report_frame_params) [HAVE_CARBON]: Do not report
4388 parent window ID.
4389
4390 * macfns.c (syms_of_macfns): Remove call to init_x_parm_symbols.
4391
4392 * macterm.h (struct mac_output): Define x_pixels_diff and
4393 y_pixels_diff.
4394
4395 2003-03-31 Juanma Barranquero <lektu@terra.es>
4396
4397 * makefile.w32-in ($(BLD)/frame.$(O)): Add dependency on
4398 blockinput.h and files included from it.
4399
4400 2003-03-31 Kim F. Storm <storm@cua.dk>
4401
4402 The following changes consolidates the common code related to
4403 frame-parameter handling from the xfns.c, w32fns.c, and macfns.c
4404 files into frame.c.
4405
4406 * frame.c: Include blockinput.h.
4407 (Vx_resource_name, Vx_resource_class, Qx_frame_parameter)
4408 (Qx_resource_name, Qface_set_after_frame_default): Define vars here.
4409 (Qauto_raise, Qauto_lower, ...): Define all frame parameter
4410 related vars here.
4411 (struct frame_parm_table, frame_parms): New table for describing
4412 frame parameters and their associated Q-variable.
4413 The order of the parameters corresponds to the sequence of the
4414 frame_parm_handlers table in redisplay_interface.
4415 (x_fullscreen_move, x_set_frame_parameters)
4416 (x_report_frame_params, x_set_fullscreen, x_set_line_spacing)
4417 (x_set_screen_gamma, x_set_font, x_set_fringe_width)
4418 (x_set_border_width, x_set_internal_border_width, x_set_visibility)
4419 (x_set_autoraise, x_set_autolower, x_set_unsplittable)
4420 (x_set_vertical_scroll_bars, x_set_scroll_bar_width, x_icon_type):
4421 Generic functions for processing of frame parameters.
4422 (validate_x_resource_name, xrdb_get_resource, Fx_get_resource)
4423 (display_x_get_resource, x_get_resource_string): Functions for
4424 generic access to X resources.
4425 (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
4426 (x_default_parameter, Fx_parse_geometry): Functions for generic
4427 access to frame parameters.
4428 (x_figure_window_size): Generic calculation of frame size.
4429 Fixed to add space needed for tool bar. Also setup size_hint_flags.
4430 (syms_of_frame): Intern and staticpro frame parameter variables.
4431 Defvar_lisp Vx_resource_class and Vx_resource_name here.
4432 Defsubr Sx_get_resource and Sx_parse_geometry.
4433
4434 * frame.h (Qauto_raise, Qauto_lower, ...): Declare extern all frame
4435 parameter related vars defined in frame.c.
4436 (EMACS_CLASS): Define here.
4437 (enum FULLSCREEN_*): Define here.
4438 (x_set_scroll_bar_default_width, x_wm_set_icon_position)
4439 (x_set_offset, x_new_font, x_new_fontset): Add prototypes.
4440 (x_fullscreen_adjust, x_set_frame_parameters, x_report_frame_params)
4441 (x_set_fullscreen, x_set_line_spacing, x_set_screen_gamma, x_set_font)
4442 (x_set_fringe_width, x_set_border_width, x_set_internal_border_width)
4443 (x_set_visibility, x_set_autoraise, x_set_autolower)
4444 (x_set_unsplittable, x_set_vertical_scroll_bars)
4445 (x_set_scroll_bar_width, x_icon_type, validate_x_resource_name)
4446 (x_figure_window_size): Add prototypes.
4447
4448 * dispextern.h (frame_parm_handler): New typedef.
4449 (struct redisplay_interface): New member frame_parm_handlers.
4450 (enum resource_types): Move declaration here.
4451 (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
4452 (x_default_parameter): Add prototypes.
4453
4454 * window.c: Remove extern decl for frame parameter vars.
4455 (change_window_heights): New generic function;
4456 replaces x_change_window_heights. All users changed.
4457
4458 * window.h (change_window_heights): Add prototype.
4459
4460 * xfaces.c: Remove extern decl for frame parameter vars.
4461
4462 * xterm.h (EMACS_CLASS): Remove. Use generic define.
4463 (struct w32_display_info): Fix type of xrdb member.
4464 (enum FULLSCREEN_*): Remove.
4465 Remove prototypes for generic functions (in frame.h).
4466
4467 * xfns.c (Qauto_raise, Qauto_lower, ...): Remove vars for frame
4468 parameters now defined in frame.h and frame.c.
4469 (Vx_resource_name): Remove. Use generic var.
4470 (enum x_frame_parms): Remove (bogus, unused enum).
4471 (check_x_display_info): Make non-static (for frame.c).
4472 (struct x_frame_parm_table, x_frame_parms): Remove.
4473 (init_x_parm_symbols, x_set_frame_parameters, x_report_frame_params)
4474 (x_set_line_spacing, x_set_screen_gamma, x_icon_type, x_set_font)
4475 (x_set_border_width, x_set_internal_border_width, x_set_visibility)
4476 (x_change_window_heights, x_set_autoraise, x_set_autolower)
4477 (x_set_vertical_scroll_bars, x_set_scroll_bar_width)
4478 (validate_x_resource_name, Fx_get_resource, x_get_resource_string)
4479 (x_default_parameter, Fx_parse_geometry, x_figure_window_size):
4480 Remove. Use generic functions instead.
4481 (enum resource_types): Remove.
4482 (x_set_scroll_bar_default_width): New global function (for frame.c).
4483 (Fx_create_frame): Depend on x_figure_window_size to add space for
4484 toolbar and setup size_hint_flags.
4485 (x_frame_parm_handlers): New table for redisplay_interface.
4486 (syms_of_xfns): Don't intern/staticpro removed vars.
4487
4488 * xterm.c: Remove unnecessary extern declarations.
4489 (x_fullscreen_adjust): Remove. Use generic instead.
4490 (x_redisplay_interface): Add x_frame_parm_handlers member.
4491
4492 * w32gui.h (XrmDatabase): New (dummy) typedef.
4493
4494 * w32term.h (EMACS_CLASS): Remove. Use generic define.
4495 (struct w32_display_info): Fix type of xrdb member.
4496 (enum FULLSCREEN_*): Remove.
4497 (x_fullscreen_adjust): Remove prototype.
4498
4499 * w32fns.c (Qauto_raise, Qauto_lower, ...): Remove vars for frame
4500 parameters now defined in frame.h and frame.c.
4501 (Vx_resource_name): Remove. Use generic var.
4502 (enum x_frame_parms): Remove (bogus, unused enum).
4503 (check_x_display_info): Make non-static (for frame.c).
4504 (struct x_frame_parm_table, x_frame_parms): Remove.
4505 (init_x_parm_symbols, x_set_frame_parameters, x_report_frame_params)
4506 (x_set_line_spacing, x_set_screen_gamma, x_icon_type, x_set_font)
4507 (x_set_border_width, x_set_internal_border_width, x_set_visibility)
4508 (x_change_window_heights, x_set_autoraise, x_set_autolower)
4509 (x_set_vertical_scroll_bars, x_set_scroll_bar_width)
4510 (validate_x_resource_name, Fx_get_resource, x_get_resource_string)
4511 (x_default_parameter, Fx_parse_geometry, x_figure_window_size):
4512 Remove. Use generic functions instead.
4513 (enum resource_types): Remove.
4514 (x_set_scroll_bar_default_width): New global function (for frame.c).
4515 (Fx_create_frame): Depend on x_figure_window_size to add space for
4516 toolbar and setup size_hint_flags.
4517 (w32_frame_parm_handlers): New table for redisplay_interface.
4518 (syms_of_w32fns): Don't intern/staticpro removed vars.
4519
4520 * w32term.c: Remove unnecessary extern declarations.
4521 (x_fullscreen_adjust): Remove. Use generic instead.
4522 (x_redisplay_interface): Add w32_frame_parm_handlers member.
4523
4524 * w32reg.c (x_get_string_resource): Use XrmDatabase.
4525
4526 * macgui.h (XrmDatabase): New (dummy) typedef.
4527
4528 * macterm.h (EMACS_CLASS): Remove.
4529 (struct mac_display_info): Add xrdb member.
4530 (struct mac_output): Add want_fullscreen member.
4531
4532 * macfns.c (Qauto_raise, Qauto_lower, ...): Remove vars for frame
4533 parameters now defined in frame.h and frame.c.
4534 (Vx_resource_name): Remove. Use generic var.
4535 (check_x_display_info): Make non-static (for frame.c).
4536 (struct x_frame_parm_table, x_frame_parms): Remove.
4537 (init_x_parm_symbols, x_set_frame_parameters, x_report_frame_params)
4538 (x_set_line_spacing, x_set_screen_gamma, x_icon_type, x_set_font)
4539 (x_set_border_width, x_set_internal_border_width, x_set_visibility)
4540 (x_change_window_heights, x_set_autoraise, x_set_autolower)
4541 (x_set_vertical_scroll_bars, x_set_scroll_bar_width)
4542 (validate_x_resource_name, Fx_get_resource, x_get_resource_string)
4543 (x_default_parameter, Fx_parse_geometry, x_figure_window_size):
4544 Remove. Use generic functions instead.
4545 (enum resource_types): Remove.
4546 (x_set_scroll_bar_default_width): New global function (for frame.c).
4547 (mac_frame_parm_handlers): New table for redisplay_interface.
4548 (syms_of_macfns): Don't intern/staticpro removed vars.
4549
4550 * macterm.c: Remove unnecessary extern declarations.
4551 (x_redisplay_interface): Add mac_frame_parm_handlers member.
4552
4553 * Makefile.in (frame.o): Add dependency on blockinput.h and files
4554 included from it (atimer.h and systime.h).
4555
4556 2003-03-30 Andreas Schwab <schwab@suse.de>
4557
4558 * xdisp.c (x_insert_glyphs): Fix swapped width and height
4559 parameters for shift_glyphs_for_insert.
4560
4561 * macterm.c (x_redisplay_interface): Add missing entry for
4562 draw_vertical_window_border.
4563
4564 2003-03-29 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@gmx.net>
4565
4566 * fileio.c (Fexpand_file_name): In the no-handler case, after
4567 expanding, look again for a handler and invoke it. This is needed
4568 for filenames like "/foo/../user@host:/bar/../baz" -- the first
4569 expansion produces "/user@host:/bar/../baz" which needs to be
4570 expanded again for the finame result "/user@host:/baz".
4571
4572 2003-03-28 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4573
4574 * gtkutil.c (xg_tool_bar_item_expose_callback): Reduce size
4575 of area to be redrawn for better performance.
4576
4577 2003-03-28 Stefan Monnier <monnier@cs.yale.edu>
4578
4579 * xterm.c (take_vertical_position_into_account): Remove.
4580 (xt_action_hook): Call set_vertical_scroll_bar if needed.
4581 (XM_SB_MIN, XM_SB_RANGE): Remove (min is now set to 0).
4582 (xm_scroll_callback, x_create_toolkit_scroll_bar)
4583 (x_set_toolkit_scroll_bar_thumb): Simplify.
4584 (x_scroll_bar_expose): Only compile if !USE_TOOLKIT_SCROLL_BARS.
4585 (XTread_socket): Remove unused var.
4586 (x_make_frame_invisible): Replace goto with else.
4587
4588 * xdisp.c (set_vertical_scroll_bar): New fun.
4589 (redisplay_window): Use it.
4590
4591 2003-03-26 Richard M. Stallman <rms@gnu.org>
4592
4593 * xdisp.c (update_tool_bar): Recompute tool bar if
4594 update_mode_lines is set. Set w->update_mode_line
4595 only if the tool bar contents actually change.
4596 (update_menu_bar): Undo previous change.
4597
4598 2003-03-26 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4599
4600 * gtkutil.c (xg_resize_widgets): Don't call xg_frame_cleared.
4601 (xg_frame_set_char_size): Calculate scroll bar width before frame
4602 width. Call SET_FRAME_GARBAGED and cancel_mouse_face.
4603 (xg_separator_p): Check for all documented separator types.
4604 (xg_update_scrollbar_pos): Variable gheight not needed, use height.
4605 (update_frame_tool_bar): Don't call gdk_window_process_all_updates.
4606
4607 * xdisp.c (update_menu_bar): Set w->update_mode_line to Qt
4608 so tool bar gets updated.
4609
4610 2003-03-26 Stefan Monnier <monnier@cs.yale.edu>
4611
4612 * data.c (store_symval_forwarding): Re-instate part of the code
4613 that was deleted with too much enthusiasm.
4614
4615 2003-03-25 Stefan Monnier <monnier@cs.yale.edu>
4616
4617 * data.c (store_symval_forwarding): Delete special read-only
4618 hack for type == -1, since we now use ->constant instead.
4619 (Fkill_local_variable): Don't use XBUFFER if it can be nil.
4620
4621 * buffer.c (overlays_in): Declare static.
4622 (syms_of_buffer) <enable-multibyte-characters>: Use the symbol's
4623 `constant' field rather than the variable's `type' field.
4624
4625 2003-03-24 Andrew Choi <akochoi@shaw.ca>
4626
4627 * config.in [MAC_OSX]: Do not redefine bcopy, bzero, and bcmp.
4628
4629 * dispextern.h [HAVE_CARBON]: Include Carbon.h.
4630
4631 * fns.c [MAC_OSX]: Do not redefine vector.
4632
4633 * keyboard.c [MAC_OSX]: Handle SIGINT with interrupt_signal.
4634
4635 * macgui.h: Remove definition of No_Cursor.
4636
4637 * macterm.h: Include Carbon.h. Replace (struct Cursor *) by Cursor.
4638
4639 * xdisp.c: Define No_Cursor.
4640 (x_write_glyphs, notice_overwritten_cursor)
4641 (draw_phys_cursor_glyph, note_mode_line_or_margin_highlight)
4642 (note_mouse_highlight): Remove Mac-specific code.
4643 (note_mouse_highlight): Use bcmp instead of == to compare Cursors.
4644
4645 2003-03-24 John Paul Wallington <jpw@gnu.org>
4646
4647 * xdisp.c (redisplay_window): If mini window's buffer is not
4648 empty, then redisplay it like other windows.
4649
4650 2003-03-23 Kim F. Storm <storm@cua.dk>
4651
4652 * w32term.c (w32_draw_window_cursor): Fix last change.
4653
4654 2003-03-23 Kenichi Handa <handa@m17n.org>
4655
4656 * alloc.c (make_string_from_bytes, make_specified_string):
4657 Add `const' for the arg CONTENTS.
4658
4659 * lisp.h (make_string_from_bytes, make_specified_string):
4660 Prototypes adjusted.
4661
4662 2003-03-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4663
4664 * xdisp.c (get_glyph_string_clip_rect): Remove ; at end of #endif
4665
4666 * gtkutil.h: Take two more arguments to xg_update_scrollbar_pos.
4667 (XG_SB_RANGE): New define.
4668
4669 * gtkutil.c (xg_fixed_handle_expose): New function.
4670 (xg_create_frame_widgets): Call xg_fixed_handle_expose for
4671 expose events.
4672 (xg_update_scrollbar_pos): Take two more arguments, left and width
4673 of scroll bar including borders.
4674 Clear left and right part outside scroll bar separately as some
4675 themes have bars that are not an even number of pixels.
4676 Don't set reallocate_redraws, don't call
4677 gdk_window_process_all_updates.
4678 (xg_set_toolkit_scroll_bar_thumb): Upper value is fixed,
4679 so no need to change it. Calculate size and value with XG_SB_RANGE.
4680
4681 * xterm.c (x_scroll_bar_create, XTset_vertical_scroll_bar):
4682 Pass left and width of scroll bar including borders to
4683 xg_update_scrollbar_pos.
4684
4685 2003-03-22 Thien-Thi Nguyen <ttn@gnu.org>
4686
4687 * Makefile.in: Make sure space precedes end-of-line backslashes.
4688
4689 2003-03-22 Kim F. Storm <storm@cua.dk>
4690
4691 * xdisp.c (pixel_to_glyph_coords, glyph_to_pixel_coords):
4692 Add generic versions here. Remove system specific versions
4693 defined elsewhere.
4694
4695 * dispextern.h (pixel_to_glyph_coords, glyph_to_pixel_coords):
4696 Add prototypes.
4697
4698 * xterm.h (STORE_NATIVE_RECT): New macro.
4699
4700 2003-03-21 Kim F. Storm <storm@cua.dk>
4701
4702 * xdisp.c (get_glyph_string_clip_rect):
4703 Use FRAME_INTERNAL_BORDER_WIDTH.
4704
4705 * dispextern.h (struct redisplay_interface): Add active_p
4706 argument to draw_window_cursor member. All uses changed.
4707
4708 2003-03-21 Kim F. Storm <storm@cua.dk>
4709
4710 The following changes consolidate code related to writing and
4711 inserting glyphs, exposing frame, the tool bar, the mouse face,
4712 the output cursor, and help echo from xterm.c, w32term.c and
4713 macterm.c into xdisp.c. It also generalizes the use of the
4714 window_part enum instead of using numeric values throughout.
4715
4716 * xdisp.c: Consolidate gui-independent code here.
4717 Include keymap.h.
4718 (Qhelp_echo): Import.
4719 (mouse_autoselect_window, x_stretch_cursor_p): Declare here.
4720 (help_echo_string, help_echo_window, help_echo_object)
4721 (previous_help_echo_string, help_echo_pos): Declare here.
4722 (output_cursor, last_mouse_frame, last_tool_bar_item): Declare here.
4723 (estimate_mode_line_height): Define here. Handle windowing
4724 systems directly (without using estimate_mode_line_height_hook).
4725 (x_y_to_hpos_vpos, get_tool_bar_item, note_tool_bar_highlight):
4726 (update_window_cursor, update_cursor_in_window_tree)
4727 (fast_find_position, fast_find_string_pos)
4728 (note_mode_line_highlight, note_mode_line_or_margin_highlight)
4729 (expose_area, expose_line, expose_overlaps, expose_window)
4730 (expose_window_tree, phys_cursor_in_rect_p): New generic versions;
4731 declared static as they are only used locally in xdisp.c.
4732 (draw_glyphs): Rename from x_draw_glyphs and make static.
4733 (tool_bar_item_info, notice_overwritten_cursor): Make static.
4734 (frame_to_window_pixel_xy, get_glyph_string_clip_rect)
4735 (set_output_cursor, x_cursor_to, handle_tool_bar_click)
4736 (x_write_glyphs, x_insert_glyphs, x_clear_end_of_line):
4737 (x_fix_overlapping_area, draw_phys_cursor_glyph, erase_phys_cursor)
4738 (display_and_set_cursor, x_update_cursor, x_clear_cursor)
4739 (show_mouse_face, clear_mouse_face, cursor_in_mouse_face_p)
4740 (note_mouse_highlight, x_clear_window_mouse_face)
4741 (cancel_mouse_face, x_draw_vertical_border, expose_frame)
4742 (x_intersect_rectangles): New generic functions for use by xdisp.c
4743 and GUI front-ends.
4744 (syms_of_xdisp): Initialize and staticpro help_echo* variables.
4745 Defvar_bool "x-streach-cursor" and "mouse-autoselect-window" here.
4746
4747 * dispextern.h (Display_Info): Generic typedef for *_display_info.
4748 (NativeRectangle): Generic typedef for rectangle type.
4749 (enum window_part): Move here from window.c.
4750 (struct redisplay_interface): New members flush_display_optional,
4751 define_frame_cursor, clear_frame_area, draw_window_cursor,
4752 draw_vertical_window_border, shift_glyphs_for_insert.
4753 Rename member clear_mouse_face to clear_window_mouse_face.
4754 (estimate_mode_line_height_hook): Remove hook.
4755 (auto_raise_tool_bar_buttons_p): Don't declare extern.
4756 (tool_bar_item_info): Remove prototype.
4757 (help_echo_string, help_echo_window, help_echo_object)
4758 (previous_help_echo_string, help_echo_pos)
4759 (last_mouse_frame, last_tool_bar_item, mouse_autoselect_window):
4760 (x_stretch_cursor_p, output_cursor): Declare extern.
4761 (x_draw_glyphs, notice_overwritten_cursor): Remove prototypes.
4762 (x_write_glyphs), x_insert_glyphs, x_clear_end_of_line)
4763 (x_fix_overlapping_area, draw_phys_cursor_glyph, erase_phys_cursor)
4764 (display_and_set_cursor, set_output_cursor, x_cursor_to)
4765 (x_update_cursor, x_clear_cursor, x_draw_vertical_border)
4766 (frame_to_window_pixel_xy, get_glyph_string_clip_rect)
4767 (note_mouse_highlight, x_clear_window_mouse_face, cancel_mouse_face)
4768 (handle_tool_bar_click, clear_mouse_face, show_mouse_face)
4769 (cursor_in_mouse_face_p, expose_frame, x_intersect_rectangles):
4770 Add prototypes.
4771 (mode_line_string, marginal_area_string): Fix prototypes.
4772
4773 * window.c (enum window_part): Move to dispextern.h.
4774 (coordinates_in_window): Use enum window_part member names
4775 instead of numbers to describe return value.
4776 (struct check_window_data): Change part member to window_part.
4777 (check_window_containing): Return window_part unaltered.
4778 (window_from_coordinates): Change part arg from int to enum
4779 window_part. Allow part arg to be null. All users changed.
4780
4781 * window.h (window_from_coordinates): Fix prototype.
4782
4783 * term.c (estimate_mode_line_height): Move to xdisp.c.
4784
4785 * keyboard.c (make_lispy_event): Use enum window_part.
4786
4787 * dispnew.c (mode_line_string, marginal_area_string): Use enum
4788 window_part instead of int in arg list. Users changed.
4789
4790 * xterm.h (No_Cursor): Declare as None for X.
4791 (struct mac_output): Replace member cross_cursor by hand_cursor.
4792
4793 * xterm.c: Remove consolidated defines and code.
4794 (BETWEEN): Remove unused macro.
4795 (x_draw_vertical_window_border, x_shift_glyphs_for_insert)
4796 (x_define_frame_cursor, x_clear_frame_area)
4797 (x_draw_window_cursor): New X-specific functions for RIF.
4798 (x_redisplay_interface): Add new members.
4799
4800 * xfns.c: Setup and use hand_cursor instead of cross_cursor.
4801
4802 * w32term.h (struct w32_output): Remove cross_cursor member.
4803
4804 * w32term.c: Remove consolidated defines and code.
4805 (BETWEEN): Remove unused macro.
4806 (w32_draw_vertical_window_border, w32_shift_glyphs_for_insert)
4807 (w32_define_frame_cursor, w32_clear_frame_area)
4808 (w32_draw_window_cursor): New W32-specific functions for RIF.
4809 (w32_redisplay_interface): Add new members.
4810
4811 * w32gui.h (No_Cursor): Define as 0 for W32.
4812 (XRectangle): Add X compatible rectangle type.
4813 (NativeRectangle): Declare as RECT for W32.
4814 (CONVERT_TO_XRECT, CONVERT_FROM_XRECT, STORE_NATIVE_RECT): New macros.
4815
4816 * w32fns.c: Remove setup of cross_cursor (already has hand_cursor).
4817
4818 * w32console.c: Remove consolidated defines and code.
4819
4820 * msdos.h (Display_Info): Add generic typedef.
4821
4822 * msdos.c: Remove consolidated defines and code.
4823 (IT_note_mouse_highlight, dos_rawgetc): Use enum window_part.
4824
4825 * macterm.h (struct mac_output): Replace member cross_cursor by
4826 hand_cursor.
4827 (activate_scroll_bars, deactivate_scroll_bars): Add prototypes.
4828
4829 * macterm.c: Remove consolidated defines and code.
4830 (BETWEEN): Remove unused macro.
4831 (mac_draw_vertical_window_border, mac_shift_glyphs_for_insert)
4832 (mac_define_frame_cursor, mac_clear_frame_area)
4833 (mac_draw_window_cursor): New Mac-specific functions for RIF.
4834 (x_redisplay_interface): Add new members.
4835
4836 * macgui.h (No_Cursor): Define as 0 for Mac.
4837 (XRectangle): Add X compatible rectangle type.
4838 (NativeRectangle): Declare as Rect for Mac.
4839 (CONVERT_TO_XRECT, CONVERT_FROM_XRECT, STORE_NATIVE_RECT): New macros.
4840
4841 * macfns.c (x_set_mouse_color): Setup hand_cursor.
4842 (x_set_cursor_color): Use x_display_and_set_cursor.
4843
4844 * Makefile.in (xdisp.o): Add dependency on blockinput.h and files
4845 included from it. Add dependency on keymap.h.
4846
4847 * makefile.w32-in (xdisp.o): Add dependency on keymap.h.
4848
4849 2003-03-21 Kenichi Handa <handa@m17n.org>
4850
4851 * fileio.c (Fexpand_file_name): Fix previous change.
4852
4853 2003-03-19 Kenichi Handa <handa@m17n.org>
4854
4855 * fileio.c (Ffile_name_directory): Reconstruct file name by
4856 make_specified_string.
4857 (Ffile_name_nondirectory, Ffile_name_as_directory)
4858 (Fdirectory_file_name, Fexpand_file_name)
4859 (Fsubstitute_in_file_name): Likewise.
4860 (Fread_file_name): Compare decoded homedir with DIR and
4861 DEFAULT_FILENAME.
4862
4863 * alloc.c (make_specified_string): If NCHARS is negative, count
4864 the number of characters.
4865
4866 2003-03-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4867
4868 * gtkutil.c (xg_frame_cleared): Call gtk_widget_queue_draw for
4869 all widgets.
4870
4871 * gtkutil.h: Removed xg_ignore_next_thumb.
4872
4873 2003-03-18 Kenichi Handa <handa@m17n.org>
4874
4875 * coding.c (Vchar_coding_system_table): Remove this variable.
4876 (Vcoding_system_safe_chars): New variable.
4877 (intersection): Remove this function.
4878 (find_safe_codings): Don't use Vchar_coding_system_table, but try
4879 all codings in SAFE_CODINGS.
4880 (Ffind_coding_systems_region_internal): Adjust for the change of
4881 find_safe_codings. Get generic coding systems from
4882 Vcoding_system_safe_chars.
4883 (Fdefine_coding_system_internal): New function.
4884 (syms_of_coding): Defsubr Sdefine_coding_system_internal.
4885 Initialize and staticpro Vcoding_system_safe_chars.
4886
4887 2003-03-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4888
4889 * gtkutil.c (xg_set_toolkit_scroll_bar_thumb): Check if new values
4890 equal old values before updating.
4891
4892 * xterm.c (xg_scroll_callback): Remove xg_ignore_next_thumb.
4893
4894 * gtkutil.c (xg_initialize): Remove xg_ignore_next_thumb.
4895
4896 2003-03-17 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4897
4898 * gtkutil.c: Removed handle_fixed_child, struct xg_last_sb_pos.
4899 (xg_resize_widgets): Don't call foreach(handle_fixed_child).
4900 (xg_gtk_scroll_destroy): Remove free of struct xg_last_sb_pos.
4901 (scroll_bar_button_cb): Set bar->dragging to NIL on button release.
4902 (xg_create_scroll_bar): Pass bar to button event callback.
4903 (xg_find_top_left_in_fixed): New function.
4904 (xg_update_scrollbar_pos): Don't call gdk_window_clear on
4905 whole scroll bar area. Get old position with
4906 xg_find_top_left_in_fixed, calculate and only clear needed areas.
4907 (xg_set_toolkit_scroll_bar_thumb): Do not adjust scroll bar if
4908 dragging is in progress. Calculate whole as for Motif.
4909 Remove code that saved last values. Call gtk_range functions to
4910 set scroll bar sizes.
4911
4912 * gtkutil.h: Removed xg_ignore_next_thumb.
4913
4914 2003-03-17 Juanma Barranquero <lektu@terra.es>
4915
4916 * makefile.w32-in ($(BLD)/xdisp.$(O)): Add dependency on blockinput.h
4917 and files included from it.
4918
4919 2003-03-18 Stefan Monnier <monnier@cs.yale.edu>
4920
4921 * keymap.c (accessible_keymaps_1): Break cycles but without preventing
4922 multiple occurrences of the same keymap under different prefixes.
4923 (Faccessible_keymaps): Remove code redundant since 1994-08-03T07:39:00Z!rms@gnu.org.
4924
4925 2003-03-16 Jason Rumney <jasonr@gnu.org>
4926
4927 * w32gui.h: Use HDC for Display.
4928
4929 * w32term.c (w32_encode_char): Prevent double-byte chars from
4930 crashing Emacs.
4931
4932 * w32fns.c (jpeg_load, png_load, slurp_file): Read image files
4933 as binary.
4934
4935 2003-03-16 Juanma Barranquero <lektu@terra.es>
4936
4937 * xdisp.c (x_produce_glyphs): Use FRAME_BASELINE_OFFSET.
4938
4939 2003-03-16 Kim F. Storm <storm@cua.dk>
4940
4941 The following changes consolidate some of the gui-independent
4942 parts of the processing and drawing of "glyph strings" from
4943 xterm.c, w32term.c, and macterm.c into xdisp.c.
4944
4945 * dispextern.h (struct glyph): Reduce face_id member from 22 to
4946 21 bits (this reduces number of faces from 4M to 2M).
4947 Replace W32 specific w32_font_type member (2 bits) by generic
4948 font_type member (3 bits) for portability.
4949 (FONT_TYPE_UNKNOWN): New define, default for font_type member.
4950 (enum draw_glyphs_face): Define here.
4951 (struct glyph_string): Define here. Merge W32 and X versions.
4952 (struct redisplay_interface): New members per_char_metric,
4953 encode_char, compute_glyph_string_overhangs, draw_glyph_string.
4954 (VCENTER_BASELINE_OFFSET): Define here.
4955 (dump_glyph_string, x_get_glyph_overhangs, x_produce_glyphs)
4956 (x_draw_glyphs, notice_overwritten_cursor): Declare prototypes here.
4957
4958 * xdisp.c: Consolidate gui-independent "glyph string" code here.
4959 (dump_glyph_string): Moved here.
4960 (init_glyph_string, append_glyph_string_lists, append_glyph_string)
4961 (prepend_glyph_string_lists, get_glyph_face_and_encoding)
4962 (fill_composite_glyph_string, fill_glyph_string)
4963 (fill_image_glyph_string, fill_stretch_glyph_string)
4964 (left_overwritten, left_overwriting, right_overwritten)
4965 (right_overwriting, get_char_face_and_encoding)
4966 (set_glyph_string_background_width, compute_overhangs_and_x)
4967 (append_glyph, append_composite_glyph, produce_image_glyph)
4968 (take_vertical_position_into_account, append_stretch_glyph)
4969 (produce_stretch_glyph): New generic functions (based on X version).
4970 Call platform specific functions through rif.
4971 (INIT_GLYPH_STRING): New macro, hides W32 details.
4972 (BUILD_STRETCH_GLYPH_STRING, BUILD_IMAGE_GLYPH_STRING)
4973 (BUILD_CHAR_GLYPH_STRINGS, BUILD_COMPOSITE_GLYPH_STRING)
4974 (BUILD_GLYPH_STRINGS): Generic macros (based on X version).
4975 (x_draw_glyphs, x_get_glyph_overhangs, x_produce_glyphs)
4976 (notice_overwritten_cursor):
4977 Generic functions exported to platform modules. Users changed.
4978
4979 * xterm.h (FONT_DESCENT, FRAME_X_OUTPUT, FRAME_BASELINE_OFFSET)
4980 (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE)
4981 (STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2):
4982 New macros for consolidated code.
4983
4984 * xterm.c: Remove consolidated defines and code.
4985 (x_per_char_metric, x_encode_char)
4986 (x_compute_glyph_string_overhangs): Adapt to RIF requirements.
4987 (x_redisplay_interface): Add new members.
4988
4989 * w32gui.h (Display): Add dummy typedef for consolidation.
4990 (XChar2b): Define alias for wchar_t for consolidation.
4991 (STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2): New macros.
4992
4993 * w32term.h (FRAME_X_OUTPUT, FRAME_X_WINDOW, FRAME_X_DISPLAY)
4994 (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE):
4995 New macros for consolidation.
4996
4997 * w32term.c: Remove consolidated defines and code.
4998 (BUILD_WCHAR_T, BYTE1, BYTE2): Macros removed; callers changed
4999 to use STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2 instead.
5000 (w32_per_char_metric): Change font_type arg to int for RIF.
5001 (w32_encode_char): Return int according to RIF requirements.
5002 (w32_compute_glyph_string_overhangs): Adapt to RIF.
5003 (w32_get_glyph_overhangs): New function for RIF. Uses generic
5004 x_get_glyph_overhangs.
5005 (w32_redisplay_interface): Add new members.
5006
5007 * macgui.h (XChar2b): Move typedef here for consolidation.
5008 (STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2): New macros.
5009
5010 * macterm.h (FRAME_X_OUTPUT, FRAME_X_WINDOW, FRAME_X_DISPLAY):
5011 (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE): New macros for
5012 consolidation.
5013
5014 * macterm.c: Remove consolidated defines and code.
5015 (mac_per_char_metric): New function for RIF.
5016 (mac_encode_char): Adapt to new RIF requirements.
5017 (mac_compute_glyph_string_overhangs): Adapt for RIF.
5018 (x_redisplay_interface): Add new members.
5019
5020 2003-03-15 Stefan Monnier <monnier@cs.yale.edu>
5021
5022 * keymap.c (Vmenu_events): New var.
5023 (syms_of_keymap): Initialize it.
5024 (where_is_internal): Check more carefully what is a menu event.
5025
5026 2003-03-14 Richard M. Stallman <rms@gnu.org>
5027
5028 * lread.c (read1): After #!, exit loop on eof.
5029
5030 2003-03-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5031
5032 * gtkutil.h: Add declaration for xg_frame_cleared.
5033
5034 * xterm.c (x_clear_frame): Call xg_frame_cleared for GTK.
5035
5036 * gtkutil.c (struct xg_last_sb_pos): New structure.
5037 (handle_fixed_child): New function.
5038 (xg_resize_widgets): Call handle_fixed_child on all scroll bar widgets
5039 and force a redraw on them.
5040 (xg_gtk_scroll_destroy): Free struct xg_last_sb_pos also.
5041 (xg_create_scroll_bar): Add struct xg_last_sb_pos to scroll bar
5042 so we can avoid unneeded redraws.
5043 (xg_update_scrollbar_pos): Invalidate data in xg_last_sb_pos
5044 and force a redraw on the scroll bar.
5045 (xg_set_toolkit_scroll_bar_thumb): Do not change/redraw scroll bar
5046 if xg_last_sb_pos shows the positions are up to date.
5047 (xg_frame_cleared): New function.
5048
5049 2003-03-13 Kenichi Handa <handa@m17n.org>
5050
5051 * coding.c (Fdetect_coding_region): Fix docstring.
5052 (Fdetect_coding_string): Fix docstring.
5053
5054 2003-03-13 Andreas Schwab <schwab@suse.de>
5055
5056 * gtkutil.c: Add prototype for create_menus.
5057
5058 * data.c (long_to_cons): Fix type of top.
5059
5060 * xselect.c (selection_data_to_lisp_data): Use int instead of
5061 long for an integer of size 4.
5062
5063 * gtkutil.c (xg_update_frame_menubar): Add missing return value.
5064 (xg_tool_bar_help_callback): Likewise.
5065
5066 2003-03-12 Andreas Schwab <schwab@suse.de>
5067
5068 * xterm.c (x_term_init) [USE_GTK]: Fix typo.
5069
5070 2003-03-12 Kim F. Storm <storm@cua.dk>
5071
5072 The following changes consolidate the fringe handling from
5073 xterm.c, w32term.c, and macterm.c into xdisp.c.
5074
5075 * xdisp.c: Consolidate fringe handling code here.
5076 (left_bits, right_bits, continued_bits, continuation_bits)
5077 (ov_bits, zv_bits): Define fringe bitmaps.
5078 (fringe_bitmaps): New array holding fringe bitmaps.
5079 (draw_fringe_bitmap): Draw a specific bitmap; call display
5080 specific drawing routine via rif->draw_fringe_bitmap.
5081 (draw_row_fringe_bitmaps): Generic replacement for
5082 x_draw_row_fringe_bitmaps; all callers changed.
5083 (compute_fringe_widths): Generic replacement for
5084 x_compute_fringe_widths; all callers changed.
5085
5086 * dispextern.h (enum fringe_bitmap_type): Define here.
5087 (struct fringe_bitmap, struct draw_fringe_bitmap_params): New.
5088 (fringe_bitmaps): Declare extern.
5089 (struct redisplay_interface): New member draw_fringe_bitmap.
5090 (draw_row_fringe_bitmaps, compute_fringe_widths): Declare extern.
5091
5092 * xterm.c: Remove generic fringe code.
5093 (x_draw_fringe_bitmap): Only perform actual fringe drawing.
5094 (x_redisplay_interface): Add x_draw_fringe_bitmap member.
5095
5096 * w32term.c: Remove generic fringe code.
5097 (w32_draw_fringe_bitmap): Only perform actual fringe drawing.
5098 (w32_redisplay_interface): Add w32_draw_fringe_bitmap member.
5099
5100 * macterm.c: Remove generic fringe code.
5101 (x_draw_fringe_bitmap): Only perform actual fringe drawing.
5102 (x_redisplay_interface): Add x_draw_fringe_bitmap member.
5103
5104 2003-03-11 Stefan Monnier <monnier@cs.yale.edu>
5105
5106 * print.c (Fprin1_to_string): Return unibyte string if possible.
5107
5108 2003-03-09 David Kastrup <dak@gnu.org>
5109
5110 * process.c (read_process_output): We have allocated enough space
5111 for readmax and carryover, so actually use the alloted space.
5112
5113 2003-03-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5114
5115 * keyboard.c (make_lispy_event): Extend mouse_syms if needed for
5116 toolkit scrollbar click.
5117
5118 * xterm.c (x_window_to_scroll_bar): Call xg_get_scroll_id_for_window
5119 for USE_GTK.
5120 (x_scroll_bar_handle_click): Use this function for toolkit scrollbars
5121 also.
5122 (handle_one_xevent): ButtonPress/Release: If event is for a toolkit
5123 scrollbar and control is pressed, call x_scroll_bar_handle_click.
5124
5125 * gtkutil.h: Declare xg_get_scroll_id_for_window.
5126
5127 * gtkutil.c (xg_get_scroll_id_for_window): New function.
5128 (xg_tool_bar_item_expose_callback): New function.
5129 (xg_tool_bar_expose_callback): Call update_frame_tool_bar.
5130 (xg_create_tool_bar): Connect xg_tool_bar_expose_callback to expose
5131 on the tool bar widget.
5132 (update_frame_tool_bar): Connect xg_tool_bar_item_expose_callback
5133 to expose on the tool bar item widgets.
5134
5135 2003-03-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5136
5137 * gtkutil.c (update_frame_tool_bar): Compare pixmap ID instead of
5138 struct image* when deciding to update (struct image* may have been
5139 deleted from the image cache).
5140
5141 * xterm.c (handle_one_xevent): Pass ReparentNotify to Xt even if
5142 the event isn't for a frame (i.e. for dialogs).
5143
5144 2003-03-07 Kenichi Handa <handa@m17n.org>
5145
5146 * coding.c (CODING_ADD_COMPOSITION_COMPONENT): If the number of
5147 composition components reaches the limit, terminate composing.
5148 (COMPOSITION_OK): New macro.
5149 (detect_coding_iso2022): Use it if an escape sequence for
5150 composition is found.
5151 (coding_restore_composition): Adjust the number of composition
5152 components if it is not sane.
5153
5154 2003-03-06 Juanma Barranquero <lektu@terra.es>
5155
5156 * w32term.h (struct w32_display_info): Add xrdb member to support
5157 passing resources via -xrm on Windows.
5158
5159 * w32term.c (w32_make_rdb): New function.
5160 (w32_term_init): Use it to initialize xrdb member of w32_display_info
5161 struct. Delete leftover code.
5162
5163 * w32fns.c (Fx_get_resource, x_get_resource_string): Pass xrdb to check
5164 for resources passed on the command line.
5165
5166 * w32reg.c (w32_get_rdb_resource): New function.
5167 (x_get_string_resource): Use it, so resources passed with -xrm
5168 supercede the ones in the registry.
5169
5170 2003-03-04 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5171
5172 * xterm.c (x_detect_focus_change): Call x_any_window_to_frame
5173 instead of x_top_window_to_frame.
5174
5175 2003-03-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5176
5177 * xsmfns.c (smc_save_yourself_CB): Add --no-splash to options
5178 when restarting Emacs.
5179
5180 2003-03-03 Richard M. Stallman <rms@gnu.org>
5181
5182 * buffer.c (Fkill_buffer): Use Frun_hook_with_args_until_failure
5183 to run kill-buffer-query-functions.
5184 (Qkill_buffer_query_functions): New var.
5185 (syms_of_buffer): Init and staticpro it.
5186
5187 2003-03-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5188
5189 * xterm.h (XSync): Define as gdk_window_process_all_updates for GTK.
5190
5191 2003-02-25 Kim F. Storm <storm@cua.dk>
5192
5193 * xdisp.c (redisplay_window): Fix infinite loop in redisplay.
5194 If centering point failed to make whole line visible and vscroll
5195 is non-zero, disable vscroll and try centering point again.
5196
5197 * lread.c (read1): Accept `single space' syntax like (? x).
5198
5199 2003-02-25 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5200
5201 * keyboard.c (cancel_hourglass_unwind): Surround with
5202 #ifdef HAVE_X_WINDOWS
5203
5204 2003-02-25 Kenichi Handa <handa@m17n.org>
5205
5206 * buffer.c (Fset_buffer_multibyte): Pay attention to the buffer
5207 process only when "subprocesses" is defined.
5208
5209 2003-02-24 Stefan Monnier <monnier@cs.yale.edu>
5210
5211 * syntax.c (back_comment): Only check nestedness of 2nd char if needed.
5212
5213 2003-02-24 Juanma Barranquero <lektu@terra.es>
5214
5215 * callint.c (fix_command): Declare as static void and move before
5216 Fcall_interactively.
5217
5218 * xdisp.c (Qwhen): Declare external; it's now defined in callint.c.
5219 (syms_of_xdisp): Don't initialize Qwhen.
5220
5221 2003-02-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5222
5223 * keyboard.c (cancel_hourglass_unwind): New function.
5224 (command_loop_1): Cancel hourglass with unwind-protect.
5225
5226 2003-02-23 Richard M. Stallman <rms@gnu.org>
5227
5228 * callint.c (fix_command): New subroutine, from Fcall_interactively.
5229 Detect (when ... (region-beginning)) etc.
5230 (Fcall_interactively): Call fix_command.
5231 (Qif, Qwhen): New variables.
5232 (syms_of_callint): Init and staticpro them.
5233
5234 * regex.c (print_partial_compiled_pattern): Output to stderr.
5235
5236 2003-02-23 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@uni-duisburg.de>
5237
5238 * dired.c (directory_files_internal): Don't expand directory.
5239 (Fdirectory_files, Fdirectory_files_and_attributes): Do it here
5240 instead. From Lars Hansen <larsh@math.ku.dk>.
5241
5242 2003-02-22 Stefan Monnier <monnier@cs.yale.edu>
5243
5244 * fns.c (string_to_multibyte): Remove unused var i.
5245 (Flanginfo): Fix int/Lisp_Object mixup.
5246 (void_call2): New fun.
5247 (Fmap_char_table): Use it in place of call2.
5248
5249 * xfaces.c (x_face_list_fonts): Fix int/Lisp_Object mixup.
5250
5251 * macros.c (Fstart_kbd_macro): Remove redundant assignment.
5252
5253 * keymap.c (copy_keymap_1): Make it static.
5254
5255 * alloc.c (Fgarbage_collect): Don't use XSETFLOAT.
5256
5257 2003-02-22 David Ponce <david@dponce.com>
5258
5259 * lread.c (Fload): Don't check STRING_MULTIBYTE.
5260
5261 2003-02-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5262
5263 * process.h: Removed subtty field from struct Lisp_Process.
5264
5265 * process.c (create_process): Remove setting of subtty.
5266 (emacs_get_tty_pgrp): New function.
5267 (Fprocess_running_child_p, process_send_signal):
5268 Call emacs_get_tty_pgrp instead of ioctl.
5269 (process_send_signal): Call EMACS_KILLPG if ioctl TIOCSIGSEND fails.
5270
5271 2003-02-21 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@uni-duisburg.de>
5272
5273 * keymap.c (Fdefine_key): Doc fix.
5274
5275 2003-02-21 Juanma Barranquero <lektu@terra.es>
5276
5277 Port of patch for RC by Klaus Zeitler <kzeitler@lucent.com>.
5278
5279 * s/hpux10.h: Define POLL_INTERRUPTED_SYS_CALL, not
5280 POLLING_PROBLEM_IN_SELECT.
5281
5282 * s/hpux11.h: Include hpux10-20.h instead of hpux10.h.
5283 Delete #undef of POLLING_PROBLEM_IN_SELECT.
5284
5285 * s/hpux10-20.h: New file.
5286
5287 * process.c (wait_reading_process_input):
5288 Use POLL_INTERRUPTED_SYS_CALL, not POLLING_PROBLEM_IN_SELECT.
5289
5290 2003-02-20 Kenichi Handa <handa@m17n.org>
5291
5292 * fontset.c (check_fontset_name): If NAME is nil, return the
5293 default fontset.
5294 (override_font_info): New function.
5295 (Fset_fontset_font): Document that NAME nil means the default fontset.
5296 (Ffontset_info): If FONTSET is not the default fontset, merge
5297 FONTSET onto the copy of the default fontset, and work on that
5298 copy. Document that NAME nil means the default fontset.
5299 (Ffontset_font): Document that NAME nil means the default fontset.
5300
5301 * process.c (setup_process_coding_systems): If the process's
5302 in/out descriptor is -1, do nothing.
5303
5304 2003-02-19 Andreas Schwab <schwab@suse.de>
5305
5306 * lisp.h (Fcancel_kbd_macro_events, Fstring_to_multibyte):
5307 Add prototypes.
5308
5309 2003-02-19 Kenichi Handa <handa@m17n.org>
5310
5311 * xfaces.c (try_alternative_families): Try all scalable fonts if
5312 Vscalable_fonts_allowed is not Qt.
5313
5314 2003-02-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5315
5316 * xfaces.c (x_face_list_fonts): Set *pfonts to 0 if no fonts found.
5317
5318 2003-02-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5319
5320 * xterm.c (x_list_fonts): If maxnames is less than 0, get all font
5321 names.
5322
5323 * xfaces.c (x_face_list_fonts): Allocate struct font_name here.
5324 (sorted_font_list): Move allocation of struct font_name to
5325 x_face_list_fonts.
5326 (Fx_font_family_list): Set font-list-limit to -1 to get all font names.
5327 (Fx_list_fonts): Set maxnames to -1 to get all font names.
5328
5329 2003-02-18 Kim F. Storm <storm@cua.dk>
5330
5331 * lread.c (read1): Fix last change.
5332 "`" is not always special. Allow "?" after a character constant.
5333
5334 2003-02-18 Andrew Choi <akochoi@shaw.ca>
5335
5336 * unexmacosx.c (copy_data_segment): Also copy __cfstring section.
5337
5338 2003-02-18 Andreas Schwab <schwab@suse.de>
5339
5340 * window.c (window_scroll_pixel_based): Move outside a
5341 multi-glyph character before setting new window start.
5342
5343 * xdisp.c (in_display_vector_p): New function.
5344 * dispextern.h (in_display_vector_p): Declare.
5345
5346 2003-02-18 Kim F. Storm <storm@cua.dk>
5347
5348 * lread.c (read1): Fix and relax read syntax.
5349 Recognize "[", ";", "#", and "?" after a dotted-pair dot.
5350 Only recognize "," after dotted-pair dot if inside backquote.
5351 Never include "`" or "," (inside backquote) in a symbol.
5352 Allow dotted-pair dot after a character constant.
5353 Allow "`" and "," (inside backquote) after a character constant.
5354
5355 2003-02-17 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5356
5357 * gtkutil.c (xg_tool_bar_expose_callback): New function.
5358 (xg_create_tool_bar): Force style of tool bar to be horizontal with
5359 icons. Set name of tool bar to emacs-toolbar.
5360 (update_frame_tool_bar): Connect expose event to
5361 xg_tool_bar_expose_callback.
5362
5363 2003-02-17 Richard M. Stallman <rms@gnu.org>
5364
5365 * keyboard.c (this_command_key_count_reset): New variable.
5366 Initiatize to 0 where this_command_key_count is set.
5367 (read_char): Save and restore this_command_key_count_reset
5368 around input method code.
5369 (read_char): If this_command_key_count_reset, echo reread commands.
5370 (Freset_this_command_lengths): Set this_command_key_count_reset to 1.
5371
5372 2003-02-17 Kenichi Handa <handa@m17n.org>
5373
5374 * fns.c (string_to_multibyte): Always return a multibyte string.
5375
5376 2003-02-16 Jason Rumney <jasonr@gnu.org>
5377
5378 * w32fns.c (w32_list_bdf_fonts, w32_list_fonts):
5379 Negative max_fonts parameter means list all.
5380
5381 2003-02-14 Dave Love <fx@gnu.org>
5382
5383 * fns.c (Flanginfo): Doc fix.
5384
5385 2003-02-13 Kim F. Storm <storm@cua.dk>
5386
5387 * lread.c (read_escape): Interpret \s as a SPACE character, except
5388 for \s-X in a character constant which still is the super modifier.
5389 (read1): Signal an `invalid read syntax' error if a character
5390 constant is immediately followed by a digit or symbol character.
5391
5392 * search.c (Fmatch_data): Doc fix. Explicitly state that
5393 match-data is undefined if last search failed.
5394
5395 * keymap.c (Fcommand_remapping): Renamed from Fremap_command.
5396 All uses changed.
5397
5398 2003-02-12 Juanma Barranquero <lektu@terra.es>
5399
5400 * eval.c (Fdefmacro): Fix typo.
5401
5402 2003-02-12 Kim F. Storm <storm@cua.dk>
5403
5404 * macros.c (Fstart_kbd_macro): If appending, and last keyboard
5405 macro is a string, convert meta modifiers in string when copying
5406 the string into a vector.
5407
5408 2003-02-11 Kim F. Storm <storm@cua.dk>
5409
5410 * keymap.c (Fremap_command): Return nil if arg is not a symbol.
5411
5412 2003-02-11 Kenichi Handa <handa@m17n.org>
5413
5414 * Makefile.in (lisp, shortlisp): Add malayalam.el and tamil.el.
5415
5416 2003-02-10 Kim F. Storm <storm@cua.dk>
5417
5418 * process.c: Doc fixes.
5419 (syms_of_process): Add `:' prefix to QCfilter_multibyte.
5420
5421 2003-02-10 Kenichi Handa <handa@m17n.org>
5422
5423 * fns.c (Fstring_to_multibyte): Fix typo in the docstring.
5424
5425 * process.c (QCfilter_multibyte): New variable.
5426 (setup_process_coding_systems): New function.
5427 (Fset_process_buffer, Fset_process_filter):
5428 Call setup_process_coding_systems.
5429 (Fstart_process): Initialize the member `filter_multibyte' of
5430 struct Lisp_Process.
5431 (create_process): Call setup_process_coding_systems.
5432 (Fmake_network_process): New keyward `:filter-multibyte'.
5433 Initialize the member `filter_multibyte' of struct Lisp_Process.
5434 Call setup_process_coding_systems.
5435 (server_accept_connection): Call setup_process_coding_systems.
5436 (read_process_output): If the process has a filter, decide the
5437 multibyteness of a string to given to the filter by
5438 `filter_multibyte' member of the process. If the process doesn't
5439 have a filter and the result of conversion is unibyte, use
5440 Fstring_to_multibyte (not Fstring_make_multibyte) to get the
5441 multibyte form.
5442 (Fset_process_coding_system): Call setup_process_coding_systems.
5443 (Fset_process_filter_multibyte): New function.
5444 (Fprocess_filter_multibyte_p): New function.
5445 (syms_of_process): Intern and staticpro QCfilter_multibyte.
5446 Defsubr Sset_process_filter_multibyte and
5447 Sprocess_filter_multibyte_p.
5448
5449 * process.h (struct Lisp_Process): New member filter_multibyte.
5450
5451 * lisp.h (setup_process_coding_systems): Add prototype.
5452
5453 * buffer.c (Fset_buffer_multibyte): If the current buffer has a
5454 process, update coding systems for the process.
5455
5456 2003-02-09 Kenichi Handa <handa@m17n.org>
5457
5458 * fns.c (string_to_multibyte): New function.
5459 (Fstring_to_multibyte): New function.
5460 (syms_of_fns): Defsubr it.
5461
5462 2003-02-08 Andreas Schwab <schwab@suse.de>
5463
5464 * Makefile.in (EXEEXT): Define to @EXEEXT@ and use this variable
5465 instead of the substitution.
5466
5467 2003-02-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5468
5469 * xterm.c (x_make_frame_visible): Call gtk_window_deiconify.
5470
5471 * xmenu.c (menu_position_func): Adjust menu popup position so that
5472 the menu is fully visible.
5473
5474 2003-02-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5475
5476 * xterm.c (x_text_icon, x_raise_frame, x_lower_frame)
5477 (x_make_frame_invisible, x_wm_set_icon_position):
5478 Use FRAME_OUTER_WINDOW instead of ifdef X_TOOLKIT/else/endif.
5479
5480 * xfns.c (x_set_name, x_set_title): Ditto.
5481
5482 2003-02-04 Richard M. Stallman <rms@gnu.org>
5483
5484 * keyboard.c (echo_now): Update before_command_echo_length.
5485 (Freset_this_command_lengths): Reset this_command_key_count etc.
5486 immediately rather than arranging to do it later.
5487 (before_command_key_count_1, before_command_echo_length_1)
5488 (before_command_restore_flag): Vars deleted.
5489 (add_command_key): Don't handle before_command_restore_flag.
5490 (read_char, record_menu_key): Don't update before_command_key_count or
5491 before_command_echo_length.
5492 (read_char): Don't handle before_command_restore_flag.
5493
5494 * keyboard.c (command_loop_1): Don't call adjust_point_for_property
5495 in direct-output clauses if it wouldn't be called in the ordinary case.
5496
5497 2003-02-04 Kim F. Storm <storm@cua.dk>
5498
5499 * keyboard.c (syms_of_keyboard) <this-original-command>: Doc fix.
5500
5501 2003-02-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5502
5503 * gtkutil.c (remove_from_container): Copying list is not needed.
5504 (xg_update_menubar, xg_update_menu_item, xg_update_submenu)
5505 (xg_modify_menubar_widgets, update_frame_tool_bar): Call g_list_free
5506 on list returned from gtk_container_get_children to avoid memory leak.
5507
5508 2003-02-01 Jason Rumney <jasonr@gnu.org>
5509
5510 * w32fns.c (w32_create_pixmap_from_bitmap_data): Use alloca for
5511 local malloc.
5512 [HAVE_XPM]: Avoid clashes with XColor, XImage and Pixel
5513 definitions in xpm.h.
5514 (init_xpm_functions): New function.
5515 (xpm_load): Sync with xfns.c. Adapt for Windows version of libXpm.
5516 (init_external_image_libraries): Try to load libXpm.dll.
5517
5518 * fileio.c (Fcopy_file) [WINDOWSNT]: Reverse logic for setting
5519 timestamp.
5520
5521 2003-01-31 Dave Love <fx@gnu.org>
5522
5523 * syntax.c (Fskip_chars_forward)
5524 (open-paren-in-column-0-is-defun-start): Doc fix.
5525
5526 2003-01-31 Joe Buehler <jhpb@draco.hekimian.com>
5527
5528 * fileio.c: Support // at start of name for Cygwin (just added proper
5529 preprocessor tests).
5530
5531 * keyboard.c: Port to Cygwin (just added proper preprocessor tests).
5532
5533 * Makefile.in: Use @EXEEXT@ for Cygwin.
5534
5535 * mem-limits.h: Added ifdef to define BSD4_2 for Cygwin.
5536
5537 * s/cygwin.h: Added for Cygwin port.
5538
5539 2003-01-31 Juanma Barranquero <lektu@terra.es>
5540
5541 * w32fns.c (DrawText): Kludge to avoid a redefinition on Windows
5542 when including gif_lib.h.
5543 (init_gif_functions, init_tiff_functions): New functions.
5544 (gif_load, tiff_load): Sync with xfns.c version. Adjust colors for
5545 Windows. Disable color table lookups. Call library functions
5546 through pointers determined at runtime.
5547 (init_external_image_libraries): Try to load libungif.dll and
5548 libtiff.dll.
5549
5550 2003-01-31 Kenichi Handa <handa@m17n.org>
5551
5552 * xdisp.c (SKIP_GLYPHS): New macro.
5553 (set_cursor_from_row): Skip all glyphs that comes from overlay string.
5554
5555 2003-01-30 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5556
5557 * gtkutil.c (free_frame_tool_bar): Remove debug printf.
5558
5559 2003-01-30 Dave Love <fx@gnu.org>
5560
5561 * alloc.c (Vgc_elapsed, gcs_done): New variables.
5562 (Fgarbage_collect): Use them.
5563 (init_alloc, syms_of_alloc): Set them up.
5564
5565 2003-01-30 Juanma Barranquero <lektu@terra.es>
5566
5567 * w32fns.c (init_external_image_libraries): Add missing operator.
5568
5569 2003-01-29 Jason Rumney <jasonr@gnu.org>
5570
5571 * w32fns.c (init_external_image_libraries): Allow jpeg-62.dll as
5572 an alternative name for jpeg.dll.
5573
5574 2003-01-29 Kenichi Handa <handa@m17n.org>
5575
5576 * xdisp.c (set_cursor_from_row): Pay attention to string display
5577 properties.
5578
5579 2003-01-28 Benjamin Riefenstahl <Benjamin.Riefenstahl@epost.de>
5580
5581 * macterm.c (keycode_to_xkeysym_table): Add <tab>, <backspace>,
5582 <escape>.
5583 (keycode_to_xkeysym_table): Reformat and add more comments.
5584 (XTread_socket): Drop special case for backspace.
5585
5586 2003-01-28 Andrew Choi <akochoi@shaw.ca>
5587
5588 * macfns.c (x_to_mac_color): Correct the order for parsing the RGB
5589 values in old-style RGB specs.
5590
5591 2003-01-27 Juanma Barranquero <lektu@terra.es>
5592
5593 * w32fns.c (init_external_image_libraries): Try alternate names for the
5594 jpeg dll.
5595
5596 2003-01-27 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5597
5598 * gtkutil.c (create_dialog, xg_separator_p)
5599 (xg_item_label_same_p, xg_update_menu_item): Check for NULL string
5600 before calling strcmp or strlen.
5601
5602 2003-01-26 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5603
5604 * gtkutil.c (update_frame_tool_bar): Call prepare_image_for_display
5605 and handle image load failure.
5606
5607 2003-01-26 Jason Rumney <jasonr@gnu.org>
5608
5609 * w32fns.c (init_jpeg_functions, jpeg_resync_to_restart_wrapper):
5610 New functions.
5611 (jpeg_load): Sync with xfns.c version. Adjust colors for Windows.
5612 Disable color table lookups. Call jpeg library functions
5613 through pointers determined at runtime.
5614 (init_external_image_libraries): Try to load jpeg.dll.
5615
5616 2003-01-25 Richard M. Stallman <rms@gnu.org>
5617
5618 * lisp.h: Declare format2 instead of format1.
5619
5620 * fileio.c (barf_or_query_if_file_exists):
5621 Call format2 instead of format1.
5622
5623 * editfns.c (format2): New function, replaces format1
5624 but takes exactly two Lisp Objects as format args.
5625
5626 * buffer.c (Fkill_buffer): Call format2 instead of format1.
5627
5628 2003-01-25 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5629
5630 * xterm.h: Change to return value of x_dispatch_event to int.
5631
5632 * xterm.c (x_filter_event): New function.
5633 (event_handler_gdk, XTread_socket): Call x_filter_event.
5634 (x_dispatch_event): Change to return value of finish.
5635 (event_handler_gdk): Use return value from x_dispatch_event.
5636
5637 * xfns.c (x_window): Call create_frame_xic for GTK version to
5638 initialize input methods.
5639
5640 * gtkutil.h: Add (void) prototypes.
5641
5642 * gtkutil.c (create_menus): Remove code that puts the help menu to
5643 the right.
5644
5645 2003-01-25 Jason Rumney <jasonr@gnu.org>
5646
5647 * w32fns.c (XPutPixel): Handle monochrome images; used for masks.
5648 [HAVE_PNG]: Sync with xfns.c version.
5649 (png_load): Adjust colors for Windows. Use Windows
5650 bitmaps. Disable color table lookups.
5651 (DEF_IMGLIB_FN, LOAD_IMGLIB_FN): New macros.
5652 (init_png_functions): New function.
5653 (png_read_from_memory, png_load): Call png library functions
5654 through pointers determined at runtime.
5655 (QCloader, QCbounding_box, QCpt_width, QCpt_height): Declare.
5656 (init_external_image_libraries): New function.
5657 (init_xfns): Call it.
5658
5659 2003-01-24 Andreas Schwab <schwab@suse.de>
5660
5661 * minibuf.c (Fminibuffer_message): Verify type of parameter.
5662
5663 2003-01-24 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5664
5665 * gtkutil.c (xg_initialize): Initialize id_to_widget here instead
5666 of static initializer.
5667
5668 2003-01-24 Dave Love <fx@gnu.org>
5669
5670 * s/gnu-linux.h (GC_SETJMP_WORKS, GC_MARK_STACK): Define for more
5671 architectures.
5672
5673 * alloc.c (mark_stack) [!GC_LISP_OBJECT_ALIGNMENT && __GNUC__]:
5674 Use __alignof__.
5675
5676 2003-01-24 Kenichi Handa <handa@m17n.org>
5677
5678 * keyboard.c (adjust_point_for_property): New second arg MODIFIED.
5679 It it is nonzero, don't pretend that an invisible area doesn't exist.
5680 (command_loop_1): Call adjust_point_for_property with proper
5681 second arg.
5682
5683 2003-01-22 Jason Rumney <jasonr@gnu.org>
5684
5685 Sync changes with xterm.c and xfns.c.
5686
5687 * w32term.c (x_draw_glyph_string_foreground)
5688 (x_draw_composite_glyph_string_foreground): Implement overstriking.
5689
5690 * w32term.c (x_write_glyphs): Clear phys_cursor_on_p if current
5691 phys_cursor's hpos is overwritten. This is still not completely
5692 correct, as it doesn't really make sense to use hpos at all to
5693 get the cursor glyph (as that is relative to the width of the
5694 characters on the line, which may have changed during the update).
5695
5696 * w32term.c (notice_overwritten_cursor): Handle the special case
5697 of the cursor being in the first blank non-text line at the
5698 end of a window.
5699
5700 * w32term.c (x_draw_hollow_cursor, x_draw_bar_cursor)
5701 (x_draw_phys_cursor_glyph): Set phys_cursor_width here.
5702 Compute from the x position returned by x_draw_glyphs.
5703
5704 (x_display_and_set_cursor): Don't set phys_cursor_width here,
5705 except for NO_CURSOR and system caret, to make phys_cursor_width
5706 contain what its name suggests.
5707 (notice_overwritten_cursor): Consider the cursor image erased if
5708 the output area intersects the cursor image in y-direction.
5709
5710 * w32term.c (note_mode_line_or_margin_highlight): Rename from
5711 note_mode_line_highlight and extend.
5712
5713 * w32term.c (last_window): New variable.
5714 (w32_read_socket) <WM_MOUSEMOVE>: Generate SELECT_WINDOW_EVENTs.
5715 (note_mouse_movement): Remove reimplemented code in #if 0.
5716
5717 * w32fns.c (x_set_cursor_type): Set cursor_type_changed,
5718 not update_mode_lines, and always set it to 1.
5719
5720 2003-01-21 Jason Rumney <jasonr@gnu.org>
5721
5722 * w32fns.c (IDC_HAND): Define it if system headers don't.
5723
5724 2003-01-21 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp>
5725
5726 * w32term.h (struct w32_output): New member hand_cursor.
5727 (WM_EMACS_SETCURSOR): New message definition.
5728
5729 * w32term.c (note_mode_line_highlight): Delete #if 0 to enable
5730 function w32_define_cursor.
5731 (note_mouse_highlight): Initialize, setup cursor accoding to mouse
5732 position, change member name output_data.x to output_data.w32 and
5733 add function w32_define_cursor.
5734 (show_mouse_face): Delete #if 0 to enable function w32_define_cursor
5735 and change member name output_data.x to output_data.w32.
5736 (w32_initialize_display_info):
5737 Setup dpyinfo->vertical_scroll_bar_cursor.
5738
5739 * w32fns.c (Vx_hand_shape): New variable.
5740 (w32_wnd_proc): Add message entries for WM_SETCURSOR and
5741 WM_EMACS_SETCURSOR.
5742 (x-create-frame): Setup Cursor types.
5743
5744 2003-01-21 David Ponce <david@dponce.com>
5745
5746 * w32term.c (w32_encode_char): For DIM=1 charset, set
5747 ccl->reg[2] to -1 before calling ccl_driver. (Sync. with xterm.c
5748 x_encode_char change by Kenichi Handa <handa@m17n.org> on
5749 2002-09-30.)
5750 (w32_draw_relief_rect): Declare all args.
5751 (w32_define_cursor): New.
5752
5753 * w32fns.c (w32_load_cursor): New function.
5754 (w32_init_class): Use it.
5755 (x_put_x_image): Declare all args.
5756
5757 2003-01-21 Richard Dawe <rich@phekda.freeserve.co.uk> (tiny change)
5758
5759 * Makefile.in (ALL_CFLAGS): Include MYCPPFLAGS, not MYCPPFLAG.
5760
5761 2003-01-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5762
5763 * gtkutil.c: Must include stdio.h before termhooks.h
5764
5765 2003-01-21 Dave Love <fx@gnu.org>
5766
5767 * alloc.c (Fgc_status): Print zombie list.
5768 (mark_maybe_object) [GC_MARK_STACK==GC_USE_GCPROS_CHECK_ZOMBIES]:
5769 Fix assignment of zombies.
5770 (Fgarbage_collect) [GC_MARK_STACK==GC_USE_GCPROS_CHECK_ZOMBIES]:
5771 Don't take car of non-cons.
5772
5773 * s/sol2-5.h (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
5774
5775 * s/sunos4-0.h (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
5776
5777 2003-01-20 David Ponce <david@dponce.com>
5778
5779 * w32menu.c (digest_single_submenu): Declare all args.
5780
5781 Sync with 2002-12-23 Richard M. Stallman <rms@gnu.org>
5782 changes in xmenu.c:
5783
5784 (parse_single_submenu): Use individual keymap's prompt
5785 string as pane name, if there is one.
5786 (set_frame_menubar): Save menu_items_n_panes from each call to
5787 parse_single_submenu and use it when calling digest_single_submenu.
5788
5789 2003-01-20 Steven Tamm <steventamm@mac.com>
5790
5791 * macterm.c (XTread_socket): Checks for valid, visible window
5792 before sending a scroll-wheel event.
5793
5794 2003-01-20 Richard M. Stallman <rms@gnu.org>
5795
5796 * xdisp.c (redisplay_window): If mini window's buffer is not
5797 a minibuffer, then redisplay it like other windows.
5798
5799 2003-01-20 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5800
5801 * gtkutil.c (xg_create_frame_widgets): Check if there is an
5802 external tool bar before setting tool bar height.
5803
5804 2003-01-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5805
5806 * xterm.c (handle_one_xevent): Surround popup_activated
5807 with #ifdef:s for non-toolkit version.
5808
5809 * Makefile.in (XOBJ): Add gtkutil.o if USE_GTK
5810 (gtkutil.o): New file.
5811 (TOOLKIT_DEFINES): Set to -DUSE_GTK if HAVE_GTK.
5812 (LIBW): Set to @GTK_LIBS@ if USE_GTK.
5813
5814 * gtkutil.c: New file for GTK version.
5815
5816 * gtkutil.h: New file for GTK version.
5817
5818 * xterm.h: Add xt_or_gtk_widget.
5819 Include gtk files for USE_GTK.
5820 (struct x_output): Add toolbar_height.
5821 (struct x_output): Add GTK widgets and Gdk size_hints.
5822 (GTK_WIDGET_TO_X_WIN, FRAME_GTK_OUTER_WIDGET, FRAME_GTK_WIDGET)
5823 (FRAME_OUTER_WINDOW): New macros for USE_GTK.
5824 (FRAME_OUTER_TO_INNER_DIFF_Y): Add FRAME_TOOLBAR_HEIGHT to calculation.
5825
5826 * xterm.c: Include gtkutil.h for USE_GTK.
5827 Declare extern void free_frame_menubar for USE_GTK.
5828 (note_mouse_highlight): Check popup_activated for USE_GTK.
5829 (xt_action_hook): Don't compile if USE_GTK.
5830 (x_scroll_bar_to_input_event): Use CurrentTime for USE_GTK.
5831 (xg_scroll_callback): New function.
5832 (x_create_toolkit_scroll_bar): Call xg_create_scroll_bar for USE_GTK.
5833 (x_set_toolkit_scroll_bar_thumb): Call xg_set_toolkit_scroll_bar_thumb
5834 for USE_GTK.
5835 (x_scroll_bar_create): Call xg_update_scrollbar_pos and
5836 xg_show_scroll_bar for USE_GTK.
5837 (x_scroll_bar_remove): Call xg_remove_scroll_bar for USE_GTK.
5838 (XTset_vertical_scroll_bar): Call xg_update_scrollbar_pos for USE_GTK.
5839 (event_handler_gdk): New function for USE_GTK.
5840 (handle_one_xevent): Call xg_resize_widgets for USE_GTK.
5841 (handle_one_xevent): Make sure widget is mapped before
5842 calling x_real_positions for USE_GTK.
5843 (XTread_socket): Add GTK event loop for USE_GTK.
5844 (x_set_window_size): Call xg_frame_set_char_size for USE_GTK.
5845 (x_make_frame_visible): Call gtk_widget_show_all for USE_GTK.
5846 (x_make_frame_invisible): Call gtk_widget_hide for USE_GTK.
5847 (x_iconify_frame): Add code for USE_GTK.
5848 (x_free_frame_resources): Call gtk_widget_destroy for USE_GTK.
5849 (x_wm_set_size_hint): Only compile if not USE_GTK. GTK version
5850 is in gtkutil.c.
5851 (x_term_init): Add initialization for GTK.
5852 (syms_of_xterm): Set Vx_toolkit_scroll_bars for USE_GTK.
5853
5854 * xmenu.c: Include gtkutil.h for USE_GTK.
5855 (Fx_popup_menu): Use current position if x and y is NIL.
5856 (single_menu_item, single_menu_item, Fx_popup_dialog):
5857 Check for USE_GTK.
5858 (popup_widget_loop): New function for USE_GTK.
5859 (x_activate_menubar): Add code for USE_GTK.
5860 (popup_activate_callback, popup_deactivate_callback)
5861 (menu_highlight_callback, menubar_selection_callback):
5862 Add USE_GTK versions.
5863 (update_frame_menubar): Call xg_update_frame_menubar for USE_GTK.
5864 (set_frame_menubar): Call xg_modify_menubar_widgets for USE_GTK.
5865 (free_frame_menubar): Only compile if not USE_GTK. GTK version
5866 is in gtkutil.c.
5867 (popup_selection_callback): New version for USE_GTK.
5868 (create_and_show_popup_menu): New fuction, one USE_GTK version and
5869 one USE_X_TOOLKIT version.
5870 (xmenu_show): Call create_and_show_popup_menu.
5871 (dialog_selection_callback): New version for USE_GTK.
5872 (create_and_show_dialog): New fuction, one USE_GTK version and
5873 one USE_X_TOOLKIT version.
5874 (xdialog_show): Call create_and_show_dialog.
5875
5876 * xfns.c: Include gtkutil for USE_GTK.
5877 (x_window_to_frame, x_any_window_to_frame)
5878 (x_non_menubar_window_to_frame, x_menubar_window_to_frame)
5879 (x_top_window_to_frame): Add code for USE_GTK.
5880 (x_set_background_color): Call xg_set_background_color for GTK.
5881 (x_set_menu_bar_lines): Check for USE_GTK.
5882 (x_set_tool_bar_lines): Call update_frame_tool_bar for USE_GTK.
5883 (x_set_name, x_set_title): Call gtk_window_set_title for USE_GTK.
5884 (x_window): Call xg_create_frame_widgets for USE_GTK.
5885 (Fx_create_frame): Check for USE_GTK
5886 (Fx_file_dialog): New implementation for USE_GTK.
5887
5888 * xdisp.c: Add check for USE_GTK for extern void set_frame_menubar.
5889 (update_menu_bar): Add check for USE_GTK.
5890 (update_tool_bar): Add check for USE_GTK and external tool bar.
5891 (redisplay_tool_bar): Add check for USE_GTK and external tool bar.
5892 (redisplay_internal): Add check for USE_GTK and popup_activated.
5893 (redisplay_window): Add check for USE_GTK and FRAME_EXTERNAL_MENU_BAR.
5894 (redisplay_window): Add check for USE_GTK and FRAME_EXTERNAL_TOOL_BAR.
5895 (display_menu_bar): Add check for USE_GTK
5896
5897 * lisp.h: Declare Vx_resource_name extern.
5898
5899 * keyboard.c (kbd_buffer_get_event): Check MENU_BAR_ACTIVATE_EVENT
5900 for USE_GTK.
5901 (make_lispy_event): Check MENU_BAR_EVENT for USE_GTK.
5902
5903 * frame.h (struct frame): Add external_tool_bar. Check for USE_GTK.
5904 (FRAME_EXTERNAL_TOOL_BAR): New macro.
5905 (FRAME_EXTERNAL_MENU_BAR): Check for USE_GTK.
5906
5907 * fileio.c (Fread_file_name): Add check for USE_GTK.
5908
5909 * dispnew.c (adjust_frame_glyphs_for_window_redisplay):
5910 Add check for USE_GTK.
5911
5912 * config.in: Added HAVE_GTK
5913
5914 * alloc.c (Fgarbage_collect): Call xg_mark_data for GTK.
5915
5916 2003-01-18 Stefan Monnier <monnier@cs.yale.edu>
5917
5918 * charset.h (Funibyte_char_to_multibyte): Export.
5919
5920 2003-01-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5921
5922 * xmenu.c (mouse_position_for_popup): New function.
5923 (Fx_popup_menu): Call mouse_position_for_popup for X and
5924 mouse_position_hook for others.
5925
5926 2003-01-17 Kim F. Storm <storm@cua.dk>
5927
5928 * editfns.c (Finsert): Mention `string-make-multibyte' and
5929 `string-as-multibyte' in doc string.
5930
5931 2003-01-17 Kenichi Handa <handa@m17n.org>
5932
5933 * fontset.c (syms_of_fontset): Setup Vfont_encoding_alist here.
5934
5935 * editfns.c (Fformat): Convert an unibyte char argument that is
5936 formatted by "%c" to multibyte if the total result must be a
5937 multibyte string.
5938
5939 2003-01-16 Kim F. Storm <storm@cua.dk>
5940
5941 * process.c (set-process-filter): Document unibyte/multibyte-ness
5942 of string argument.
5943
5944 2003-01-16 Kenichi Handa <handa@m17n.org>
5945
5946 * charset.h (NEXT_CHAR_BOUNDARY, PREV_CHAR_BOUNDARY): New macros.
5947
5948 * regex.c (GET_CHAR_BEFORE_2): Use PREV_CHAR_BOUNDARY.
5949 (re_search_2): Likewise.
5950
5951 2003-01-15 Kenichi Handa <handa@m17n.org>
5952
5953 * xdisp.c (message_dolog): Fix bug of the case that *Message*
5954 buffer is unibyte.
5955
5956 2003-01-15 Francesco Potort\e,Al\e(B <pot@gnu.org>
5957
5958 * fns.c (Fsubstring): Clarify doc string.
5959
5960 * textprop.c (Ftext_properties_at, Fnext_char_property_change)
5961 (Fprevious_char_property_change)
5962 (Fnext_single_char_property_change)
5963 (Fprevious_single_char_property_change, Fnext_property_change)
5964 (Fnext_single_property_change, Fprevious_property_change)
5965 (Fprevious_single_property_change, Fadd_text_properties)
5966 (Fput_text_property, Fset_text_properties)
5967 (Fremove_text_properties, Fremove_list_of_text_properties)
5968 (Ftext_property_any, Ftext_property_not_all): Clarify doc strings.
5969
5970 2003-01-14 Kim F. Storm <storm@cua.dk>
5971
5972 * process.h (struct Lisp_Process): New member plist replaces old
5973 member private_vars. All uses changed.
5974
5975 * process.c: Reworked 2003-01-12 change -- call a plist a plist!
5976 (QCplist): Rename from QCvars. Change all uses.
5977 (Fprocess_plist): Replaces Fprocess_variable. Simplified.
5978 (Fset_process_plist): Replaces Fset_process_variable. Simplify.
5979 (syms_of_process): Intern, staticpro, defsubr these.
5980 (Fmake_network_process): Describe :plist arg. Remove :vars arg.
5981
5982 2003-01-14 Francesco Potort\e,Al\e(B <pot@gnu.org>
5983
5984 * m/delta.h: Remove (obsolete).
5985
5986 2003-01-13 Francesco Potort\e,Al\e(B <pot@gnu.org>
5987
5988 * fileio.c (Fdelete_directory, Fdelete_file): Document the
5989 behaviour in front of symlinks.
5990 (Fdelete_file): Raise an error on directories.
5991
5992 2003-01-13 Dave Love <fx@gnu.org>
5993
5994 * fns.c (Freverse): Use QUIT.
5995
5996 2003-01-13 Richard M. Stallman <rms@gnu.org>
5997
5998 * minibuf.c (minibuffer_completion_contents):
5999 Error if point is inside prompt.
6000
6001 * keyboard.c (command_loop_1): Don't redisplay directly
6002 if there's a post-command-hook.
6003
6004 * fileio.c (syms_of_fileio) <directory-sep-char>: Doc fix.
6005 (Fdo_auto_save): Add gcpros around Ffile_name_directory.
6006
6007 2003-01-12 Kim F. Storm <storm@cua.dk>
6008
6009 * process.h (struct Lisp_Process): New member private_vars.
6010
6011 * process.c (QCvars): New variable.
6012 (syms_of_process): Intern and staticpro it.
6013 (Fset_process_contact): Removed function.
6014 (Fprocess_variable, Fset_process_variable): New functions.
6015 (syms_of_process): Defsubr them.
6016 (Fstart_process): Initialize private_vars plist to nil.
6017 (Fmake_network_process): New arg :vars to setup the private
6018 variables for new network process.
6019 (server_accept_connection): Copy server's private variables to
6020 client process.
6021
6022 * alloc.c (pure_alloc): Fixed 2003-01-10 changed (caused spurious
6023 crashes). Code rewritten and simplified. Now directly aligns the
6024 pointer and recalculates pure_bytes_used, rather than aligning the
6025 size and adjusting the pointer.
6026
6027 2003-01-11 Kim F. Storm <storm@cua.dk>
6028
6029 * process.c (Fset_process_contact): New function.
6030 (syms_of_process): defsubr it.
6031 (make-network-process): Update doc.
6032
6033 2003-01-10 Andreas Schwab <schwab@suse.de>
6034
6035 * alloc.c (pure_alloc): Correct alignment for Lisp_Floats.
6036 Reported by Berthold Gunreben <b.gunreben@web.de>.
6037
6038 2003-01-10 Dave Love <fx@gnu.org>
6039
6040 * composite.c (syms_of_composite): Make composition_hash_table weak.
6041
6042 2003-01-09 Kim F. Storm <storm@cua.dk>
6043
6044 * process.c (Fmake_network_process): Convert new port number
6045 to host byte order for `:service t' case. From Mario Lang.
6046
6047 2003-01-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6048
6049 * xfns.c (Fx_file_dialog): Call XtAppNextEvent and x_dispatch_event
6050 instead of XtAppProcessEvent.
6051
6052 * xterm.c (handle_one_xevent): New function.
6053 (x_dispatch_event): New function.
6054 (XTread_socket): Call handle_one_xevent.
6055
6056 * xterm.h (FRAME_OUTER_TO_INNER_DIFF_X/Y): New.
6057
6058 * xmenu.c (Fx_popup_menu): If popping up at mouse position,
6059 call XQueryPointer to get coordinates.
6060 (popup_get_selection): Do not set popup_activated_flag to zero,
6061 let popup_deactivate_callback do that. Needed for Motif.
6062 Call x_dispatch_event instead of XtDispatchEvent.
6063 (xmenu_show): Calculate root coordinate from frame top/left position.
6064
6065 2003-01-08 Kim F. Storm <storm@cua.dk>
6066
6067 * process.c (server_accept_connection): Fix recording of new
6068 connection's local address in :local property of contact info.
6069 (Fmake_network_process): Record local network address for new
6070 client processes in :local property of contact info.
6071 (format-network-address): Add arg OMIT-PORT. Change callers.
6072
6073 2003-01-07 Dave Love <fx@gnu.org>
6074
6075 * Makefile.in (fns.o): Depend on coding.h.
6076
6077 2003-01-07 Markus Rost <rost@math.ohio-state.edu>
6078
6079 * minibuf.c (Fread_variable): Doc fix.
6080
6081 * eval.c (Fuser_variable_p): Doc change. For custom variables,
6082 use the same test as for custom-variable-p.
6083
6084 2003-01-05 Richard M. Stallman <rms@gnu.org>
6085
6086 * xdisp.c (try_scrolling): New arg LAST_LINE_MISFIT.
6087 Count LAST_LINE_MISFIT in scroll margin for end of window.
6088 Move label too_near_end before setting SCROLL_MARGIN_POS.
6089 Set LAST_LINE_MISFIT before jumping there.
6090
6091 * xdisp.c (try_scrolling): Calculate amount_to_scroll better in
6092 scroll_conservatively case. If scrolling that much doesn't change
6093 STARTP, move it down one line.
6094
6095 * xdisp.c (redisplay_window): Pass last_line_misfit arg to
6096 try_scrolling. Make it 1 after make_cursor_line_fully_visible fails.
6097
6098 * xdisp.c (setup_echo_area_for_printing): Kill Emacs if no
6099 selected frame.
6100
6101 * keymap.c (apropos_predicate, apropos_accumulate): Make them static.
6102 (syms_of_keymap): staticpro them.
6103 (Fapropos_internal): Initialize them and clear them out.
6104 Don't GCPRO them.
6105
6106 * buffer.c (syms_of_buffer) <scroll-up-aggressively, scroll-down-aggressively>:
6107 Doc fixes.
6108
6109 * lisp.h: New misc type Lisp_Save_Value.
6110 (enum Lisp_Misc_Type): Add Lisp_Misc_Save_Value.
6111 (XSAVE_VALUE): New macro.
6112 (struct Lisp_Save_Value): New data type.
6113 (union Lisp_Misc): Add u_save_value alternative.
6114 (make_save_value): Declared.
6115
6116 * alloc.c (make_save_value): New function.
6117
6118 * xterm.c (x_catch_errors): Save dpy using make_save_value.
6119 (x_catch_errors_unwind): Call XSync.
6120
6121 2003-01-01 Richard M. Stallman <rms@gnu.org>
6122
6123 * window.c (window_scroll_pixel_based): Partially undo last change.
6124
6125 * keyboard.c (command_loop_1): Call adjust_point_for_property
6126 in direct action cases for Qforward_char and Qbackward_char.
6127 Set already_adjusted so it won't be done twice.
6128
6129 2002-12-30 Richard Dawe <rich@phekda.freeserve.co.uk> (tiny change)
6130
6131 * src/config.in (!HAVE_SIZE_T): Fix order of arguments in
6132 type definition of size_t.
6133
6134 2003-01-02 Steven Tamm <steventamm@mac.com>
6135
6136 * macterm.c (syms_of_macterm): Provide the feature "mac-carbon" to
6137 distinguish Carbon GUI builds from X11 builds on darwin.
6138
6139 2002-12-30 Steven Tamm <steventamm@mac.com>
6140
6141 * macterm.c (syms_of_macterm): Set mac-wheel-button-is-mouse-2
6142 to default to t.
6143
6144 2002-12-29 Francesco Potort\e,Al\e(B <pot@gnu.org>
6145
6146 * data.c (Fstring_to_number, Fminus): Better English in doc strings.
6147
6148 2002-12-28 Steven Tamm <steventamm@mac.com>
6149
6150 * Makefile.in (macosx-bundle): Fixes to Mac OS X/Carbon port to
6151 allow building in a different directory than source. Uses some
6152 GNU Make extensions, but there is no other make on Mac OS X.
6153
6154 2002-12-26 Francesco Potort\e,Al\e(B <pot@gnu.org>
6155
6156 * data.c (Fmakunbound, Ffmakunbound, Fmake_variable_buffer_local)
6157 (Fsetq_default, Fmake_local_variable, Fkill_local_variable)
6158 (Fmake_variable_frame_local, Faset, Fnumber_to_string, Fminus)
6159 (Fstring_to_number): Mention the returned value in the doc strings.
6160
6161 2002-12-23 Richard M. Stallman <rms@gnu.org>
6162
6163 * buffer.c (syms_of_buffer) <scroll-up-aggressively>
6164 <scroll-down-aggressively>: Doc fix.
6165
6166 * xmenu.c (parse_single_submenu): Use individual keymap's prompt
6167 string as pane name, if there is one.
6168 (set_frame_menubar): Save menu_items_n_panes from each call to
6169 parse_single_submenu and use it when calling digest_single_submenu.
6170
6171 * window.c (window_scroll_pixel_based): Fix check for reaching BEGV.
6172 Don't try to make last line fully visible if it is past end of window.
6173
6174 2002-12-22 Steven Tamm <steventamm@mac.com>
6175
6176 * macmenu.c (MIN_POPUP_SUBMENU_ID): Add.
6177 (mac_menu_show): Add support for hierarchical popup menus.
6178 (add_menu_item): Remove indentation support.
6179 (fill_submenu, fill_menu): Create hierarchical menus
6180 instead of using indentation.
6181
6182 2002-12-22 Richard M. Stallman <rms@gnu.org>
6183
6184 * xdisp.c (try_cursor_movement): Don't call try_window here.
6185 (redisplay_window): Never redisplay minibuffer when inactive.
6186
6187 * window.c (select_window_1): Undo 9/21 change.
6188
6189 2002-12-22 Steven Tamm <steventamm@mac.com>
6190
6191 * macterm.c (XTread_socket): Call KeyTranslate for control and
6192 meta to deal correctly shifted non-alpha characters, like C-S-5
6193 being treated like C-%. Does not look for shift key to deal
6194 with masking off control-key with mac-reverse-ctrl-meta.
6195
6196 2002-12-21 Richard M. Stallman <rms@gnu.org>
6197
6198 * xmenu.c (popup_get_selection): Now static. New arg DO_TIMERS.
6199 If it is non-nil, run timers. Use an unwind-protect to requeue
6200 the events that were read ahead.
6201 (popup_get_selection_unwind): New subroutine.
6202 (popup_get_selection_queue): File-scope variable now holds that queue.
6203 (xmenu_show): Pass 0 for DO_TIMERS to popup_get_selection.
6204 (xdialog_show): Pass 1 for DO_TIMERS to popup_get_selection.
6205 Use an unwind-protect to pop down the dialog box.
6206 (xdialog_show_unwind): New subroutine implements that.
6207
6208 * xdisp.c (row_containing_pos): Change exit test using last_y.
6209 (try_window_id): Abort if row_containing_pos returns null.
6210
6211 * lread.c (load_error_handler): New function.
6212 (Fload): Handle errors in Fsubstitute_in_file_name.
6213 Don't expect Fsignal to return.
6214
6215 * eval.c: Errors and throws work right with interrupt blocking.
6216 (struct catchtag): New elt interrupt_input_blocked.
6217 (unwind_to_catch): Restore interrupt_input_blocked from saved value.
6218 (internal_catch, Fcondition_case, internal_condition_case)
6219 (internal_condition_case_1, internal_condition_case_2): Save it.
6220 (Fsignal): Don't do TOTALLY_UNBLOCK_INPUT.
6221
6222 * editfns.c (Fformat): Add parens.
6223
6224 * dired.c (file_name_completion): Fix that change.
6225 Delete special quit-handling code; just use QUIT.
6226
6227 2002-12-21 Tak Ota <Takaaki.Ota@am.sony.com> (tiny change)
6228
6229 * dired.c (file_name_completion): Close directory on error
6230 just as in directory_files_internal.
6231
6232 2002-12-19 David Kastrup <David.Kastrup@t-online.de>
6233
6234 * window.c (Fset_window_configuration): Set old_point to correct
6235 value when new_current_buffer == current_buffer.
6236
6237 2002-12-17 Ben Key <bkey1@tampabay.rr.com>
6238
6239 Revisited my earlier fix for the following entry in etc/PROBLEMS:
6240 "Emacs built on Windows 9x/ME crashes at startup on Windows XP,
6241 or Emacs builtpart of on XP crashes at startup on Windows 9x/ME."
6242
6243 These changes were in part based upon suggestions made by Peter
6244 'Luna' Runestig [peter@runestig.com].
6245
6246 * w32.c (g_b_init_is_windows_9x, g_b_init_open_process_token,
6247 g_b_init_get_token_information, g_b_init_lookup_account_sid,
6248 g_b_init_get_sid_identifier_authority ): Add several static
6249 global variables.
6250
6251 * w32.c (globals_of_w32): New function. Used to initialize those
6252 global variables that must always be initialized on startup even
6253 when the global variable initialized is non zero. Its primary
6254 purpose at this time is to set the global variables
6255 g_b_init_is_windows_9x, g_b_init_open_process_token,
6256 g_b_init_get_token_information, g_b_init_lookup_account_sid, and
6257 g_b_init_get_sid_identifier_authority to 0 on startup.
6258 Called from main.
6259
6260 * w32.c (is_windows_9x): Perform initialization only if
6261 g_b_init_is_windows_9x is equal to 0. On initialization set
6262 g_b_init_is_windows_9x equal to 1.
6263
6264 * w32.c (open_process_token): Perform initialization only if
6265 g_b_init_open_process_token is equal to 0. On initialization set
6266 g_b_init_open_process_token equal to 1.
6267
6268 * w32.c (get_token_information): Perform initialization only if
6269 g_b_init_get_token_information is equal to 0. On initialization
6270 set g_b_init_get_token_information equal to 1.
6271
6272 * w32.c (lookup_account_sid): Perform initialization only if
6273 g_b_init_lookup_account_sid is equal to 0. On initialization
6274 set g_b_init_lookup_account_sid equal to 1.
6275
6276 * w32.c (get_sid_identifier_authority): Perform initialization
6277 only if g_b_init_get_sid_identifier_authority is equal to 0.
6278 On initialization set g_b_init_get_sid_identifier_authority equal to 1.
6279
6280 * w32fns.c (globals_of_w32fns): New function. Used to initialize
6281 those global variables that must always be initialized on startup
6282 even when the global variable initialized is non zero.
6283 Its primary purpose at this time is to initialize the global variable
6284 track_mouse_event_fn.
6285
6286 * w32fns.c (w32_wnd_proc): Remove initialization of
6287 track_mouse_event_fn from the handler for the WM_SETFOCUS message.
6288
6289 * w32fns.c (syms_of_w32fns): Call globals_of_w32fns.
6290
6291 * w32menu.c (globals_of_w32menu): New function. Used to
6292 initialize those global variables that must always be initialized
6293 on startup even when the global variable initialized is non zero.
6294 Its primary purpose at this time is to initialize the global
6295 variables get_menu_item_info and set_menu_item_info.
6296
6297 * w32menu.c (initialize_frame_menubar): Remove initialization of
6298 get_menu_item_info and set_menu_item_info.
6299
6300 * w32menu.c (syms_of_w32menu): Call globals_of_w32menu.
6301
6302 * w32.h (globals_of_w32, globals_of_w32fns, globals_of_w32menu):
6303 Declare them.
6304
6305 * emacs.c (main): Call globals_of_w32 prior to calling
6306 init_environment if WINDOWSNT is defined. Call globals_of_w32fns
6307 and globals_of_w32menu if initialized is non zero and HAVE_NTGUI
6308 is defined.
6309
6310 * w32term.c (x_update_window_begin): Fix Windows API error
6311 detected by BoundsChecker. Test to determine if
6312 w32_system_caret_hwnd is NULL prior to attempting to use
6313 SendMessage to send the WM_EMACS_HIDE_CARET message to it.
6314
6315 * w32term.c (x_update_window_end): Fix Windows API error
6316 detected by BoundsChecker. Test to determine if
6317 w32_system_caret_hwnd is NULL prior to attempting to use
6318 SendMessage to send the WM_EMACS_SHOW_CARET message to it.
6319
6320 2002-12-17 Kenichi Handa <handa@m17n.org>
6321
6322 * coding.c (coding_system_require_warning): New variable.
6323 (syms_of_coding): DEFVAR it.
6324
6325 * coding.h (coding_system_require_warning): Extern it.
6326
6327 * fileio.c (choose_write_coding_system): Even if
6328 Vcoding_system_for_write is non-nil, if
6329 coding_system_require_warning is nonzero, call
6330 Vselect_safe_coding_system_function.
6331
6332 2002-12-17 Markus Rost <rost@math.ohio-state.edu>
6333
6334 * Makefile.in (lisp, shortlisp): Add cus-face and timer.
6335 (lisp): Add font-core.
6336
6337 2002-12-13 Stefan Monnier <monnier@cs.yale.edu>
6338
6339 * textprop.c (text_read_only): New arg `propval'.
6340 (get_char_property_and_overlay): Remove unused var `next_overlay'.
6341 (verify_interval_modification): Use text_read_only's new arg.
6342
6343 2002-12-13 Kenichi Handa <handa@m17n.org>
6344
6345 * coding.c (Funencodable_char_position): Set pend correctly.
6346
6347 2002-12-12 Jason Rumney <jasonr@gnu.org>
6348
6349 * w32term.c (last_mousemove_x, last_mousemove_y): New variables.
6350 (w32_read_socket) <WM_MOUSEMOVE>: Use them to detect non-movement.
6351 Be more careful about when help_events are generated.
6352
6353 2002-12-12 Steven Tamm <steventamm@mac.com>
6354
6355 * macterm.c (mac_check_for_quit_char): Correctly set the
6356 modifiers of the event to 0.
6357 * mac.c (sys_select): Duplicate rfds before calling select to
6358 ensure that rfds survive the while loop.
6359
6360 2002-12-11 Kim F. Storm <storm@cua.dk>
6361
6362 * xdisp.c (try_window_id): Don't call set_cursor_from_row if
6363 row_containing_pos returned NULL.
6364
6365 2002-12-10 Steven Tamm <steventamm@mac.com>
6366
6367 * mac.c (sys_read): Fix sys_read to not call select if IO is
6368 non-blocking.
6369 (sys_select): Fix sys_select to not use a timeout larger than
6370 the one given.
6371
6372 2002-12-10 Juanma Barranquero <lektu@terra.es>
6373
6374 * editfns.c (Fformat): Use alloca, not _alloca.
6375
6376 2002-12-09 Richard M. Stallman <rms@gnu.org>
6377
6378 * buffer.c (Fget_buffer_create): Call Qucs_set_table_for_input
6379 as the last thing.
6380
6381 2002-12-09 Dave Love <fx@gnu.org>
6382
6383 * s/sol2-8.h: Removed. (Not necessary.)
6384
6385 2002-12-09 Matthew Swift <swift@alum.mit.edu>
6386
6387 * editfns.c (Fformat): Handle precision in string conversion
6388 specifiers like libc functions do (ie, print at most that many
6389 characters).
6390
6391 2002-12-08 Richard M. Stallman <rms@gnu.org>
6392
6393 * xdisp.c (row_containing_pos): Check more carefully
6394 whether charpos is really in the row before returning it.
6395
6396 2002-12-07 Steven Tamm <steventamm@mac.com>
6397
6398 * sysdep.c (emacs_read) [HAVE_CARBON]: Have emacs_read use sys_read.
6399
6400 * eval.c (Feval) [HAVE_CARBON]: Calls mac_check_for_quit_char at
6401 each stack frame. This may change as it could be time consuming.
6402
6403 * macterm.c (mac_check_for_quit_char, quit_char_comp)
6404 (init_quit_char_handler, mac_determine_quit_char_modifiers)
6405 (mac_initialize): Add code to check for pressing of quit_char
6406 in the OS event queue.
6407
6408 * mac.c (sys_select): Call mac_check_for_quit_char every second
6409 while blocking on select.
6410
6411 * mac.c (sys_read): Use sys_select to test for input first
6412 before calling read, to allow C-g to break.
6413
6414 2002-12-07 Richard M. Stallman <rms@gnu.org>
6415
6416 * minibuf.c (Fcompleting_read): Doc fix.
6417
6418 * lread.c (syms_of_lread) <load-history>: Doc fix.
6419
6420 * fileio.c (Fcopy_file): Set immediate_quit around emacs_open call.
6421
6422 * eval.c (Fdefun, Fdefmacro): Record in load-history redefining an
6423 autoload.
6424
6425 * data.c (Fdefalias): Record in load-history redefining an autoload.
6426
6427 * alloca.c: Undo ifdef change accidentally made on 12-04.
6428
6429 2002-12-06 Francesco Potorti` <pot@gnu.org>
6430
6431 * xfns.c (png_load): Avoid double gamma correction for PNG images.
6432
6433 2002-12-04 Richard M. Stallman <rms@gnu.org>
6434
6435 * sysdep.c (fcntl.h): Test only HAVE_FCNTL_H.
6436
6437 * fileio.c (fcntl.h): Test only HAVE_FCNTL_H.
6438
6439 * alloca.c: Don't use #error.
6440
6441 2002-12-03 Dave Love <fx@gnu.org>
6442
6443 * buffer.c (Qucs_set_table_for_input): New.
6444 (Fget_buffer_create): Use it.
6445 (Qset_buffer_major_mode_hook): Deleted.
6446 (Fset_buffer_major_mode): Revert previous change.
6447 (init_buffer_once): Intern ucs-set-table-for-input.
6448 (syms_of_buffer): Delete Qset_buffer_major_mode_hook.
6449 Add &Qucs_set_table_for_input.
6450
6451 2002-12-03 Andreas Schwab <schwab@suse.de>
6452
6453 * callint.c (Fcall_interactively): Use next_event only if less
6454 than key_count.
6455
6456 2002-12-02 Andrew Choi <akochoi@shaw.ca>
6457
6458 * macmenu.c (add_menu_item, fill_menubar): Truncate menu item
6459 names to 255 characters.
6460
6461 * macterm.c (XTread_socket): If all frames have been collapsed,
6462 expand the first one before handling drag-and-drop events.
6463
6464 * s/darwin.h (GETPGRP_NO_ARG): Delete. Replaced by GETPGRP_VOID,
6465 which is detected by autoconf.
6466
6467 2002-12-01 Steven Tamm <steventamm@mac.com>
6468
6469 * unexmacosx.c (copy_twolevelhints, dump_it): Now corrects the
6470 offset in two hints table to allow prebinding to be redone and
6471 allow the executable to be stripped.
6472
6473 2002-11-29 Dave Love <fx@gnu.org>
6474
6475 * fns.c (Frequire): Don't call LOADHIST_ATTACH if feature was
6476 already provided.
6477
6478 2002-11-29 Richard M. Stallman <rms@gnu.org>
6479
6480 * xdisp.c (start_display): Check more intelligently for
6481 whether the line is continued.
6482 (move_it_vertically_backward): Clear it->continuation_lines_width.
6483
6484 2002-11-28 Dave Love <fx@gnu.org>
6485
6486 * s/amdahl.h, s/unipl5-0.h, m/sgi3000.h, s/3700.h, s/alliant-2800.h:
6487 * s/alliant.h, s/altos.h: Deleted. (Unused/empty.)
6488
6489 2002-11-27 Steven Tamm <steventamm@mac.com>
6490
6491 * fns.c (Frequire): Change nesting allowance from 2 to 3 to cause
6492 more descriptive error output from lread.c:Fload upon most require
6493 cycles during boostrapping.
6494
6495 2002-11-27 Jason Rumney <jasonr@gnu.org>
6496
6497 * fileio.c (Finsert_file_contents): Give a more appropriate error
6498 for files bigger than 2Gb when off_t is 32 bit.
6499
6500 * dired.c (Ffile_attributes): Don't return negative file sizes for
6501 files bigger than 2Gb when off_t is 32 bit.
6502
6503 2002-11-27 Dave Love <fx@gnu.org>
6504
6505 * s/irix6-0.h (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
6506
6507 * systty.h: Don't conditionally define GETPGRP_NO_ARG.
6508 Test GETPGRP_VOID instead.
6509 [BSD_TERMIOS]: Remove definitions (never used).
6510
6511 * s/osf5-0.h (WAIT_USE_INT, SYS_SIGLIST_DECLARED, sys_siglist):
6512 Don't define.
6513 (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
6514
6515 * m/mips.h (WORDS_BIG_ENDIAN): Define conditionally.
6516
6517 2002-11-25 Jason Rumney <jasonr@gnu.org>
6518
6519 * w32.c (sys_write): Avoid non-blocking mode, which is not fully
6520 supported.
6521
6522 2002-11-25 Dave Love <fx@gnu.org>
6523
6524 * unexalpha.c (update_dynamic_symbols): Cast arg of fatal_unexec.
6525
6526 * Makefile.in (TEMACS_LDFLAGS): Update last change.
6527
6528 2002-11-25 Andreas Schwab <schwab@suse.de>
6529
6530 * m/ia64.h: Restore `#ifndef NOT_C_CODE' deleted by last change.
6531
6532 2002-11-24 Steven Tamm <steventamm@mac.com>
6533
6534 * unexmacosx.c (unexec_realloc): Use malloc_default_zone to
6535 determine the size of pointers alloced in unexed space instead
6536 of using possibly invalid emacs_zone pointers. This fixes the
6537 binary incompatibility problems caused by updates to libSystem.B.
6538
6539 2002-11-24 Richard M. Stallman <rms@gnu.org>
6540
6541 * search.c (Fstring_match): Doc fix.
6542
6543 * callint.c (Fcall_interactively): If a command fails because
6544 `*' detects a read-only buffer, but RECORD_FLAG is set,
6545 record it anyway if the args don't actually do tty input.
6546
6547 2002-11-22 Dave Love <fx@gnu.org>
6548
6549 * sysdep.c (stuff_char) [PROTOTYPES]: Provide ISO C arglist.
6550
6551 * keyboard.c (interrupt_signal): Provide forward declaration.
6552 (kbd_buffer_store_event): Don't declare interrupt_signal.
6553
6554 * xdisp.c (store_frame_title_char) [PROTOTYPES]: Provide ISO C arglist.
6555
6556 2002-11-21 Richard M. Stallman <rms@gnu.org>
6557
6558 * eval.c (interactive_p): Skip any number of bytecode
6559 and special form frames, in any order.
6560
6561 2002-11-20 Jason Rumney <jasonr@gnu.org>
6562
6563 * w32fns.c (convert_mono_to_color_image): New function.
6564 (xbm_load, xbm_load_image): Use it when foreground or background
6565 is explicitly set.
6566
6567 2002-11-19 Dave Love <fx@gnu.org>
6568
6569 * s/usg5-4.h, sco4.h (bcopy, bzero, bcmp): Don't define.
6570
6571 2002-11-18 Jason Rumney <jasonr@gnu.org>
6572
6573 * w32fns.c (x_build_heuristic_mask): Filter palette info from color.
6574 (XPutPixel): Swap blue and red.
6575 (xpm_format, pbm_format, png_format, jpeg_format, tiff_format)
6576 (gif_format, gs_format): Use IMAGE_ASCENT_VALUE.
6577 (xpm_image_p, pbm_image_p, png_image_p, jpeg_image_p)
6578 (tiff_image_p, gif_image_p, gs_image_p): Don't check ascent.
6579
6580 2002-11-18 Dave Love <fx@gnu.org>
6581
6582 * m/orion105.h (HAVE_ALLOCA): Don't define.
6583
6584 * m/m68k.h, m/arm.h, mtekxd88.h, m/tower32v3.h: Don't define alloca.
6585
6586 * m/intel386.h: Don't include alloca.h or define alloca.
6587
6588 * m/ia64.h: Don't include alloca.h, stdlib.h. Don't declare
6589 malloc, realloc, calloc.
6590
6591 * m/hp800.h, m/sr2k.h, m/ns16000.h, m/wicat.h (bcopy, bzero)
6592 (bcmp): Don't define.
6593
6594 * m/delta.h (bcopy, bzero, bcmp, alloca): Don't define.
6595
6596 * m/amdahl.h: Don't define LIB_STANDARD.
6597
6598 * m/alpha.h: Move OSF1 stuff from here to s/osf1.h.
6599
6600 * s/osf1.h: Move OSF1 stuff from m/alpha.h to here.
6601
6602 * s/irix4-0.h, s/irix5-0.h, m/powerpcle.h, m/sparc.h:
6603 Don't include alloca.h.
6604
6605 * s/aix3-2.h (HAVE_FSYNC): Don't define.
6606
6607 * regex.c (_GNU_SOURCE): Don't define.
6608
6609 * process.c (_GNU_SOURCE): Don't define.
6610
6611 * fileio.c (_GNU_SOURCE, HAVE_FSYNC): Don't define.
6612
6613 2002-11-18 Markus Rost <rost@math.ohio-state.edu>
6614
6615 * s/sol2-8.h: Include sol2-6.h.
6616
6617 2002-11-18 Miles Bader <miles@gnu.org>
6618
6619 * dispextern.h (struct face): Add `overstrike' field.
6620 * xterm.c (x_draw_glyph_string_foreground)
6621 (x_draw_composite_glyph_string_foreground): Implement overstriking.
6622 * xfaces.c (load_face_font): Set `face->overstrike' based on
6623 result from choose_face_font.
6624 (best_matching_font, choose_face_font): Add `needs_overstrike'
6625 argument, and use it to return whether overstriking is desirable
6626 for this face/font combo.
6627 (set_font_frame_param: Pass new argument to choose_face_font.
6628
6629 2002-11-17 Ben Key <BKey1@tampabay.rr.com>
6630
6631 This change is my fix for the following entry in etc/PROBLEMS:
6632 "Emacs built on Windows 9x/ME crashes at startup on Windows XP,
6633 or Emacs builtpart of on XP crashes at startup on Windows 9x/ME."
6634
6635 * w32.c: Added wrapper functions around the win32 API functions
6636 OpenProcessToken, GetTokenInformation, LookupAccountSid, and
6637 GetSidIdentifierAuthority. These wrapper functions serve two
6638 purposes:
6639 1. They ensure that the wrapped function can never be called
6640 when Emacs is running on an operating system on which they are
6641 not supported (Microsoft Windows 95 / 98 / ME).
6642 2. They call the wrapped functions via function pointers rather
6643 than calling them directly. This avoids taking advantage of the
6644 undocumented fact that although these functions are not supported
6645 in the 9x branch of Microsoft Windows, the functions do exist in
6646 the version of advapi32.dll that is found in the 9x branch of
6647 Microsoft Windows.
6648
6649 * w32.c (init_user_info): Replace the calls to the win32 API
6650 functions OpenProcessToken, GetTokenInformation, LookupAccountSid,
6651 and GetSidIdentifierAuthority with calls to the newly added
6652 wrapper functions.
6653
6654 * w32.h: Added extern declarations for the following functions:
6655 syms_of_w32term, syms_of_w32fns, syms_of_w32select,
6656 syms_of_w32menu, and void syms_of_fontset.
6657
6658 * w32fns.c (w32_wnd_proc): Add code to reinitialize the
6659 function pointer track_mouse_event_fn in the handler for the
6660 WM_SETFOCUS message.
6661
6662 * w32menu.c (initialize_frame_menubar): Add code to
6663 reinitialize the function pointers set_menu_item_info and
6664 get_menu_item_info.
6665
6666 2002-11-17 Ben Key <BKey1@tampabay.rr.com>
6667
6668 * sound.c: Added a partial implementation of play-sound-internal
6669 for Microsoft Windows. Added various #ifdef / #else / #endif
6670 code blocks to separate the code that will compile under
6671 Microsoft Windows from the code that is specific to Gnu/Linux.
6672 Moved several blocks of code around to make this separation of code
6673 into Windows compatible and Gnu/Linux compatible code blocks easier.
6674
6675 * makefile.w32-in: Include sound.c and link with WinMM.lib.
6676
6677 * s/ms-w32.h: Defined the symbol HAVE_SOUND so that the newly
6678 added support for play-sound-internal under Windows would be
6679 included in the build of Emacs.
6680
6681 2002-11-16 Jason Rumney <jasonr@gnu.org>
6682
6683 * w32fns.c (w32_load_system_font): Don't disable Cleartype.
6684
6685 * w32term.c (w32_get_glyph_string_clip_rect): Clip cursor tightly.
6686
6687 2002-11-15 Stefan Monnier <monnier@cs.yale.edu>
6688
6689 * keyboard.c (command_loop_1): Fix int/Lisp_Object mixup.
6690 (adjust_point_for_property): Move out of display and invisible even if
6691 we were already inside before (in case a property was added while
6692 we weren't looking). Be more careful when handling invisible props.
6693 Skip invisible text as if it really wasn't there at all.
6694
6695 2002-11-15 Jason Rumney <jasonr@gnu.org>
6696
6697 * w32term.c (x_draw_image_foreground)
6698 (w32_draw_image_foreground_1): Use standard copy and invert
6699 operations to draw images.
6700
6701 * w32fns.c (x_create_x_image_and_pixmap): Fill in palette for
6702 depth of 1.
6703 (xbm_read_bitmap_data): Invert bits as xbm is read in.
6704 (XPutPixel): Don't invert bits here.
6705
6706 2002-11-15 Jason Rumney <jasonr@gnu.org>
6707
6708 * w32term.c (x_draw_image_foreground, x_draw_image_glyph_string)
6709 (w32_draw_image_foreground_1): Handle image masks.
6710 (x_draw_image_glyph_string): Don't BitBlt transparently.
6711
6712 * w32fns.c (w32_defined_color): Adjust RGB values for Emacs.
6713 (x_from_xcolors): Adjust RGB values for W32.
6714 (image_background, image_background_transparent)
6715 (postprocess_image, x_to_xcolors, x_disable_image)
6716 (x_build_heuristic_mask): Adapt for W32 and enable.
6717 (x_create_x_image_and_pixmap): Mark images with palettes as such.
6718 (xbm_load): Remove unused variable.
6719
6720 2002-11-14 Richard M. Stallman <rms@gnu.org>
6721
6722 * buffer.c (syms_of_buffer): Doc fix.
6723
6724 2002-11-14 Dave Love <fx@gnu.org>
6725
6726 * alloc.c (SETJMP_WILL_NOT_WORK): Add note.
6727
6728 * xterm.c (x_draw_relief_rect, x_draw_box_rect, x_update_cursor):
6729 * xmenu.c (unuse_menu_items, digest_single_submenu):
6730 * xfns.c (x_put_x_image):
6731 * xdisp.c (message2_nolog, set_message):
6732 * undo.c (record_point):
6733 * terminfo.c (tparam):
6734 * syntax.c (scan_sexps_forward):
6735 * scroll.c (calculate_scrolling, calculate_direct_scrolling):
6736 * composite.c (update_compositions):
6737 * cm.c (calccost, cmgoto):
6738 * charset.c (c_string_width): Declare all args (per C99).
6739
6740 * frame.h (get_specified_cursor_type, get_window_cursor_type): Declare.
6741
6742 * lisp.h (get_specified_cursor_type, get_window_cursor_type):
6743 Don't declare.
6744
6745 * emacs.c (main) [!VMS]: Avoid third arg.
6746
6747 * fns.c (Fcopy_sequence): Doc fix.
6748 (Fmap_char_table): Cast `call2'.
6749
6750 2002-11-14 Francesco Potorti` <pot@gnu.org>
6751
6752 * s/sol2-8.h: New file.
6753
6754 2002-11-14 Kim F. Storm <storm@cua.dk>
6755
6756 * buffer.c (syms_of_buffer) <mode-line-format>: Document symbol
6757 dependency on `risky-local-variable' and the :propertize form.
6758
6759 2002-11-12 Stefan Monnier <monnier@cs.yale.edu>
6760
6761 * fns.c (Fmap_char_table): Don't use map_char_table's function arg.
6762
6763 * syntax.c (scan_sexps_forward): Undo last patch.
6764 Use a more obvious fix: check eob before updating the syntax table.
6765
6766 2002-11-09 Stefan Monnier <monnier@cs.yale.edu>
6767
6768 * syntax.c (scan_sexps_forward): Update syntax table before reading
6769 a char rather than after so we don't update the table past eob.
6770
6771 2002-11-09 Dave Love <fx@gnu.org>
6772
6773 * buffer.c (Fset_buffer_major_mode): Fix last change.
6774
6775 * regex.c (regexec): Fix pmatch declaration.
6776
6777 * cmds.c (Fself_insert_command): Apply Vtranslation_table_for_input.
6778
6779 * keyboard.c (command_loop_1): Apply Vtranslation_table_for_input
6780 to self-inserting characters.
6781 (syms_of_keyboard) <keyboard-translate-table>: Doc fix.
6782
6783 * coding.c (Vtranslation_table_for_input): New.
6784 (syms_of_coding): DEFVAR it.
6785
6786 2002-11-08 Juanma Barranquero <lektu@terra.es>
6787
6788 * w32term.c (w32_draw_fringe_bitmap): Remove unused local variable
6789 window.
6790
6791 2002-11-08 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
6792
6793 * process.c (Fformat_network_address): Remove unused locals p,
6794 cp, and i.
6795
6796 2002-11-06 Dave Love <fx@gnu.org>
6797
6798 * buffer.c (Qset_buffer_major_mode_hook): New.
6799 (Fset_buffer_major_mode): Use it.
6800
6801 2002-11-06 Richard M. Stallman <rms@gnu.org>
6802
6803 * xterm.c (x_term_init): Use turn_on_atimers, not start_polling
6804 and stop_polling.
6805
6806 * process.c (wait_reading_process_input):
6807 Test POLLING_PROBLEM_IN_SELECT, not hpux.
6808 Avoid initialization for auto Lisp_Object var.
6809
6810 * s/hpux11.h (POLLING_PROBLEM_IN_SELECT): Add #undef.
6811
6812 * s/hpux10.h (POLLING_PROBLEM_IN_SELECT): Defined.
6813
6814 2002-11-05 Richard M. Stallman <rms@gnu.org>
6815
6816 * s/sol2-5.h (BROKEN_SIGIO): Turn off the #undef.
6817
6818 * callint.c (Fcall_interactively): New local filter_specs.
6819 (Fcall_interactively): Check for progn as well as let.
6820 Add a gcpro.
6821 (Qprogn): New variable.
6822 (syms_of_callint): Staticpro and init Qprogn.
6823
6824 2002-11-04 John Paul Wallington <jpw@shootybangbang.com>
6825
6826 * lread.c (Feval_buffer): Doc fix.
6827
6828 2002-11-04 Dave Love <fx@gnu.org>
6829
6830 * keyboard.c (read_char): Always translate iff
6831 Vkeyboard_translate_table is a char table and c is valid.
6832
6833 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
6834 and fix C types.
6835
6836 2002-11-03 Stefan Monnier <monnier@cs.yale.edu>
6837
6838 * xdisp.c (single_display_prop_intangible_p): Strings are intangible.
6839
6840 * editfns.c (get_pos_property): Don't hardcode Qfield.
6841
6842 * keyboard.c (adjust_point_for_property): Handle `display' prop on
6843 overlays. Also handle `invisible' prop.
6844
6845 2002-11-02 Stefan Monnier <monnier@cs.yale.edu>
6846
6847 * coding.c (decode_coding_emacs_mule, decode_coding_iso2022)
6848 (decode_coding_sjis_big5, decode_eol): Allow lone \r in DOS EOL.
6849
6850 2002-11-01 Andreas Schwab <schwab@suse.de>
6851
6852 * editfns.c (Fmessage): Revert last change to properly handle %%.
6853
6854 2002-11-01 Stefan Monnier <monnier@cs.yale.edu>
6855
6856 * xmenu.c (unuse_menu_items): New fun.
6857 (menu_items_inuse): New var.
6858 (syms_of_xmenu): Initialize it.
6859 (init_menu_items): Use it to detect re-entrance.
6860 (Fx_popup_menu, Fx_popup_dialog, set_frame_menubar): Reset when done.
6861 (Fx_popup_menu): Remove spurious XSETFRAME.
6862
6863 * editfns.c (find_field): Make an exception for nil fields.
6864
6865 2002-11-01 Dave Love <fx@gnu.org>
6866
6867 * m/gec63.h: Deleted.
6868
6869 2002-10-31 Dave Love <fx@gnu.org>
6870
6871 * xterm.c (XTread_socket): Fix last change.
6872 (xaw_scroll_callback): Cast call_data to long to avoid warning.
6873
6874 2002-10-31 Stefan Monnier <monnier@cs.yale.edu>
6875
6876 * process.c (Fformat_network_address): Fix int/Lisp_Object mixup.
6877
6878 2002-10-30 Stefan Monnier <monnier@cs.yale.edu>
6879
6880 * editfns.c (overlays_around, get_pos_property): New funs.
6881 (find_field): Use them.
6882 Also be careful not to modify POS before its last use.
6883 (Fmessage): Don't Fformat if there's nothing to format.
6884
6885 2002-10-30 Dave Love <fx@gnu.org>
6886
6887 * process.c [HAVE_SYS_WAIT]: Include sys/wait.h.
6888 [HAVE_PTY_H]; Include pty.h.
6889
6890 * lread.c (Fload) <!load_dangerous_libraries>: Close fd.
6891
6892 * xterm.c (Qeql): Declare.
6893 (Vx_keysym_table): New.
6894 (syms_of_xterm): Initialize it.
6895 (XTread_socket): Use it. Deal with ASCII keysyms.
6896 (XSetIMValues) [HAVE_X11R6]: Prototype.
6897
6898 * keyboard.c (lispy_accent_codes, lispy_accent_keys): Extended.
6899 (lispy_kana_keys): Comment out.
6900 (make_lispy_event) [XK_kana_A]: Comment out.
6901 (modify_event_symbol) <sizeof (long) == sizeof (EMACS_INT)>:
6902 Fix sprintf call.
6903
6904 * s/osf5-0.h (C_SWITCH_SYSTEM): Revert last change (fixed by
6905 regexp.h change).
6906 (TERMINFO, LIBS_TERMCAP): Define.
6907
6908 * s/usg5-4.h (bcopy, bzero): Define conditional on HAVE_BCOPY.
6909 (bcmp): Define conditional on HAVE_BCMP.
6910 (NO_SIOCTL_H): Don't define.
6911 (TIOCSIGSEND): Don't make conditional on IRIX6.
6912
6913 * s/sol2-5.h: Don't include strings.h.
6914 (bcopy, bzero, bcmp) [HAVE_BCOPY]: Don't undef.
6915
6916 * s/irix6-0.h (IRIX6): Don't define.
6917 (bcopy, bcmp, bzero): Don't undef.
6918
6919 * s/irix6-5.h: Don't include strings.h.
6920 (IRIX6): Don't define.
6921 (bcopy, bcmp, bzero): Don't undef.
6922
6923 * syntax.c (Fforward_comment): Doc fix.
6924
6925 2002-10-29 Kim F. Storm <storm@cua.dk>
6926
6927 * process.c (Fsignal_process): Allow PROCESS to be specified by
6928 name in addition to pid (as integer or string).
6929
6930 2002-10-28 Harald Maier <Harald.Maier.BW@t-online.de> (tiny change)
6931
6932 * w32heap.c: Don't redefine _heap_init and _heap_term on MSVC 7 build
6933 environments.
6934
6935 2002-10-27 Kim F. Storm <storm@cua.dk>
6936
6937 * xterm.c (note_mouse_highlight): Don't use mouse-face if hidden.
6938
6939 * w32term.c (note_mouse_highlight): Don't use mouse-face if hidden.
6940
6941 * msdos.c (IT_note_mouse_highlight): Don't use mouse-face if hidden.
6942
6943 * macterm.c (note_mouse_highlight): Don't use mouse-face if hidden.
6944
6945 2002-10-26 Richard M. Stallman <rms@gnu.org>
6946
6947 * editfns.c (Fformat): Detect invalid format letters for floats.
6948
6949 2002-10-25 Kenichi Handa <handa@m17n.org>
6950
6951 * xfns.c (x_set_name): Encode by Qcompound_text unconditionally.
6952 (x_set_title): Likewise.
6953
6954 2002-10-25 Juanma Barranquero <lektu@terra.es>
6955
6956 * macgui.h:
6957 * w32gui.h: Remove definition of XColor.
6958
6959 * dispextern.h [!HAVE_X_WINDOWS]: Define XColor.
6960
6961 2002-10-24 Kim F. Storm <storm@cua.dk>
6962
6963 * xdisp.c (get_window_cursor_type): New arg ACTIVE_CURSOR.
6964 Callers changed (supply dummy arg).
6965
6966 * lisp.h (get_window_cursor_type): Update prototype.
6967
6968 * w32term.c (x_display_and_set_cursor): Get active_cursor from
6969 get_window_cursor_type to track system caret.
6970
6971 2002-10-24 Kim F. Storm <storm@cua.dk>
6972
6973 * process.c (Fformat_network_address): New function.
6974 (syms_of_process): Defsubr it.
6975 (list_processes_1): Use it to format :local/:remote address if
6976 service/host is not set; before emacs would crash in that case.
6977 (Fmake_network_process): Don't use Ffind_operation_coding_system
6978 to setup coding system if host or service is not set.
6979
6980 2002-10-23 Juanma Barranquero <lektu@terra.es>
6981
6982 Patch suggested by Jay Finger <jay_finger@hotmail.com>.
6983
6984 * w32term.c (w32_term_init): Pass XColor to w32_define_color, not
6985 COLORREF.
6986
6987 * macgui.h:
6988 * w32gui.h: Add definition of XColor.
6989
6990 * macfns.c:
6991 * w32fns.c:
6992 * xfaces.c: Remove definition of XColor.
6993
6994 2002-10-22 Stefan Monnier <monnier@cs.yale.edu>
6995
6996 * xfns.c (x_set_name, x_set_title): `icon.value' has unsigned char.
6997
6998 * window.c (window_loop): For GET_LRU_WINDOW and GET_LARGEST_WINDOW>,
6999 Only ignore truly dedicated windows. For UNSHOW_BUFFER, delete the
7000 window if it is dedicated.
7001 (Fshrink_window): Add preserve_before as was done for enlarge_window.
7002 (Vspecial_display_function): Update docstring.
7003
7004 * buffer.c (assoc_ignore_text_properties, Fother_buffer, Fkill_buffer)
7005 (call_overlay_mod_hooks): Use CONSP and XCAR/XCDR.
7006 (Fget_buffer_create, advance_to_char_boundary): Use BEG and BEG_BYTE;
7007
7008 2002-10-21 Stefan Monnier <monnier@cs.yale.edu>
7009
7010 * casefiddle.c (casify_region): Don't treat a prefix char as part
7011 of a word when at the beginning.
7012
7013 2002-10-17 Juanma Barranquero <lektu@terra.es>
7014
7015 * lread.c (syms_of_lread): Fix typos.
7016
7017 2002-10-17 Dave Love <fx@gnu.org>
7018
7019 * Makefile.in (TEMACS_LDFLAGS): Add trailing comment.
7020
7021 2002-10-16 Richard M. Stallman <rms@gnu.org>
7022
7023 * fileio.c (Fcopy_file): Fix backward test of KEEP_TIME.
7024
7025 2002-10-14 Juanma Barranquero <lektu@terra.es>
7026
7027 * w16select.c (syms_of_win16select): Fix docstring for
7028 `selection-coding-system'.
7029
7030 * w32select.c (syms_of_w32select): Likewise.
7031
7032 2002-10-14 Stefan Monnier <monnier@cs.yale.edu>
7033
7034 * syntax.c (scan_lists): Don't get fooled by a symbol ending with
7035 a backslash-quoted char.
7036 (scan_lists, scan_sexps_forward): Pacify the compiler.
7037
7038 2002-10-13 Richard M. Stallman <rms@gnu.org>
7039
7040 * window.c (window_scroll): Set immediate_quit.
7041
7042 * print.c (print): When backquote form is the car of a list,
7043 output in old style. Use old_backquote_output to output all
7044 comma forms inside it in old style too.
7045
7046 * buffer.h (struct buffer): Move `undo_list' down below `name'.
7047
7048 2002-10-11 Markus Rost <rost@math.ohio-state.edu>
7049
7050 * emacs.c (syms_of_emacs) <kill-emacs-hook>: Doc fix (not run in
7051 batch mode).
7052
7053 * lread.c (Fload): Doc fix (load-suffixes).
7054
7055 2002-10-10 Steven Tamm <steventamm@mac.com>
7056
7057 * macterm.c (syms_of_macterm, mac_get_mouse_btn):
7058 Reverse functionality of mac-wheel-button-is-mouse-2 to be correct.
7059 Also switch the default to Qnil from Qt.
7060
7061 2002-10-08 Kenichi Handa <handa@m17n.org>
7062
7063 * coding.c (code_convert_region): When we need more GAP for
7064 conversion, pay attention to the case that coding->produced is not
7065 greater than coding->consumed.
7066
7067 2002-10-07 Richard M. Stallman <rms@gnu.org>
7068
7069 * unexelf.c (unexec): Redo 9/16 change, but only if IRIX6_5.
7070
7071 2002-10-06 Andrew Choi <akochoi@shaw.ca>
7072
7073 * macmenu.c (mac_menu_show): Add j to count menu items; match
7074 menu_item_selection to it to find selected item.
7075
7076 2002-10-06 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7077
7078 * xterm.c (XTread_socket): Fix from 2002-10-03 didn't cover all
7079 cases. The correct fix is to pass ReparentNotify to Xt.
7080 The shell widget interprets ConfigureNotify differently depending
7081 on if it has been reparented or not.
7082
7083 2002-10-05 Markus Rost <rost@math.ohio-state.edu>
7084
7085 * editfns.c (Fformat_time_string): Doc fix.
7086
7087 2002-10-05 John Paul Wallington <jpw@shootybangbang.com>
7088
7089 * fns.c (Flength): Doc fix.
7090
7091 2002-10-04 Stefan Monnier <monnier@cs.yale.edu>
7092
7093 * keyboard.c (keyremap): New struct.
7094 (read_key_sequence): Use it: globally replace keytran_foo with
7095 keytran.foo and fkey_foo with fkey.foo. Rename temp vars
7096 keytran_next and fkey_next to just `next'.
7097
7098 2002-10-04 Steven Tamm <steventamm@mac.com>
7099
7100 * macterm.c (keycode_to_xkeysym_table): Change return to be
7101 treated like an X keysym.
7102
7103 2002-10-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7104
7105 * xterm.c (XTread_socket): For ConfigureNotify, with x and y == 0,
7106 and USE_MOTIF, call XTranslateCoordinates to get the real x and y.
7107 This is to also handle x/y changes that occur because of a resize.
7108
7109 2002-10-02 John Paul Wallington <jpw@shootybangbang.com>
7110
7111 * frame.c (Vdelete_frame_functions): New variable.
7112 (syms_of_frame): Initialize and defvar it.
7113 (Fdelete_frame): Use it instead of delete-frame-hook. Don't run
7114 it when frame's `tooltip' parameter is non-nil.
7115
7116 * xfns.c (x_create_tip_frame): Set `tooltip' frame parameter to t.
7117
7118 * w32fns.c (x_create_tip_frame): Likewise.
7119
7120 * macfns.c (x_create_tip_frame): Likewise.
7121
7122 2002-09-30 Kenichi Handa <handa@m17n.org>
7123
7124 * xterm.c (x_encode_char): For DIM=1 charset, set ccl->reg[2] to
7125 -1 before calling ccl_driver.
7126
7127 * coding.c (decode_coding_emacs_mule): Check coding->cmp_data.
7128 Only when it is non-nil, handle composition sequence.
7129 (setup_coding_system) <0>: Don't force composition handling.
7130
7131 * Makefile.in (lisp, shortlisp): Add utf-16.elc
7132
7133 2002-09-29 Richard M. Stallman <rms@gnu.org>
7134
7135 * search.c (Freplace_match): Adjust match data for the substitution
7136 just made in the buffer.
7137
7138 * xdisp.c (STOP_POLLING, RESUME_POLLING): New macros.
7139 (redisplay_internal): Use them. Do RESUME_POLLING at end of function.
7140
7141 2002-09-27 Richard M. Stallman <rms@gnu.org>
7142
7143 * keyboard.c (STOP_POLLING, RESUME_POLLING): New macros.
7144 (read_char): Use them. Do all exits thru the end of the function.
7145
7146 2002-09-27 Kenichi Handa <handa@etl.go.jp>
7147
7148 * xfaces.c (try_font_list): Pay attention to the case that FAMILY
7149 is nil.
7150
7151 2002-09-26 Richard M. Stallman <rms@gnu.org>
7152
7153 * regex.h (__restrict_arr): Don't define if already defined.
7154
7155 * coding.c (run_pre_post_conversion_on_str):
7156 Save and restore Vdeactivate_mark.
7157
7158 2002-09-26 John Paul Wallington <jpw@shootybangbang.com>
7159
7160 * minibuf.c (Fminibufferp): Add an optional `buffer' argument.
7161
7162 2002-09-26 Kenichi Handa <handa@etl.go.jp>
7163
7164 * xfaces.c (try_font_list): New arg PREFER_FACE_FAMILY. If it is
7165 nonzero, try face's family at first. Otherwise try FAMILY at first.
7166 (choose_face_font): If C is a single byte char or latin-1, call
7167 try_font_list with PREFER_FACE_FAMILY 1.
7168
7169 2002-09-21 Richard M. Stallman <rms@gnu.org>
7170
7171 * window.c (select_window_1): Don't select frame.
7172 Set frame's selected window only when frame itself is selected.
7173 (Fselect_window): Doc fix.
7174
7175 2002-09-18 Kim F. Storm <storm@cua.dk>
7176
7177 * process.c (make-network-process): Doc fix (there is no
7178 network-server-log-function hook).
7179
7180 2002-09-18 Richard M. Stallman <rms@gnu.org>
7181
7182 * print.c (print): Clear out the unused parts of Vprint_number_table.
7183 (syms_of_print): Doc fix for `print-number-table'.
7184
7185 * unexelf.c (unexec): Undo previous change.
7186
7187 2002-09-17 Andreas Schwab <schwab@suse.de>
7188
7189 * m/alpha.h [LINUX]: Don't define DATA_START.
7190
7191 2002-09-16 Dave Love <fx@gnu.org>
7192
7193 * unexelf.c (unexec): Deal with .got, reinstating change from
7194 25-08-1999.
7195
7196 2002-09-13 Richard M. Stallman <rms@gnu.org>
7197
7198 * s/sol2-6.h (UNEXEC): Comment out definition.
7199
7200 * unexsol.c (unexec): Don't downcase first letter of error msg.
7201
7202 * xfaces.c (Fcolor_supported_p): Just one arg is required.
7203
7204 2002-09-12 Markus Rost <rost@math.ohio-state.edu>
7205
7206 * unexsol.c: Include buffer.h, charset.h, coding.h.
7207
7208 2002-09-11 Richard M. Stallman <rms@gnu.org>
7209
7210 * unexsol.c: Don't use report_file_error; do it by hand
7211 using dlerror.
7212
7213 * process.c (wait_reading_process_input, both versions):
7214 Before calling turn_on_atimers, call stop_polling.
7215
7216 * emacs.c (syms_of_emacs) <command-line-args>: Doc fix.
7217
7218 * xdisp.c (try_scrolling): If after make_cursor_line_fully_visible
7219 we go to too_near_end, call clear_glyph_matrix.
7220 (redisplay_window): After make_cursor_line_fully_visible,
7221 call clear_glyph_matrix and bypass `goto done'.
7222
7223 * xfns.c (x_report_frame_params): If FRAME_SCROLL_BAR_PIXEL_WIDTH is 0
7224 and we have non-toolkit scroll bars, return nil for scroll-bar-width.
7225
7226 2002-09-10 Richard M. Stallman <rms@gnu.org>
7227
7228 * fileio.c (Fdo_auto_save): Catch error making directory.
7229 Only call push_message if we need to.
7230 At the same time, make an unwind-protect to pop it.
7231 Rename local message_p to old_message_p.
7232 (do_auto_save_make_dir, do_auto_save_eh): New functions.
7233 (do_auto_save_unwind): Don't call pop_message.
7234
7235 * lisp.h (pop_message_unwind): Renamed from push_message_unwind.
7236
7237 * keyboard.c (Fexecute_extended_command): Use pop_message_unwind.
7238
7239 * alloc.c (Fgarbage_collect): Use pop_message_unwind.
7240
7241 * xdisp.c (pop_message_unwind): Renamed from push_message_unwind.
7242
7243 2002-09-10 Stefan Monnier <monnier@cs.yale.edu>
7244
7245 * regex.c (DISCARD_FAILURE_REG_OR_COUNT): Delete.
7246 (CHECK_INFINITE_LOOP): Don't pop anything: just set `cycle' to 1.
7247 (re_match_2_internal): Be more careful with infinite loops.
7248
7249 2002-09-10 Kim F. Storm <storm@cua.dk>
7250
7251 * macros.c (end_kbd_macro): New function.
7252 (Fend_kbd_macro): Use it.
7253
7254 * macros.h (end_kbd_macro): Declare extern.
7255
7256 * keyboard.c (Fdiscard_input): If defining keyboard macro,
7257 end and save it instead of discarding it.
7258
7259 2002-09-09 Markus Rost <rost@math.ohio-state.edu>
7260
7261 * s/sol2-6.h: Fix typo. Add comment.
7262
7263 2002-09-09 Richard M. Stallman <rms@gnu.org>
7264
7265 * regex.c (regnum_t): Use signed int, not unsigned int.
7266
7267 * s/sol2-6.h: New file.
7268
7269 * s/sol2-5.h (UNEXEC): Definition deleted.
7270
7271 2002-09-08 Kim F. Storm <storm@cua.dk>
7272
7273 * macros.c (executing_macro_index): Change type to EMACS_INT.
7274 (syms_of_macros): DEFVAR_INT it (needed by kmacro).
7275
7276 * macros.h (executing_macro_index): Change type to EMACS_INT.
7277
7278 2002-09-06 Richard M. Stallman <rms@gnu.org>
7279
7280 * casetab.c (set_case_table): Make canon table point to eqv table.
7281
7282 2002-09-06 Juanma Barranquero <lektu@terra.es>
7283
7284 * coding.c (syms_of_coding): Fix spacing.
7285
7286 * composite.c (Fcompose_region_internal)
7287 (Fcompose_string_internal): Likewise.
7288
7289 * data.c (Flsh): Likewise.
7290
7291 * fontset.c (Fset_fontset_font): Likewise.
7292
7293 * macfns.c (Fx_server_max_request_size): Likewise.
7294
7295 * w16select.c (syms_of_win16select): Likewise.
7296
7297 * w32select.c (syms_of_w32select): Likewise.
7298
7299 * xselect.c (syms_of_xselect): Likewise.
7300
7301 2002-09-05 Richard M. Stallman <rms@gnu.org>
7302
7303 * regex.c (set_image_of_range_1): In no-TRANSLATE case,
7304 call EXTEND_RANGE_TABLE and return a proper value.
7305 (set_image_of_range): Don't call set_image_of_range_1
7306 if no TRANSLATE or if range includes all of Latin-1.
7307 Only call it for the Latin-1 part of the range.
7308 For other cases, make two separate ranges,
7309 one for the original specified characters and one for
7310 their case-conversions.
7311
7312 2002-09-04 Richard M. Stallman <rms@gnu.org>
7313
7314 * s/sol2-5.h (UNEXEC): Use unexsol.o.
7315
7316 * window.c (displayed_window_lines): Correct for one-off bug
7317 in HEIGHT on non-window displays.
7318
7319 * regex.c (set_image_of_range_1): New function.
7320 (set_image_of_range): Use set_image_of_range_1 for Latin-1.
7321 Return a value to indicate running out of memory.
7322 (SET_RANGE_TABLE_WORK_AREA): Check value from set_image_of_range.
7323 (extend_range_table_work_area): New subroutine.
7324 (EXTEND_RANGE_TABLE): Replaces EXTEND_RANGE_TABLE_WORK_AREA.
7325 Different calling conventions, and used from set_image_of_range{,_1}.
7326 (IMMEDIATE_QUIT_CHECK): Definitions moved.
7327
7328 2002-09-04 Juanma Barranquero <lektu@terra.es>
7329
7330 * makefile.w32-in: All dependencies updated.
7331
7332 2002-09-01 Richard M. Stallman <rms@gnu.org>
7333
7334 * unexsol.c: New file.
7335
7336 * xfns.c (Qbox): Declare external, don't define.
7337
7338 * xdisp.c (redisplay_window) <force-start case>:
7339 If point is on semi-visible last line, reposition
7340 it at previous line.
7341
7342 * alloc.c (display_malloc_warning): Use display-warning.
7343 (malloc_warning_1): Function deleted.
7344
7345 * alloc.c [ALLOC_DEBUG]: #undef INLINE.
7346
7347 * lread.c (read1): Handle #! by skipping the line.
7348
7349 2002-08-31 Richard M. Stallman <rms@gnu.org>
7350
7351 * Makefile.in (TEMACS_LDFLAGS): Renamed from ALL_LDFLAGS.
7352 Don't include LDFLAGS.
7353 (temacs): Pass LDFLAGS separately, and not via YMF_PASS_LDFLAGS.
7354
7355 2002-08-31 Eli Zaretskii <eliz@is.elta.co.il>
7356
7357 * xdisp.c (get_window_cursor_type): Don't use x_highlight_frame
7358 member of x_display_info unless we compile for some window system.
7359
7360 2002-08-31 Kim F. Storm <storm@cua.dk>
7361
7362 * xdisp.c (Valternate_cursor_type, Qalternate_cursor_type): Removed.
7363 (get_window_cursor_type): Don't use them.
7364 (syms_of_xdisp): Remove intern, staticpro, and defvar for them.
7365
7366 2002-08-30 Kenichi Handa <handa@etl.go.jp>
7367
7368 * xdisp.c (get_next_display_element): Fix previous change.
7369
7370 2002-08-30 Andrew Choi <akochoi@shaw.ca>
7371
7372 * macterm.c (expose_overlaps): New function (merge code from xterm.c).
7373 (expose_window): Use it to fix the display of overlapping
7374 rows (merge code from xterm.c).
7375
7376 * macfns.c (Qbox): Add extern declaration.
7377
7378 2002-08-30 Juanma Barranquero <lektu@terra.es>
7379
7380 * w32fns.c (Qbox): Make extern.
7381 (syms_of_w32fns): Remove initialization of Qbox.
7382
7383 2002-08-30 Rune Kleveland <runekl@viewpoint.no> (tiny change)
7384
7385 * xfns.c (Fx_open_connection): Fix error message.
7386
7387 2002-08-30 Kim F. Storm <storm@cua.dk>
7388
7389 The following changes consolidates the handling of the cursor
7390 type in xdisp.c, moving duplicate code and functionality from
7391 xfns.c, xterm.c, w32fns.c, w32term.c, macfns.c, and macterm.c.
7392
7393 * frame.h (enum text_cursor_kinds): Consolidated here.
7394 Added DEFAULT_CURSOR value.
7395 (struct frame) <desired_cursor, cursor_width>
7396 <blink_off_cursor, blink_off_cursor_width>: New fields.
7397 Consolidated from output_x, output_w32 and output_mac structs.
7398 (FRAME_DESIRED_CURSOR, FRAME_CURSOR_WIDTH, FRAME_BLINK_OFF_CURSOR)
7399 (FRAME_BLINK_OFF_CURSOR_WIDTH): Macros consolidated here.
7400
7401 * xdisp.c (Qbar, Qhbar, Qbox, Qhollow, Vblink_cursor_alist):
7402 Variables consolidated here.
7403 (Valternate_cursor_type, Qalternate_cursor_type): New variables.
7404 (Vcursor_in_non_selected_windows): Renamed from
7405 cursor_in_non_selected_windows and changed to Lisp_Object.
7406 (syms_of_xdisp): Define and staticpro new and moved variables.
7407 (get_specified_cursor_type): Renamed from x_specified_cursor_type;
7408 consolidated here. Recognize Qhollow setting.
7409 (set_frame_cursor_types): New function to set frame cursor types
7410 based on the frame parameters.
7411 (get_window_cursor_type): New function to calculate new cursor
7412 type and width for the specified window. Based on duplicated
7413 code consolidated here.
7414 Enhancements: cursor-in-non-selected-windows may be a cursor type,
7415 check buffer-local alternate-cursor-type and blink-cursor-alist
7416 before using built-in blink off methods.
7417
7418 * dispextern.h (cursor_in_non_selected_windows): Extern removed.
7419
7420 * lisp.h (Qcursor_in_non_selected_windows): Extern removed.
7421 (get_specified_cursor_type, get_window_cursor_type)
7422 (set_frame_cursor_types): Added prototypes.
7423
7424 * macfns.c (x_specified_cursor_type): Removed.
7425 (x_set_cursor_type): Use set_frame_cursor_types.
7426 (Qbar, Qbox): Removed.
7427 (syms_of_macfns): Don't intern or staticpro them.
7428
7429 * macterm.c (x_specified_cursor_type): Remove prototype.
7430 (x_draw_bar_cursor): Use FRAME_CURSOR_WIDTH.
7431 (x_display_and_set_cursor): Use get_window_cursor_type.
7432 Remove unused local variables cursor_non_selected, active_cursor.
7433 Redraw cursor if hbar cursor width changes.
7434 (make_mac_frame): Set FRAME_DESIRED_CURSOR.
7435
7436 * macterm.h (enum text_cursor_kinds): Removed.
7437 (struct output_mac) <current_cursor, desired_cursor, cursor_width>
7438 <blink_off_cursor, blink_off_cursor_width>: Members removed.
7439 (FRAME_DESIRED_CURSOR): Macro removed.
7440
7441 * w32fns.c (Vblink_cursor_alist): Removed.
7442 (Qbar, Qhbar, Qbox, Qhollow): Removed.
7443 (syms_of_w32fns): Don't intern, staticpro, or define them.
7444 (x_specified_cursor_type): Removed.
7445 (x_set_cursor_type): Use set_frame_cursor_types.
7446
7447 * w32term.c (x_specified_cursor_type): Remove prototype.
7448 (x_draw_bar_cursor): Use FRAME_CURSOR_WIDTH.
7449 (x_display_and_set_cursor): Use get_window_cursor_type.
7450 Remove unused local variables cursor_off_state.
7451 Redraw cursor if hbar cursor width changes.
7452 Changed all occurrences of w32_highlight_frame to x_highlight_frame.
7453
7454 * w32term.h (enum text_cursor_kinds): Removed.
7455 (struct output_w32) <current_cursor, desired_cursor, cursor_width>
7456 <blink_off_cursor, blink_off_cursor_width>: Members removed.
7457 (FRAME_DESIRED_CURSOR, FRAME_CURSOR_WIDTH, FRAME_BLINK_OFF_CURSOR)
7458 (FRAME_BLINK_OFF_CURSOR_WIDTH): Macros removed.
7459 (struct w32_display_info) <x_highlight_frame>: Renamed member from
7460 w32_highlight_frame.
7461
7462 * xfns.c (Vblink_cursor_alist): Removed.
7463 (Qbar, Qhbar, Qbox, Qhollow): Removed.
7464 (syms_of_xfns): Don't intern, staticpro, or define them.
7465 (x_specified_cursor_type): Removed.
7466 (x_set_cursor_type): Use set_frame_cursor_types.
7467
7468 * xterm.c (x_specified_cursor_type): Remove prototype.
7469 (x_draw_bar_cursor): Use FRAME_CURSOR_WIDTH.
7470 (x_display_and_set_cursor): Use get_window_cursor_type.
7471 Remove unused local variables cursor_off_state.
7472 Redraw cursor if hbar cursor width changes.
7473
7474 * xterm.h (enum text_cursor_kinds): Removed.
7475 (struct output_x) <current_cursor, desired_cursor, cursor_width>
7476 <blink_off_cursor, blink_off_cursor_width>: Members removed.
7477 (FRAME_DESIRED_CURSOR, FRAME_CURSOR_WIDTH, FRAME_BLINK_OFF_CURSOR)
7478 (FRAME_BLINK_OFF_CURSOR_WIDTH): Macros removed.
7479 (x_specified_cursor_type): Remove prototype.
7480
7481 2002-08-28 Richard M. Stallman <rms@gnu.org>
7482
7483 * w32fns.c (x_set_cursor_type): Set FRAME_BLINK_OFF_CURSOR and
7484 FRAME_BLINK_OFF_CURSOR_WIDTH using defaults and Vblink_cursor_alist.
7485 (Vblink_cursor_alist): New variable.
7486 (syms_of_w32fns): Initialize and defvar it.
7487 (x_specified_cursor_type): Recognize Qbox for filled box.
7488 Exceptions are hollow boxes.
7489 (Qbox, Qhollow): New variables.
7490 (syms_of_w32fns): Initialize and staticpro them.
7491
7492 * w32term.h (FRAME_BLINK_OFF_CURSOR, FRAME_BLINK_OFF_CURSOR_WIDTH):
7493 New macros.
7494 (struct w32_output): New fields blink_off_cursor,
7495 blink_off_cursor_width.
7496 (FRAME_CURSOR_WIDTH): New macro.
7497
7498 * w32term.c (x_display_and_set_cursor): Use FRAME_BLINK_OFF_CURSOR
7499 and FRAME_BLINK_OFF_CURSOR_WIDTH for blinking cursor off.
7500
7501 * w32term.c (x_display_and_set_cursor): Check FRAME_CURSOR_WIDTH
7502 for bar cursor.
7503
7504 * w32term.c (expose_overlaps): New function.
7505 (expose_window): Use it to fix the display of overlapping rows.
7506
7507 2002-08-28 Simon Josefsson <jas@extundo.com>
7508
7509 * xfns.c (Fx_open_connection): Improve help when X connection
7510 fails, xhost is insecure and xauth is better.
7511
7512 2002-08-28 Juanma Barranquero <lektu@terra.es>
7513
7514 * makefile.w32-in: Add missing dependencies on w32term.h and
7515 composite.h.
7516
7517 * emacs.c (USAGE1): Add missing newline.
7518
7519 2002-08-27 Andrew Choi <akochoi@shaw.ca>
7520
7521 * s/darwin.h [HAVE_LIBNCURSES]: Define HAVE_TERMINFO.
7522
7523 2002-08-27 Richard M. Stallman <rms@gnu.org>
7524
7525 * xfns.c (x_set_cursor_type): Set FRAME_BLINK_OFF_CURSOR and
7526 FRAME_BLINK_OFF_CURSOR_WIDTH using defaults and Vblink_cursor_alist.
7527 (Vblink_cursor_alist): New variable.
7528 (syms_of_xfns): Initialize and defvar it.
7529 (x_specified_cursor_type): Recognize Qbox for filled box.
7530 Exceptions are hollow boxes.
7531 (Qbox, Qhollow): New variables.
7532 (syms_of_xfns): Initialize and staticpro them.
7533
7534 * xterm.h (FRAME_BLINK_OFF_CURSOR, FRAME_BLINK_OFF_CURSOR_WIDTH):
7535 New macros.
7536 (struct x_output): New fields blink_off_cursor, blink_off_cursor_width.
7537
7538 * xterm.c (x_display_and_set_cursor): Use FRAME_BLINK_OFF_CURSOR
7539 and FRAME_BLINK_OFF_CURSOR_WIDTH for blinking cursor off.
7540
7541 * emacs.c (main): Handle --script.
7542 (USAGE1): Mention --script.
7543 (standard_args): Define sort order for --script.
7544
7545 2002-08-27 Gerd Moellmann <gerd.moellmann@t-online.de>
7546
7547 * xdisp.c (redisplay_updating_p): Variable removed.
7548 (inhibit_free_realized_faces, Qinhibit_free_realized_faces):
7549 New variables.
7550 (init_iterator): Don't free realized faces if
7551 inhibit_free_realized_faces is set.
7552 (redisplay_internal): Bind Qinhibit_free_realized_faces to nil.
7553 (syms_of_xdisp): DEFVAR_BOOL inhibit-free-realized-faces,
7554 initialize Qinhibit_free_realized_faces.
7555
7556 * dispextern.h (PRODUCE_GLYPHS): Set inhibit_free_realized_faces
7557 when iterator is adding glyphs to a glyph matrix.
7558
7559 2002-08-27 Kenichi Handa <handa@etl.go.jp>
7560
7561 * xdisp.c (get_next_display_element): In unibyte case, don't use
7562 octal form for such eight-bit characters that can be converted to
7563 multibyte char.
7564
7565 2002-08-26 Kim F. Storm <storm@cua.dk>
7566
7567 * frame.c (make_terminal_frame) [CANNOT_DUMP]: Initialize foreground
7568 and background colors. From Joe Buehler (tiny change).
7569
7570 2002-08-26 Miles Bader <miles@gnu.org>
7571
7572 * bytecode.c (Fbyte_code): Fsub1 can GC, so protect it.
7573
7574 2002-08-25 Andrew Choi <akochoi@shaw.ca>
7575
7576 * emacs.c (main): Call init_mac_osx_environment if HAVE_CARBON is
7577 defined instead of MAC_OSX.
7578
7579 * s/darwin.h (select): Define select to sys_select only if
7580 HAVE_CARBON is defined.
7581 (HAVE_WORKING_VFORK): #undef it. Define vfork to fork.
7582 (DONT_REOPEN_PTY): #def it.
7583
7584 * macterm.c (XTread_socket): Remove code to call
7585 SendEventToEventTarget for keys with command modifiers when
7586 mac_command_key_is_meta is nil.
7587
7588 2002-08-24 Andreas Schwab <schwab@suse.de>
7589
7590 * eval.c (Fdefvar): Fix last change.
7591
7592 2002-08-23 Richard M. Stallman <rms@gnu.org>
7593
7594 * eval.c (Fdefvar, Fdefconst, Fdefvaralias):
7595 Record variables in load history as (defvar . VAR).
7596 (Fdefvar): Don't record in load history if no initial value.
7597 (Qdefvar): New variable.
7598 (syms_of_eval): Init and staticpro it.
7599
7600 * lread.c (syms_of_lread): Doc fix.
7601 (build_load_history): Use Fmember to see if a definition
7602 is already in the Vload_history element.
7603
7604 * process.c (Fstart_process): Remove /: from program name.
7605
7606 * emacs.c (decode_env_path): Don't add /: if file name handler
7607 has a `safe-magic' property.
7608
7609 * callproc.c (Fcall_process): Remove /: from program name.
7610
7611 2002-08-23 Stefan Monnier <monnier@cs.yale.edu>
7612
7613 * regex.c (PATFETCH): Remove the translating fetch.
7614 (PATFETCH_RAW): Rename to PATFETCH.
7615 (set_image_of_range): New fun.
7616 (SET_RANGE_TABLE_WORK_AREA): Use it.
7617 (regex_compile): Don't translate the pattern chars so eagerly.
7618 Only do it when inserting an `exactn' bytecode or when handling
7619 a char-range.
7620 (mutually_exclusive_p): Avoid empty statement.
7621
7622 2002-08-22 Kim F. Storm <storm@cua.dk>
7623
7624 * xdisp.c (redisplay_window): Do not `goto try_to_scroll' when we
7625 end up on a partially visible line; this reverts a specific part
7626 of the 2002-07-07 change by Richard M. Stallman to "fix" a nasty
7627 display error which has been reported several times now.
7628 However it introduces the problem that changes was supposed to fix.
7629 See my comments in the source if you want to debug this further.
7630
7631 2002-08-20 Kenichi Handa <handa@etl.go.jp>
7632
7633 * abbrev.c (Fexpand_abbrev): Fix for the multibyte case.
7634
7635 2002-08-19 Eli Zaretskii <eliz@is.elta.co.il>
7636
7637 * msdos.c (croak): Add `void' to definition.
7638
7639 * sysdep.c [MSDOS] (request_sigio, unrequest_sigio):
7640 Don't define them, they are defined in msdos.c.
7641
7642 * mem-limits.h [MSDOS]: Declare etext.
7643
7644 * fileio.c (Ffile_name_directory) [DOS_NT]: Don't declare `beg'
7645 `const' since CORRECT_DIR_SEPS modifies its target.
7646
7647 2002-08-19 Kim F. Storm <storm@cua.dk>
7648
7649 * keyboard.c (Fclear_this_command_keys): Added optional arg
7650 KEEP-RECORD to avoid clearing lossage when we just want to clear
7651 the current key sequence (kmacro needs this).
7652
7653 2002-08-19 Kenichi Handa <handa@localhost>
7654
7655 * composite.c (run_composition_function): Call FUNC if it is fboundp.
7656
7657 * composite.h (COMPOSITION_MODIFICATION_FUNC): If PROP is not a
7658 cons, return Qnil.
7659
7660 2002-08-17 Richard M. Stallman <rms@gnu.org>
7661
7662 * s/sol2-5.h (BROKEN_SIGIO): Add #undef.
7663
7664 * sysdep.c [!VMS]: Include sys/files.h.
7665
7666 * editfns.c (save_restriction_restore): Defend from unchained marker.
7667
7668 * buffer.c (overlays_at): Handle extending vec uniformly.
7669 (overlays_in): Handle extending vec from length 0 as in overlays_at.
7670
7671 2002-08-15 Andrew Choi <akochoi@shaw.ca>
7672
7673 * mac.c (init_mac_osx_environment): New function.
7674
7675 * emacs.c (main) [MAC_OSX]: Call init_mac_osx_environment.
7676
7677 2002-08-14 Kim F. Storm <storm@cua.dk>
7678
7679 * macros.c (Fstart_kbd_macro): Added NO-EXEC argument to inhibit
7680 executing macro before appending to it (when used from Lisp).
7681 (Fexecute_kbd_macro): Added LOOPFUNC argument to supply function
7682 which is called prior to each iteration of macro (for kmacro.el).
7683 (Fend_kbd_macro, Fcall_last_kbd_macro): Likewise.
7684
7685 * lisp.h (Fexecute_kbd_macro): Update prototype.
7686
7687 * keyboard.c (Fcommand_execute): Update call to Fexecute_kbd_macro.
7688
7689 2002-08-14 Kenichi Handa <handa@etl.go.jp>
7690
7691 * xselect.c (QUTF8_STRING): New variable.
7692 (symbol_to_x_atom): Pay attention to QUTF8_STRING.
7693 (x_atom_to_symbol): Likewise.
7694 (x_get_local_selection): New argument local_request. If it is
7695 nonzero, call handler_fn with the second arg nil.
7696 (x_handle_selection_request): Call x_get_local_selection with
7697 local_request 0.
7698 (lisp_data_to_selection_data): Don't encode the string here.
7699 (Fx_get_selection_internal): Call x_get_local_selection with
7700 local_request 1.
7701 (syms_of_xselect): Intern and staticpro QUTF8_STRING.
7702
7703 * xterm.c (x_term_init): Initialize dpyinfo->Xatom_UTF8_STRING.
7704
7705 * xterm.h (struct x_display_info): New member Xatom_UTF8_STRING.
7706
7707 2002-08-13 Richard M. Stallman <rms@gnu.org>
7708
7709 * minibuf.c (Fminibufferp): New function.
7710 (syms_of_minibuf): Defsubr it.
7711 (Fminibuffer_prompt_end): Handle non-minibuffers specially.
7712
7713 2002-08-13 Gerd Moellmann <gerd.moellmann@t-online.de>
7714
7715 * coding.c (Funencodable_char_position): Lisp_Object/int mixup.
7716
7717 2002-08-12 Richard M. Stallman <rms@gnu.org>
7718
7719 * syswait.h: Only the include of sys/wait.h tests HAVE_SYS_WAIT_H.
7720 [!VMS] (WCOREDUMP, WEXITSTATUS, WIFEXITED, WIFSTOPPED, WIFSIGNALED)
7721 (WSTOPSIG, WTERMSIG): Define each one independently if not defined
7722 already.
7723
7724 * buffer.c (syms_of_buffer) <fill-column>: Doc fix.
7725
7726 2002-08-11 Andrew Choi <akochoi@shaw.ca>
7727
7728 * macterm.c (XTmouse_position): Check wp with is_emacs_window.
7729 (Vmac_pass_command_to_system): New variable.
7730 (Vmac_pass_control_to_system): New variable.
7731 (do_mouse_moved): Check wp with is_emacs_window.
7732 (XTread_socket): Check window_ptr with is_emacs_window.
7733 Call FrontNonFloatingWindow instead of FrontWindow. Send keydown
7734 events back to Mac Toolbox for processing, depending on values of
7735 Vmac_pass_command_to_system and Vmac_pass_control_to_system.
7736 (syms_of_macterm): DEFVAR_LISP Vmac_pass_command_to_system and
7737 Vmac_pass_control_to_system.
7738
7739 2002-08-10 Kenichi Handa <handa@etl.go.jp>
7740
7741 * coding.c (unencodable_char_position): New function.
7742 (Funencodable_char_position): New function.
7743 (syms_of_coding): Defsubr Funencodable_char_position.
7744
7745 2002-08-10 Andrew Choi <akochoi@shaw.ca>
7746
7747 * mac.c (sys_select) [MAC_OSX]: New function.
7748
7749 * macterm.c (MakeMeTheFrontProcess): New function.
7750 (mac_initialize): Call MakeMeTheFrontProcess.
7751
7752 * s/darwin.h: Define select to sys_select.
7753
7754 2002-08-09 Richard M. Stallman <rms@gnu.org>
7755
7756 * keyboard.c (make_lispy_event): Test WINDOWSNT, not WINDOWS_NT.
7757
7758 2002-08-09 Gerd Moellmann <gerd.moellmann@t-online.de>
7759
7760 * xdisp.c (forward_to_next_line_start): Return 0 when reaching the
7761 end of the buffer.
7762
7763 2002-08-08 Ken Raeburn <raeburn@mit.edu>
7764
7765 * coding.c (Ffind_operation_coding_system): Fix Lisp_Object/int mixup.
7766
7767 * puresize.h (BASE_PURESIZE): Increase to 910000.
7768
7769 2002-08-08 Kenichi Handa <handa@etl.go.jp>
7770
7771 * coding.c (Ffind_operation_coding_system): For write-region, if
7772 VISIT is a filename, make it the target.
7773
7774 2002-08-07 Richard M. Stallman <rms@gnu.org>
7775
7776 * alloc.c (mark_object): Detect long lists for debugging.
7777 (mark_object_loop_halt): New variable.
7778
7779 * s/hpux10.h (C_SWITCH_SYSTEM): #undef it.
7780
7781 * data.c (Fmake_variable_frame_local): Doc fix.
7782
7783 2002-08-01 David Ponce <david@dponce.com>
7784
7785 * w32menu.c (local_heap, local_alloc, local_free): New macros.
7786 (malloc_widget_value, free_widget_value)
7787 (w32_free_submenu_strings): Use them.
7788
7789 (push_submenu_start, push_submenu_end, push_left_right_boundary)
7790 (push_menu_pane, push_menu_item, single_keymap_panes)
7791 (single_menu_item, Fx_popup_menu, menubar_selection_callback)
7792 (single_submenu, set_frame_menubar)
7793 (w32_menu_show, w32_dialog_show): Use AREF, ASET, ASIZE.
7794
7795 (Fx_popup_menu): Don't show pop up menu until preceding one is
7796 actually cleaned up. Moved UNGCPRO outside #ifdef HAVE_MENUS block.
7797
7798 * w32menu.c: Changes adapted from xmenu.c
7799 (set_frame_menubar): First parse all submenus,
7800 then make widget_value trees from them.
7801 Don't allocate any widget_value objects
7802 until we are done with the parsing.
7803 (parse_single_submenu): New function.
7804 (digest_single_submenu): New function.
7805 (single_submenu): Function deleted, replaced by those two.
7806
7807 2002-08-04 Andrew Choi <akochoi@shaw.ca>
7808
7809 * macterm.c (XTread_socket): Check that FrontNonFloatingWindow
7810 returns a valid window pointer before proceeding for keyDown and
7811 autoKey events.
7812
7813 2002-08-03 Andrew Choi <akochoi@shaw.ca>
7814
7815 * macterm.c (USE_CARBON_EVENTS): New macro.
7816 (macCtrlKey, macShiftKey, macMetaKey, macAltKey): New macros.
7817 (x_iconify_frame): Call CollapseWindow.
7818 (Vmac_reverse_ctrl_meta): New variable.
7819 (Vmac_wheel_button_is_mouse_2): New variable.
7820 (init_mac_drag_n_drop): New function.
7821 (mac_do_receive_drag): New function.
7822 (mac_handle_service_event): New function.
7823 (init_service_handler): New function.
7824 (mac_to_emacs_modifiers): New function.
7825 (mac_event_to_emacs_modifiers): New function.
7826 (mac_get_mouse_btn): New function.
7827 (mac_convert_event_ref): New function.
7828 (XTread_socket) [USE_CARBON_EVENTS]: Call ReceiveNextEvent,
7829 SendEventToEventTarget, mac_event_to_emacs_modifiers, and
7830 mac_get_mouse_btn.
7831 (mac_initialize): Call init_mac_drag_n_drop and init_service_handler.
7832
7833 * keyboard.c: Define Qmouse_wheel, mouse_wheel_syms, and
7834 lispy_mouse_wheel_names for MAC_OSX as well as for WINDOWS_NT.
7835 (kbd_buffer_get_event): Set used_mouse_menu for MENU_BAR_EVENT and
7836 TOOL_BAR_EVENT for MAC_OS as well.
7837 (make_lispy_event): Handle MOUSE_WHEEL_EVENT for MAC_OSX as well
7838 as for WINDOWS_NT.
7839 (syms_of_keyboard): Initialize Qmouse_wheel for MAC_OSX.
7840
7841 * termhooks.h (event_kind): Define MOUSE_WHEEL_EVENT also for MAC_OSX.
7842
7843 2002-08-03 Gerd Moellmann <gerd.moellmann@t-online.de>
7844
7845 * xdisp.c (forward_to_next_line_start): Fix a condition that
7846 lead to a newline being skipped.
7847
7848 2002-08-02 Andrew Choi <akochoi@shaw.ca>
7849
7850 * mac.c (syms_of_mac): Defsubr Sx_selection_exists_p.
7851
7852 2002-08-01 Richard M. Stallman <rms@gnu.org>
7853
7854 * Makefile.in (SOME_MACHINE_OBJECTS): Add fontset.o.
7855
7856 2002-07-31 Andrew Choi <akochoi@shaw.ca>
7857
7858 * macfns.c: #undef init_process before #define-ing it.
7859
7860 * s/darwin.h: Define MAC_OS, SYMS_SYSTEM, and OTHER_FILES only if
7861 HAVE_CARBON is defined.
7862
7863 2002-07-31 Richard M. Stallman <rms@gnu.org>
7864
7865 * xmenu.c (set_frame_menubar): First parse all submenus,
7866 then make widget_value trees from them.
7867 Don't allocate any widget_value objects
7868 until we are done with the parsing.
7869 (parse_single_submenu): New function.
7870 (digest_single_submenu): New function.
7871 (single_submenu): Function deleted, replaced by those two.
7872
7873 2002-07-30 Juanma Barranquero <lektu@terra.es>
7874
7875 * w32proc.c (syms_of_ntproc): Fix docstring of
7876 `w32-get-true-file-attributes'.
7877
7878 2002-07-28 Richard M. Stallman <rms@gnu.org>
7879
7880 * s/hpux8.h (HPUX8): Define this before including hpux.h.
7881 (HAVE_SYS_WAIT_H): #define deleted; we let Autoconf decide.
7882
7883 * s/hpux.h (HAVE_SYS_WAIT_H): The #undef is conditional on HPUX8.
7884
7885 * keyboard.c (make_lispy_event):
7886 Use #ifdef to test USE_TOOLKIT_SCROLL_BARS.
7887 Explicitly clear up_modifier in event->modifiers.
7888
7889 2002-07-27 Richard M. Stallman <rms@gnu.org>
7890
7891 * xterm.h (FRAME_CURSOR_WIDTH): New macro.
7892
7893 * xterm.c (x_display_and_set_cursor): Check FRAME_CURSOR_WIDTH
7894 for bar cursor.
7895
7896 2002-07-26 Kenichi Handa <handa@etl.go.jp>
7897
7898 * coding.c (detect_coding_iso2022): While checking a byte sequence
7899 for CODING_CATEGORY_MASK_ISO_8_2, if we read one extra byte, check
7900 it in the normal loop.
7901
7902 2002-07-24 Gerd Moellmann <gerd.moellmann@t-online.de>
7903
7904 * xterm.c (expose_overlaps): New function.
7905 (expose_window): Use it to fix the display of overlapping rows.
7906
7907 * xdisp.c (unwind_redisplay): Clear redisplay_updating_p.
7908
7909 2002-07-23 Ken Raeburn <raeburn@gnu.org>
7910
7911 * lisp.h (XPNTR): Use NO_UNION_TYPE version for union as well,
7912 since it only depends on XUINT.
7913
7914 * m/alpha.h (BITS_PER_LONG, BITS_PER_EMACS_INT, EMACS_INT,
7915 EMACS_UINT, SPECIAL_EMACS_INT, DATA_SEG_BITS,
7916 PNTR_COMPARISON_TYPE, VALBITS, MARKBIT, XINT, XUINT, XPNTR):
7917 Macros deleted.
7918
7919 * mem-limits.h (start_of_data): If DATA_START is defined, prefer
7920 its value over other approaches.
7921 * sysdep.c (start_of_data): Don't define the function if a macro
7922 form has been defined.
7923
7924 2002-07-23 Gerd Moellmann <gerd.moellmann@t-online.de>
7925
7926 * xdisp.c (redisplay_updating_p): New variable.
7927 (init_iterator): Don't free realized faces when
7928 redisplay_updating_p is set.
7929 (redisplay_internal): Set redisplay_updating_p while updating
7930 the display.
7931
7932 2002-07-23 Richard M. Stallman <rms@gnu.org>
7933
7934 * editfns.c (Fmessage): Treat "" like nil.
7935
7936 2002-07-23 Kenichi Handa <handa@etl.go.jp>
7937
7938 * xdisp.c (face_before_or_after_it_pos):
7939 Call FETCH_MULTIBYTE_CHAR with byte postion, not char position.
7940
7941 2002-07-22 Juanma Barranquero <lektu@terra.es>
7942
7943 * callproc.c (init_callproc) [DOS_NT]:
7944 Initialize Vshared_game_score_directory to nil.
7945 (syms_of_callproc) [DOS_NT]: Likewise.
7946
7947 2002-07-22 Gerd Moellmann <gerd.moellmann@t-online.de>
7948
7949 * xdisp.c (display_line): Replace an abort with xassert.
7950
7951 2002-07-21 Richard M. Stallman <rms@gnu.org>
7952
7953 * xdisp.c (redisplay_window): Don't test BEG_UNCHANGED
7954 and END_UNCHANGED when setting buffer_unchanged_p.
7955 Use current_matrix_up_to_date_p to decide whether to use
7956 try_cursor_movement.
7957
7958 * config.in (HAVE_SHARED_GAME_DIR): Undef deleted.
7959
7960 * epaths.in (PATH_GAME): New macro, edited by ../Makefile.in.
7961
7962 * callproc.c (init_callproc): Set up Vshared_game_score_directory.
7963 Set to nil if dir does not exist.
7964 (syms_of_callproc): Init unconditionally and simply.
7965
7966 * buffer.c (Fbuffer_list): Doc fix.
7967
7968 2002-07-21 Ken Raeburn <raeburn@gnu.org>
7969
7970 * sysdep.c (end_of_text, end_of_data): Unused functions deleted.
7971
7972 * buffer.c (mmap_realloc): When shrinking, make sure number of
7973 pages to unmap is rounded towards zero.
7974
7975 * m/mips-siemens.h (XSETUINT, XSETPNTR): Unused macros deleted.
7976 (XSETINT): Deleted.
7977
7978 * m/att3b.h (XINT): Don't define.
7979 (VALBITS, VALMASK, XTYPE): Deleted.
7980 (DATA_SEG_BITS): Define.
7981 * m/gec63.h (VALBITS, VALAMASK, XTYPE, XSETTYPE, XPNTR, XSET,
7982 ARRAY_MARK_FLAG): Deleted.
7983 (DATA_SEG_BITS): Define.
7984 * m/pfa50.h (VALBITS, VALMASK, XTYPE): Deleted.
7985 (DATA_SEG_BITS): Define.
7986
7987 2002-07-20 Richard M. Stallman <rms@gnu.org>
7988
7989 * print.c (print_error_message): New args CONTEXT and CALLER.
7990 Calls changed.
7991
7992 * lisp.h (print_error_message): Declare new args.
7993
7994 * keyboard.c (cmd_error_internal): Pass Vsignaling_function
7995 and CONTEXT to print_error_message, don't print them here.
7996 For a Quit, don't use Vsignaling_function.
7997 Call message_log_maybe_newline.
7998
7999 * Makefile.in (xsmfns.o): Don't depend on lisp.h.
8000
8001 2002-07-20 Kim F. Storm <storm@cua.dk>
8002
8003 * xdisp.c (redisplay_window): Test MODIFF to set buffer_unchanged_p.
8004
8005 2002-07-19 Ken Raeburn <raeburn@gnu.org>
8006
8007 * bytecode.c (struct byte_stack): Pointers into byte string now
8008 point to const.
8009 * callproc.c (Fcall_process): Make NEW_ARGV array hold pointer to
8010 const.
8011 * charset.h (BCOPY_SHORT): Source pointer now points to const.
8012 * coding.c (encode_eol, detect_coding, detect_eol):
8013 (decode_coding, encode_coding, detect_coding_system):
8014 Source strings now treated as const.
8015 (decode_coding_string, encode_coding_string): Use STRING_COPYIN to
8016 modify Lisp string contents.
8017 * coding.h (decode_coding, encode_coding, detect_coding,
8018 detect_eol): Declarations updated.
8019 * composite.c (compose_chars_in_text): Treat Lisp string contents
8020 as const.
8021 * dispnew.c (safe_bcopy): Source pointer now points to const.
8022 * lisp.h (STRING_COPYIN): New macro.
8023 (detect_coding_system, safe_bcopy, temp_output_buffer_setup):
8024 (internal_with_output_to_temp_buffer): Declarations updated.
8025 * print.c (temp_output_buffer_setup):
8026 (internal_with_output_to_temp_buffer): Buffer name argument is now
8027 pointer to const.
8028 * sound.c (struct sound_device): Function pointer field "write"
8029 buffer argument now points to const.
8030 (vox_write): Buffer argument points to const.
8031 * syntax.c (Fstring_to_syntax, skip_chars): Treat Lisp string
8032 contents as const.
8033 * sysdep.c (emacs_write): Buffer pointer now const.
8034 * term.c (encode_terminal_code): Buffer pointer now const.
8035 * xfaces.c (may_use_scalable_font_p): Argument now points to const.
8036 (x_face_list_fonts, x_update_menu_appearance):
8037 (hash_string_case_insensitive): Treat Lisp string contents as const.
8038
8039 2002-07-19 Juanma Barranquero <lektu@terra.es>
8040
8041 * fileio.c (Ffile_name_as_directory): Fix argument name in docstring.
8042 (file_name_as_directory): Use literal '/' instead of DIRECTORY_SEP.
8043
8044 * xdisp.c (syms_of_xdisp): Remove redundant deprecation info.
8045
8046 * fileio.c (syms_of_fileio): Likewise.
8047
8048 2002-07-18 Richard M. Stallman <rms@gnu.org>
8049
8050 * data.c (Fdefalias): Doc fix.
8051
8052 2002-07-17 Dave Love <fx@gnu.org>
8053
8054 * intervals.h (text_property_stickiness): Use P_.
8055
8056 * ccl.c: Remove `emacs' conditionals.
8057 (ccl_backtrace_table): Fix size spec.
8058 (ccl_driver): Fix type errors.
8059
8060 2002-07-16 Ken Raeburn <raeburn@gnu.org>
8061
8062 * alloc.c (xstrdup, make_string, make_unibyte_string)
8063 (make_multibyte_string, build_string): String pointer args now
8064 point to const.
8065 * charset.c (find_charset_in_text, c_string_width):
8066 (chars_in_text, multibyte_chars_in_text, parse_str_as_multibyte):
8067 * fileio.c (report_file_error):
8068 * insdel.c (copy_text, count_size_as_multibyte, insert_1):
8069 (count_combining_before, count_combining_after, insert_1_both):
8070 (insert, insert_and_inherit, insert_string):
8071 (insert_before_markers, insert_before_markers_and_inherit):
8072 * lread.c (intern, oblookup, hash_string):
8073 * minibuf.c (temp_echo_area_glyphs):
8074 * search.c (fast_c_string_match_ignore_case):
8075 * sysdep.c (emacs_open, set_file_times):
8076 * xfaces.c (xstricmp):
8077 * xdisp.c (store_frame_title, string_char_and_length):
8078 (message_dolog, message2, message2_nolog, set_message): Likewise.
8079 (set_message_1): Cast message string argument to const pointer.
8080 * editfns.c (general_insert_function): Insertion function now
8081 takes pointer to const for input data.
8082 * charset.h (find_charset_in_text, c_string_width):
8083 (parse_str_as_multibyte): Declarations updated.
8084 * dispextern.h (xstricmp): Declaration updated.
8085 * lisp.h (chars_in_text, multibyte_chars_in_text, copy_text):
8086 (count_size_as_multibyte, count_combining_before):
8087 (count_combining_after, insert_1, insert_1_both, message_dolog):
8088 (insert, insert_and_inherit, insert_before_markers)
8089 (insert_before_markers_and_inherit, set_message, message2):
8090 (message2_dolog, build_string, make_string, make_unibyte_string):
8091 (make_multibyte_string, intern, oblookup, report_file_error):
8092 (fast_c_string_match_ignore_case, temp_echo_area_glyphs):
8093 (emacs_open, xstrdup): Declarations updated.
8094 * systime.h (set_file_times): Declaration updated.
8095
8096 * charset.c (find_charset_in_text, lisp_string_width): Use const
8097 for pointer to lisp string data.
8098 * charset.h (FETCH_STRING_CHAR_ADVANCE):
8099 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK):
8100 * coding.c (Ffind_coding_systems_region_interval):
8101 * fileio.c (Ffile_name_directory, Ffile_name_nondirectory):
8102 (Fmake_directory_internal, Fdelete_directory):
8103 (Ffile_name_absolute_p, Fwrite_region, double_dollars):
8104 * fontset.c (font_family_registry, fs_query_fontset):
8105 (list_fontsets):
8106 * frame.c (Fframe_parameter):
8107 * keyboard.c (cmd_error_internal):
8108 * keymap.c (Fdescribe_buffer_bindings):
8109 * lread.c (complete_filename_p, openp):
8110 * minibuf.c (Fminibuffer_complete_word):
8111 * xdisp.c (string_pos_nchars_ahead, init_from_display_pos):
8112 (face_before_or_after_it_pos, next_element_from_string):
8113 (get_overlay_arrow_glyph_row, display_mode_element):
8114 (decode_mode_spec_coding):
8115 * xterm.c (same_x_server): Likewise.
8116
8117 * buffer.c (reset_buffer_local_variables): Delete "#if 0"
8118 settings of non-existent fields.
8119
8120 * editfns.c (Fstring_to_char): Don't use XSTRING/XSETSTRING to
8121 copy a lisp value.
8122
8123 * lread.c (Fintern_soft): Use string macros instead of
8124 Lisp_String fields.
8125 * keyboard.c (echo_char, parse_modifiers_uncached):
8126 (parse_solitary_modifier, Fexecute_extended_command): Likewise.
8127 * textprop.c (validate_interval_range, interval_of): Likewise.
8128
8129 * fontset.c (Fset_fontset_font): Use SDATA instead of XSTRING()->data.
8130
8131 * charset.h (FETCH_STRING_CHAR_ADVANCE)
8132 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SBYTES instead of
8133 XSTRING()->size_byte.
8134
8135 * lisp.h (SDATA, SREF): Produce rvalue.
8136 (SSET): New macro.
8137 * alloc.c (make_event_array): Use SSET for storing into a string.
8138 * buffer.c (Fother_buffer): Use SREF when retrieving a byte from
8139 a string.
8140 * casefiddle.c (casify_object): Use SSET.
8141 * charset.h (FETCH_STRING_CHAR_ADVANCE)
8142 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SDATA when getting
8143 address of string contents.
8144 * data.c (Faref): Use SDATA.
8145 (Faset): Use SDATA, SSET.
8146 * dired.c (directory_files_internal): Use SSET.
8147 * fileio.c (Fmake_symbolic_link, Fexpand_file_name): Use SSET.
8148 (Fread_file_name): Use SREF, SSET.
8149 * fns.c (concat): Use SSET.
8150 (concat, Fdelete): Use SDATA.
8151 * insdel.c (insert_from_string_1): Use SDATA.
8152 * keyboard.c (Fevent_convert_list): Use SREF.
8153 * lread.c (Fload): Use SDATA, SSET.
8154 * macfns.c (validate_x_resource_name): Use SSET.
8155 * process.c (status_message): Use SSET.
8156 * search.c (wordify): Use SDATA.
8157 (Freplace_match): Use SREF.
8158 * w32fns.c (validate_x_resource_name): Use SSET.
8159 * xfns.c (validate_x_resource_name): Use SSET.
8160 * xterm.c (x_catch_errors, x_clear_errors): Use SSET.
8161
8162 2002-07-16 Richard M. Stallman <rms@gnu.org>
8163
8164 * s/hpux11.h (USG_SUBTTY_WORKS): Defined.
8165
8166 * xdisp.c (reconsider_clip_changes):
8167 Don't test prevent_redisplay_optimizations_p.
8168 (redisplay_internal): Test prevent_redisplay_optimizations_p
8169 along with clip_changed in some cases.
8170 (try_window_id): Likewise.
8171 (redisplay_window): New local var buffer_unchanged_p.
8172
8173 * keyboard.c (cmd_error) [HAVE_X_WINDOWS]: Maybe call cancel_houglass.
8174
8175 * process.c (create_process): Test USG_SUBTTY_WORKS.
8176 (process_send_signal): Clean up handling of GID.
8177 Detect errors in ioctls meant to set GID.
8178
8179 * window.c (temp_output_buffer_show):
8180 Don't set prevent_redisplay_optimizations_p.
8181
8182 2002-07-15 Juanma Barranquero <lektu@terra.es>
8183
8184 * eval.c (Fdefvaralias): Add docstring argument.
8185
8186 2002-07-15 Ken Raeburn <raeburn@gnu.org>
8187
8188 * lisp.h (STRING_INTERVALS): Produce rvalue.
8189 (STRING_SET_INTERVALS): New macro.
8190 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Use it.
8191 * fns.c (Fstring_as_multibyte): Likewise.
8192 * intervals.c (balance_possible_root_interval, delete_interval)
8193 (create_root_interval, copy_intervals_to_string): Likewise.
8194 * textprop.c (set_text_properties): Likewise. Use NULL_INTERVAL
8195 instead of 0.
8196
8197 2002-07-14 Ken Raeburn <raeburn@gnu.org>
8198
8199 * lisp.h (STRING_SET_CHARS): New macro.
8200 (SCHARS, SBYTES): Produce rvalues.
8201 * dired.c (directory_files_internal): Use STRING_SET_CHARS.
8202 * fns.c (concat): Likewise.
8203 * lread.c (read_vector): Likewise.
8204
8205 * lisp.h (SMBP): Deleted. All uses changed to STRING_MULTIBYTE.
8206 (STRING_SET_UNIBYTE): New macro.
8207 (SET_STRING_BYTES): Deleted. Callers (all of which supplied a
8208 length of -1) changed to use STRING_SET_UNIBYTE.
8209 * abbrev.c, alloc.c, buffer.c, bytecode.c, callint.c, callproc.c,
8210 casefiddle.c, category.c, ccl.c, charset.c, charset.h, coding.c,
8211 composite.c, data.c, dired.c, dispnew.c, disptab.h, doc.c,
8212 dosfns.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, fn.c,
8213 fontset.c, frame.c, indent.c, insdel.c, intervals.c, keyboard.c,
8214 keymap.c, lread.c, mac.c, macfns.c, macmenu.c, macterm.c,
8215 minibuf.c, msdos.c, print.c, process.c, search.c, sound.c,
8216 sunfns.c, syntax.c, syntax.h, sysdep.c, textprop.c, undo.c,
8217 w16select.c, w32.c, w32fns.c, w32menu.c, w32proc.c, w32select.c,
8218 w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c,
8219 xselect.c, xsmfns.c, xterm.c: Most uses of XSTRING combined with
8220 STRING_BYTES or indirection changed to SCHARS, SBYTES,
8221 STRING_INTERVALS, SREF, SDATA; explicit size_byte references left
8222 unchanged for now.
8223
8224 2002-07-13 Kim F. Storm <storm@cua.dk>
8225
8226 * keyboard.c (command_loop_1): Invert check on Vmemory_full.
8227
8228 2002-07-12 Richard M. Stallman <rms@gnu.org>
8229
8230 * fileio.c (Fwrite_region): Doc fix.
8231
8232 * print.c (print_error_message): Don't handle Vsignaling_function here.
8233
8234 * keyboard.c (cmd_error_internal): Handle Vsignaling_function here.
8235 (command_loop_1): Avoid certain actions after memory-full error.
8236
8237 * eval.c (Fsignal): Don't call cancel_hourglass.
8238 For a memory-full error, don't call Vsignal_hook_function
8239 and don't set Vsignaling_function.
8240
8241 * process.c (process_send_signal): Add abort call.
8242
8243 2002-07-11 Markus Rost <rost@math.ohio-state.edu>
8244
8245 * keymap.c (Fkey_binding): Fix typo.
8246
8247 2002-07-11 Richard M. Stallman <rms@gnu.org>
8248
8249 * alloc.c (Vmemory_full): New variable.
8250 (Vmemory_signal_data): Renamed from memory_signal_data.
8251 Uses changed.
8252 (syms_of_alloc): Defvar them.
8253 (memory_full, buffer_memory_full): Set Vmemory_full.
8254
8255 * lisp.h (Vmemory_full): Add declaration.
8256 (current_column, indented_beyond_p): Change declaration.
8257
8258 * indent.c (last_known_column): Declare as double, not float.
8259 (current_column, current_column_1, string_display_width)
8260 (position_indentation): Return `double'.
8261 (indented_beyond_p): Arg `column' is `double'. Callers changed.
8262
8263 * xdisp.c (message_dolog): Do nothing if Vmemory_full is non-nil.
8264 (back_to_previous_visible_line_start)
8265 (reseat_at_next_visible_line_start, next_element_from_buffer):
8266 Use `double', not `float', when calling indented_beyond_p.
8267
8268 * s/hpux11.h (BROKEN_SA_RESTART): Defined.
8269
8270 * sysdep.c (sys_signal): Test BROKEN_SA_RESTART.
8271
8272 2002-07-11 Juanma Barranquero <lektu@terra.es>
8273
8274 * alloc.c, buffer.c, bytecode.c, callint.c, callproc.c, coding.c,
8275 * composite.c, dired.c, dispnew.c, editfns.c, emacs.c, eval.c,
8276 * fileio.c, fns.c, insdel.c, keyboard.c, keymap.c, lread.c, macfns.c,
8277 * macmenu.c, macros.c, minibuf.c, print.c, process.c, sound.c,
8278 * textprop.c, w32fns.c, w32menu.c, window.c, xfaces.c, xfns.c,
8279 * xmenu.c, xselect.c, xterm.c: Use SPECPDL_INDEX wherever makes sense.
8280
8281 2002-07-10 Juanma Barranquero <lektu@terra.es>
8282
8283 * lisp.h (SPECPDL_INDEX): Rename from BINDING_STACK_SIZE. All callers
8284 changed.
8285
8286 2002-07-09 Stefan Monnier <monnier@cs.yale.edu>
8287
8288 * data.c (Fdefalias): Add an optional `docstring' argument.
8289 (set_internal, Fsetq_default): Use XCAR/XCDR.
8290
8291 * composite.c (HASH_VALUE, HASH_KEY):
8292 * ccl.c (HASH_VALUE): Remove (it's in lisp.h now).
8293
8294 2002-07-09 Kenichi Handa <handa@etl.go.jp>
8295
8296 * callproc.c (Fcall_process): Fix previous change.
8297
8298 2002-07-07 Stefan Monnier <monnier@cs.yale.edu>
8299
8300 * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
8301 Add support for hash-tables.
8302 (Ftry_completion): Return t even if the string appears multiple times.
8303
8304 * fns.c (Fnconc): Use XCDR.
8305 (Fprovide): Use CONSP and XCDR.
8306 (HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
8307 (HASH_TABLE_SIZE): Delete: moved to lisp.h.
8308 (Fmake_hash_table): Accept `:size nil'.
8309 (Fmakehash): Delete: moved to subr.el.
8310 (syms_of_fns): Don't defsubr makehash.
8311
8312 * lisp.h (HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
8313 (HASH_TABLE_SIZE): Move from fns.c.
8314
8315 2002-07-07 Richard M. Stallman <rms@gnu.org>
8316
8317 * xdisp.c (make_cursor_line_fully_visible): Don't try short scrolls.
8318 Instead just return 0 when there is something to be done.
8319 (try_scrolling): If make_cursor_line_fully_visible returns 0,
8320 retry scrolling as if cursor were off the bottom.
8321 (try_cursor_movement): If make_cursor_line_fully_visible returns 0,
8322 return CURSOR_MOVEMENT_MUST_SCROLL.
8323 (redisplay_window): If make_cursor_line_fully_visible returns 0,
8324 go to try_to_scroll.
8325
8326 * buffer.c (Fbuffer_local_value): Store current value into its binding
8327 so we get the up-to-date value for the binding that is loaded.
8328
8329 * eval.c (Fdefmacro): Doc fix.
8330
8331 2002-07-05 Dave Love <fx@gnu.org>
8332
8333 * keyboard.c (read_key_sequence): Set initial_idleness_start_time
8334 correctly.
8335
8336 * ccl.c (Vtranslation_hash_table_vector, GET_HASH_TABLE)
8337 (HASH_VALUE, CCL_LookupIntConstTbl, CCL_LookupCharConstTbl): New.
8338 (ccl_driver): Add cases for CCL_LookupIntConstTbl,
8339 CCL_LookupCharConstTbl.
8340 (syms_of_ccl): Defvar translation-hash-table-vector.
8341
8342 2002-07-05 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
8343
8344 * xdisp.c: Remove unused variable `face'.
8345
8346 2002-07-04 Juanma Barranquero <lektu@terra.es>
8347
8348 * keyboard.c (post_command_idle_hook): Remove redundant (and inexact)
8349 obsolescence information.
8350
8351 2002-07-03 Andrew Choi <akochoi@shaw.ca>
8352
8353 * macterm.c (x_list_fonts): Fix comment. Cache fonts matching
8354 pattern. Search cache first.
8355 (init_font_name_table): Also add entry for jisx0201.1976-0 coding
8356 for Japanese font.
8357 (XLoadQueryFont): Use it.
8358
8359 2002-07-02 Richard M. Stallman <rms@gnu.org>
8360
8361 * keymap.c (Fdefine_key): Doc fix.
8362
8363 * xterm.c (x_term_init): Turn off polling around XtOpenDisplay.
8364
8365 2002-07-02 Juanma Barranquero <lektu@terra.es>
8366
8367 * keymap.c (syms_of_keymap): Fix typo.
8368
8369 2002-07-01 Andrew Choi <akochoi@shaw.ca>
8370
8371 * s/darwin.h: Define POSIX_SIGNALS.
8372
8373 * macterm.c (do_ae_open_documents) [MAC_OSX]: Call FSpMakeFSRef
8374 and FSRefMakePath to convert FSSpec returned with Apple Event to
8375 Posix pathname.
8376 (mac_initialize) [TARGET_API_MAC_CARBON]:
8377 Call init_required_apple_events and disable the `Quit' menu item
8378 provided automatically by the Carbon Toolbox.
8379
8380 2002-07-01 Dave Love <fx@gnu.org>
8381
8382 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal decl
8383 for K&R.
8384
8385 * xterm.c: Fix prototype for K&R.
8386
8387 * term.c (costs_set): Declare static, non-initialized for pcc.
8388
8389 2002-07-01 Richard M. Stallman <rms@gnu.org>
8390
8391 * keyboard.c (timer_last_idleness_start_time): New variable.
8392 (timer_start_idle): Set that.
8393 (read_key_sequence): Use that to reset timer_idleness_start_time
8394 to previous value.
8395
8396 * window.c (Frecenter): With arg, set optional_new_start.
8397
8398 * xdisp.c (redisplay_internal): Make optional_new_start really work.
8399
8400 * minibuf.c (Fminibuffer_complete_and_exit): Move to end of
8401 buffer for completion.
8402
8403 2002-06-29 Ken Raeburn <raeburn@gnu.org>
8404
8405 * xdisp.c (store_mode_line_string): Lisp_Object/int mixup.
8406
8407 2002-06-28 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
8408
8409 * keyboard.c (readable_filtered_events): New function that filters
8410 FOCUS_IN_EVENT depending on parameter.
8411 (readable_events): Calls readable_filtered_events, not filtering
8412 FOCUS_IN_EVENT.
8413 (get_filtered_input_pending): New function, filtering parameter passed
8414 to readable_filtered_events.
8415 (get_input_pending): Calls get_filtered_input_pending, not filtering
8416 FOCUS_IN_EVENT.
8417 (Finput_pending_p): Calls get_filtered_input_pending, DO filter
8418 FOCUS_IN_EVENT.
8419
8420 * xterm.h (struct x_output): Add focus_state.
8421
8422 * xterm.c (x_focus_changed): New function.
8423 (x_detect_focus_change): New function.
8424 (XTread_socket): Call x_detect_focus_change for FocusIn/FocusOut
8425 EnterNotify and LeaveNotify to track X focus changes.
8426
8427 2002-06-28 Andreas Schwab <schwab@suse.de>
8428
8429 * lisp.h: Remove duplicate declaration of code_convert_string_norecord.
8430
8431 2002-06-27 Kim F. Storm <storm@cua.dk>
8432
8433 * xdisp.c: (mode_line_string_list, mode_line_string_face)
8434 (mode_line_string_face_prop): New variables.
8435 (store_mode_line_string): New function.
8436 (display_mode_element): Use store_mode_line_string to
8437 add mode-line string elements to mode_line_string_list
8438 when mode_line_string_list is non-nil.
8439 (Fformat_mode_line): Now returns propertized string by
8440 default. New arg NO-PROPS to ignore properties.
8441 (decode_mode_spec): Only add two dashes for %- in propertized
8442 mode-line string.
8443 (syms_of_xdisp): Init and staticpro mode_line_string_list.
8444
8445 2002-06-27 Stefan Monnier <monnier@cs.yale.edu>
8446
8447 * minibuf.c (minibuffer_completion_contents): Add return type.
8448
8449 2002-06-27 Juanma Barranquero <lektu@terra.es>
8450
8451 * charset.c (Fchar_bytes): Remove obsolescence info from docstring.
8452
8453 2002-06-26 Juanma Barranquero <lektu@terra.es>
8454
8455 * fileio.c (read_file_name_cleanup): Add missing return.
8456
8457 2002-06-26 Richard M. Stallman <rms@gnu.org>
8458
8459 * window.c (Frecenter): Don't set force_start flag.
8460
8461 * minibuf.c (do_completion, Fminibuffer_complete_word)
8462 (Fminibuffer_completion_help): Complete just the text before point.
8463 (minibuffer_completion_contents): New function.
8464
8465 * buffer.c (Fbury_buffer): Use frames_discard_buffer.
8466
8467 * frame.c (frames_bury_buffer): Function deleted.
8468
8469 2002-06-25 Miles Bader <miles@gnu.org>
8470
8471 * callint.c (Fcall_interactively): When checking to see if doprnt hit
8472 the end of callint_message, allow for a terminating '\0'.
8473
8474 2002-06-24 Juanma Barranquero <lektu@terra.es>
8475
8476 * w32select.c: Include composite.h
8477
8478 * w16select.c: Likewise.
8479
8480 2002-06-24 Kenichi Handa <handa@etl.go.jp>
8481
8482 * callproc.c (Fcall_process): If code detection is necessary,
8483 call detect_coding directly here.
8484
8485 * coding.c (detect_eol): Preserve coding->cmp_data.
8486
8487 * w16select.c (Fw16_get_clipboard_data):
8488 * w32fns.c (w32_to_x_font):
8489 * w32select.c (Fw32_get_clipboard_data):
8490 * xselect.c (selection_data_to_lisp_data):
8491 * xterm.c (XTread_socket): Disable composition handling.
8492
8493 2002-06-24 Stefan Monnier <monnier@cs.yale.edu>
8494
8495 * print.c (temp_output_buffer_setup): Kill all local variables.
8496
8497 2002-06-22 Stefan Monnier <monnier@cs.yale.edu>
8498
8499 * lread.c (Fread): Remove redundant and imprecise declaration.
8500
8501 * xfns.c (check_x_display_info): Use check_x_frame.
8502
8503 * .gdbinit (xprintsym): Use the new `xname' field.
8504 (xsymbol): Use it.
8505
8506 2002-06-22 Jason Rumney <jasonr@gnu.org>
8507
8508 * w32fns.c (file_dialog_callback): New function.
8509 (Fx_file_dialog): Allow selecting directories as well as files.
8510
8511 2002-06-21 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
8512
8513 * m/pmax.h (START_FILES): Define START_FILES for NetBSD and
8514 OpenBSD. Add support for mipseb-*-netbsd* machines.
8515
8516 2002-06-17 Andrew Choi <akochoi@shaw.ca>
8517
8518 * macterm.c (mac_scroll_area): Set foreground and backcolor to
8519 black and white before scrolling. Restore frame background and
8520 foreground color after scrolling.
8521 (do_window_update): Call XClearWindow before calling expose_frame.
8522 (make_mac_frame): Don't set FRAME_BACKGROUND_PIXEL and
8523 FRAME_FOREGROUND_PIXEL of frame.
8524
8525 * macterm.c (XTread_socket): If Vmac_command_key_is_meta is nil,
8526 test Mac command key as <ALT> key.
8527
8528 2002-06-17 Stefan Monnier <monnier@cs.yale.edu>
8529
8530 * window.c (Fset_window_configuration): Lisp_Object/int mixup.
8531
8532 * keyboard.c (read_key_sequence): Be more careful with first_unbound.
8533 Lookup keys in function-key-map immediately so that key-translation-map
8534 can be applied earlier.
8535 Remove function_key_possible and key_translation_possible, replaced
8536 by checking `keytran_start < t'.
8537
8538 * .gdbinit (xsymbol): Use the new `xname' field.
8539
8540 2002-06-17 Andrew Choi <akochoi@shaw.ca>
8541
8542 * macterm.c (XTread_socket): If Vmac_command_key_is_meta is nil,
8543 test Mac command key as <ALT> key.
8544
8545 * mac.c (do_applescript): Call initialize_applescript if necessary
8546 when first called. Dispose of result_desc only when there is no error.
8547 (Fdo_applescript): Use %d format specifier instead of %ld.
8548
8549 2002-06-16 Andrew Choi <akochoi@shaw.ca>
8550
8551 * macterm.c (XTread_socket): Call FrontNonFloatingWindow instead
8552 of FrontWindow for cases keyDown and autoKey.
8553
8554 * fontset.c (syms_of_fontset) [MAC_OS]: Set ASCII font of
8555 Vdefault_fontset to Monaco with mac-roman coding.
8556
8557 * mac.c, macfns.c, macmenu.c, macterm.c: Undefine and redefine
8558 init_process before and after inclusion of Carbon/Carbon.h, resp.
8559
8560 * macterm.c (x_new_font): Set font for normal_gc, reverse_gc, and
8561 cursor_gc.
8562 (add_font_name_table_entry): New function.
8563 (init_font_name_table): Use add_font_name_table_entry; add italic,
8564 bold, and bold-italic entries for truetype fonts.
8565
8566 * xfaces.c (init_frame_faces) [MAC_OS]: Call realize_basic_faces
8567 for Mac too.
8568 (try_font_list) [MAC_OS]: If no font matches given registry, try
8569 fonts with any registry matching face_family.
8570 (realize_x_face) [MAC_OS]: Remove old ad-hoc fix to load font here.
8571
8572 * s/darwin.h: If autoconf detects the Ncurses library, define
8573 LIBS_TERMCAP to -lncurses to use it.
8574
8575 2002-06-16 Eli Zaretskii <eliz@is.elta.co.il>
8576
8577 * strftime.c [__hpux]: Include sys/_mbstate_t.h.
8578
8579 2002-06-15 Richard M. Stallman <rms@gnu.org>
8580
8581 * window.c (Fset_window_configuration): Explicitly preserve
8582 the point value that new_current_buffer had at the start.
8583
8584 2002-06-14 Juanma Barranquero <lektu@terra.es>
8585
8586 * composite.c (Fcompose_region_internal, Fcompose_string_internal):
8587 Fix typos.
8588
8589 2002-06-14 Kim F. Storm <storm@cua.dk>
8590
8591 * insdel.c (insert_1_both, insert_from_string_1)
8592 (insert_from_buffer_1): Recalculate END_UNCHANGED in case the
8593 insert happened in the end_unchanged region. Otherwise, the
8594 redisplay may be confused and duplicate the last line in the
8595 buffer [seen after save-buffer when require-final-newline==t].
8596
8597 2002-06-13 Jason Rumney <jasonr@gnu.org>
8598
8599 * w32.c (init_environment): Remove EMACSLOCKDIR.
8600 (stat): Swap _S_IFDIR and _S_IFREG.
8601
8602 2002-06-13 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
8603
8604 * keyboard.c, macterm.c, macmenu.c, msdos.c, sysdep.c
8605 * termhooks.h, xmenu.c, xsmfns.c, xterm.h, xterm.c, w32term.c,
8606 * w32menu.c, w32inevt.c: Rename enum event_kind as follows:
8607 ascii_keystroke to ASCII_KEYSTROKE_EVENT, multibyte_char_keystroke
8608 to MULTIBYTE_CHAR_KEYSTROKE_EVENT, non_ascii_keystroke to
8609 NON_ASCII_KEYSTROKE_EVENT, timer_event to TIMER_EVENT, mouse_click
8610 to MOUSE_CLICK_EVENT, mouse_wheel to MOUSE_WHEEL_EVENT,
8611 language_change_event to LANGUAGE_CHANGE_EVENT, scroll_bar_click
8612 to SCROLL_BAR_CLICK_EVENT, w32_scroll_bar_click to
8613 W32_SCROLL_BAR_CLICK_EVENT, selection_request_event to
8614 SELECTION_REQUEST_EVENT, selection_clear_event to
8615 SELECTION_CLEAR_EVENT, buffer_switch_event to BUFFER_SWITCH_EVENT,
8616 delete_window_event to DELETE_WINDOW_EVENT, iconify_event to
8617 ICONIFY_EVENT, deiconify_event to DEICONIFY_EVENT,
8618 menu_bar_activate_event to MENU_BAR_ACTIVATE_EVENT, drag_n_drop to
8619 DRAG_N_DROP_EVENT, save_session_event to SAVE_SESSION_EVENT and
8620 no_event to NO_EVENT.
8621
8622 2002-06-12 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
8623
8624 * macmenu.c: Remove declaration of Qmouse_click and Qevent_kind.
8625
8626 2002-06-12 Stefan Monnier <monnier@cs.yale.edu>
8627
8628 * intervals.c (textget): Don't forget to `return'.
8629 (lookup_char_property): Use XCAR/XCDR.
8630
8631 2002-06-12 Juanma Barranquero <lektu@terra.es>
8632
8633 * xdisp.c (Fformat_mode_line): Fix typo.
8634
8635 2002-06-12 Kim F. Storm <storm@cua.dk>
8636
8637 * xdisp.c (Fformat_mode_line): New function.
8638 (frame_title_buf, frame_title_buf_end, frame_title_ptr)
8639 (store_frame_title_char, store_frame_title): Use unconditionally.
8640 (init_xdisp): Defsubr Fformat_mode_line.
8641 Initialize frame_title_buf etc. unconditionally.
8642
8643 2002-06-11 Stefan Monnier <monnier@cs.yale.edu>
8644
8645 * keyboard.c (read_key_sequence):
8646 Remove prev_(fkey|keytran}_(map|start|end) since we don't want to pass
8647 things through those maps after downcasing events.
8648 Enforce that keytran_end <= fkey_start, i.e. that key-translation-map
8649 applies after function-key-map.
8650 Make sure that keytran can be done in the middle in the sequence.
8651 Be careful not to throw away events past the one we downcase.
8652
8653 * lread.c (read_integer): Remove unused var `tem'.
8654 (read1): Fix int/Lisp_Object mixup.
8655
8656 * xfaces.c (tty_lookup_color): Type bool/Lisp_Object mismatch fixed.
8657
8658 2002-06-11 Richard M. Stallman <rms@gnu.org>
8659
8660 * keyboard.c (readable_events): Ignore any number of
8661 FOCUS_IN_EVENT events and return 0 if nothing else in buffer.
8662
8663 2002-06-09 Miles Bader <miles@gnu.org>
8664
8665 * xfaces.c (Ftty_supports_face_attributes_p): New function.
8666 (parse_rgb_list, tty_lookup_color): New functions.
8667 (tty_defined_color): Use `tty_lookup_color' to do all the work.
8668 (color_distance, Fcolor_distance): New functions.
8669 (TTY_SAME_COLOR_THRESHOLD): New macro.
8670 (Qtty_color_standard_values): New variable.
8671 (syms_of_xfaces): Initialize new vars & functions.
8672
8673 2002-06-08 Colin Walters <walters@verbum.org>
8674
8675 * textprop.c (Vchar_property_alias_alist): New variable.
8676 (syms_of_textprop) <Vchar_property_alias_alist>: DEFVAR_LISP.
8677
8678 * intervals.c (lookup_char_property): New function for looking up
8679 overlay and text properties, created from textget.
8680 (textget): Use it.
8681
8682 * intervals.h (lookup_char_property): Declare.
8683 (Vchar_property_alias_alist): Declare.
8684
8685 * buffer.c (Foverlay_get): Use lookup_char_property.
8686
8687 2002-06-07 Sam Steingold <sds@gnu.org>
8688
8689 * xselect.c (lisp_data_to_selection_data): Fix last change:
8690 *data_ret is not a Lisp string, while unibyte_string is.
8691
8692 2002-06-07 Eli Zaretskii <eliz@is.elta.co.il>
8693
8694 * xselect.c (lisp_data_to_selection_data): Fix last change:
8695 set size_ret.
8696
8697 2002-06-07 Andreas Schwab <schwab@suse.de>
8698
8699 * m/amdx86-64.h: New file.
8700
8701 2002-06-05 Eli Zaretskii <eliz@is.elta.co.il>
8702
8703 * fns.c (Fstring_make_unibyte): Doc fix.
8704
8705 * xselect.c (lisp_data_to_selection_data): If the requested type
8706 is STRING, call string_make_unibyte to encode the selected text
8707 as a string.
8708
8709 * window.c (Fset_window_hscroll): Doc fix.
8710
8711 2002-06-05 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
8712
8713 * fileio.c (choose_write_coding_system):
8714 Call select-safe-coding-system properly.
8715
8716 2002-06-03 Richard M. Stallman <rms@gnu.org>
8717
8718 * xdisp.c (message_with_string): Error if STRING is not a string.
8719
8720 * fns.c (md5): Pass FILE arg to Vselect_safe_coding_system_function.
8721
8722 * fileio.c (choose_write_coding_system): Pass FILE arg to
8723 Vselect_safe_coding_system_function.
8724
8725 2002-06-03 Ken Raeburn <raeburn@gnu.org>
8726
8727 * buffer.c (fix_overlays_before): Fix list-walking bug in 05-19 change.
8728
8729 2002-06-02 Thien-Thi Nguyen <ttn@gnu.org>
8730
8731 * bytecode.c (Fbyte_code): Cast `current_column' return value to int.
8732 * cmds.c (Fdelete_backward_char, internal_self_insert): Likewise.
8733 * keymap.c (describe_command): Likewise.
8734 * minibuf.c (read_minibuf): Likewise.
8735
8736 * xdisp.c (redisplay_internal, redisplay_window, decode_mode_spec):
8737 Cast `current_column' return value to int.
8738 (back_to_previous_visible_line_start)
8739 (reseat_at_next_visible_line_start, next_element_from_buffer):
8740 Cast `indented_beyond_p' 3rd arg to float.
8741
8742 * indent.c (last_known_column): Now a float.
8743 (current_column_1, position_indentation, current_column)
8744 (string_display_width): Return float.
8745 (Fcurrent_column): Cast `current_column' return value to int.
8746 (Fcurrent_indentation): Cast `position_indentation' retval to int.
8747 (indented_beyond_p): Third arg now a float.
8748 (compute_motion, vmotion): Cast `indented_beyond_p' 3rd arg to float.
8749
8750 * lisp.h (current_column): Now returns float.
8751 (indented_beyond_p): 3rd arg now a float.
8752
8753 2002-05-31 Eli Zaretskii <eliz@is.elta.co.il>
8754
8755 * xfns.c (x_encode_text): Return stringp non-NULL if coding_system
8756 is Qcompound_text_with_extensions.
8757
8758 * xselect.c (lisp_data_to_selection_data): Always set selection
8759 type as string if x_encode_text returns streingp non-NULL.
8760
8761 * s/netbsd.h: Include /usr/pkg in the run time shared library path.
8762
8763 2002-05-30 Richard M. Stallman <rms@gnu.org>
8764
8765 * window.c (Fset_window_configuration): Correct the handling
8766 of point in current buffer, to work with multiple windows.
8767
8768 2002-05-29 Colin Walters <walters@verbum.org>
8769
8770 * lread.c (Fread_from_string): Don't depend on order of evaluation
8771 for C function parameters.
8772
8773 2002-05-28 Richard M. Stallman <rms@gnu.org>
8774
8775 * xterm.c (x_display_and_set_cursor): Change the cursor in the same
8776 way for blinked-off state and for a nonselected window.
8777
8778 * window.c (window_scroll_pixel_based): Don't call Fbolp;
8779 instead, see if the new start pos is at beginning of line.
8780
8781 * fileio.c (Fwrite_region): If START is a string, don't
8782 make any annotations.
8783
8784 * eval.c (syms_of_eval): Doc fix.
8785
8786 2002-05-28 Colin Walters <walters@debian.org>
8787
8788 * emacs.c (USAGE1): Add --no-splash.
8789 (standard_args): Ditto.
8790
8791 2002-05-28 Colin Walters <walters@gnu.org>
8792
8793 * lread.c (readchar_count): New variable.
8794 (readchar): Increment it.
8795 (unreadchar): Decrement it.
8796 (read_multibyte): Decrement it.
8797 (Vread_with_symbol_positions): New variable.
8798 (Vread_symbol_positions_list): New variable.
8799 (read_internal_start): New function, created from Fread and
8800 Fread_from_string. Handle Vread_symbol_positions_list and
8801 Vread_with_symbol_positions.
8802 (readevalloop, Fread, Fread_from_string): Use it.
8803 (read1): Use readchar_count to add symbol positions to
8804 Vread_symbol_positions_list if Vread_with_symbol_positions is non-nil.
8805 (syms_of_lread): DEFVAR_LISP and initialize them.
8806
8807 * lread.c (read0, read1, read_list, read_vector, read_multibyte)
8808 (substitute_object_recurse, substitute_object_in_subtree)
8809 (substitute_in_interval): Prototype.
8810 (read_multibyte): Return c if it's less than zero.
8811
8812 2002-05-28 Kim F. Storm <storm@cua.dk>
8813
8814 * fileio.c (Fread_file_name_internal): Added brute-force
8815 speed up for using predicate file-directory-p.
8816
8817 2002-05-28 Kim F. Storm <storm@cua.dk>
8818
8819 * fileio.c (Vread_file_name_function, Vread_file_name_predicate):
8820 New variables.
8821 (syms_of_fileio): DEFVAR_LISP them.
8822 (read_file_name_cleanup): New unwind function.
8823 (Fread_file_name_internal): Only return completions satifying
8824 Vread_file_name_predicate. Temporarily unwind protect and rebind
8825 default-directory while checking completions against the predicate.
8826 (Fread_file_name): Added PREDICATE argument. Specbind it to
8827 Vread_file_name_predicate during completion.
8828 Call Vread_file_name_function to read the file name if non-nil.
8829
8830 * lisp.h (Fread_file_name): Now has 6 args.
8831
8832 * callint.c (Fcall_interactively) <"D">: Supply Qfile_directory_p
8833 predicate for Fread_file_name when reading directory name.
8834 Supply Qnil for predicate in other calls to Fread_file_name.
8835
8836 2002-05-26 Miles Bader <miles@gnu.org>
8837
8838 * term.c (tty_capable_p): New function.
8839 * dispextern.h (tty_capable_p): New function declaration.
8840 (TTY_CAP_INVERSE, TTY_CAP_UNDERLINE, TTY_CAP_BOLD, TTY_CAP_DIM)
8841 (TTY_CAP_BLINK, TTY_CAP_ALT_CHARSET): New macros.
8842
8843 2002-05-23 Stefan Monnier <monnier@cs.yale.edu>
8844
8845 * fileio.c (read_non_regular, Finsert_file_contents): Use BEG_BYTE.
8846 (Finsert_file_contents, build_annotations): Use XCAR, XCDR.
8847 (Vwrite_region_annotate_functions): Docstring fix.
8848
8849 2002-05-23 Kim F. Storm <storm@cua.dk>
8850
8851 * xterm.c (x_write_glyphs): Clear phys_cursor_on_p if current
8852 phys_cursor's hpos is overwritten. This is still not completely
8853 correct, as it doesn't really make sense to use hpos at all to
8854 get the cursor glyph (as that is relative to the width of the
8855 characters on the line, which may have changed during the update).
8856
8857 2002-05-22 Jason Rumney <jasonr@gnu.org>
8858
8859 * w32fns.c (enumfont_t): Remove tail, make pattern a normal
8860 Lisp_Object.
8861 (enum_font_cb2, enum_font_maybe_add_to_list, w32_list_fonts):
8862 Use modified enumfont_t struct.
8863
8864 * w32term.h (text_cursor_kinds): New enumeration member HBAR_CURSOR.
8865
8866 * w32term.c (x_draw_bar_cursor): New argument KIND; callers changed.
8867 Handle the `hbar' cursor type.
8868 (x_display_and_set_cursor): Handle the HBAR_CURSOR case.
8869
8870 * w32fns.c (Qhbar): New variable.
8871 (x_specified_cursor_type): Use it.
8872
8873 2002-05-21 Ken Raeburn <raeburn@gnu.org>
8874
8875 * w32fns.c (enum_font_maybe_add_to_list): Use XCDR_AS_LVALUE for
8876 now, when the address is needed.
8877
8878 2002-05-21 Colin Walters <walters@gnu.org>
8879
8880 * Makefile.in (shortlisp): Add font-core.el.
8881
8882 2002-05-20 Richard M. Stallman <rms@gnu.org>
8883
8884 * buffer.c (syms_of_buffer) <cursor-type>: Doc fix.
8885
8886 * keyboard.c (read_char_minibuf_menu_prompt): Don't list
8887 equivalent key bindings here.
8888
8889 2002-05-20 Ken Raeburn <raeburn@gnu.org>
8890
8891 Change symbol structure to contain a lisp object for the symbol
8892 name:
8893 * lisp.h (struct Lisp_Symbol): Replace field "name" with a lisp
8894 object field named "xname".
8895 (SYMBOL_NAME): New macro.
8896 * abbrev.c (write_abbrev): Use SYMBOL_NAME instead of XSYMBOL and
8897 name field.
8898 * alloc.c (Fmake_symbol): Set symbol xname field instead of name.
8899 (mark_object, gc_sweep): Use symbol xname field and XSTRING
8900 instead of name field.
8901 * buffer.c (buffer_slot_type_mismatch): Use XSTRING and
8902 SYMBOL_NAME instead of XSYMBOL and name field.
8903 * callint.c (Fcall_interactively): Use XSTRING and SYMBOL_NAME
8904 instead of XSYMBOL and name field.
8905 * charset.c (Fdefine_charset, Fdeclare_equiv_charset): Use XSTRING
8906 and SYMBOL_NAME instead of XSYMBOL and name field.
8907 * coding.c (Fread_coding_system, code_convert_region1)
8908 (code_convert_string1, code_convert_string_norecord)
8909 (Ffind_operation_coding_system): Use SYMBOL_NAME instead of
8910 XSYMBOL and name field.
8911 * data.c (Fkeywordp, Fsymbol_name, store_symval_forwarding)
8912 (Fmake_variable_buffer_local, Fmake_local_variable)
8913 (Fmake_variable_frame_local): Use SYMBOL_NAME and XSTRING instead
8914 of XSYMBOL and name field.
8915 * editfns.c (Fformat): Use SYMBOL_NAME and XSTRING instead of
8916 XSYMBOL and name field.
8917 * emacs.c (shut_down_emacs) [#if 0]: Use SYMBOL_NAME and XSTRING
8918 instead of XSYMBOL and name field.
8919 * eval.c (do_autoload): Use SYMBOL_NAME and XSTRING instead of
8920 XSYMBOL and name field.
8921 * fns.c (Fstring_equal, Fstring_lessp, Frequire, sxhash):
8922 Use SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
8923 * fontset.c (Fset_fontset_font): Use SYMBOL_NAME and XSTRING
8924 instead of XSYMBOL and name field.
8925 * keyboard.c (echo_char, record_char, parse_modifiers_uncached)
8926 (parse_modifiers, apply_modifiers, Fevent_convert_list)
8927 (parse_solitary_modifier, Fexecute_extended_command):
8928 Use SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
8929 * keymap.c (silly_event_symbol_error, Fsingle_key_description)
8930 (Fdescribe_buffer_bindings): Use SYMBOL_NAME and XSTRING instead
8931 of XSYMBOL and name field.
8932 (describe_command, describe_translation): Use SYMBOL_NAME and
8933 assignment instead of XSYMBOL and name field and XSETSTRING.
8934 * lread.c (Fintern_soft, oblookup): Use SYMBOL_NAME and XSTRING
8935 instead of XSYMBOL and name field.
8936 (Funintern): Use SYMBOL_NAME and assignment instead of XSYMBOL and
8937 name field and XSETSTRING.
8938 * macfns.c (parse_image_spec): Use SYMBOL_NAME and XSTRING instead
8939 of XSYMBOL and name field.
8940 * minibuf.c (Fread_command, Fread_variable): Use SYMBOL_NAME and
8941 assignment instead of XSYMBOL and name field and XSETSTRING.
8942 * print.c (print_error_message, print_object): Use SYMBOL_NAME and
8943 XSTRING instead of XSYMBOL and name field.
8944 * process.c (set_socket_options, Fsignal_process): Use SYMBOL_NAME
8945 and XSTRING instead of XSYMBOL and name field.
8946 * w32fns.c (parse_image_spec, w32_parse_hot_key): Use SYMBOL_NAME
8947 and XSTRING instead of XSYMBOL and name field.
8948 * xfaces.c (merge_face_vector_with_property): Use SYMBOL_NAME and
8949 XSTRING instead of XSYMBOL and name field.
8950 * xfns.c (parse_image_spec): Use SYMBOL_NAME and XSTRING instead
8951 of XSYMBOL and name field.
8952 * xselect.c (symbol_to_x_atom, x_get_foreign_selection):
8953 Use SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
8954
8955 2002-05-19 Ken Raeburn <raeburn@gnu.org>
8956
8957 * lisp.h (LISP_MAKE_RVALUE): Delete disabled version, making XCAR
8958 and XCDR real rvalues in most configurations.
8959
8960 * buffer.c (fix_overlays_in_range, fix_overlays_before):
8961 Don't take the address of the cdr part of a cons cell; instead, track
8962 the parent cell and call XSETCDR, or set the variable for the head
8963 of the list if we haven't started down the list yet.
8964
8965 2002-05-19 Richard M. Stallman <rms@gnu.org>
8966
8967 * doc.c (reread_doc_file): Don't ask for confirmation.
8968
8969 2002-05-18 Jason Rumney <jasonr@gnu.org>
8970
8971 * w32fns.c (w32_create_pixmap_from_bitmap_data): New function.
8972 (xbm_load_image): Use it.
8973 (xbm_load): Ditto.
8974 (xbm_read_bitmap_data): Reverted to xfns.c version.
8975 From David Ponce <david@dponce.com>.
8976
8977 2002-05-17 Eli Zaretskii <eliz@is.elta.co.il>
8978
8979 * msdos.c (sig_suspender, sigprocmask): Don't define for DJGPP
8980 2.02 and later.
8981
8982 2002-05-16 Juanma Barranquero <lektu@terra.es>
8983
8984 * keyboard.c (Fthis_command_keys, Fthis_command_keys_vector): Fix typo.
8985
8986 2002-05-15 Stefan Monnier <monnier@cs.yale.edu>
8987
8988 * keyboard.c (read_char_x_menu_prompt): Use an equivalent but more
8989 meaningful test.
8990 (read_char_minibuf_menu_prompt): Fix typo.
8991
8992 2002-05-15 Eli Zaretskii <eliz@is.elta.co.il>
8993
8994 * eval.c (Fcommandp): Doc fix.
8995
8996 2002-05-13 Stefan Monnier <monnier@cs.yale.edu>
8997
8998 * keymap.c (keymap_parent): New fun, extracted from Fkeymap_parent.
8999 (Fkeymap_parent, keymap_memberp, fix_submap_inheritance): Use it.
9000 (Fset_keymap_parent): Gcpro a bit more.
9001 (access_keymap): Gcpro around meta_map call and around the main loop.
9002 (get_keyelt): Gcpro when following indirect references.
9003 (copy_keymap_item): New fun, extracted from Fcopy_keymap.
9004 (copy_keymap_1, Fcopy_keymap): Use it. Don't copy the parent map.
9005 (Fdefine_key, Flookup_key): Gcpro before calling get_keymap.
9006 Remove useless ad-hoc remap code.
9007
9008 2002-05-13 Richard M. Stallman <rms@gnu.org>
9009
9010 * search.c (search_buffer): Give up boyer moore search if inverse
9011 translation change charset_base.
9012
9013 2002-05-12 Eli Zaretskii <eliz@is.elta.co.il>
9014
9015 * coding.c (decode_coding) <coding_type_ccl>: If a lone CR
9016 characters is carried over from the previous block of text, adjust
9017 coding->produced to account for the extra character.
9018
9019 2002-05-11 Andreas Schwab <schwab@suse.de>
9020
9021 * coding.c (intersection): Keep the elements of the returned list
9022 in the same order as in the first list.
9023
9024 2002-05-11 Kim F. Storm <storm@cua.dk>
9025
9026 * keymap.c (current_minor_maps): Fixed resizing of cmm_maps;
9027 only update cmm_size if realloc actually succeeds.
9028 Testing with initial size of 2 elements revealed that using
9029 realloc on GNU/Linux would cause a random trap in xmalloc
9030 later on, so I rewrote the code to use malloc/bcopy/free instead
9031 of realloc.
9032
9033 2002-05-10 Jason Rumney <jasonr@gnu.org>
9034
9035 * w32fns.c (enum_font_cb2): Avoid DBCS raster fonts.
9036
9037 2002-05-10 Eli Zaretskii <eliz@is.elta.co.il>
9038
9039 * coding.c (encode_coding_sjis_big5): Enclose bitwise AND in
9040 parens, to ensure correct evaluation order.
9041
9042 2002-05-10 Kim F. Storm <storm@cua.dk>
9043
9044 * keymap.c (Vemulation_mode_map_alists): New variable.
9045 (syms_of_keymap): DEFVAR_LISP it.
9046 (current_minor_maps): Process keymap alists in that list before
9047 minor-mode-overriding-map-alist and minor-mode-map-alist.
9048
9049 2002-05-09 Richard M. Stallman <rms@gnu.org>
9050
9051 * search.c (Freplace_match): Doc fix.
9052
9053 2002-05-09 Kim F. Storm <storm@cua.dk>
9054
9055 * macterm.c (x_draw_image_foreground, x_draw_image_foreground_1):
9056 Enlarge cursor rectangle drawn around image with non-zero relief.
9057
9058 * w32term.c (x_draw_image_foreground, w32_draw_image_foreground_1):
9059 Enlarge cursor rectangle drawn around image with non-zero relief.
9060
9061 * xterm.c (x_draw_image_foreground, x_draw_image_foreground_1):
9062 Enlarge cursor rectangle drawn around image with non-zero relief.
9063
9064 2002-05-07 Eli Zaretskii <eliz@is.elta.co.il>
9065
9066 * xselect.c (lisp_data_to_selection_data): Don't set selection
9067 type if comes from the Lisp object's car. If the selection
9068 contains a pure ASCII text, always return QSTRING as its type.
9069
9070 2002-05-06 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
9071
9072 * mac.c (mac-cut-function): Doc fix.
9073
9074 2002-05-05 Richard M. Stallman <rms@gnu.org>
9075
9076 * s/gnu.h [DOUG_LEA_MALLOC] (REL_ALLOC): Undefine it.
9077
9078 2002-05-04 Jason Rumney <jasonr@gnu.org>
9079
9080 * keyboard.c (make_lispy_event) <mouse-wheel>: Set count to 1
9081 for event-click-count.
9082
9083 * process.c (init_process): Only add server subfeature if we can
9084 use non-blocking I/O.
9085
9086 2002-05-04 Andrew Choi <akochoi@shaw.ca>
9087
9088 * macterm.c (XTread_socket): Call WaitNextEvent once instead of
9089 repeatedly.
9090
9091 2002-05-03 Jason Rumney <jasonr@gnu.org>
9092
9093 * process.c (Fmake_network_process): Only support server sockets
9094 when we can make them non-blocking.
9095
9096 * s/ms-w32.h (HAVE_SELECT): Define.
9097
9098 * w32.h (FILE_NDELAY): New flag.
9099
9100 * w32.c (sys_getpeername, fcntl): New functions.
9101 (_sys_read_ahead): Temporarily block on non-blocking sockets.
9102
9103 * w32proc.c: include sys/file.h.
9104
9105 2002-05-03 Colin Walters <walters@verbum.org>
9106
9107 * callproc.c (Vgame_score_directory): Renamed to
9108 Vshared_game_score_directory.
9109
9110 2002-04-30 Richard M. Stallman <rms@gnu.org>
9111
9112 * s/gnu.h [emacs]: Include stdio.h.
9113 (GNU_LIBRARY_PENDING_OUTPUT_COUNT): New definition, conditional.
9114
9115 * eval.c (do_autoload): Error if called while preparing to dump.
9116
9117 * fns.c (Frequire): Error if need to load while preparing to dump.
9118
9119 2002-04-28 Colin Walters <walters@verbum.org>
9120
9121 * callproc.c (Vgame_score_directory) [!HAVE_SHARED_GAME_DIR]:
9122 Default to "~/.emacs.d/games".
9123
9124 2002-04-29 Stefan Monnier <monnier@cs.yale.edu>
9125
9126 * lread.c (openp): Change arg exec_only to predicate.
9127 (build_load_history): Use XCAR/XCDR.
9128 (Flocate_file_internal): New fun.
9129 (syms_of_lread): Defsubr it.
9130 (Fload): Update call to openp.
9131
9132 * lisp.h (openp): Update prototype.
9133
9134 * xfns.c (x_create_bitmap_from_file, x_find_image_file):
9135 * w32proc.c (sys_spawnve):
9136 * w32fns.c (x_create_bitmap_from_file, x_find_image_file):
9137 * w32.c (check_windows_init_file):
9138 * sound.c (Fplay_sound_internal):
9139 * process.c (Fstart_process):
9140 * macfns.c (x_create_bitmap_from_file, x_find_image_file):
9141 * mac.c (run_mac_command):
9142 * emacs.c (init_cmdargs):
9143 * callproc.c (Fcall_process): Update call to openp.
9144
9145 * textprop.c (remove_properties): Don't use XCAR without CONSP.
9146
9147 * xterm.c (XTread_socket): Disable the Xutf8LookupString code.
9148
9149 2002-04-29 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
9150
9151 * dispextern.h (DEFAULT_TOOL_BAR_BUTTON_MARGIN)
9152 (DEFAULT_TOOL_BAR_BUTTON_RELIEF): Change default values.
9153
9154 2002-04-28 Richard M. Stallman <rms@gnu.org>
9155
9156 * minibuf.c (Fall_completions, Ftry_completion): New arg to Fcommandp.
9157
9158 * eval.c (Fcommandp): New arg for_call_interactively.
9159 * lisp.h (Fcommandp): Declare new arg.
9160
9161 2002-04-28 Jason Rumney <jasonr@gnu.org>
9162
9163 * w32proc.c (syms_of_w32proc): Get true file attributes by default.
9164
9165 * w32.c (stat, fstat): Use file index information to generate
9166 inodes for directories where available.
9167
9168 2002-04-26 Andrew Choi <akochoi@shaw.ca>
9169
9170 * Makefile.in (C_SWITCH_SYSTEM_TEMACS): Add.
9171 [HAVE_CARBON]: Include Mac object files.
9172
9173 * alloc.c, callproc.c, dispextern.h, dispnew.c, emacs.c,
9174 fontset.c, frame.c, frame.h, keyboard.c, sysdep.c, term.c,
9175 termcap.c, window.c, xdisp.c, xfaces.c: Use macros MAC_OS8,
9176 MAC_OSX, and MAC_OS instead of macintosh.
9177
9178 * editfns.c [MAC_OS8]: Include stdio.h.
9179
9180 * emacs.c [MAC_OS8]: Call mac_initialize instead of x_term_init.
9181
9182 * fontset.c [MAC_OS]: Set Vdefault_fontset to ETL Fixed instead of
9183 Apple Monaco.
9184
9185 * process.c: Declare QCfamily and QCfilter as extern.
9186 (wait_reading_process_input) [MAC_OSX]: Clear bit for stdin before
9187 calling select.
9188
9189 * termcap.c [MAC_OSX]: Don't define tgetnum, PC, tputs, and tgetent.
9190
9191 * tparam.c [MAC_OSX]: Don't define BC and UP.
9192
9193 * config.in [HAVE_CARBON]: Add.
9194
9195 * mac.c, macgui.h, macfns.c, macmenu.c, macterm.c, macterm.h:
9196 Move here from mac/src and mac/inc.
9197
9198 * s/darwin.h, m/powermac.h, unexmacosx.c: New files.
9199
9200 2002-04-26 Gerd Moellmann <gerd@gnu.org>
9201
9202 * xterm.c (x_draw_phys_cursor_glyph): Undo last change.
9203 Compute phys_cursor_width from the x position returned
9204 by x_draw_glyhs, which is cheaper.
9205 (x_display_and_set_cursor): Compute the buffer-local value
9206 of `cursor-in-non-selected-windows' only when needed.
9207
9208 2002-04-25 Gerd Moellmann <gerd@gnu.org>
9209
9210 * xterm.c (x_draw_phys_cursor_glyph): Take into account that a box
9211 cursor on a stretch glyph has a width that depends on
9212 x_stretch_cursor_p.
9213
9214 2002-04-25 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
9215
9216 * abbrev.c (abbrev-start-location): Doc fix.
9217
9218 * indent.c (Fvertical_motion): Fix last change.
9219
9220 2002-04-25 Gerd Moellmann <gerd@gnu.org>
9221
9222 * indent.c (Fvertical_motion): Move to the start of the line
9223 containing PT before moving up or down.
9224
9225 2002-04-24 Gerd Moellmann <gerd@gnu.org>
9226
9227 * dispnew.c (update_text_area): Set phys_cursor_on_p to 0 in the
9228 case of writing a whole row, more or less analogous to the case of
9229 writing only parts of a row.
9230
9231 * xterm.c (x_display_and_set_cursor): Set phys_cursor_width to
9232 0 for NO_CURSOR.
9233
9234 * xterm.c (notice_overwritten_cursor): Fix an off by 1 error.
9235
9236 2002-04-23 Colin Walters <walters@verbum.org>
9237
9238 * buffer.c (syms_of_buffer): Doc fix.
9239
9240 2002-04-23 Gerd Moellmann <gerd@gnu.org>
9241
9242 * xterm.c (notice_overwritten_cursor): Handle the special case
9243 of the cursor being in the first blank non-text line at the
9244 end of a window.
9245
9246 * xterm.c (x_draw_hollow_cursor, x_draw_bar_cursor)
9247 (x_draw_phys_cursor_glyph): Set phys_cursor_width here.
9248 (x_display_and_set_cursor): Don't set phys_cursor_width here, for
9249 bar cursors only, to make phys_cursor_width contain what its name
9250 suggests.
9251 (notice_overwritten_cursor): Consider the cursor image erased if
9252 the output area intersects the cursor image in y-direction.
9253
9254 2002-04-23 Simon Marshall <simon@gnu.org>
9255
9256 * xfns.c (x_set_mouse_color): Change default for cross_cursor
9257 to XC_hand2.
9258
9259 2002-04-23 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
9260
9261 * xdisp.c: Remove unused global variable `minibuf_prompt_pixel_width'.
9262
9263 2002-04-22 Kim F. Storm <storm@cua.dk>
9264
9265 * textprop.c (remove_properties): Fixed trap for malformed plist.
9266
9267 2002-04-22 Richard M. Stallman <rms@gnu.org>
9268
9269 * cmds.c (Fend_of_line): Handle intangible text in mid line.
9270
9271 * window.c (make_window): Initialize height_fixed_p,
9272 last_cursor_off_p, and p->cursor_off_p slots.
9273
9274 2002-04-20 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
9275
9276 * fns.c (use-dialog-box): Doc fix.
9277
9278 2002-04-19 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
9279
9280 * xterm.c (note_mode_line_or_margin_highlight): Remove unused
9281 variables `row', `i' and `area'.
9282 (XTread_socket) <KeyPress>: Pass KeyPress events when in menu to
9283 toolkit library.
9284
9285 2002-04-19 Stefan Monnier <monnier@cs.yale.edu>
9286
9287 * xfaces.c (clear_font_table): Don't free the default font of
9288 a frame even if it's on another display.
9289 (Finternal_set_lisp_face_attribute): Don't use XFRAME on something
9290 that could be Qt.
9291
9292 2002-04-19 Juanma Barranquero <lektu@terra.es>
9293
9294 * indent.c (Fmove_to_column): Remove unused local variable
9295 `next_boundary_byte'.
9296 (current_column_1): Likewise.
9297
9298 2002-04-19 Eli Zaretskii <eliz@is.elta.co.il>
9299
9300 * msdos.c (Qhbar): New variable.
9301 (syms_of_msdos): Intern and staticpro it.
9302 (IT_set_cursor_type, IT_set_frame_parameters): Handle the `hbar'
9303 cursor type.
9304
9305 2002-04-19 Dave Lambert <dlambert@acm.org>
9306
9307 Theses change implement an underscore-like (`hbar') cursor.
9308
9309 * xterm.h (text_cursor_kinds): New enumeration member HBAR_CURSOR.
9310
9311 * xterm.c (x_draw_bar_cursor): New argument KIND; callers changed.
9312 Handle the `hbar' cursor type.
9313 (x_display_and_set_cursor): Handle the HBAR_CURSOR case.
9314
9315 * xfns.c (Qhbar): New variable.
9316 (syms_of_xfns): Intern and staticpro it.
9317 (x_specified_cursor_type): Handle `hbar' cursor.
9318
9319 * s/sol2-5.h (bcopy, bzero, bcmp): Define only if HAVE_BCOPY is
9320 not defined.
9321
9322 2002-04-18 Richard M. Stallman <rms@gnu.org>
9323
9324 * textprop.c (remove_properties): New arg LIST allows scanning
9325 either a list or a plist.
9326 (interval_has_some_properties_list): New function, like
9327 interval_has_some_properties using list instead of plist.
9328 All callers changed.
9329 (Fremove_list_of_text_properties): New function.
9330 (syms_of_textprop): Defsubr it.
9331
9332 2002-04-17 Eli Zaretskii <eliz@is.elta.co.il>
9333
9334 * s/sol2.h (HAVE_LIBKSTAT): Define only if not already defined.
9335
9336 2002-04-17 Juanma Barranquero <lektu@terra.es>
9337
9338 * indent.c (Fmove_to_column): Remove unused local variable `end_byte'.
9339
9340 2002-04-17 Eli Zaretskii <eliz@is.elta.co.il>
9341
9342 * window.c (coordinates_in_window): Don't report on margin area
9343 if its width is zero.
9344
9345 2002-04-16 Jason Rumney <jasonr@gnu.org>
9346
9347 * w32fns.c (Fx_file_dialog): Decode file name before using.
9348
9349 * w32term.c (construct_drag_n_drop): Likewise.
9350
9351 2002-04-16 Eli Zaretskii <eliz@is.elta.co.il>
9352
9353 * puresize.h (BASE_PURESIZE): Increase to 830000, since we now
9354 store load-history in pure space.
9355
9356 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Reduce to 50000.
9357
9358 2002-04-16 Stefan Monnier <monnier@cs.yale.edu>
9359
9360 * xterm.c (Qlatin_1, Qutf_8): New vars.
9361 (syms_of_xterm): Initialize them.
9362 (XTread_socket): Eliminate incorrect optimization that tried to avoid
9363 decoding the output of X*LookupString.
9364 Always use latin-1 to decode the output of XLookupString.
9365 Try Xutf8LookupString if XmbLookupString failed.
9366
9367 * region-cache.c (new_region_cache): Use BEG.
9368
9369 2002-04-16 Gerd Moellmann <gerd@gnu.org>
9370
9371 * buffer.c (MMAP_ALLOCATED_P): New macro to be set from system
9372 configuration files.
9373 (mmap_enlarge): Enlarge mapped regions only if MMAP_ALLOCATED_P
9374 returns 0.
9375
9376 2002-04-15 Andreas Schwab <schwab@suse.de>
9377
9378 * config.in: Regenerated using autoheader.
9379
9380 * m/7300.h, m/acorn.h, m/alliant-2800.h, m/alliant.h, m/alpha.h,
9381 m/altos.h, m/amdahl.h, m/apollo.h, m/arm.h, m/att3b.h, m/aviion.h,
9382 m/celerity.h, m/clipper.h, m/cnvrgnt.h, m/convex.h, m/cydra5.h,
9383 m/delta.h, m/delta88k.h, m/dpx2.h, m/elxsi.h, m/gec63.h,
9384 m/gould.h, m/hp800.h, m/hp9000s300.h, m/i860.h, m/ia64.h,
9385 m/ibmps2-aix.h, m/ibmrs6000.h, m/ibmrt-aix.h, m/ibmrt.h,
9386 m/ibms390.h, m/intel386.h, m/iris4d.h, m/irist.h, m/isi-ov.h,
9387 m/m68k.h, m/macppc.h, m/masscomp.h, m/mg1.h, m/mips-siemens.h,
9388 m/mips.h, m/news-r6.h, m/news.h, m/next.h, m/nh3000.h, m/nh4000.h
9389 m/ns32000.h, m/orion.h, m/pfa50.h, m/plexus.h, m/pmax.h,
9390 m/powerpcle.h, m/pyrmips.h, m/sequent-ptx.h, m/sequent.h,
9391 m/sparc.h, m/sr2k.h, m/symmetry.h, m/tad68k.h, m/tahoe.h,
9392 m/targon31.h, m/tek4300.h, m/tekxd88.h, m/template.h, m/tower32.h,
9393 m/tower32v3.h, m/ustation.h, m/vax.h, m/wicat.h, m/windowsnt.h,
9394 m/xps100.h, s/aix3-2.h, s/aix4-2.h, s/irix4-0.h, s/irix5-0.h,
9395 s/sco5.h, s/unixware.h: Don't set HAVE_ALLOCA, C_ALLOCA and
9396 STACK_DIRECTION, now set by autoconf.
9397
9398 2002-04-14 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
9399
9400 * dispnew.c (marginal_area_string): Sort arguments.
9401
9402 * dispextern.h (marginal_area_string): Add prototype.
9403
9404 2002-04-13 Richard M. Stallman <rms@gnu.org>
9405
9406 * fileio.c (Finsert_file_contents):
9407 Don't call temp_output_buffer_setup--do just part, by hand.
9408
9409 * coding.c (run_pre_post_conversion_on_str):
9410 Don't call temp_output_buffer_setup--do just part, by hand.
9411
9412 * keyboard.c (command_loop_1): Don't call start_hourglass
9413 or cancel_hourglass when executing a macro.
9414
9415 * marker.c (count_markers): New function.
9416
9417 * xdisp.c (display_mode_element): Don't let mode_line_proptrans_alist
9418 grow without limit. Move recently used elements to the front.
9419
9420 2002-04-13 Eli Zaretskii <eliz@is.elta.co.il>
9421
9422 * unexelf.c (unexec) [__sgi]: Undo the change from 2002-01-20.
9423
9424 2002-04-12 Gerd Moellmann <gerd@gnu.org>
9425
9426 * xdisp.c (sync_frame_with_window_matrix_rows): Don't give frame
9427 rows marginal areas.
9428 (Fdump_frame_glyph_matrix) [GLYPH_DEBUG]: New function.
9429 (syms_of_xdisp) [GLYPH_DEBUG]: Defsubr it.
9430
9431 * dispnew.c (marginal_area_string): Check that glyph row is enabled.
9432
9433 2002-04-12 Dave Love <fx@gnu.org>
9434
9435 * dispnew.c (marginal_area_string): New.
9436
9437 * window.c (window_part): Add ON_LEFT_MARGIN, ON_RIGHT_MARGIN.
9438 (Qleft_margin, Qright_margin): Declare.
9439 (coordinates_in_window, (Fcoordinates_in_window_p): Deal with margins.
9440
9441 * xterm.c (note_mode_line_or_margin_highlight): Renamed from
9442 note_mode_line_highlight and extended.
9443
9444 * keyboard.c (Qleft_margin, Qright_margin): Declare.
9445 (make_lispy_event): Deal with mouse events in margins.
9446
9447 2002-04-12 Stefan Monnier <monnier@cs.yale.edu>
9448
9449 * msdos.c (dos_rawgetc): Use a single event for HELP_EVENT.
9450
9451 * keyboard.c (command_loop_1): Turn off transient-mark-mode rather
9452 than deactivating the mark if tmm is set to `lambda'.
9453 (gen_help_event, kbd_buffer_store_help_event, kbd_buffer_get_event):
9454 Use a single event for HELP_EVENT.
9455 (Fexecute_extended_command): Save last_point_position.
9456
9457 2002-04-12 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
9458
9459 * lisp.h (Fpropertize): Add prototype.
9460
9461 * fns.c (Fy_or_n_p): Use `minibuffer-prompt' face for prompt.
9462
9463 2002-04-10 Colin Walters <walters@verbum.org>
9464
9465 * config.in: Add HAVE_SHARED_GAME_DIR.
9466
9467 * callproc.c: (Vgame_score_directory): New variable.
9468 (syms_of_callproc) <Vgame_score_directory>: DEFVAR_LISP.
9469
9470 2002-04-10 Richard M. Stallman <rms@gnu.org>
9471
9472 * puresize.h (BASE_PURESIZE): Reduce again to avoid big excess.
9473
9474 2002-04-09 Stefan Monnier <monnier@cs.yale.edu>
9475
9476 * minibuf.c (read_minibuf): Use empty_string.
9477 (Ftry_completion): Allow lambda forms and lists of strings for `alist'.
9478 Short-circuit the search as soon as it "failed".
9479 (Fall_completions): Allow lambda forms and lists of strings for alist.
9480 (Fcompleting_read): Set Qminibuffer_completion_confirm to nil
9481 when require_match is nil.
9482 (Ftest_completion): Rename from `test_completion' and export to elisp.
9483 Call the predicate also when alist is a list.
9484 Obey Vcompletion_regexp_list.
9485 (do_completion, Fminibuffer_complete_and_exit): Use it.
9486 (Fassoc_string): Rename from `assoc_for_completion'.
9487 Allow list of strings as well and export to elisp.
9488
9489 2002-04-08 Stefan Monnier <monnier@cs.yale.edu>
9490
9491 * puresize.h (BASE_PURESIZE): Increase to 900KB.
9492
9493 2002-04-08 Juanma Barranquero <lektu@terra.es>
9494
9495 * w32.c (sys_accept): Don't hide variable `s'.
9496
9497 2002-04-05 Gerd Moellmann <gerd@gnu.org>
9498
9499 * callint.c (Fcall_interactively): Use INTEGERP instead of
9500 NUMBERP for checking Vhistory_length.
9501
9502 2002-04-05 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
9503
9504 * sound.c (Fplay_sound_internal): Renamed from Fplay_sound.
9505 Doc fix to reflect it.
9506
9507 2002-04-04 Richard M. Stallman <rms@gnu.org>
9508
9509 * xdisp.c (display_mode_element): New arg RISKY.
9510 Disregard text props found or specified within a variable
9511 that isn't marked risky-local-variable.
9512 (Qrisky_local_variable): New variable.
9513 (syms_of_xdisp): Init and staticpro it.
9514
9515 2002-04-04 Stefan Monnier <monnier@cs.yale.edu>
9516
9517 * undo.c (record_point): New fun.
9518 (record_delete, record_insert): Use it.
9519
9520 2002-04-03 Juanma Barranquero <lektu@terra.es>
9521
9522 * doc.c (Fdocumentation): Add missing parentheses.
9523 (Fdocumentation_property): Likewise.
9524
9525 2002-04-03 Stefan Monnier <monnier@cs.yale.edu>
9526
9527 * doc.c (Fdocumentation, Fdocumentation_property): When the doc
9528 data is 0, just return nil.
9529
9530 2002-04-03 Eli Zaretskii <eliz@is.elta.co.il>
9531
9532 * msdos.c (syms_of_msdos): Fix last change with
9533 mouse_autoselect_window.
9534
9535 2002-04-03 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
9536
9537 * w32term.c, xterm.c, msdos.c: Rename autoselect_window_p to
9538 mouse_autoselect_window.
9539
9540 2002-04-02 Stefan Monnier <monnier@cs.yale.edu>
9541
9542 * keyboard.c (make_lispy_event): Handle unknown keysyms together
9543 with system-specific keysyms. Use it also for unknown function keys.
9544
9545 * doc.c (reread_doc_file): Return whether reload was attempted.
9546 (Fdocumentation, Fdocumentation_property): Don't try to reload
9547 if the doc is 0 and only ask once.
9548
9549 * Makefile.in (lisp, shortlisp): Add ucs-tables.elc.
9550
9551 2002-04-02 Eli Zaretskii <eliz@is.elta.co.il>
9552
9553 * keyboard.c (read_char): If the event was Qselect_window,
9554 restore timer_idleness_start_time to its previous value.
9555
9556 * msdos.c (dos_rawgetc): Generate SELECT_WINDOW_EVENTs when required.
9557
9558 2002-04-01 Stefan Monnier <monnier@cs.yale.edu>
9559
9560 * region-cache.c (new_region_cache): Use BEG.
9561
9562 * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos):
9563 Use BEG and BEG_BYTE.
9564
9565 * doc.c (get_doc_string): Return nil if the location is wrong.
9566 (reread_doc_file): New fun.
9567 (Fdocumentation, Fdocumentation_property):
9568 Call it if get_doc_string fails.
9569 (Fsnarf_documentation): Make it work for a dumped Emacs.
9570
9571 * charset.h (DEC_POS, BUF_DEC_POS): Use BEG_BYTE.
9572 Bound the search with MAX_MULTIBYTE_LENGTH to avoid pathological case.
9573
9574 * charset.c (Fstring): Allow 0 arguments.
9575
9576 * xterm.c (XTread_socket): Fix int/Lisp_Object confusion.
9577
9578 * process.c (DATAGRAM_CONN_P, list_processes_1)
9579 (Fprocess_datagram_address, Fset_process_datagram_address)
9580 (Fset_network_process_options, server_accept_connection):
9581 Fix some int/Lisp_Object confusions (thank you union types).
9582
9583 2002-04-01 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
9584
9585 * msdos.c: Rename x_autoselect_window_p to autoselect_window_p.
9586
9587 * w32term.c: Likewise.
9588 (note_mouse_movement): Put code for x_autoselect_window_p in #if 0.
9589
9590 * keyboard.c (Qselect_window): New symbol.
9591 (head_table): Use it.
9592 (keys_of_keyboard): Bound select-window event to handle-select-window.
9593 (kbd_buffer_get_event): Make a Lisp event from SELECT_WINDOW_EVENT.
9594
9595 * xterm.c: Rename x_autoselect_window_p to autoselect_window_p.
9596 (last_window): New variable.
9597 (XTread_socket): Generate SELECT_WINDOW_EVENTs.
9598 (note_mouse_movement): Remove reimplemented code in #if 0.
9599 (XTread_socket): Generate SELECT_WINDOW_EVENTs only for
9600 Emacs windows.
9601
9602 * termhooks.h (enum event_kind): New event type `SELECT_WINDOW_EVENT'.
9603
9604 2002-03-31 Gerd Moellmann <gerd@gnu.org>
9605
9606 * xterm.c (x_get_char_face_and_encoding): Add parameter DISPLAY_P.
9607 Callers changed.
9608
9609 2002-03-30 Richard M. Stallman <rms@gnu.org>
9610
9611 * window.c (window_scroll_pixel_based): Exit the move_it_by_lines
9612 loop whenever it stops making progress.
9613
9614 * widget.c (set_frame_size): Don't call change_frame_size.
9615
9616 2002-03-30 Gerd Moellmann <gerd@gnu.org>
9617
9618 * dispnew.c (direct_output_for_insert):
9619 Call mark_window_display_accurate.
9620
9621 2002-03-29 Jason Rumney <jasonr@gnu.org>
9622
9623 * w32term.c (w32_draw_relief_rect): Fix calculations of line lengths.
9624
9625 2002-03-29 Eli Zaretskii <eliz@is.elta.co.il>
9626
9627 * Makefile.in (lread.o): Depend on coding.h.
9628
9629 * lread.c (openp, Fload): Encode the file name before passing it
9630 to `stat', `access', and `emacs_open'.
9631 (openp): GCPRO the encoded file name. Don't recompute Lisp
9632 strings unnecessarily.
9633
9634 2002-03-29 Kim F. Storm <storm@cua.dk>
9635
9636 * fns.c (Flax_plist_put): Doc fix.
9637
9638 2002-03-28 Miles Bader <miles@gnu.org>
9639
9640 * process.c (DATAGRAM_CONN_P): Make sure PROC is really a process.
9641
9642 2002-03-27 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
9643
9644 * process.c (set-network-process-options): Add usage.
9645 (make-network-process): Doc fix.
9646
9647 2002-03-26 Eli Zaretskii <eliz@is.elta.co.il>
9648
9649 * emacs.c (Fdump_emacs): Fix a typo in "command-line-processed".
9650
9651 2002-03-26 Richard M. Stallman <rms@gnu.org>
9652
9653 * fns.c (Fsubstring_no_properties): New function.
9654 (Flax_plist_get, Flax_plist_put): New functions.
9655 (syms_of_fns): defsubr them.
9656
9657 * xdisp.c (update_menu_bar): Test only update_mode_lines;
9658 don't test or alter w->update_mode_line.
9659
9660 * window.c (Fdisplay_buffer): Doc fix.
9661
9662 2002-03-24 Richard M. Stallman <rms@gnu.org>
9663
9664 * regex.c (GET_UNSIGNED_NUMBER): Give proper error for spaces.
9665
9666 2002-03-24 Gerd Moellmann <gerd@gnu.org>
9667
9668 * eval.c (Qdeclare, Vmacro_declaration_function): New variables.
9669 (Fdefmacro): Handle `(declare ...)'.
9670 (syms_of_eval) <Qdeclare>: Initialize and staticpro.
9671 (syms_of_eval) <Vmacro_declaration_function>: DEFVAR_LISP.
9672
9673 2002-03-24 Jason Rumney <jasonr@gnu.org>
9674
9675 * w32fns.c (xbm_scan, xbm_load_image, xbm_read_bitmap_data)
9676 (xbm_file_p): Add prototypes.
9677 (xbm_format, xbm_image_p): Sync with xfns.c.
9678 (reflect_byte): New function.
9679 (xbm_read_bitmap_data): Sync with xfns.c, adapt for Windows.
9680 (xbm_load_image): Create bitmaps with a depth of 1.
9681 (init_xfns): Enable XBM images.
9682
9683 2002-03-23 Jason Rumney <jasonr@gnu.org>
9684
9685 * w32term.c (w32_handle_tool_bar_click): Detect up and down events
9686 correctly. Do not pass up_modifier to keyboard buffer.
9687
9688 * w32fns.c [HAVE_IMAGES, HAVE_PBM]: Remove conditionals.
9689
9690 2002-03-22 Stefan Monnier <monnier@cs.yale.edu>
9691
9692 * Makefile.in (bootstrapclean): New target.
9693 (bootstrap-temacs, bootstrap-doc): Remove.
9694 (bootstrap-emacs): Use a bog-standard `temacs'.
9695 Don't bother to build a DOC file.
9696
9697 * sysdep.c (wait_for_termination): Use sigsuspend rather than sigpause.
9698
9699 * emacs.c (main): Handle --unibyte, --multibyte, and --no-loadup
9700 in temacs even if !CANNOT_DUMP.
9701 (standard_args): Keep --no-loadup even if !CANNOT_DUMP.
9702
9703 * alloc.c (check_pure_size): Only output a warning.
9704
9705 2002-03-22 Jason Rumney <jasonr@gnu.org>
9706
9707 * w32fns.c (Fx_create_frame): Enable tool-bar when images are
9708 supported.
9709
9710 * w32term.c (zv_bits): Declare as short, for word alignment.
9711 (w32_read_socket) <WM_XBUTTONUP>: Fix last change.
9712 (syms_of_w32term): Define x-use-underline-position-properties.
9713
9714 * w32fns.c (x_set_cursor_color): Set cursor_gc as well.
9715 (clear_image_cache): Block input, fix logic, clear matrices in
9716 all frames that share this cache.
9717
9718 2002-03-22 Eli Zaretskii <eliz@is.elta.co.il>
9719
9720 * emacs.c (main): Update the Copyright year in the blurb printed
9721 by "emacs --version".
9722
9723 * xdisp.c (message_with_string): Fix syntax of a call to GCPRO2.
9724
9725 * xterm.c (XTread_socket): If XK_ISO_Lock and
9726 XK_ISO_Last_Group_Lock are defined, handle keysyms between
9727 XK_ISO_Lock and XK_ISO_Last_Group_Lock similarly to Mode_switch.
9728
9729 2002-03-21 Kim F. Storm <storm@cua.dk>
9730
9731 * keyboard.c (menu_bar_items): Mostly undo 2002-02-20 patch, so
9732 menu-bar bindings in keymap and local-map properties _are_ used.
9733 But try keymap property first in accordance with 2002-01-03 patch.
9734 Added comment describing why this is not always reliable.
9735 (tool_bar_items): Ditto for tool-bar.
9736
9737 2002-03-21 Jason Rumney <jasonr@gnu.org>
9738
9739 * w32fns.c (x_clear_image_1): Disable color table code.
9740
9741 2002-03-21 Kim F. Storm <storm@cua.dk>
9742
9743 * lisp.h (DEFUN) [USE_NONANSI_DEFUN]: The 2001-10-17 patch
9744 removed the wrong version of the DEFUN macro; fixed it.
9745
9746 * fns.c (Ffeaturep): Allow subfeature to be a list (test using
9747 Fmember rather than Fmemq).
9748 (Fprovide): Check that subfeatures is a list.
9749
9750 * process.c (QCfeature, QCdatagram): Removed variables.
9751 (QCtype, Qdatagram): New variables.
9752 (network_process_featurep): Removed function.
9753 (Fmake_network_process): Removed :feature check.
9754 Use :type 'datagram instead of :datagram t to create a datagram
9755 socket. This allows us to add other connection types (e.g. raw
9756 sockets) later in a consistent manner.
9757 (init_process) [subprocess, HAVE_SOCKETS]: Provide list of
9758 supported subfeatures for feature make-network-process.
9759 (syms_of_process) [subprocess]: Remove QCfeature and QCdatagram.
9760 Intern and staticpro QCtype and Qdatagram.
9761 (syms_of_process) [!subprocess]: Intern and staticpro QCtype.
9762
9763 * xfns.c: (QCtype): Remove duplicate declaration and
9764 initialization (is now declared in process.c).
9765
9766 * w32fns.c: (QCtype): Remove duplicate declaration and
9767 initialization (is now declared in process.c).
9768
9769 2002-03-21 Richard M. Stallman <rms@gnu.org>
9770
9771 * regex.c (DISCARD_FAILURE_REG_OR_COUNT): New macro.
9772 (CHECK_INFINITE_LOOP): Use DISCARD_FAILURE_REG_OR_COUNT
9773 when jumping to `fail' to avoid undoing reg changes in the
9774 last iteration of the loop.
9775 (GET_UNSIGNED_NUMBER): Skip spaces around the number.
9776
9777 * Makefile.in (dispnew.o, sysdep.o, xdisp.o, xselect.o, alloc.o):
9778 Depend on process.h.
9779
9780 2002-03-20 Jason Rumney <jasonr@gnu.org>
9781
9782 Most of the following changes are still conditional on HAVE_IMAGES
9783 which is not set by default on Windows.
9784
9785 * emacs.c (main) [WINDOWSNT]: Call init_xfns.
9786
9787 * w32fns.c (x_set_cursor_color): Set foreground of cursor, not frame.
9788 (Fimage_size, Fimage_mask_p, XPutPixel): New functions.
9789 (four_corners_best, x_clear_image_1, x_clear_image)
9790 (x_alloc_image_color, postprocess_image)
9791 (x_create_x_image_and_pixmap, x_destroy_x_image, xbm_load_image)
9792 (x_from_x_colors, x_disable_image, pbm_load): Adapt for Windows.
9793 (init_xfns, syms_of_w32fns): Initialize image functions and constants.
9794
9795 * w32gui.h (struct XImage): Define.
9796
9797 * w32term.c (w32_read_socket) <WM_XBUTTONUP>: Use XFASTINT to
9798 extract mouse co-ordinates.
9799
9800 2002-03-20 Jason Rumney <jasonr@gnu.org>
9801
9802 * w32.c (init_winsock): Dynamically load new server and UDP
9803 socket functions.
9804 (socket_to_fd): New function.
9805 (sys_socket): Use it.
9806 (sys_setsockopt, sys_listen, sys_getsockname, sys_accept)
9807 (sys_recvfrom, sys_sendto): New wrapper functions.
9808
9809 * process.c (QCfamily, QCfilter): Remove duplicate declaration
9810 and initialization.
9811
9812 * makefile.w32-in (LIBS): Remove $(WSOCK32).
9813
9814 2002-03-20 Eli Zaretskii <eliz@is.elta.co.il>
9815
9816 * process.c (conv_sockaddr_to_lisp, conv_lisp_to_sockaddr):
9817 Don't use "sun" as a variable, it's a predefined constant on Sun
9818 machines.
9819
9820 2002-03-20 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
9821
9822 * bytecode.c (Fbyte_code): Revert last change.
9823
9824 2002-03-19 Kim F. Storm <storm@cua.dk>
9825
9826 * makefile.w32-in (LIBS): Add $(WSOCK32).
9827 From David Ponce <dponce@voila.fr>.
9828
9829 2002-03-18 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
9830
9831 * process.c (wait_reading_process_input): Move variables `pname'
9832 and `pnamelen' down where they are used.
9833
9834 * bytecode.c (Fbyte_code): Discard unused computed value to
9835 prevent gcc warning.
9836
9837 * lisp.h (Fplist_member): Add prototype.
9838
9839 2002-03-18 Kim F. Storm <storm@cua.dk>
9840
9841 * config.in: Add HAVE_SENDTO, HAVE_RECVFROM, HAVE_SETSOCKOPT,
9842 HAVE_GETSOCKOPT, HAVE_GETPEERNAME, HAVE_GETSOCKNAME, and HAVE_SYS_UN_H.
9843
9844 * process.c: Define HAVE_LOCAL_SOCKETS based on HAVE_SYS_UN_H.
9845 Remove explicit GNU_LINUX settings for datagram support.
9846
9847 2002-03-18 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
9848
9849 * process.c (Fmake_network_process): Remove unused variable `sa'.
9850 Doc fix. Add usage:.
9851 (set_socket_options): Remove unused variables `optnum' and `opttype'.
9852
9853 2002-03-17 Richard M. Stallman <rms@gnu.org>
9854
9855 * xdisp.c (cursor_type_changed): New variable.
9856 (redisplay_internal): Redisplay all windows if cursor_type_changed.
9857 Clear it when clearing windows_or_buffers_changed.
9858 (try_cursor_movement, redisplay_window, try_window_id)
9859 (try_window_reusing_current_matrix): Test cursor_type_changed
9860 along with windows_or_buffers_changed.
9861
9862 * window.h (cursor_type_changed): New variable.
9863
9864 * xfns.c (x_set_cursor_type): Set cursor_type_changed,
9865 not update_mode_lines, and always set it to 1.
9866
9867 * xdisp.c (clear_garbaged_frames): Don't set windows_or_buffers_changed
9868 if no frames needed redrawing.
9869
9870 2002-03-17 Kim F. Storm <storm@cua.dk>
9871
9872 The following changes add support for network server processes,
9873 datagram connections, and local (unix) sockets.
9874
9875 * process.h (struct Lisp_Process): New member log.
9876 Doc fix: Member command used to indicate stopped network process.
9877 Doc fix: Member childp contains plist for network process.
9878 Doc fix: Member kill_without_query is inverse of query-on-exit flag.
9879
9880 * process.c (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
9881 (QClocal, QCremote, QCserver, QCdatagram, QCnowait, QCnoquery,QCstop)
9882 (QCcoding, QCoptions, QCfilter, QCsentinel, QClog, QCfeature):
9883 New variables.
9884 (NETCONN1_P): New macro.
9885 (DATAGRAM_SOCKETS): New conditional symbol.
9886 (datagram_address): New array.
9887 (DATAGRAM_CONN_P, DATAGRAM_CHAN_P): New macros.
9888 (status_message): Use concat3.
9889 (Fprocess_status): Add `listen' status to doc string. Return `stop'
9890 for a stopped network process.
9891 (Fset_process_buffer): Update contact plist for network process.
9892 (Fset_process_filter): Ditto. Don't enable input for stopped
9893 network processes. Server must listen, even if filter is t.
9894 (Fset_process_query_on_exit_flag, Fprocess_query_on_exit_flag):
9895 New functions.
9896 (Fprocess_kill_without_query): Removed. Now defined in simple.el.
9897 (Fprocess_contact): Added KEY argument. Handle datagrams.
9898 (list_processes_1): Optionally show only processes with the query
9899 on exit flag set. Dynamically adjust column widths. Omit tty
9900 column if not needed. Report stopped network processes.
9901 Identify server and datagram network processes.
9902 (Flist_processes): New optional arg `query-only'.
9903 (conv_sockaddr_to_lisp, get_lisp_to_sockaddr_size)
9904 (conv_lisp_to_sockaddr, set_socket_options)
9905 (network_process_featurep, unwind_request_sigio): New helper functions.
9906 (Fprocess_datagram_address, Fset_process_datagram_address):
9907 (Fset_network_process_options): New lisp functions.
9908 (Fopen_network_stream): Removed. Now defined in simple.el.
9909 (Fmake_network_process): New lisp function. Code is based on previous
9910 Fopen_network_stream, but heavily reworked with new property list based
9911 argument list, support for datagrams, server processes, and local
9912 sockets in addition to old client-only functionality.
9913 (server_accept_connection): New function.
9914 (wait_reading_process_input): Use it to handle incoming connects.
9915 Do not enable input on a new connection if process is stopped.
9916 (read_process_output): Handle datagram sockets. Use 2k buffer for them.
9917 (send_process): Handle datagram sockets.
9918 (Fstop_process, Fcontinue_process): Apply to network processes. A stopped
9919 network process is indicated by setting command field to t .
9920 (Fprocess_send_eof): No-op if datagram connection.
9921 (Fstatus_notify): Don't read input for a stream server socket or a
9922 stopped network process.
9923 (init_process): Initialize datagram_address array.
9924 (syms_of_process): Intern and staticpro new variables, defsubr new
9925 functions.
9926
9927 2002-03-16 Jason Rumney <jasonr@gnu.org>
9928
9929 * w32fns.c (w32_to_all_x_charsets): Return correct type in
9930 startup case.
9931
9932 2002-03-16 Richard M. Stallman <rms@gnu.org>
9933
9934 * xdisp.c (redisplay_internal, redisplay_windows):
9935 Use list_of_error to call internal_condition_case_1.
9936 (safe_eval, safe_call): Pass Qt to internal_condition_case_{1,2}
9937 so as to catch all errors with no possibility of debugger redisplay.
9938 (list_of_error): New variable.
9939 (syms_of_xdisp): Init and staticpro it.
9940
9941 * print.c (print_object): Delete `\ ' from printed rep of frame.
9942
9943 2002-03-15 Eli Zaretskii <eliz@is.elta.co.il>
9944
9945 * msdos.c (dos_rawgetc): Disable the x-autoselect-window feature,
9946 until its implementation is fixed.
9947
9948 2002-03-14 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
9949
9950 * xfns.c (png_load): Remove unused variable `gamma_str'.
9951
9952 2002-03-14 Richard M. Stallman <rms@gnu.org>
9953
9954 * xfns.c (x_real_positions): Handle failure in XQueryTree.
9955
9956 2002-03-14 Miles Bader <miles@gnu.org>
9957
9958 * intervals.c (adjust_for_invis_intang): New function.
9959 (set_point_both): Use `adjust_for_invis_intang' to do most of the
9960 work for dealing with invisible+intangible regions. Do so before
9961 and after both forward and backward movements, to handle both
9962 front-sticky and rear-sticky cases.
9963 * textprop.c (text_property_stickiness): Function moved here from
9964 `editfns.c'.
9965 * intervals.h (text_property_stickiness): New declaration.
9966 * editfns.c (char_property_eq): Function removed.
9967 (text_property_stickiness): Function moved to `textprop.c'.
9968
9969 2002-03-13 Jason Rumney <jasonr@gnu.org>
9970
9971 * config.in: Add STRFTIME_NO_POSIX2.
9972
9973 * strftime.c (my_strftime) [STRFTIME_NO_POSIX2]: Handle %h, %EX
9974 and %OX when underlying strftime does not.
9975
9976 2002-03-13 Stefan Monnier <monnier@cs.yale.edu>
9977
9978 * xterm.c (x_set_toolkit_scroll_bar_thumb) <USE_MOTIF>:
9979 Use a fixed-size thumb (based on an ad-hoc estimate of 30 chars per
9980 line) to avoid annoying flicker.
9981 (xm_scroll_callback): Get rid of the now unnecessary kludge.
9982 (XTread_socket): Mark it static.
9983
9984 * xdisp.c (display_mode_element): Fix int/Lisp_Object mixup.
9985
9986 2002-03-13 Kim F. Storm <storm@cua.dk>
9987
9988 * puresize.h (BASE_PURESIZE): Increase to 775000.
9989
9990 2002-03-12 Juanma Barranquero <lektu@terra.es>
9991
9992 * editfns.c (syms_of_editfns): Fix typo.
9993
9994 2002-03-12 Gerd Moellmann <gerd@gnu.org>
9995
9996 * xsmfns.c: Include stdio.h because termhooks.h needs it.
9997 Include termopt.h for interrupt_input.
9998
9999 2002-03-11 Andreas Schwab <schwab@suse.de>
10000
10001 * coding.c (syms_of_coding) <file-coding-system-alist>: Doc fix.
10002
10003 2002-03-11 Gerd Moellmann <gerd@gnu.org>
10004
10005 * xterm.c (note_mouse_movement): Put code for
10006 x_autoselect_window_p in #if 0.
10007
10008 * lread.c (Fload): Don't assume that message_with_string uses the
10009 string it is given like a C string.
10010
10011 2002-03-10 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10012
10013 * xterm.h (x_session_check_input, x_session_initialize): Declared.
10014
10015 * xterm.c: (XTread_socket): Add call to x_session_check_input and
10016 x_session_have_connection.
10017 (x_initialize): Add call to x_session_initialize.
10018
10019 * termhooks.h (enum event_kind): Add save_session_event.
10020
10021 * keyboard.c: Add Emacs event save_session_event.
10022
10023 * emacs.c (main): Add call to syms_of_xsmfns.
10024
10025 * lisp.h: Declare syms_of_xsmfns as extern.
10026
10027 * config.in: Add HAVE_X_SM.
10028
10029 * Makefile.in (LIBXT): Add -lSM -lICE
10030 if HAVE_X_SM and not USE_X_TOOLKIT.
10031 (XOBJ): New file xsmfns.c added.
10032
10033 * xsmfns.c: New file for X session management.
10034
10035 2002-03-09 Jason Rumney <jasonr@gnu.org>
10036
10037 * fileio.c (Fcopy_file) [WINDOWS_NT]: Ensure file is not
10038 read-only when setting modified time.
10039
10040 2002-03-08 Gerd Moellmann <gerd@gnu.org>
10041
10042 * xdisp.c (move_it_vertically_backward): At the end of the function,
10043 when moving forward by lines, treat terminal frames specially.
10044
10045 * keyboard.c (echo_char): Make sure to add a separator between
10046 keys even if echo_dash hasn't been called.
10047
10048 * xdisp.c: Use new string macros.
10049 (update_echo_area): Pass number of bytes to message3 instead of
10050 number of chars.
10051 (set_message_1): Don't access a string's size_byte directly.
10052 (decode_mode_spec_coding): Use number of bytes of eoltype string
10053 instead number of chars.
10054
10055 * lisp.h (SREF, SDATA, SCHARS, SBYTES, SMBP): New macros.
10056
10057 2002-03-08 Juanma Barranquero <lektu@terra.es>
10058
10059 * w32fns.c (Fx_display_color_cells): Force 24+ bit color depths to
10060 24-bit.
10061
10062 2002-03-06 Jason Rumney <jasonr@gnu.org>
10063
10064 * w32term.c (x_draw_hollow_cursor): Draw same size as block cursor.
10065
10066 2002-03-06 Gerd Moellmann <gerd@gnu.org>
10067
10068 * keyboard.c (echo_prompt, echo_char, echo_dash, echo_now)
10069 (cancel_echoing, echo_length, echo_truncate): Changed to
10070 work with new kboard definition.
10071 (echo_now): Use message3_nolog instead of message2_nolog.
10072
10073 * alloc.c (mark_kboards): Mark echo_string.
10074
10075 * keyboard.h (ECHOBUFSIZE): Removed.
10076 (struct kboard): Member echoptr removed, member echobuf renamed
10077 to echo_string.
10078
10079 * xdisp.c (message_with_string): Use Fformat instead of doprnt and
10080 message3 instead of message2 to display the message using STRING's
10081 text properties.
10082
10083 2002-03-05 Andreas Schwab <schwab@suse.de>
10084
10085 * xdisp.c (hscroll_margin): Change to EMACS_INT.
10086
10087 2002-03-05 Per Abrahamsen <abraham@dina.kvl.dk>
10088
10089 * frame.c (default-frame-alist): Explain that setting it doesn't
10090 affect existing frames.
10091
10092 2002-03-05 Stefan Monnier <monnier@cs.yale.edu>
10093
10094 * indent.c (skip_invisible): Fix my brain fart.
10095
10096 * dispnew.c (sit_for): Don't wait if executing a kbd macro.
10097
10098 2002-03-04 Stefan Monnier <monnier@cs.yale.edu>
10099
10100 * dosfns.c, dosfns.h, dispnew.c, dispextern.h, commands.h, charset.c,
10101 * alloc.c, abbrev.c, emacs.c, eval.c, keyboard.c, keyboard.h,
10102 * lisp.h, lread.c, sysdep.c, termcap.c, termchar.h, w32term.c,
10103 * window.c, xdisp.c, xselect.c, xterm.c: Change defvar_int definition
10104 and variables to use EMACS_INT instead of just int.
10105
10106 * buffer.c (syms_of_buffer): Allow non-string `mode-name'.
10107
10108 2002-03-04 Eli Zaretskii <eliz@is.elta.co.il>
10109
10110 * sysdep.c (sys_subshell) [MSDOS]: If PWD is set in the
10111 environment, pass it down with corrected value.
10112
10113 2002-03-04 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
10114
10115 * lread.c (read_filtered_event): Do not call start_hourglass
10116 before returning.
10117
10118 2002-03-04 Juanma Barranquero <lektu@terra.es>
10119
10120 * w32term.c (x_display_and_set_cursor): Fix typo.
10121
10122 2002-03-03 Richard M. Stallman <rms@gnu.org>
10123
10124 * fileio.c (Fmake_temp_name): Doc fix.
10125
10126 2002-03-03 Gary Wong <gtw@gnu.org>
10127
10128 * termcap.c [!emacs]: Replace ospeed for building standalone
10129 libtermcap, for binary compatibility.
10130
10131 * tparam.c [!emacs]: Move #define of bcopy to after string.h.
10132
10133 2002-03-03 Richard M. Stallman <rms@gnu.org>
10134
10135 * xrdb.c (file_p): Rename arg `path' to `filename'.
10136
10137 * abbrev.c (Fexpand_abbrev): Increment plist as use count
10138 only if it is an integer.
10139
10140 * xfns.c (png_load): Set screen_gamma based on f->gamma.
10141 If png_get_sRGB gives an answer, call png_set_gamma
10142 using the default image gamma value.
10143
10144 * lread.c (read1): When reading from a file, default string to
10145 multibyte only if it has some multibyte characters.
10146
10147 * print.c (print_object): Output multibyte chars 128...255
10148 using \x even if ! print_escape_multibyte.
10149
10150 * xdisp.c (display_mode_element): Move the places where
10151 bytepos, charpos, this, and lisp_string are set.
10152 Use lisp_string to set bytepos.
10153
10154 * xdisp.c (redisplay_internal):
10155 Call clear_image_cache only if HAVE_WINDOW_SYSTEM.
10156
10157 * xdisp.c (display_mode_element): Merge properties specified with
10158 :propertize onto those that come with the string.
10159
10160 2002-03-03 Eli Zaretskii <eliz@is.elta.co.il>
10161
10162 * xdisp.c (syms_of_xdisp) <auto-hscroll-mode>: Renamed from
10163 automatic-hscrolling. Users changed.
10164 <hscroll-margin>: Renamed from automatic-hscroll-margin.
10165 Users changed.
10166 <hscroll-step>: Renamed from automatic-hscroll-step. Users changed.
10167
10168 2002-03-02 Eli Zaretskii <eliz@is.elta.co.il>
10169
10170 * buffer.c (syms_of_buffer) <buffer-file-coding-system>: Doc fix.
10171
10172 2002-03-02 Kim F. Storm <storm@cua.dk>
10173
10174 * window.c (Fminibuffer_selected_window): New function.
10175 (syms_of_window): Defsubr it.
10176
10177 2002-03-01 Kim F. Storm <storm@cua.dk>
10178
10179 * window.h (struct window): New member phys_cursor_width.
10180
10181 * window.c (make_window, replace_window): Init phys_cursor_width.
10182
10183 * xterm.c (x_display_and_set_cursor): Blink box cursor using
10184 hollow box cursor. Blink bar cursor using 1 pixel wide bar.
10185
10186 * w32term.c (x_display_and_set_cursor): Blink box cursor using
10187 hollow box cursor. Blink bar cursor using 1 pixel wide bar.
10188
10189 * lisp.h (GCPRO6): New macro.
10190
10191 * process.c (Fopen_network_stream): Use GCPRO6.
10192
10193 2002-03-01 Kim F. Storm <storm@cua.dk>
10194
10195 * process.c (Qconnect, Qfailed): New variables.
10196 (syms_of_process): Intern and staticpro them.
10197 (Fprocess_status): Document connect and failed return values.
10198 [NON_BLOCKING_CONNECT]: New conditional.
10199 (connect_wait_mask, num_pending_connects): New variables.
10200 (status_message): Convert Qfailed status.
10201 (Fopen_network_stream): Added support for non-blocking connect.
10202 New optional args: filter, sentinel, non_blocking. Doc updated.
10203 [HAVE_GETADDRINFO, !HAVE_GETADDRINFO]: Merged common code.
10204 (deactivate_process): Handle pending non-blocking connect.
10205 (wait_reading_process_input): Poll for status of non-blocking
10206 connects. Exec sentinel directly when connect succeeds.
10207 (status_notify): Don't read process output if not yet connected.
10208
10209 2002-02-28 Kim F. Storm <storm@cua.dk>
10210
10211 * window.c: (minibuf_selected_window): Renamed from
10212 Vminibuf_selected_window. Users changed.
10213 (syms_of_window): Staticpro it.
10214
10215 2002-02-26 Kim F. Storm <storm@cua.dk>
10216
10217 The following changes add a new Vminibuf_selected_window variable
10218 which is similar to Vminibuf_scroll_window, but which is only set
10219 on entry to the minibuffer (from a non-minibuffer window):
10220
10221 * window.c: (Vminibuf_selected_window): New variable.
10222 (struct save_window_data): New member minibuf_selected_window.
10223 (Fset_window_configuration): Restore Vminibuf_selected_window.
10224 (Fcurrent_window_configuration): Save Vminibuf_selected_window.
10225 Set minibuf_scroll_window member to nil if minibuf_level is 0.
10226 (compare_window_configurations): Compare minibuf_selected_window.
10227
10228 * window.h: (Vminibuf_selected_window): Declare extern.
10229
10230 * minibuf.c (read_minibuf): Set Vminibuf_selected_window on first
10231 entry to minibuffer or on entry from a non-minibuffer window.
10232
10233 * dispextern.h (CURRENT_MODE_LINE_FACE_ID_3): Compare with
10234 Vminibuf_selected_window instead of Vminibuf_scroll_window.
10235
10236 * xdisp.c (init_iterator): Compare with Vminibuf_selected_window
10237 instead of Vminibuf_scroll_window when deciding in which window
10238 the region should be highlighted. Consequently, the region remains
10239 highlighteded even when a completion buffer is also displayed.
10240
10241 2002-02-26 Eli Zaretskii <eliz@is.elta.co.il>
10242
10243 * fileio.c (Fsubstitute_in_file_name): Fix the change from 2002-02-08.
10244
10245 * xselect.c (Qcompound_text_with_extensions): Renamed from
10246 Qcompound_text_no_extensions.
10247 (lisp_data_to_selection_data, syms_of_xselect): Use the new name.
10248
10249 2002-02-26 Juanma Barranquero <lektu@terra.es>
10250
10251 * w32proc.c (syms_of_ntproc): Doc fix.
10252
10253 2002-02-24 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
10254
10255 * intervals.h: Include "dispextern.h" unconditionally.
10256
10257 2002-02-24 Jason Rumney <jasonr@gnu.org>
10258
10259 * Makefile.in (WINNT_SUPPORT) [WINDOWSNT]: Add w32-vars.elc
10260 and disp-table.elc.
10261 (lisp): Add emacs-lisp/backquote.elc.
10262
10263 2002-02-24 Kim F. Storm <storm@cua.dk>
10264
10265 * keymap.c (Flookup_key): Fixed problem in 2001-12-28 patch:
10266 The validation of the event type was too strict as it didn't
10267 allow string events; buffer names are used in bindings for
10268 menu-bar-select-buffer (see `menu-bar-update-buffers').
10269
10270 2002-02-23 Kim F. Storm <storm@cua.dk>
10271
10272 The following changes rework my patch of 2002-02-06 which
10273 added command remapping by entering the commands directly into
10274 the keymaps. Now, command remapping uses an explicit `remap'
10275 prefix in the keymaps, i.e. [remap COMMAND].
10276
10277 * keymap.c (Qremap, remap_command_vector): New variables.
10278 (is_command_symbol): Removed function.
10279 (Fdefine_key): No longer accept a symbol for KEY.
10280 Added validation of [remap COMMAND] argument for KEY.
10281 The DEF is no longer required to be a symbol when remapping a command.
10282 (Fremap_command): New function to remap command through keymaps.
10283 (Flookup_key): Perform command remapping initiated by
10284 Fremap_command directly for speed.
10285 (Fkey_binding): Use Fremap_command for command remapping.
10286 (where_is_internal): Handle new command remapping representation.
10287 (syms_of_keymap): Intern Qremap, initialize remap_command_vector,
10288 staticpro them. Defsubr Fremap_command.
10289
10290 * keymap.h (Fremap_command): Declare extern.
10291 (is_command_symbol): Remove extern.
10292
10293 * keyboard.c (command_loop_1): Use Fremap_command for command
10294 remapping; now try command remapping for all symbols.
10295
10296 2002-02-23 Eli Zaretskii <eliz@is.elta.co.il>
10297
10298 * coding.h (run_pre_post_conversion_on_str): Add prototype.
10299
10300 2002-02-23 Jason Rumney <jasonr@gnu.org>
10301
10302 * w32select.c (Fw32_set_clipboard_data): Run pre-write-conversion
10303 on the string before encoding it.
10304 (Fw32_get_clipboard_data): Run post-read-conversion on the string
10305 after decoding it.
10306
10307 * w32fns.c (w32_wnd_proc) <WM_TIMER>: Fix last change.
10308
10309 2002-02-23 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
10310
10311 * w32term.c (enter_timestamp): Remove unused static variable to
10312 prevent warning.
10313
10314 * xterm.c (enter_timestamp): Put in #if 0 to prevent warning.
10315
10316 2002-02-23 Eli Zaretskii <eliz@is.elta.co.il>
10317
10318 * w16select.c (Fw16_get_clipboard_data): Fix last change.
10319
10320 * xselect.c (selection_data_to_lisp_data): Fix last change.
10321
10322 2002-02-22 Jason Rumney <jasonr@gnu.org>
10323
10324 * w32term.h (struct w32_output): New member menu_command_in_progress.
10325
10326 * w32menu.c (menubar_selection_callback): Free the menu and
10327 clear the menu_command_in_progress flag.
10328
10329 * w32fns.c (mouse_move_timer, mouse_button_timer): Initialize.
10330 (menu_free_timer): New variable.
10331 (MENU_FREE_ID, MENU_FREE_DELAY): New constants.
10332 (w32_wnd_proc) <WM_TIMER>: Handle menu_free_timer.
10333 <WM_EXITMENULOOP>: Delay before freeing menu. Do nothing if a
10334 menu command is in progress.
10335 <WM_COMMAND>: Set the menu_command_in_progress flag.
10336 Kill any menu_free_timer that is running.
10337
10338 * w32term.c (w32_text_out): Renamed from W32_TEXTOUT.
10339 Call ExtTextOutA rather than ExtTextOut.
10340
10341 2002-02-22 Eli Zaretskii <eliz@gnu.org>
10342
10343 * puresize.h (BASE_PURESIZE): Increase to 755000.
10344
10345 2002-02-22 Eli Zaretskii <eliz@is.elta.co.il>
10346
10347 * w16select.c (Fw16_set_clipboard_data): Run pre-write-conversion
10348 on the string before encoding it.
10349 (Fw16_get_clipboard_data): Run post-read-conversion on the string
10350 after decoding it.
10351
10352 2002-02-22 Eli Zaretskii <eliz@is.elta.co.il>
10353
10354 Support for ICCCM Extended Segments in X selections:
10355
10356 * xselect.c <Qcompound_text_no_extensions>: New variable.
10357 (syms_of_xselect): Intern and staticpro it.
10358 (selection_data_to_lisp_data): Run post-read-conversion on decoded
10359 selection text.
10360 (lisp_data_to_selection_data): If next-selection-coding-system is
10361 compound-text-no-extensions, set the type of selection to be
10362 compound-text.
10363
10364 * xterm.h (x_encode_text): Update prototype.
10365
10366 * xfns.c (x_encode_text): Accept additional arg SELECTIONP; all
10367 callers changed. If SELECTIONP is non-zero, run the
10368 pre-write-conversion function before encoding the selection text.
10369
10370 2002-02-21 Kim F. Storm <storm@cua.dk>
10371
10372 * frame.c (syms_of_frame): Change mouse-highlight default to t.
10373
10374 * keyboard.c (kbd_buffer_get_event) [WINDOWSNT]:
10375 Correct composing of language-change event.
10376
10377 2002-02-20 Kim F. Storm <storm@cua.dk>
10378
10379 * keyboard.c (menu_bar_items): Don't include keymap or local-map
10380 bindings at PT when building menu (the menu is not updated often
10381 enough for this to work reliable).
10382 (tool_bar_items): Likewise.
10383 (current_active_maps): Removed unused (and buggy) function.
10384
10385 2002-02-20 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
10386
10387 * xfns.c (gif_load): Use correct width and height for GIF images.
10388
10389 2002-02-19 Eli Zaretskii <eliz@is.elta.co.il>
10390
10391 * floatfns.c (Fatan): Accept an optional second arg and call
10392 atan2 if passed 2 args.
10393
10394 2002-02-18 Jason Rumney <jasonr@gnu.org>
10395
10396 * w32term.c (glyph_rect): Determine the row and glyph more precisely.
10397
10398 2002-02-17 Jason Rumney <jasonr@gnu.org>
10399
10400 * w32term.c (x_autoselect_window_p): New variable.
10401 (syms_of_w32term): DEFVAR_BOOL and initialize it.
10402 (note_mouse_movement): Use it.
10403
10404 * w32fns.c (w32_load_system_font): Never set fonts_changed_p to zero.
10405
10406 * w32bdf.c (w32_load_bdf_font): Maybe set fonts_changed_p.
10407
10408 * w32fns.c (Qfullscreen, Qfullwidth, Qfullheight, Qfullboth):
10409 New variables.
10410 (syms_of_w32fns): Intern and staticpro them.
10411 (x_frame_parms) <"fullscreen">: New parameter.
10412 (x_fullscreen_move, x_set_fullscreen): New functions.
10413 (x_set_frame_parameters): Support Qfullscreen.
10414 (x_real_positions): Save x/y_pixels_diff frame params.
10415 (x_figure_window_size): Support full-screen frames.
10416 (Fx_create_frame): Default the fullscreen parameter.
10417
10418 * w32term.c (x_check_fullscreen, x_check_fullscreen_move)
10419 (x_fullscreen_adjust): New functions.
10420 (w32_read_socket) <WM_WINDOWPOSCHANGED>: Don't resize to
10421 fullscreen. Call x_check_fullscreen_move, and set the
10422 want_fullscreen member of output_data.w32
10423 <WM_ACTIVATE, WM_ACTIVATEAPP>: Call x_check_fullscreen.
10424
10425 * w32term.h: New enum for FULLSCREEN_* constants.
10426 (struct w32_output): New members want_fullscreen, x_pixels_diff,
10427 y_pixels_diff, x_pixels_outer_diff, and y_pixels_outer_diff.
10428 (x-fullscreen-adjust): New prototype.
10429
10430 2002-02-17 Kim F. Storm <storm@cua.dk>
10431
10432 * frame.c: (Vmouse_highlight): New variable.
10433 (syms_of_frame): DEFVAR_LISP it.
10434
10435 * frame.h: (Vmouse_highlight): Declare extern.
10436
10437 * xterm.h (struct x_display_info): Add mouse_face_hidden.
10438
10439 * xterm.c (disable_mouse_highlight): Removed variable.
10440 (note_mouse_highlight): Don't highlight if Vmouse_highlight is nil.
10441 (show_mouse_face): Don't show highlight if mouse_face_hidden is set.
10442 (XTread_socket): Turn mouse_face_hidden off after mouse movement,
10443 and on after keyboard input.
10444 (x_term_init): Initialize mouse_face_hidden.
10445
10446 * msdos.h (struct display_info): Add mouse_face_hidden.
10447
10448 * msdos.c (disable_mouse_highlight): Removed variable.
10449 (show_mouse_face): Don't show highlight if mouse_face_hidden is set.
10450 (IT_note_mouse_highlight): Don't highlight if Vmouse_highlight is nil.
10451 (internal_terminal_init): Initialize mouse_face_hidden.
10452 (dos_rawgetc): Turn mouse_face_hidden off after mouse movement,
10453 and on after keyboard input.
10454
10455 * w32term.h (struct w32_display_info): Add mouse_face_hidden.
10456
10457 * w32term.c (disable_mouse_highlight): Removed variable.
10458 (note_mouse_highlight): Disable highlight if Vmouse_highlight is nil.
10459 (show_mouse_face): Don't show highlight if mouse_face_hidden is set.
10460 (w32_read_socket): Turn mouse_face_hidden off after mouse movement,
10461 and on after keyboard input.
10462 (w32_initialize_display_info): Initialize mouse_face_hidden.
10463
10464 2002-02-16 Eli Zaretskii <eliz@is.elta.co.il>
10465
10466 * msdos.c (last_mouse_window): New variable.
10467 (dos_rawgetc): Fix last change--if the mouse is in the same window
10468 as recorded in last_mouse_window, don't select this window.
10469
10470 * Makefile.in (lisp, shortlisp): Use cus-start.elc, not cus-start.el.
10471
10472 * msdos.c (x_autoselect_window_p): New variable.
10473 (syms_of_msdos): Defvar it.
10474 (dos_rawgetc): If x_autoselect_window_p is set, select the window in
10475 which the last mouse movement occured, unless it is already selected.
10476
10477 * xdisp.c (automatic_hscroll_margin, Vautomatic_hscroll_step):
10478 New variables.
10479 (syms_of_xdisp): DEVFAR them.
10480 (hscroll_window_tree): Use automatic_hscroll_margin and
10481 Vautomatic_hscroll_step to compute the amount of window scrolling.
10482
10483 2002-02-16 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
10484
10485 * xterm.c (x-autoselect-window): New variable.
10486 (note_mouse_movement): Use it.
10487
10488 * keyboard.c: Do not include "systime.h" twice.
10489
10490 2002-02-15 Andreas Schwab <schwab@suse.de>
10491
10492 * puresize.h (BASE_PURESIZE): Increase to 9/5.
10493
10494 * alloc.c (NSTATICS): Increase to 1280.
10495
10496 2002-02-15 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
10497
10498 * alloc.c (NSTATICS): Bump to 1026.
10499
10500 * xterm.c (Vx_alt_keysym, Vx_hyper_keysym, Vx_meta_keysym)
10501 (Vx_super_keysym): New variables.
10502 (syms_of_xterm): DEFVAR_LISP them.
10503 (x_x_to_emacs_modifiers, x_emacs_to_x_modifiers): Use the
10504 variables to determine which keys to use for the various modifiers.
10505
10506 2002-02-13 Kim F. Storm <storm@cua.dk>
10507
10508 * window.c: (Vmode_line_in_non_selected_windows): Removed.
10509 (mode_line_in_non_selected_windows): New variable.
10510 (syms_of_window): DEFVAR_BOOL it.
10511
10512 * dispextern.h (CURRENT_MODE_LINE_FACE_ID_3):
10513 Use mode_line_in_non_selected_windows.
10514 (mode_line_in_non_selected_windows): Declare extern.
10515 (Vmode_line_in_non_selected_windows): Removed extern.
10516
10517 2002-02-13 Richard M. Stallman <rms@gnu.org>
10518
10519 * keyboard.c (Fthis_command_keys, Fthis_command_keys_vector)
10520 (Fthis_single_command_keys, Fthis_single_command_raw_keys)
10521 (Fclear_this_command_keys): Doc fixes.
10522
10523 * xfaces.c (Finternal_make_lisp_face, Finternal_copy_lisp_face)
10524 (update_face_from_frame_parameter): Increment face_change_count
10525 and windows_or_buffers_changed to force redisplay using changed faces.
10526
10527 * xdisp.c (QCpropertize): New variable.
10528 (mode_line_proptrans_alist): New variable.
10529 (display_mode_element): New arg PROPS; all calls changed.
10530 Implement this, for strings.
10531 Handle literal output of strings by sharing the
10532 main-line code for strings, using local var `literal'.
10533 Handle :propertize feature.
10534 (syms_of_xdisp): Initialze and staticpro QCpropertize and
10535 mode_line_proptrans_alist.
10536
10537 2002-02-11 Kim F. Storm <storm@cua.dk>
10538
10539 * window.c: (Vmode_line_in_non_selected_windows): New variable.
10540 (syms_of_window): DEFVAR_LISP it.
10541
10542 * dispextern.h (CURRENT_MODE_LINE_FACE_ID_3): New macro.
10543 (CURRENT_MODE_LINE_FACE_ID): Use it.
10544 (Vmode_line_in_non_selected_windows): Declare extern.
10545
10546 * xdisp.c (display_mode_lines): Use CURRENT_MODE_LINE_FACE_ID_3
10547 to get mode line face.
10548
10549 2002-02-11 Eli Zaretskii <eliz@is.elta.co.il>
10550
10551 * msdos.c (Vx_bitmap_file_path, x_stretch_cursor_p): Remove these
10552 variables; cus-start.el doesn't need them anymore.
10553
10554 2002-02-09 Kim F. Storm <storm@cua.dk>
10555
10556 * insdel.c (make_gap_smaller): Preserve BEG_UNCHANGED during gap
10557 reduction. This fixes a display problem where stray newlines were
10558 inserted in the window (corrected by C-l). Clarified code (IMHO).
10559
10560 2002-02-09 Eli Zaretskii <eliz@is.elta.co.il>
10561
10562 * dispextern.h (CURRENT_MODE_LINE_FACE_ID): Fix last change.
10563
10564 * xdisp.c (display_mode_lines): Fix last change.
10565
10566 2002-02-09 Jason Rumney <jasonr@gnu.org>
10567
10568 * w32fns.c (enum_font_cb2): Don't let charsets unknown to Windows
10569 match each other.
10570 (w32_load_system_font): Prevent Cleartype fonts from loading.
10571 (Fx_show_tip): Ensure tip frames are above other topmost windows.
10572
10573 2002-02-09 Kim F. Storm <storm@cua.dk>
10574
10575 * dispextern.h (CURRENT_MODE_LINE_FACE_ID): New macro.
10576 (CURRENT_MODE_LINE_HEIGHT): Use it.
10577 (enum face_id): Add MODE_LINE_INACTIVE_FACE_ID.
10578
10579 * xdisp.c (window_box_height): Use CURRENT_MODE_LINE_FACE_ID.
10580 (pos_visible_p, handle_face_prop): Likewise.
10581 (display_mode_lines): Likewise, but for the real selected window.
10582 (init_iterator) [row == NULL]: Handle MODE_LINE_INACTIVE_FACE_ID.
10583
10584 * xfaces.c (Qmode_line_inactive): New face variable for mode-line
10585 in non-selected windows.
10586 (realize_basic_faces): Realize it.
10587 (syms_of_term): Intern and staticpro it.
10588
10589 2002-02-08 Kim F. Storm <storm@cua.dk>
10590
10591 * alloc.c (SETJMP_WILL_LIKELY_WORK, SETJMP_WILL_NOT_WORK):
10592 Changed mail addresses to emacs-devel@gnu.org.
10593
10594 2002-02-08 Eli Zaretskii <eliz@is.elta.co.il>
10595
10596 * fileio.c (Fsubstitute_in_file_name): If the file name includes
10597 ~user, and there's no such user, don't discard everything before ~user.
10598
10599 * floatfns.c (Fround): Doc fix.
10600
10601 2002-02-08 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
10602
10603 * sysdep.c (init_system_name): Put unused variable `p' in #if 0.
10604
10605 2002-02-07 Stefan Monnier <monnier@cs.yale.edu>
10606
10607 * lisp.h (Fx_file_dialog): Add extern decl (used in fileio.c).
10608
10609 2002-02-07 Kim F. Storm <storm@cua.dk>
10610
10611 * keymap.c (where_is_internal): Only check whether definition is
10612 remapped if it fulfills is_command_symbol.
10613
10614 2002-02-07 Andreas Schwab <schwab@suse.de>
10615
10616 * s/gnu-linux.h (GC_LISP_OBJECT_ALIGNMENT): Define to 2 for m68k.
10617
10618 * alloc.c (mark_stack): Don't assume sizeof (Lisp_Object) is 4.
10619
10620 2002-02-06 Kim F. Storm <storm@cua.dk>
10621
10622 * keymap.c (Fdefine_key): Allow symbol as KEY argument for
10623 defining command remapping. Doc updated.
10624 (Flookup_key): Remap command through keymap if KEY is a symbol.
10625 (is_command_symbol): New function.
10626 (Fkey_binding): Use it. New optional argument NO-REMAP.
10627 Doc updated. Callers changed. Perform command remapping via
10628 recursive call unless that arg is non-nil.
10629 (where_is_internal): New argument no_remap. Callers changed.
10630 Call recursively to find original key bindings for a remapped
10631 comand unless that arg is non-nil.
10632 (Fwhere_is_internal): New optional argument NO-REMAP.
10633 Doc updated. Callers changed. Pass arg to where_is_internal.
10634
10635 * keymap.h (Fkey_binding, Fwhere_is_internal): Update prototype.
10636 (is_command_symbol): Added prototype.
10637
10638 * keyboard.c (Vthis_original_command): New variable.
10639 (syms_of_keyboard): DEFVAR_LISP it.
10640 (command_loop_1): Set it, and perform command remapping.
10641
10642 2002-02-06 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
10643
10644 * keyboard.c (recursive_edit_1): Call cancel_hourglass unconditionally.
10645
10646 2002-02-06 Jason Rumney <jasonr@gnu.org>
10647
10648 * w32term.c (w32_native_per_char_metric): Disable 2002-01-20 change.
10649
10650 2002-02-06 Eli Zaretskii <eliz@is.elta.co.il>
10651
10652 * charset.c (get_charset_id): Use if-else instead of ?:.
10653
10654 2002-02-06 Richard M. Stallman <rms@gnu.org>
10655
10656 * filelock.c (S_ISLNK): Define if not defined.
10657
10658 2002-02-03 Richard M. Stallman <rms@gnu.org>
10659
10660 * fileio.c (Fdo_auto_save): Improve "auto save disabled" msg.
10661
10662 * lread.c (read1): Redesign strategy for force_multibyte and
10663 force_singlebyte. Now is_multibyte records whether read_buffer
10664 is multibyte. Encountering any multibyte character makes it so.
10665
10666 2002-02-02 Stefan Monnier <monnier@cs.yale.edu>
10667
10668 * term.c (term_get_fkeys_1): If `k0' and `k;' are both specified and
10669 with the same sequence, map that sequence to f10 rather than f0.
10670
10671 2002-02-03 Andreas Schwab <schwab@suse.de>
10672
10673 * s/gnu-linux.h: Check for __mc68000__ instead of __m68k__, the
10674 latter never being defined on GNU/Linux.
10675
10676 2002-02-02 Eli Zaretskii <eliz@is.elta.co.il>
10677
10678 * xfaces.c (realize_default_face): Don't set the weight and slant of
10679 the default face to Qnormal, unless these attributes are unspecified.
10680
10681 2002-02-02 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
10682
10683 * keyboard.c (command_loop_1) [HAVE_X_WINDOWS]:
10684 Call cancel_hourglass unconditionally.
10685
10686 * eval.c (Fsignal): Remove duplicated declaration of
10687 the variable `display_hourglass_p'.
10688
10689 2002-01-31 Richard M. Stallman <rms@gnu.org>
10690
10691 * editfns.c (region_limit): Nicer error message.
10692
10693 * coding.c (decode_composition_emacs_mule):
10694 Give up if NCOMPONENT gets too large to index `component'.
10695
10696 * callint.c (check_mark): New arg to specify clearer error message.
10697 Callers changed.
10698
10699 2002-01-27 Richard M. Stallman <rms@gnu.org>
10700
10701 * minibuf.c (Fcompleting_read): Doc fix.
10702
10703 2002-01-27 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
10704
10705 * minibuf.c (Fread_from_minibuffer, Fread_command, Fread_function)
10706 (Fread_variable, Fread_buffer, minibuffer-completion-confirm):
10707 Fix doc-strings.
10708
10709 2002-01-26 Richard M. Stallman <rms@gnu.org>
10710
10711 * buffer.c (syms_of_buffer): Doc fixes for scroll-...-aggressively.
10712
10713 * xdisp.c (try_scrolling): Exchange uses of scroll_down_aggressively
10714 and scroll_up_aggressively.
10715
10716 2002-01-26 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
10717
10718 * keyboard.c (parse_tool_bar_item): Remove duplicated prototypes.
10719
10720 2002-01-25 Stefan Monnier <monnier@cs.yale.edu>
10721
10722 * textprop.c (Fnext_property_change, Fnext_single_property_change)
10723 (Fprevious_property_change, Fprevious_single_property_change):
10724 Stay within the narrowed-buffer boundaries.
10725
10726 2002-01-25 Eli Zaretskii <eliz@is.elta.co.il>
10727
10728 * term.c (Ftty_display_color_cells): New function.
10729 (syms_of_term): Defsubr it.
10730 (Ftty_display_color_cells, Ftty_display_color_p): Change the
10731 argument name to DISPLAY. Doc fix.
10732
10733 * dispextern.h: Add prototype for set_tty_color_mode and
10734 tty_setup_colors.
10735
10736 2002-01-24 Jason Rumney <jasonr@gnu.org>
10737
10738 * w32term.c (x_scroll_run): Use ScrollWindowEx in place of BitBlt.
10739 If region left to draw is not what was expected, mark the frame as
10740 garbaged.
10741
10742 * w32fns.c (w32_wnd_proc) <WM_PAINT>: Initialize update_rect.
10743 Combine the regions returned by BeginPaint and GetUpdateRect.
10744
10745 2002-01-23 Jason Rumney <jasonr@gnu.org>
10746
10747 * w32term.c (x_update_window_begin): Only hide caret if
10748 w32_use_visible_system_caret is set.
10749 (x_update_window_end): Only show caret if
10750 w32_use_visible_system_caret is set.
10751 (syms_of_w32term): Handle SystemParametersInfo call failing.
10752
10753 * w32fns.c (syms_of_w32fns): Initialize w32_visible_system_caret_hwnd.
10754
10755 2002-01-22 Richard M. Stallman <rms@gnu.org>
10756
10757 * unexelf.c (unexec): Define n so as to cause compilation error
10758 for the code where people have often written n instead of nn.
10759
10760 * .gdbinit (hookpost-run): Defined.
10761
10762 2002-01-22 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10763
10764 * xfns.c (x_set_frame_parameters): Typo in previous fix corrected.
10765
10766 2002-01-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10767
10768 * xfns.c (x_set_frame_parameters): Just call x_fullscreen_adjust
10769 if fullscreen is being set.
10770
10771 2002-01-21 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
10772
10773 * minibuf.c (Fminibuffer_contents)
10774 (Fminibuffer_contents_no_properties, Fread_from_minibuffer)
10775 (Fread_string, Fread_no_blanks_input, Fcompleting_read): Doc fixes.
10776
10777 2002-01-21 Richard M. Stallman <rms@gnu.org>
10778
10779 * window.c (check_frame_size): Fix minimum height calculation.
10780
10781 2002-01-20 Ken Raeburn <raeburn@gnu.org>
10782
10783 * dispextern.h (WINDOW_WANTS_MODELINE_P): Use XFASTINT on window
10784 height before comparison.
10785 (WINDOW_WANTS_HEADER_LINE_P): Likewise.
10786
10787 2002-01-20 Jason Rumney <jasonr@gnu.org>
10788
10789 * w32term.c (w32_system_caret_width): Remove.
10790 (w32_use_visible_system_caret): New user flag.
10791 (syms_of_w32term): DEFVAR_BOOL it. Initialize based on whether
10792 Windows reports a screen reader running.
10793 (x_update_window_begin): Hide the system caret.
10794 (x_update_window_end): Show the system caret.
10795 (x_display_and_set_cursor): Don't draw a cursor when
10796 w32_use_visible_system_caret is set. Do not adjust width.
10797
10798 * w32fns.c (w32_visible_system_caret_hwnd): New static variable.
10799 (w32_wnd_proc) <WM_KILL_FOCUS, WM_EMACS_DESTROY_CARET>: Set it.
10800 <WM_EMACS_TRACK_CARET>: Arrange for system caret to be visible if
10801 the user requests it. Use system default width when creating.
10802 <WM_EMACS_HIDE_CARET, WM_EMACS_SHOW_CARET>: Handle new messages.
10803
10804 * w32term.h (WM_EMACS_SHOW_CARET, WM_EMACS_HIDE_CARET):
10805 New window messages.
10806
10807 2002-01-20 Richard M. Stallman <rms@gnu.org>
10808
10809 * window.c (MIN_SAFE_WINDOW_HEIGHT): Value now 1.
10810
10811 2002-01-20 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
10812
10813 * doprnt.c (doprnt1): Fix typos in error call.
10814
10815 2002-01-20 Eli Zaretskii <eliz@is.elta.co.il>
10816
10817 * unexelf.c (unexec) [__sgi]: Support the .got sections.
10818
10819 2002-01-20 Jason Rumney <jasonr@gnu.org>
10820
10821 * w32term.c (w32_native_per_char_metric): Don't trust the metrics
10822 that Windows returns. If a double check fails, try to guess how
10823 ExtTextOut is going to act.
10824
10825 * w32fns.c (w32_load_system_font, w32_to_x_charset): Use strnicmp
10826 in place of stricmp.
10827 (w32_list_synthesized_fonts): Removed.
10828 (w32_to_all_x_charsets, enum_font_maybe_add_to_list): New functions.
10829 (struct enumfont_t): New element; list.
10830 (enum_font_cb2): List all style and charset variations of a font.
10831 (Fw32_select_font): New optional argument; include_proportional.
10832 Exclude vertical fonts. Exclude proportional fonts unless
10833 include_proportional is non-nil.
10834 (w32_enable_synthesized_fonts): Change to a boolean.
10835 (Fw32_send_sys_command): Doc fix.
10836
10837 2002-01-19 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
10838
10839 * dispnew.c (update_frame): Move the variable `tem' to the block
10840 where it is used.
10841
10842 2002-01-19 Jason Rumney <jasonr@gnu.org>
10843
10844 * w32fns.c (Fx_create_frame): Bind redisplay-dont-pause around
10845 call to face-set-after-frame-default.
10846
10847 2002-01-18 Richard M. Stallman <rms@gnu.org>
10848
10849 * dispextern.h (WINDOW_WANTS_MODELINE_P): Check window height > 1.
10850 (WINDOW_WANTS_HEADER_LINE_P): Check window height provides room.
10851
10852 2002-01-17 Richard M. Stallman <rms@gnu.org>
10853
10854 * window.c (enlarge_window): When exceeding size of parent,
10855 directly delete all the siblings instead of trying to resize it.
10856
10857 2002-01-17 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
10858
10859 * term.c (set_tty_color_mode): Remove unused variable `tem'.
10860
10861 2002-01-16 Henrik Enberg <henrik@enberg.org>
10862
10863 * lread.c (init_lread): Move the installed-lisp dirs later in the path.
10864
10865 2002-01-16 Kim F. Storm <storm@cua.dk>
10866
10867 * xterm.c (x_erase_phys_cursor): Don't erase cursor if cursor row
10868 is invisible. This can happen if cursor is on top line of a
10869 window, and we switch to a buffer with a header line.
10870
10871 * w32term.c (x_erase_phys_cursor): Ditto.
10872
10873 2002-01-16 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
10874
10875 * xterm.c (XTread_socket) [!USE_X_TOOLKIT]: Compute the value of
10876 `dont_resize' only when used.
10877
10878 * xdisp.c: Remove forgotten extern declaration of `Qimage'.
10879
10880 2002-01-15 Eli Zaretskii <eliz@is.elta.co.il>
10881
10882 * xdisp.c (display_mode_element): When computing charpos, depend
10883 on multibyteness of elt, not the text in field.
10884
10885 2002-01-15 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
10886
10887 * buffer.c (Fkill_all_local_variables):
10888 Increment `update_mode_lines' only once.
10889
10890 2002-01-14 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
10891
10892 * lisp.h (adjust_after_replace_noundo)
10893 (Fupdate_coding_systems_internal): Add prototypes.
10894
10895 * sound.c (Fplay_sound): Initialize header_size also for :data case.
10896
10897 2002-01-14 Eli Zaretskii <eliz@is.elta.co.il>
10898
10899 Support for the --color command-line argument and tty-color-mode
10900 frame parameter:
10901
10902 * term.c (tty_default_color_capabilities, tty_setup_colors)
10903 (set_tty_color_mode): New functions.
10904 (term_init): Call tty_default_color_capabilities.
10905 (Qtty_color_mode_alist): New variable.
10906 (syms_of_term): Intern and staticpro it.
10907
10908 * frame.c (store_frame_param): Call set_tty_color_mode for termcap
10909 frames.
10910 (do_switch_frame): For termcap frames, switch the tty
10911 color mode as specified by the frame's parameters.
10912 (Qtty_color_mode): New variable.
10913 (syms_of_frame): Intern and staticpro it.
10914
10915 * emacs.c (USAGE2): Add the --color option.
10916 (standard_args): Ditto.
10917
10918 2002-01-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10919
10920 * xterm.h (struct x_output): New members want_fullscreen,
10921 x_pixels_diff, y_pixels_diff, x_pixels_outer_diff, and
10922 y_pixels_outer_diff.
10923 New enum for FULLSCREEN_* constants.
10924 (FRAME_OUTER_WINDOW): Handle the case where output_data.x->widget
10925 is NULL.
10926 (x_fullscreen_adjust): Add prototype.
10927
10928 * emacs.c (USAGE2): Add the new full-screen arguments.
10929 (standard_args): Ditto.
10930
10931 * xfns.c (Qfullscreen, Qfullwidth, Qfullheight, Qfullboth):
10932 New variables.
10933 (syms_of_xfns): Intern and staticpro them.
10934 (x_frame_parms) <"fullscreen">: New parameter.
10935 (x_fullscreen_move, x_set_fullscreen): New functions.
10936 (x_set_frame_parameters): Support for Qfullscreen.
10937 (x_real_positions): More accurate computation of the frame position.
10938 (x_figure_window_size): Support full-screen frames.
10939 (Fx_create_frame): Default the fullscreen parameter.
10940
10941 * xterm.c (x_check_fullscreen, x_fullscreen_adjust): New functions.
10942 (XTread_socket) <Expose>: Call x_check_fullscreen.
10943 <ConfigureNotify>: Don't resize to fullscreen.
10944 Call x_check_fullscreen_move, and set the want_fullscreen member of
10945 output_data.x.
10946
10947 2002-01-13 Jason Rumney <jasonr@gnu.org>
10948
10949 * w32term.h (WM_XBUTTONDOWN, WM_XBUTTONUP): New window messages
10950 for mice with more than 3 buttons.
10951
10952 * w32term.c (parse_button): New parameter xbutton. Callers changed.
10953 (w32_read_socket): Handle new "XBUTTON" messages.
10954
10955 * w32fns.c (w32_pass_extra_mouse_buttons_to_system): New user option.
10956 (syms_of_w32fns): DEFVAR_BOOL it.
10957 (w32_wnd_proc): Handle new "XBUTTON" messages.
10958
10959 2002-01-13 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
10960
10961 * keyboard.c (read_key_sequence): Remove unused variable `extra_maps'.
10962
10963 2002-01-13 Andreas Schwab <schwab@suse.de>
10964
10965 * xterm.c (x_load_font): Never set fonts_changed_p to zero.
10966
10967 2002-01-12 Andreas Schwab <schwab@suse.de>
10968
10969 * .gdbinit (xbuffer): Remove address operator since data is now a
10970 pointer.
10971
10972 2002-01-11 Richard M. Stallman <rms@gnu.org>
10973
10974 * insdel.c (adjust_after_replace_noundo): New function.
10975
10976 * coding.c (code_convert_region): Don't copy old text if undo disabled.
10977
10978 2002-01-09 Jason Rumney <jasonr@gnu.org>
10979
10980 * xdisp.c (x_consider_frame_title): Don't count the tooltip frame
10981 when checking for multiple frames.
10982
10983 2002-01-08 Richard M. Stallman <rms@gnu.org>
10984
10985 * window.c (delete_window): Rewrite the code for changing the
10986 selected window to handle the case where WINDOW is not a leaf.
10987
10988 2002-01-07 Eli Zaretskii <eliz@is.elta.co.il>
10989
10990 * process.c (send_process): Set src_multibyte to 1 after the call
10991 top setup_coding_system, not before the call.
10992
10993 2002-01-07 Jason Rumney <jasonr@gnu.org>
10994
10995 * xmenu.c (set_frame_menubar, xmenu_show):
10996 (xdialog_show): Initialize wv->help to Qnil.
10997
10998 * w32menu.c (single_submenu, set_frame_menubar, w32_menu_show):
10999 (w32_dialog_show): Initialize wv->help to Qnil.
11000
11001 2002-01-06 Jason Rumney <jasonr@gnu.org>
11002
11003 * xmenu.c (single_submenu): Initialize wv->help to Qnil.
11004
11005 * w32menu.c (w32_menu_display_help): Revert last change.
11006
11007 * xmenu.c (menu_highlight_callback): Revert last change.
11008
11009 2002-01-06 Andreas Schwab <schwab@suse.de>
11010
11011 * insdel.c (make_gap_larger): Make sure buffer size does not
11012 overflow range of int.
11013
11014 2002-01-05 Jason Rumney <jasonr@gnu.org>
11015
11016 * w32term.c (x_draw_glyphs): Don't call notice_overwritten_cursor if
11017 OVERLAPS_P.
11018
11019 * w32menu.c (w32_menu_display_help): Hide any tooltip window.
11020
11021 * w32fns.c (compute_tip_xy): If tooltip won't fit on the screen
11022 to the left or to the right of the pointer, put it against
11023 the left screen edge.
11024 (x_frame_parms): Add missing braces around initializer.
11025
11026 * w32term.c (x_setup_relief_colors): Don't compute an image's
11027 background color if it doesn't have a Pixmap.
11028 (notice_overwritten_cursor): Don't depend on
11029 output_cursor and updated_area. Compare pixel coordinates with
11030 window's cursor pixel coordinates.
11031 (x_draw_glyphs, x_clear_end_of_line, show_mouse_face):
11032 Call notice_overwritten_cursor with new arg list.
11033 (show_mouse_face): Fix bug setting a row's mouse_face_p flag
11034 unconditionally.
11035 (x_draw_image_relief): Use predefined macro instead of
11036 constant when the value of `tool_bar_button_relief' is negative.
11037
11038 * w32term.c (x_display_and_set_cursor): Fix PostMessage arg types.
11039
11040 2002-01-04 Richard M. Stallman <rms@gnu.org>
11041
11042 * xmenu.c (menu_highlight_callback): Hide any tooltip window.
11043
11044 2002-01-03 Richard M. Stallman <rms@gnu.org>
11045
11046 * keymap.c (Fcurrent_active_maps): Put the `keymap' property map first.
11047 (Fkey_binding): Try the `keymap' property map first.
11048 (Fdescribe_buffer_bindings): Show `keymap' property bindings before
11049 minor mode bindings.
11050
11051 2002-01-03 Kim F. Storm <storm@cua.dk>
11052
11053 * keyboard.c (read_key_sequence): Fixed cast of submaps arg to bcopy.
11054
11055 2002-01-02 Richard M. Stallman <rms@gnu.org>
11056
11057 * keyboard.c (read_key_sequence): Handle the keymap property
11058 before minor mode maps.
11059
11060 * editfns.c (Fformat): Update thissize from field_width
11061 based on the actual width, in the string case.
11062
11063 2002-01-01 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11064
11065 * charset.h (UNIBYTE_STR_AS_MULTIBYTE_P): Parenthesize assignment
11066 when used as truth value to prevent gcc warnings.
11067
11068 * sysdep.c, unexapollo.c, w32.c, w32bdf.c, w32heap.c, w32inevt.c,
11069 * w32proc.c: Include <config.h>.
11070
11071 2002-01-01 Andreas Schwab <schwab@suse.de>
11072
11073 * eval.c (max_specpdl_size, max_lisp_eval_depth): Define as int,
11074 not EMACS_INT, to make them compatible with DEFVAR_INT.
11075 * lisp.h (max_specpdl_size): Adjust declaration.
11076
11077 2002-01-01 Richard M. Stallman <rms@gnu.org>
11078
11079 * print.c (print_object): Test print_escape_nonascii only for
11080 unibyte strings.
11081 (PRINTPREPARE): Once again bind Qprint_escape_nonascii
11082 when outputting to a multibyte buffer.
11083
11084 2001-12-29 Richard M. Stallman <rms@gnu.org>
11085
11086 * print.c (print_object): In multibyte string, use hex escapes.
11087 Use octal only for unibyte strings.
11088 (PRINTPREPARE): Don't ever set Qprint_escape_nonascii.
11089
11090 * lread.c (read_escape): New arg BYTEREP for reporting whether
11091 escape forces unibyte or multibyte.
11092 (read1): When reading a string, take note of that info.
11093
11094 2001-12-29 Ken Raeburn <raeburn@gnu.org>
11095
11096 * abbrev.c (Fexpand_abbrev): Use NILP instead of implicit zero
11097 comparison to test lisp value returned by Fget.
11098
11099 2001-12-29 Richard M. Stallman <rms@gnu.org>
11100
11101 * lisp.h (max_specpdl_size): Add declaration.
11102
11103 * fileio.c (Fdo_auto_save): If NO_MESSAGE, don't call push_message.
11104
11105 * keymap.c (silly_event_symbol_error): New subrtn, from Fdefine_key.
11106 Handle modifier bits. Correct typo in error message.
11107
11108 2001-12-28 Richard M. Stallman <rms@gnu.org>
11109
11110 * abbrev.c: Use the plist of an abbrev for multiple params if nec.
11111 (Fdefine_abbrev): New arg SYSTEM-FLAG for a system abbrev.
11112 (Fdefine_global_abbrev, Fdefine_mode_abbrev):
11113 Update calls to Fdefine_abbrev.
11114 (write_abbrev): Update for changed data format.
11115 Don't list "system" abbrevs.
11116 (Fexpand_abbrev): Update use count with new data format.
11117 (describe_abbrev): Update for changed data format.
11118 (Fdefine_abbrev_table): Handle the new SYSTEM-FLAG.
11119
11120 * config.in (HAVE_MBSINIT): Add #undef.
11121
11122 * strftime.c (mbsinit): Define as no-op if not available.
11123
11124 * s/sco5.h (LIBX11_SYSTEM) [MOTIF]: Add -lgen.
11125 (sigprocmask_set): Conditionalize decl on ! NOT_C_CODE.
11126
11127 * keymap.c (Flookup_key): Error message if key has wrong data type.
11128 (Fdefine_key): Add error message for trying to bind [DEL], [RET], etc.
11129 (exclude_key): New variable.
11130
11131 2001-12-28 Gerd Moellmann <gerd@gnu.org>
11132
11133 * xterm.c (x_setup_relief_colors): Don't compute an image's
11134 background color if it doesn't have a Pixmap.
11135
11136 * xterm.c (notice_overwritten_cursor): Don't depend on
11137 output_cursor and updated_area. Compare pixel coordinates with
11138 window's cursor pixel coordinates.
11139 (x_draw_glyphs, x_clear_end_of_line, show_mouse_face):
11140 Call notice_overwritten_cursor with new arg list.
11141 (show_mouse_face): Fix bug setting a row's mouse_face_p flag
11142 unconditionally.
11143
11144 * xdisp.c (try_scrolling) <PT below scroll margin>: Add the
11145 height of the cursor line to the amount to scroll.
11146
11147 2001-12-27 Richard M. Stallman <rms@gnu.org>
11148
11149 * intervals.c (set_point_both): The position after an invisible,
11150 intangible character is not an acceptable stopping point.
11151
11152 2001-12-27 Ken Raeburn <raeburn@gnu.org>
11153
11154 * window.c (enlarge_window): In new preserve_before code, convert
11155 CURBEG from lisp object to integer before doing arithmetic.
11156
11157 2001-12-27 Richard M. Stallman <rms@gnu.org>
11158
11159 * bytecode.c (Fbyte_code): Undo previous change.
11160
11161 2001-12-26 Kim F. Storm <storm@cua.dk>
11162
11163 * keyboard.c (record_char): Ignore duplicate help-echo events only
11164 separated by mouse-movement. When tracking mouse, only record
11165 first and last mouse-movement event in same window.
11166 Don't record mouse-movement events in keyboard macros.
11167
11168 2001-12-25 Richard M. Stallman <rms@gnu.org>
11169
11170 * window.c (enlarge_window): New arg PRESERVE_BEFORE. Callers changed.
11171 (Fenlarge_window): New arg PRESERVE_BEFORE.
11172
11173 * bytecode.c (Fbyte_code): Use Fstring_make_unibyte
11174 instead of Fstring_as_unibyte.
11175
11176 2001-12-22 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11177
11178 The following changes remove mocklisp support:
11179
11180 * mocklisp.h, mocklisp.c: Files removed.
11181
11182 * lisp.h: Remove declarations of variables `Vmocklisp_arguments',
11183 `Qmocklisp' and `Qmocklisp_arguments'.
11184 Remove prototype of syms_of_mocklisp.
11185
11186 * makefile.nt, makefile.w32-in, Makefile.in: Remove mocklisp files.
11187
11188 * callint.c: Do not include mocklisp.h.
11189 (Fcall_interactively): Do not test for mocklisp case.
11190
11191 * eval.c: Remove variables `Qmocklisp_arguments',
11192 `Vmocklisp_arguments' and `Qmocklisp'. Remove prototype of ml_apply.
11193 (Fprogn, Fwhile, Fcommandp, Feval, Ffuncall, funcall_lambda):
11194 Do not test for mocklisp case.
11195 (Fwhile): Remove unused variable `tem'.
11196 (syms_of_eval): Remove variable `moclisp-arguments'.
11197
11198 * data.c (wrong_type_argument): Remove mocklisp case.
11199
11200 * doc.c (Fdocumentation): Remove mocklisp case.
11201
11202 * emacs.c (main): Do not call syms_of_mocklisp.
11203
11204 2001-12-21 Richard M. Stallman <rms@gnu.org>
11205
11206 * xfns.c (compute_tip_xy): If tooltip won't fit on the screen
11207 to the left or to the right of the pointer, put it against
11208 the left screen edge.
11209
11210 2001-12-21 Eli Zaretskii <eliz@is.elta.co.il>
11211
11212 * Makefile.in (distclean): Remove .gdbinit if we are building
11213 outside the source tree.
11214
11215 2001-12-19 Eli Zaretskii <eliz@is.elta.co.il>
11216
11217 * w32.c (emacs_root_dir): New function.
11218
11219 * msdos.c (emacs_root_dir): New function.
11220
11221 * fileio.c (Fexpand_file_name) [DOS_NT]: Use the root directory
11222 of the current drive as the fallback for default_directory.
11223
11224 * dired.c (file_name_completion): Run the elements of
11225 completion-ignored-extensions through ENCODE_FILE.
11226
11227 * lisp.h (scmp): Remove prototype, since it's now a static
11228 function private to dired.c.
11229
11230 2001-12-18 Richard M. Stallman <rms@gnu.org>
11231
11232 * dired.c (scmp): Function moved from minibuf.c.
11233 Delete multibyte handling--used only on encoded strings.
11234
11235 * minibuf.c (scmp): Function moved to dired.c.
11236
11237 * fns.c (merge): Add QUIT call.
11238
11239 2001-12-18 Dave Love <fx@gnu.org>
11240
11241 * Makefile.in (lisp, shortlisp): Add language/utf-8-lang.el,
11242 language/georgian.el.
11243
11244 2001-12-18 Eli Zaretskii <eliz@is.elta.co.il>
11245
11246 * Makefile.in (lisp, shortlisp): Synchronize with changes to
11247 lisp/Makefile.in:DONTCOMPILE.
11248
11249 2001-12-18 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11250
11251 * xdisp.c (window_box_height): Do not return negative values.
11252 From Gerd Moellmann <gerd@gnu.org>.
11253
11254 * keyboard.c (head_table): Add missing braces around initializer.
11255
11256 * term.c (keys): Likewise.
11257
11258 * xfns.c (x_frame_parms, visual_classes): Likewise.
11259
11260 2001-12-17 Sam Steingold <sds@gnu.org>
11261
11262 * coding.c (DECODE_COMPOSITION_END): Fixed a typo in the last
11263 patch (COMPOSING_P, not COMPOSING).
11264
11265 2001-12-17 Richard M. Stallman <rms@gnu.org>
11266
11267 * editfns.c (Fcompare_buffer_substrings): Add QUIT to main loop.
11268
11269 * coding.c (code_convert_region): Update coding->cmp_data->char_offset
11270 before calling decode_coding.
11271
11272 * charset.c (Fdefine_charset): Call Fupdate_coding_systems_internal.
11273
11274 * coding.c (DECODE_COMPOSITION_END): Check for ! COMPOSING_P (coding)
11275 instead of only for COMPOSITION_DISABLED.
11276
11277 2001-12-16 Richard M. Stallman <rms@gnu.org>
11278
11279 * alloc.c (pure_alloc): After overflow, allocate just a small block.
11280
11281 * Makefile.in (xmenu.o, xterm.o, fontset.o): Depend on buffer.h.
11282
11283 * buffer.h (struct buffer): New field `display_error_modiff'.
11284 * buffer.c (reset_buffer): Initialize `display_error_modiff'.
11285
11286 * window.c (Frecenter): Clear display_error_modiff field.
11287
11288 * xdisp.c (redisplay_window_0, redisplay_window_1): New functions.
11289 Call redisplay_window, but not if display_error_modiff field says no.
11290 (redisplay_window_error): New function.
11291 (displayed_buffer): New variable.
11292 (redisplay_internal, redisplay_windows): Call the new functions
11293 instead of redisplay_window directly.
11294
11295 2001-12-15 Richard M. Stallman <rms@gnu.org>
11296
11297 * keyboard.c (syms_of_keyboard) <double-click-fuzz>: Doc fix.
11298
11299 2001-12-14 Andrew Innes <andrewi@gnu.org>
11300
11301 * makefile.w32-in (EMACSLOADPATH): Define.
11302 ($(EMACS)): Run `list-load-path-shadows' after dumping emacs.
11303 (bootstrap-temacs): Remove dependency on bootstrap-clean.
11304
11305 2001-12-13 Eli Zaretskii <eliz@is.elta.co.il>
11306
11307 * xfns.c (x_report_frame_params): Make the scroll-bar-width frame
11308 parameter have a numeric value all the time.
11309
11310 * w32fns.c (x_report_frame_params): Likewise.
11311
11312 2001-12-12 Richard M. Stallman <rms@gnu.org>
11313
11314 * fileio.c (Fwrite_region): Doc fix.
11315
11316 * xdisp.c (CLEAR_FACE_CACHE_COUNT): Redefine as 500.
11317 (redisplay_internal): Call clear_image_cache only for window terminals.
11318
11319 2001-12-12 Gerd Moellmann <gerd@gnu.org>
11320
11321 * xdisp.c (move_it_vertically_backward): Change heuristic
11322 for the case that we didn't move far enough initially.
11323
11324 * window.c (Frecenter): Simplify computation in the case of window
11325 system frames and ARG < 0; use window_box_height.
11326
11327 2001-12-11 Richard M. Stallman <rms@gnu.org>
11328
11329 * Makefile.in, mem-limits.h, dispnew.c, emacs.c, fileio.c:
11330 * process.c, sysdep.c, unexec.c: Test GNU_LINUX, not LINUX.
11331
11332 2001-12-11 Andrew Innes <andrewi@gnu.org>
11333
11334 * insdel.c (make_gap) [DOUG_LEA_MALLOC]: Call make_gap_smaller if
11335 arg is negative.
11336
11337 2001-12-11 Richard M. Stallman <rms@gnu.org>
11338
11339 * m/hp800.h: Split the __hpux conditional into the parts
11340 that are right for GNU/Linux too and the parts that are not.
11341 Use the former if GNU_LINUX.
11342 (HAVE_ALLOCA, LOAD_AVE_TYPE, LOAD_AVE_CVT): New defs for GNU/Linux.
11343
11344 * s/gnu-linux.h (GNU_LINUX): Defined.
11345
11346 2001-12-11 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11347
11348 * macros.c, msdos.c, w16select.c: Change doc-string comments to
11349 `new style' [w/`doc:' keyword].
11350
11351 2001-12-10 Jason Rumney <jasonr@gnu.org>
11352
11353 * w32menu.c (w32_free_submenu_strings): Clear menu item struct
11354 before using.
11355
11356 2001-12-09 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11357
11358 * dosfns.c: Change doc-string comments to `new style' [w/`doc:'
11359 keyword].
11360
11361 2001-12-09 Eli Zaretskii <eliz@is.elta.co.il>
11362
11363 * dosfns.c (dos-display-scancodes, dos-decimal): Doc fix.
11364
11365 * s/hpux10.h (srand48): Don't undefine.
11366
11367 2001-12-09 Jason Rumney <jasonr@gnu.org>
11368
11369 * w32menu.c (_widget_value): Make `help' field a Lisp_Object.
11370 Add comment to explain where the struct came from.
11371 (single_submenu, w32_menu_show): Set `help' field as Lisp_Object.
11372 (add_menu_item): Process pop-up menus first to avoid memory leak.
11373 (add_menu_item, w32_menu_display_help): Use `help' field as
11374 Lisp_Object.
11375 (w32_free_submenu_strings): Only free owner-drawn strings.
11376
11377 2001-12-09 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11378
11379 * COPYING: Moved back.
11380
11381 * charset.c (char_to_string_1, translate_char, Fdefine_charset):
11382 Add parentheses around && within ||.
11383
11384 * indent.c (compute_motion): Likewise.
11385
11386 * intervals.c (merge_properties_sticky): Likewise.
11387
11388 * coding.c (setup_coding_system, shrink_encoding_region)
11389 (Fdecode_sjis_char): Likewise.
11390
11391 2001-12-07 Andreas Schwab <schwab@suse.de>
11392
11393 * xdisp.c (display_mode_element): Don't read past end of string if
11394 it ends with '%'.
11395
11396 * alloc.c (inhibit_garbage_collection): Don't exceed value an int
11397 can hold.
11398
11399 * data.c (Vmost_positive_fixnum, Vmost_negative_fixnum):
11400 Rename from most_positive_fixnum and most_negative_fixnum, resp., and
11401 type changed to Lisp_Object.
11402 (syms_of_data): DEFVAR_LISP them.
11403
11404 2001-12-07 Richard M. Stallman <rms@gnu.org>
11405
11406 * callproc.c (init_callproc): Set Vdata_directory based on the source
11407 location whenever Emacs was run uninstalled.
11408
11409 2001-12-06 Paul Eggert <eggert@twinsun.com>
11410
11411 * config.in (HAVE_WORKING_VFORK): New #undefs.
11412 * process.c (create_process):
11413 Use HAVE_WORKING_VFORK, not HAVE_VFORK.
11414 * m/cnvrgnt.h (HAVE_VFORK): Remove #define.
11415 * m/ibm370aix.h (HAVE_VFORK): Remove #undef.
11416 * m/ibmps2-aix.h (HAVE_VFORK): Remove #define.
11417 * m/intel386.h (HAVE_VFORK): Likewise.
11418 * m/mips-siemens.h (HAVE_VFORK): Likewise.
11419 * m/mips.h (HAVE_VFORK): Likewise.
11420 * s/freebsd.h (vfork): Remove #define.
11421 * s/lynxos.h (HAVE_VFORK): Remove #undef.
11422 * s/usg5-4-2.h: Fix comment about vfork.
11423
11424 2001-12-06 Richard M. Stallman <rms@gnu.org>
11425
11426 * s/hpux10.h (random): Add undef.
11427 (HAVE_RANDOM): Define it just once.
11428
11429 2001-12-06 Stefan Monnier <monnier@cs.yale.edu>
11430
11431 * eval.c: Undo last change: the standard syntax is not wanted.
11432
11433 2001-12-06 Eli Zaretskii <eliz@is.elta.co.il>
11434
11435 * xterm.c (x_free_frame_resources) [USE_X_TOOLKIT]: Remove all the
11436 scroll bars of the frame before deleting the frame itself. If the
11437 frame has a widget, delete the frame with XtDestroyWidget, and do
11438 not call XDestroyWindow before that.
11439
11440 2001-12-06 Kim F. Storm <storm@cua.dk>
11441
11442 * xfns.c (x_report_frame_params): Return actual fringe widths.
11443
11444 * w32fns.c (x_report_frame_params): Return actual fringe widths.
11445
11446 2001-12-05 Andrew Innes <andrewi@gnu.org>
11447
11448 * alloc.c (Fgarbage_collect): Shrink buffer gaps that are
11449 excessively large.
11450
11451 * insdel.c (make_gap_larger): New function.
11452 (make_gap_smaller): New function.
11453 (make_gap) [USE_MMAP_FOR_BUFFERS || REL_ALLOC]:
11454 Call make_gap_smaller if arg is negative.
11455
11456 2001-12-04 Stefan Monnier <monnier@cs.yale.edu>
11457
11458 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal prototype.
11459 Pass a dummy argument when calling interrupt_signal.
11460 (parse_menu_item): Mark disabled items before checking for empty def.
11461 (read_char_minibuf_menu_prompt): Make safety more visible.
11462 (read_key_sequence): Add a `first_unbound' variable.
11463 Use it to detect C-c ESC ESC ESC ESC ... cases and drop the
11464 unbound prefix as soon as we can detect it.
11465
11466 * doc.c (Fsnarf_documentation): Add prototype.
11467 (get_doc_string): Handle negative arguments.
11468 (Fdocumentation): Use AREF and ASIZE.
11469 Move the calls to get_doc_string to a single place.
11470 Don't confuse an interactive-spec for a docstring reference.
11471 (Fdocumentation_property): Take advantage of the fact that
11472 get_doc_string now ignores the sign of the docstring position.
11473
11474 * eval.c: Use standard syntax for usage in docstrings.
11475
11476 2001-12-03 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11477
11478 * xdisp.c (syms_of_xdisp): Make `tool-bar-button-relief' an option.
11479
11480 2001-12-02 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11481
11482 * xterm.c (x_draw_image_relief): Use predefined macro instead of
11483 constant when the value of `tool_bar_button_relief' is negative.
11484
11485 2001-12-02 Richard M. Stallman <rms@gnu.org>
11486
11487 * xmenu.c (menu_highlight_callback): Use `help' field as Lisp_Object.
11488 (single_submenu, xmenu_show): Set `help' field as Lisp_Object.
11489
11490 * fileio.c (read_non_regular): Delete Fsignal call.
11491
11492 2001-12-01 Stefan Monnier <monnier@cs.yale.edu>
11493
11494 * lisp.h (run_hook_list_with_args): Undo last change.
11495
11496 2001-12-01 Gerd Moellmann <gerd@gnu.org>
11497
11498 * xterm.c (x_draw_fringe_bitmap): Always undo clipping.
11499
11500 2001-12-01 Jason Rumney <jasonr@gnu.org>
11501
11502 * window.c (Qleft_fringe, Qright_fringe): Remove. Now in frame.c.
11503
11504 * w32term.h (WM_MOUSELEAVE, TME_LEAVE, TRACKMOUSEEVENT)
11505 [!WM_MOUSELEAVE]: Define.
11506
11507 * w32menu.c (current_popup_menu, get_menu_item_info):
11508 (set_menu_item_info): New vars.
11509 (set_frame_menubar): Doc fix clarifying GC interaction with menus.
11510 (w32_menu_show): Set current_popup_menu.
11511 (add_menu_item): Allocate new strings for owner-drawn menu items
11512 and help strings.
11513 Use owner-draw for disabled menu items again.
11514 (w32_menu_display_help): Ignore owner-drawn items and popup menus.
11515 (w32_free_submenu_strings, w32_free_menu_strings): New functions.
11516
11517 * w32fns.c (trackmouse_window, track_mouse_event_fn): New vars.
11518 (w32_wnd_proc) <WM_MOUSEMOVE>: Notice when mouse enters frame.
11519 <WM_EXITMENULOOP>: Free menu strings.
11520 <WM_MOUSELEAVE>: Stop tracking mouse.
11521 (x_create_tip_frame): Specify no minibuffer, modeline or fringes.
11522
11523 * w32term.c (w32_read_socket) <WM_MOUSELEAVE>: Cancel help echo
11524 and mouse face.
11525
11526 2001-12-01 Kim F. Storm <storm@cua.dk>
11527
11528 The following changes add left-fringe and right-fringe
11529 frame parameters to adjust fringe widths, or remove one or
11530 both fringes.
11531
11532 * frame.h (struct frame): Remove trunc_area_pixel_width and
11533 trunc_area_cols fields.
11534 (Qleft_fringe, Qright_fringe): Declare.
11535 (FRAME_RIGHT_FRINGE_WIDTH): New macro.
11536
11537 * frame.c (Qleft_fringe, Qright_fringe): New vars.
11538 (syms_of_frame): Initialize them.
11539
11540 * window.c (coordinates_in_window): Handle separate left and right
11541 fringe widths.
11542
11543 * xterm.h (struct x_output): Add left_fringe_width, right_fringe_width,
11544 and fringe_cols fields.
11545 (FRAME_FRINGE_BITMAP_WIDTH, FRAME_FRINGE_BITMAP_HEIGHT): Remove macros.
11546 (FRAME_X_FRINGE_COLS): Use fringe_cols field.
11547 (FRAME_X_FRINGE_WIDTH): Use fringes_extra field.
11548 (FRAME_X_LEFT_FRINGE_WIDTH): Use left_fringe_width field.
11549 (FRAME_X_RIGHT_FRINGE_WIDTH): Use right_fringe_width field.
11550 (x_compute_fringe_widths): Add prototype.
11551
11552 * xterm.c (zv_height, zv_bits, zv_period): Changed zv bitmap to
11553 fill fringe evenly with small dashes.
11554 (x_draw_fringe_bitmap): Clear background if necessary. Align and
11555 clip the new ZV bitmap to avoid jitter between rows.
11556 (x_draw_row_fringe_bitmaps): Rely on x_draw_fringe_bitmap to clear
11557 background. Don't draw fringe bitmaps if fringe width is zero.
11558 (x_compute_fringe_widths): New function.
11559 (x_new_font, x_set_window_size_1): Use it.
11560
11561 * xfns.c (x_frame_parms): Add `left-fringe' and `right-fringe' parms.
11562 (x_set_frame_parameters): Process `font' parameter before other
11563 parameters as fringe widths depend on it.
11564 (x_set_fringe_width): New function.
11565 (x_figure_window_size): Use x_compute_fringe_widths.
11566 (Fx_create_frame): Process `left-fringe' and `right-fringe' frame
11567 parameters.
11568
11569 * widget.c (set_frame_size): Use x_compute_fringe_widths.
11570 (EmacsFrameSetCharSize): Ditto.
11571
11572 * w32term.h: Merged changes from xterm.h.
11573 * w32term.c: Merged changes from xterm.c.
11574 * w32fns.c: Merged changes from xfns.c.
11575
11576 2001-11-29 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11577
11578 * COPYING: Removed.
11579
11580 2001-11-29 Dave Love <fx@gnu.org>
11581
11582 * coding.c (syms_of_coding) <Qchar_coding_system>: Give it an
11583 extra extra slot.
11584 (detect_coding_mask): Fix call of detect_coding_iso2022.
11585
11586 2001-11-29 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11587
11588 * fileio.c (file-name-coding-system)
11589 (default-file-name-coding-system): Doc fix (links to referenced
11590 variables added).
11591
11592 2001-11-28 Stefan Monnier <monnier@cs.yale.edu>
11593
11594 * lisp.h (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5):
11595 Add dummy uses of gcproN variables.
11596
11597 * category.c (describe_category, describe_category_1)
11598 (Fdescribe_categories): Remove. (Moved to lisp/help-fns.el.)
11599 (syms_of_category): Don't defsubr Sdescribe_categories.
11600
11601 2001-11-28 Richard M. Stallman <rms@gnu.org>
11602
11603 * fileio.c (Ffind_file_name_handler): Avoid initializer for `result'.
11604
11605 * Makefile.in (lispdir): New variable, referring to build dir.
11606 (TAGS-LISP): Find Makefile in $(lispdir), not $(lispsource).
11607
11608 2001-11-28 Andrew Innes <andrewi@gnu.org>
11609
11610 * w32menu.c (w32_menu_display_help): Actually add the new argument
11611 OWNER.
11612
11613 2001-11-28 Jason Rumney <jasonr@gnu.org>
11614
11615 * w32menu.c (add_menu_item): Do not use owner-draw for disabled
11616 menu items. From David Ponce <dponce@wanadoo.fr>.
11617 (w32_dialog_show) [HAVE_DIALOGS]: Compile whole function
11618 conditionally.
11619 (w32_menu_display_help): New argument OWNER. Rewritten to store a
11620 help event in the owner frame's keyboard buffer.
11621
11622 * w32fns.c (w32_wnd_proc) <WM_MENUSELECT>: Display help directly.
11623 (Fx_show_tip): Don't subtract last width from row width.
11624
11625 * w32term.c (w32_read_socket) <WM_MENUSELECT>: Remove.
11626 (w32_read_socket): Use EQ to compare frames.
11627
11628 2001-11-28 Gerd Moellmann <gerd@gnu.org>
11629
11630 * xterm.c (x_draw_glyphs): Don't call notice_overwritten_cursor if
11631 OVERLAPS_P.
11632
11633 2001-11-28 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11634
11635 * xdisp.c (message_dolog): Remove unused variables `gcpro2',
11636 `gcpro3' and `gcpro4'.
11637
11638 * coding.c (decode_coding_string): Remove unused variable `gcpro1'.
11639
11640 2001-11-28 Stefan Monnier <monnier@cs.yale.edu>
11641
11642 * ccl.c: Use AREF and ASIZE.
11643
11644 2001-11-27 Stefan Monnier <monnier@cs.yale.edu>
11645
11646 * lisp.h (run_hook_list_with_args): Remove.
11647 (LIST_END_P): Fix call to wrong_type_argument.
11648 (make_fixnum_or_float): Use EMACS_INT rather than int.
11649
11650 2001-11-26 Stefan Monnier <monnier@cs.yale.edu>
11651
11652 * syntax.c (syms_of_syntax): Remove defsubr of Sdescribe_syntax.
11653 (describe_syntax, describe_syntax_1, Fdescribe_syntax): Remove.
11654
11655 * eval.c: Use AREF and ASIZE.
11656 (Ffetch_bytecode): Add the file name to the error message.
11657
11658 * fileio.c (Ffind_file_name_handler): Give precedence to handlers
11659 which match the end of the file-name.
11660 (Fsubstitute_in_file_name): Don't signal an error if $ENVVAR
11661 is not a valid env var, but leave it as is instead.
11662
11663 * keymap.c (access_keymap): Handle t bindings like nil bindings.
11664 Make nil bindings in char-tables transparent.
11665 (store_in_keymap): Turn a nil binding into a t binding for char-tables.
11666
11667 2001-11-26 Richard M. Stallman <rms@gnu.org>
11668
11669 * textprop.c (set_text_properties_1): Allow START, END in either order.
11670 Do nothing if range is empty.
11671
11672 * Makefile.in (mallocobj): Simplify logic using auxiliary vars.
11673
11674 * Makefile.in (mostlyclean): Delete bootstrap-emacs here.
11675 (clean): Not here.
11676
11677 2001-11-25 Stefan Monnier <monnier@cs.yale.edu>
11678
11679 * textprop.c (set_text_properties_1): Clearly mark that the
11680 interval should not be empty.
11681
11682 * intervals.c (graft_intervals_into_buffer):
11683 Don't call set_text_properties_1 on an empty interval.
11684
11685 2001-11-25 Richard M. Stallman <rms@gnu.org>
11686
11687 * unexelf.c (unexec): Index by n, not nn, when checking for ".sbss".
11688
11689 * callproc.c (Fcall_process): When we make a bigger buffer for bufptr,
11690 don't lose the data in it.
11691
11692 2001-11-25 Juanma Barranquero <lektu@terra.es>
11693
11694 * abbrev.c (Fexpand_abbrev): Use Frun_hooks instead of Vrun_hooks.
11695
11696 * buffer.c (Fkill_buffer): Use Frun_hooks, not Vrun_hooks.
11697
11698 * print.c (temp_output_buffer_setup): Use Frun_hooks, not Vrun_hooks.
11699
11700 2001-11-25 Stefan Monnier <monnier@cs.yale.edu>
11701
11702 * xfaces.c (merge_face_heights): Coerce back to int explicitly.
11703
11704 2001-11-25 Eli Zaretskii <eliz@is.elta.co.il>
11705
11706 * window.c (Fset_window_vscroll): Doc fix. From Kalle Olavi
11707 Niemitalo <kon@iki.fi>.
11708
11709 2001-11-25 Jason Rumney <jasonr@gnu.org>
11710
11711 * w32term.h (FRAME_X_FRINGE_COLS): No fringe on tip frames.
11712
11713 * w32fns.c (x_create_tip_frame): Set frame's fringes_extra to 0.
11714 (Fx_show_tip): Block input during frame creation.
11715 (Fx_show_tip, Fx_hide_tip): Enable.
11716
11717 2001-11-24 Richard M. Stallman <rms@gnu.org>
11718
11719 * lread.c (Fload): Detect recursive load error for more than 3
11720 nestings of the same file.
11721 (Vrecursive_load_depth_limit): Variable deleted.
11722 (syms_of_lread) <recursive-load-depth-limit>: Variable deleted.
11723
11724 2001-11-24 Jason Rumney <jasonr@gnu.org>
11725
11726 * xfns.c (compute_tip_xy): Initialize root_x and root_y from
11727 mouse position if either left or top is not specified.
11728
11729 * w32fns.c (w32_wnd_proc) <WM_MENUSELECT>: Revert last change.
11730 <WM_WINDOWPOSCHANGING>: Let tip frames resize without restriction.
11731 (my_create_tip_window, Fx_show_tip): Adjust size for external border.
11732 (my_create_tip_window): Assign tip_window.
11733 (x_create_tip_frame): Use same defaults as X.
11734 (compute_tip_xy): Remove unused variable. Use full screen width.
11735 (Fx_show_tip): Do not double height. Call ShowWindow directly.
11736
11737 * w32term.c (x_after_update_window_line): Doc fix.
11738 (w32_read_socket): Doc fix. Avoid SET_FRAME_GARBAGED for tip
11739 frames.
11740 <WM_SHOWWINDOW>: Redo mouse highlight when hiding tip frame.
11741
11742 * xdisp.c (prepare_menu_bars) [HAVE_WINDOW_SYSTEM]: Use tip_frame
11743 for all Windowed systems.
11744
11745 2001-11-23 Eli Zaretskii <eliz@is.elta.co.il>
11746
11747 * msdos.c (IT_clear_screen): If the frame's faces are not yet
11748 realized, use the initial screen colors to clear the screen.
11749
11750 2001-11-23 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11751
11752 * textprop.c (Fset_text_properties): Remove unused variables
11753 `unchanged', `prev_changed', `s' and `len'.
11754
11755 * search.c (Freplace_match): Remove unused variable `inslen'.
11756
11757 * keymap.c (access_keymap): Remove unused variables `c1' and `c2'.
11758
11759 2001-11-22 Jason Rumney <jasonr@gnu.org>
11760
11761 * w32fns.c (x_window_to_frame): Remove irrelevant TODO comment.
11762 (w32_wnd_proc) <WM_MENUSELECT>: Show help echo directly.
11763 (my_create_tip_window): New function.
11764 (x_create_tip_frame, compute_tip_xy): Adapt for Windows.
11765 (Fx_show_tip, Fx_hide_tip) [TEST_TOOLTIPS]: Adapt for Windows.
11766
11767 2001-11-20 Jason Rumney <jasonr@gnu.org>
11768
11769 * coding.h (Vw32_system_coding_system) [WINDOWSNT]: Remove.
11770 (ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: Use Vlocale_coding_system.
11771
11772 * w32fns.c (Vw32_system_coding_system): Remove.
11773 (w32_to_x_font, x_to_w32_font): Use Vlocale_coding_system.
11774
11775 2001-11-19 Stefan Monnier <monnier@cs.yale.edu>
11776
11777 * fileio.c (Fwrite_region): Move choose_write_coding_system to
11778 after build_annotations.
11779
11780 * syntax.c (describe_syntax): Add dummy arg.
11781 (describe_syntax_1): Update call to describe_vector.
11782
11783 * category.c (describe_category): Add dummy arg.
11784 (describe_category_1): Update call to describe_vector.
11785
11786 * keymap.c (Fdescribe_vector): Add `describer' parameter.
11787 (describe_command, describe_translation): Add dummy second param.
11788 (describe_map): Call elt_describer with two arguments.
11789 (describe_vector_princ): Add `fun' parameter.
11790 Call it instead of the hardcoded `princ'.
11791 (describe_vector): Add arg `args'.
11792 Pass it as a new second argument to elt_describer.
11793
11794 * keymap.h (describe_vector): Update prototype.
11795
11796 * frame.c: Don't include keymap.h any more.
11797 (keys_of_frame): Remove.
11798
11799 * lisp.h (keys_of_frame): Remove declaration.
11800
11801 * emacs.c (main): Don't call `keys_of_frame' any more.
11802
11803 2001-11-14 Andreas Schwab <schwab@suse.de>
11804
11805 * unexelf.c [!defined MAP_ANON]: Define MAP_ANON to MAP_ANONYMOUS
11806 if defined, 0 otherwise.
11807 (MAP_FAILED): Define if not defined and use it to test mmap failure.
11808 (unexec) [!MAP_ANON]: Use /dev/zero as file to map.
11809
11810 2001-11-19 Richard M. Stallman <rms@gnu.org>
11811
11812 * indent.c (current_column_1): Fix handling of scan_bytes for mb chars.
11813
11814 2001-11-18 Jason Rumney <jasonr@gnu.org>
11815
11816 * w32term.c (note_mouse_highlight): Fix type of variable `ignore'.
11817 (x_draw_bar_cursor): If the background color of the glyph under
11818 the cursor equals the frame's cursor color, use the glyph's
11819 foreground color for drawing the bar cursor.
11820 (x_after_update_window_line): Clear internal border in different
11821 circumstances.
11822 (w32_set_vertical_scroll_bar): Check for width and height > 0.
11823 (w32_draw_relief_rect): Correct relief by 1 pixel.
11824 (x_set_glyph_string_background_width):
11825 Set extends_to_end_of_line_p if the row's fill_line_p is set and
11826 drawing the last glyph with DRAW_IMAGE_{RAISED,SUNKEN}.
11827 (x_display_and_set_cursor): If cursor_in_echo_area, use NO_CURSOR
11828 if cursor_in_non_selected_windows is false.
11829 (show_mouse_face): Clean up. Recognize overwritten cursor differently.
11830 (x_draw_glyphs): Remove parameters REAL_START and REAL_END.
11831 Notice if cursor gets overwritten.
11832 (notice_overwritten_cursor): Renamed from
11833 note_overwritten_text_cursor. Rewritten to take glyph widths
11834 into account, and to take X positions as parameters.
11835 (x_draw_phys_cursor_glyph): Save state of w->phys_cursor_on_p
11836 around call to x_draw_glyphs.
11837 (x_setup_relief_colors): Use `IMAGE_BACKGROUND' and
11838 `IMAGE_BACKGROUND_TRANSPARENT' to calculate the correct background
11839 color to use for image glyph reliefs.
11840 (x_draw_image_relief): Accept zero tool_bar_button_relief.
11841 (glyph_rect): Remove unused variable `area'.
11842
11843 * w32fns.c (x_set_frame_parameters): Avoid infinite recursion for
11844 some items.
11845 (x_set_internal_border_width): Set frame garbaged when window
11846 doesn't exist yet.
11847 (Fx_create_frame): Accept zero tool_bar_button_relief.
11848 (x_clear_image_1, four_corners_best, image_background)
11849 (image_background_transparent): New functions.
11850 (xpm_format, png_format, jpeg_format, tiff_format, gif_format)
11851 (gs_format): Add `:background' entry.
11852 (lookup_image): Set IMG's background color if specified.
11853 (pbm_load, xbm_load_image, png_load): Set IMG's background field
11854 when appropriate.
11855 (x_clear_image_1): Reset `background_valid' and
11856 `background_transparent_valid' fields.
11857 (x_build_heuristic_mask): Use IMAGE_BACKGROUND instead of
11858 calculating it here. Set IMG's background_transparent field.
11859 (enum xpm_keyword_index): Add XPM_BACKGROUND.
11860 (enum png_keyword_index): Add PNG_BACKGROUND.
11861 (enum jpeg_keyword_index): Add JPEG_BACKGROUND.
11862 (enum tiff_keyword_index): Add TIFF_BACKGROUND.
11863 (enum gif_keyword_index): Add GIF_BACKGROUND.
11864 (enum gs_keyword_index): Add GS_BACKGROUND.
11865 (pbm_load, png_load, jpeg_load, tiff_load, gif_load):
11866 Pre-calculate image background color where necessary.
11867 (x_create_x_image_and_pixmap, xbm_load, gs_load):
11868 Use display info's n_cbits entry for screen depth.
11869 (Fx_show_tip): Remove unused variables `buffer', `top',
11870 `left', `max_width' and `max_height'.
11871
11872 * w32menu.c (w32_menu_show, push_menu_pane): Doc fixes.
11873
11874 2001-11-18 Gerd Moellmann <gerd@gnu.org>
11875
11876 * puresize.h (BASE_PURESIZE): Increase to 750000.
11877
11878 2001-11-18 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11879
11880 * frame.c (Fframe_live_p): Doc fix.
11881
11882 2001-11-18 Richard M. Stallman <rms@gnu.org>
11883
11884 * xdisp.c (message_dolog_marker1, message_dolog_marker2)
11885 (message_dolog_marker3): New static variables hold three markers.
11886 (syms_of_xdisp): Initialize and staticpro them.
11887 (message_dolog): Use message_dolog_marker1..3 instead of
11888 allocating markers each time. Unchain them when done.
11889
11890 2001-11-17 Richard M. Stallman <rms@gnu.org>
11891
11892 * doc.c (Fsnarf_documentation): Doc fix.
11893
11894 2001-11-17 Andreas Schwab <schwab@suse.de>
11895
11896 * xterm.c (note_mouse_highlight): Fix type of variable `ignore'.
11897
11898 2001-11-17 Richard M. Stallman <rms@gnu.org>
11899
11900 * fileio.c (Fwrite_region): Avoid initializer for Lisp_Object.
11901
11902 2001-11-17 Jason Rumney <jasonr@gnu.org>
11903
11904 * xterm.c (notice_overwritten_cursor): Take care of end < 0 case.
11905
11906 2001-11-17 Gerd Moellmann <gerd@gnu.org>
11907
11908 * xdisp.c (tool_bar_item_info): Avoid calling Fget_text_property
11909 with invalid position.
11910
11911 2001-11-16 Richard M. Stallman <rms@gnu.org>
11912
11913 * syswait.h: Delete conditionals for HPUX7, ISC 4.1, and convex.
11914
11915 * s/isc4-1.h (HAVE_SYS_WAIT_H): Add #undef.
11916 * s/hpux.h (HAVE_SYS_WAIT_H): Add #undef.
11917 * s/hpux8.h (HAVE_SYS_WAIT_H): Define it.
11918
11919 * m/convex.h (HAVE_SYS_WAIT_H): Add #undef.
11920
11921 2001-11-16 Stefan Monnier <monnier@cs.yale.edu>
11922
11923 * fileio.c (build_annotations): Split off the tail.
11924 (build_annotations_2): New fun. Extracted from build_annotations.
11925 (Fwrite_region): Split the call to build_annotations into two
11926 calls to build_annotations and build_annotations_2.
11927
11928 2001-11-16 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11929
11930 * sysdep.c (wait_for_kbd_input) [VMS]: Do not call
11931 clear_waiting_for_input with argument.
11932
11933 * xterm.h (x_update_cursor): Remove duplicated prototype.
11934
11935 * keyboard.h (clear_waiting_for_input): Remove duplicated prototype.
11936
11937 * xterm.c (waiting_for_input): Remove unnecessary declaration.
11938
11939 * data.c (Ftimes, Fquo, Frem, Fmod): Doc fix.
11940
11941 2001-11-16 Stefan Monnier <monnier@cs.yale.edu>
11942
11943 * fileio.c (choose_write_coding_system): New fun, extracted
11944 from Fwrite_region.
11945 (Fwrite_region): Use it.
11946
11947 * eval.c (max_specpdl_size, max_lisp_eval_depth): Use EMACS_INT.
11948 (funcall_lambda, run_hook_with_args): Make static and add prototype.
11949 (ml_apply, find_handler_clause): Add prototype.
11950
11951 2001-11-16 Eli Zaretskii <eliz@gnu.org>
11952
11953 * config.in: Add #undef HAVE_COFF_H.
11954
11955 * unexec.c (coff.h): Don't include unless HAVE_COFF_H is defined.
11956 Required for ISC 4.1.
11957
11958 2001-11-16 Eli Zaretskii <eliz@is.elta.co.il>
11959
11960 * syswait.h: (HAVE_SYS_WAIT_H): Undef for ISC 4.1. Reported by
11961 Andrew Wiseman <a.wiseman@btclick.com>.
11962
11963 2001-11-16 Kim F. Storm <storm@cua.dk>
11964
11965 The following changes are made to clean up the various internal
11966 references to the fringes to actually use the term `fringe' for
11967 them. Previously, they were called `flags areas', `bitmap areas',
11968 `left/right side of windows', or implicitly as `flags' or
11969 `bitmaps':
11970
11971 * dispextern.h (FRINGE_FACE_ID): Renamed from BITMAP_AREA_FACE_ID.
11972 Comments fixed. Use renamed symbols.
11973
11974 * dispnew.c: Comment fix. Use renamed symbols.
11975
11976 * frame.h (FRAME_FRINGE_COLS): Renamed from FRAME_FLAGS_AREA_COLS.
11977 (FRAME_FRINGE_WIDTH): Renamed from FRAME_FLAGS_AREA_WIDTH.
11978 (FRAME_LEFT_FRINGE_WIDTH): Renamed from FRAME_LEFT_FLAGS_AREA_WIDTH.
11979
11980 * msdos.c: Comment fix.
11981
11982 * w32fns.c: Use renamed symbols.
11983
11984 * w32term.c: Comment fixes. Use renamed symbols.
11985 (fringe_bitmap_type): Renamed from bitmap_type.
11986 (NO_FRINGE_BITMAP): Renamed from NO_BITMAP.
11987 (w32_draw_fringe_bitmap): Renamed from w32_draw_bitmap.
11988 (x_draw_row_fringe_bitmaps): Renamed from x_draw_row_bitmaps.
11989
11990 * w32term.h: Comment fixes. Use renamed symbols.
11991 (fringes_extra): Renamed from flags_areas_extra.
11992 (FRAME_FRINGE_BITMAP_WIDTH): Renamed from FRAME_FLAGS_BITMAP_WIDTH.
11993 (FRAME_FRINGE_BITMAP_HEIGHT): Renamed from FRAME_FLAGS_BITMAP_HEIGHT.
11994 (FRAME_X_FRINGE_COLS): Renamed from FRAME_X_FLAGS_AREA_COLS.
11995 (FRAME_X_FRINGE_WIDTH): Renamed from FRAME_X_FLAGS_AREA_WIDTH.
11996 (FRAME_X_LEFT_FRINGE_WIDTH):
11997 Renamed from FRAME_X_LEFT_FLAGS_AREA_WIDTH.
11998 (FRAME_X_RIGHT_FRINGE_WIDTH):
11999 Renamed from FRAME_X_RIGHT_FLAGS_AREA_WIDTH.
12000
12001 * widget.c: Use renamed symbols.
12002
12003 * window.c: Comment fixes. Use renamed symbols.
12004 (coordinates-in-window-p): Doc fix.
12005
12006 * xdisp.c: Comment fixes. Use renamed symbols.
12007
12008 * xfaces.c (realize_basic_faces): Use FRINGE_FACE_ID.
12009
12010 * xfns.c: Use renamed symbols.
12011
12012 * xterm.c: Comment fixes. Use renamed symbols.
12013 (fringe_bitmap_type): Renamed from bitmap_type.
12014 (NO_FRINGE_BITMAP): Renamed from NO_BITMAP.
12015 (x_draw_fringe_bitmap): Renamed from x_draw_bitmap.
12016 (x_draw_row_fringe_bitmaps): Renamed from x_draw_row_bitmaps.
12017
12018 * xterm.h: Comment fixes. Use renamed symbols.
12019 (fringes_extra): Renamed from flags_areas_extra.
12020 (FRAME_FRINGE_BITMAP_WIDTH): Renamed from FRAME_FLAGS_BITMAP_WIDTH.
12021 (FRAME_FRINGE_BITMAP_HEIGHT): Renamed from FRAME_FLAGS_BITMAP_HEIGHT.
12022 (FRAME_X_FRINGE_COLS): Renamed from FRAME_X_FLAGS_AREA_COLS.
12023 (FRAME_X_FRINGE_WIDTH): Renamed from FRAME_X_FLAGS_AREA_WIDTH.
12024 (FRAME_X_LEFT_FRINGE_WIDTH):
12025 Renamed from FRAME_X_LEFT_FLAGS_AREA_WIDTH.
12026 (FRAME_X_RIGHT_FRINGE_WIDTH):
12027 Renamed from FRAME_X_RIGHT_FLAGS_AREA_WIDTH.
12028
12029 2001-11-15 Jason Rumney <jasonr@gnu.org>
12030
12031 * w32menu.c (add-menu-item): Make help_echo and radio buttons
12032 work for most menu items. From David Ponce
12033 <david.ponce@wanadoo.fr>.
12034
12035 2001-11-15 Gerd Moellmann <gerd@gnu.org>
12036
12037 * xfns.c (x_set_frame_parameters): Revert change of 2001-11-07.
12038 Some x_set_* function expect to be called even if old and new
12039 value are equal.
12040
12041 * xdisp.c (build_desired_tool_bar_string): Accept zero
12042 tool_bar_button_relief.
12043
12044 * xfns.c (Fx_create_frame): Accept zero tool_bar_button_relief.
12045
12046 * xterm.c (x_draw_image_relief): Accept zero tool_bar_button_relief.
12047
12048 * xterm.c (x_draw_bar_cursor): If the background color of the
12049 glyph under the cursor equals the frame's cursor color, use
12050 the glyph's foreground color for drawing the bar cursor.
12051
12052 * dispnew.c (direct_output_forward_char): Fix character/byte
12053 position comparison.
12054
12055 2001-11-15 Miles Bader <miles@gnu.org>
12056
12057 * editfns.c (find_field): Add BEG_LIMIT and END_LIMIT parameters.
12058 (Fdelete_field, Ffield_string, Ffield_string_no_properties):
12059 Update arguments to find_field.
12060 (Ffield_beginning, Ffield_end): Add LIMIT param, pass to find_field.
12061 (Fconstrain_to_field): Use LIMIT arg to shorten search time.
12062 * lisp.h (Ffield_beginning, Ffield_end): Update EXFUN decl.
12063 * minibuf.c (Fminibuffer_prompt_end): Update args to Ffield_end.
12064
12065 2001-11-14 Richard M. Stallman <rms@gnu.org>
12066
12067 * editfns.c (Fpropertize): Allow call with 1 arg.
12068
12069 * dispextern.h (image_background, image_background_transparent):
12070 Conditionalize on HAVE_X_WINDOWS.
12071
12072 2001-11-13 Richard M. Stallman <rms@gnu.org>
12073
12074 * print.c (Fprin1_to_string): Doc fix.
12075
12076 * sunfns.c (Fsun_change_cursor_icon): Doc fix.
12077
12078 * floatfns.c (Fceiling, Ffloor): Doc fixes.
12079
12080 * filelock.c (Funlock_buffer, Ffile_locked_p): Doc fixes.
12081
12082 * fileio.c (Ffile_accessible_directory_p): Doc fix.
12083
12084 * eval.c (syms_of_eval): Doc fix.
12085
12086 * coding.c (syms_of_coding): Doc fix.
12087
12088 * doc.c (Fsnarf_documentation): Doc fix.
12089
12090 * dispnew.c (syms_of_display): Doc fix.
12091
12092 * category.c (Fget_unused_category): Doc fix.
12093
12094 * buffer.c (syms_of_buffer): Doc fixes.
12095
12096 2001-11-14 Eli Zaretskii <eliz@is.elta.co.il>
12097
12098 * print.c (prin1, print): Doc fix.
12099
12100 2001-11-14 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12101
12102 * fontset.h: Remove declarations of variables
12103 `Vhighlight_wrong_size_font' and `Vclip_large_size_font'.
12104
12105 * fontset.c: Remove variables `Vhighlight_wrong_size_font' and
12106 `Vclip_large_size_font'.
12107
12108 2001-11-13 Jason Rumney <jasonr@gnu.org>
12109
12110 * w32fns.c: Doc fix.
12111
12112 2001-11-13 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12113
12114 * xfaces.c (Fface_attributes_as_vector): Doc fix.
12115
12116 * fns.c: Doc fix.
12117
12118 * emacs.c: Doc fix.
12119
12120 * coding.c: Doc fix.
12121
12122 * cmds.c, composite.c, dired.c, doc.c, filelock.c, floatfns.c,
12123 * fontset.c, insdel.c, keymap.c: Change doc-string comments to
12124 `new style' [w/`doc:' keyword].
12125
12126 2001-11-12 Richard M. Stallman <rms@gnu.org>
12127
12128 * xterm.c (XTread_socket): Don't update focus for EnterNotify or
12129 LeaveNotify events. Only FocusIn and FocusOut do that now.
12130 (x_display_and_set_cursor): Do display hollow cursors in active
12131 minibuffer windows when they are not selected.
12132
12133 2001-11-12 Jason Rumney <jasonr@gnu.org>
12134
12135 * w32console.c, w32fns.c, w32menu.c, w32proc.c, w32select.c,
12136 * w32term.c: Change doc-string comments to `new style'.
12137 [w/`doc:' keyword]. Doc fixes.
12138
12139 * w32fns.c: Don't define max.
12140 (Fx_open_connection): Only execute once.
12141
12142 2001-11-12 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12143
12144 * ccl.c: Change macros to use do-while block instead of if-else.
12145 Use braces to follow GNU Coding Standards.
12146
12147 2001-11-11 Richard M. Stallman <rms@gnu.org>
12148
12149 * sysdep.c (child_setup_tty): Don't clear ICRNL or INLCR.
12150
12151 * lread.c (read_escape): Use end_of_file_error for reporting eof.
12152
12153 * insdel.c (replace_range): Use adjust_markers_for_replace
12154 instead of adjust_markers_for_delete and adjust_markers_for_insert.
12155
12156 * intervals.h: Declare set_text_properties and set_text_properties_1.
12157
12158 * textprop.c (set_text_properties_1): New subroutine
12159 broken out of set_text_properties.
12160 (set_text_properties): Use set_text_properties_1.
12161
12162 * intervals.c (graft_intervals_into_buffer):
12163 Use set_text_properties_1 to clear out properties.
12164
12165 * search.c (Freplace_match): Use replace_range to insert
12166 and delete. Don't request property inheritance from
12167 surrounding text.
12168
12169 2001-11-10 Jason Rumney <jasonr@gnu.org>
12170
12171 * w32fns.c (enum_font_cb2): Use leading @ on face name to detect
12172 vertical fonts. Allow them if face name is explicitly specified.
12173 Do not give up if we find a font that cannot be converted to an xlfd.
12174
12175 2001-11-10 Gerd Moellmann <gerd@gnu.org>
12176
12177 * unexelf.c (unexec): Use mmap/munmap to allocate buffers
12178 instead of malloc/free.
12179
12180 2001-11-09 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12181
12182 * xfaces.c (merge_face_vectors): Use braces to follow GNU
12183 Coding Standards.
12184 (Finternal_set_lisp_face_attribute): Likewise.
12185
12186 * buffer.c (Fbury_buffer): Likewise.
12187
12188 * indent.c (current_column_1): Remove unused variable `prev_col'.
12189
12190 * coding.c (encode_coding): Use precomputed value of `src'.
12191 (encode_coding): Remove unused variable `src_end'.
12192 (code_convert_region): Remove unused variables `count'.
12193
12194 2001-11-07 Jason Rumney <jasonr@gnu.org>
12195
12196 * w32term.c (x_display_and_set_cursor): Do not move system caret
12197 if cursor_glyph is NULL.
12198
12199 2001-11-07 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12200
12201 * keymap.c (access_keymap): Fix compilation error.
12202
12203 2001-11-07 Miles Bader <miles@gnu.org>
12204
12205 * xfns.c (x_set_frame_parameters): Avoid infinite recursion.
12206
12207 2001-11-07 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12208
12209 * intervals.c (graft_intervals_into_buffer):
12210 Remove #ifdef'd-out code.
12211 (graft_intervals_into_buffer): Remove unused variable `middle'.
12212
12213 * lread.c (Feval_region): Remove obsolete #ifdef'd-out
12214 code (eval-current-buffer).
12215 Change doc-string comments to `new style' [w/`doc:' keyword].
12216
12217 2001-11-06 Richard M. Stallman <rms@gnu.org>
12218
12219 * keymap.c (access_keymap): Don't use initializers on Lisp_Object.
12220
12221 2001-11-06 Stefan Monnier <monnier@cs.yale.edu>
12222
12223 * lread.c (read1): Fix behavior with nested backquoting.
12224
12225 * keyboard.c (make_lispy_event): Check integerness and fix
12226 Lisp_Object/int mixup.
12227
12228 2001-11-06 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12229
12230 * fns.c (copy_hash_table): Remove unused variable `v'.
12231
12232 * fontset.c (fontset_font_pattern): Remove unused variable
12233 `family_registry'.
12234
12235 * indent.c (current_column_1): Remove unused variable `prev_col'.
12236
12237 2001-11-05 Richard M. Stallman <rms@gnu.org>
12238
12239 * m/news-risc.h (BROKEN_PROTOTYPES): Defined.
12240
12241 * buffer.c (Fkill_buffer): Don't delete auto save file
12242 if buffer is modified.
12243
12244 2001-11-05 Andrew Innes <andrewi@gnu.org>
12245
12246 * w32proc.c (Fw32_set_keyboard_layout): Use CHECK_NUMBER_CAR and
12247 CHECK_NUMBER_CDR.
12248
12249 2001-11-05 Richard M. Stallman <rms@gnu.org>
12250
12251 * unexelf.c (unexec): Minor changes; clean up comments.
12252
12253 2001-11-05 Sam Steingold <sds@gnu.org>
12254
12255 * w32term.c (x_display_and_set_cursor): Fix w32 compilation error.
12256
12257 2001-11-05 Andreas Schwab <schwab@suse.de>
12258
12259 * sound.c (sound_perror): Save errno from being clobbered.
12260
12261 2001-11-05 Dale Hagglund <rdh@yottayotta.com>
12262
12263 * unexelf.c (unexec): Don't use `mmap'. Instead, read and write
12264 the program image directly.
12265
12266 2001-11-05 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12267
12268 * buffer.h (Fbuffer_local_value): Add prototype.
12269
12270 2001-11-04 Richard M. Stallman <rms@gnu.org>
12271
12272 * buffer.c (Fbuffer_local_value): Remove extra args from CHECK_SYMBOL
12273 and CHECK_BUFFER.
12274
12275 * keyboard.c (read_char): Use Fcar and Fcdr, not Fnth.
12276 (record_char): Likewise.
12277
12278 * keyboard.c (make_lispy_event): Don't insist a drag event must
12279 move to a different buffer position. Instead, check for moving at
12280 least double_click_fuzz.
12281
12282 * fns.c (Fmake_hash_table): Use XCAR and XCDR, not Fnth and Flength.
12283
12284 * keyboard.c (echo-area-clear-hook): Undo Oct 29 change.
12285
12286 * indent.c (current_column_1, Fmove_to_column): Separate the code
12287 for display-table glyphs from the code for buffer text, to fix
12288 bugs in the former.
12289
12290 2001-11-04 Michael Welsh Duggan <md5i@cs.cmu.edu>
12291
12292 * buffer.c (Fbuffer_local_value): New function.
12293 (syms_of_buffer): Defsubr it.
12294
12295 * xterm.c, w32term.c (x_display_and_set_cursor): Use buffer-local
12296 value of `cursor-in-non-selected-windows'.
12297
12298 * lisp.h (Qcursor_in_non_selected_windows): New declaration.
12299 * xdisp.c (Qcursor_in_non_selected_windows): New variable.
12300 (syms_of_xdisp): Initialize it.
12301
12302 2001-11-04 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12303
12304 * xfns.c (Fx_create_frame): Doc fix.
12305
12306 * coding.c: Change doc-string comments to `new style' [w/`doc:'
12307 keyword].
12308
12309 * eval.c (top_level_value, top_level_set): Remove commented and
12310 #ifdef'd-out code.
12311 (Fdefvar): Fix usage in doc-string.
12312
12313 2001-11-03 Richard M. Stallman <rms@gnu.org>
12314
12315 * xfns.c: Include unistd.h, if it exists.
12316
12317 * editfns.c: Move the include of ctype.h after unistd.h.
12318
12319 * gmalloc.c: Test BROKEN_PROTOTYPES.
12320
12321 2001-11-03 Ken Raeburn <raeburn@gnu.org>
12322
12323 * lisp.h (CHECK_STRING_CAR): New macro.
12324 * lread.c (Fload): Use XSETCARFASTINT, XSETCDRFASTINT instead of
12325 treating XCAR and XCDR as lvalues.
12326 (openp): Use CHECK_STRING_CAR.
12327 (read_list): Use XSETCDR instead of treating XCDR as lvalue.
12328
12329 2001-11-03 Eli Zaretskii <eliz@is.elta.co.il>
12330
12331 * s/sco5.h (sigprocmask_set): Declare as extern SIGMASKTYPE.
12332 (SIGMASKTYPE): Define.
12333
12334 * syssignal.h (sigunblock): Don't define if already defined.
12335
12336 2001-11-02 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12337
12338 * eval.c (debugger_may_continue, Vdebug_ignored_errors)
12339 (call_debugger, Fcondition_case, skip_debugger, unbind_to):
12340 Fix typos in comments.
12341
12342 * mocklisp.c (Fml_defun, Fml_while, Fml_substr): Remove commented
12343 and #ifdef'd-out code.
12344 Fix and reindent comments.
12345
12346 * mocklisp.h: Remove comment which is a copy of comment in mocklisp.c.
12347
12348 * category.h (CHECK_CATEGORY, CHECK_CATEGORY_SET): Remove unused
12349 argument `i' in macros.
12350
12351 * frame.h (CHECK_FRAME, CHECK_LIVE_FRAME): Remove unused argument
12352 `i' in macros.
12353
12354 * lisp.h (CHECK_STRING_OR_BUFFER, CHECK_HASH_TABLE, CHECK_LIST)
12355 (CHECK_STRING, CHECK_CONS, CHECK_SYMBOL, CHECK_CHAR_TABLE)
12356 (CHECK_VECTOR, CHECK_VECTOR_OR_CHAR_TABLE, CHECK_BUFFER)
12357 (CHECK_WINDOW, CHECK_LIVE_WINDOW, CHECK_PROCESS, CHECK_NUMBER)
12358 (CHECK_NATNUM, CHECK_MARKER, CHECK_NUMBER_COERCE_MARKER)
12359 (CHECK_FLOAT, CHECK_NUMBER_OR_FLOAT)
12360 (CHECK_NUMBER_OR_FLOAT_COERCE_MARKER, CHECK_OVERLAY)
12361 (CHECK_NUMBER_CAR, CHECK_NUMBER_CDR): Remove unused argument `i'
12362 in macros.
12363
12364 * abbrev.c, alloc.c, buffer.c, bytecode.c, callint.c, callproc.c,
12365 * casefiddle.c, category.c, ccl.c, charset.c, cmds.c, coding.c,
12366 * composite.c, data.c, dired.c, dispnew.c, doc.c, dosfns.c, emacs.c,
12367 * eval.c, fileio.c, filelock.c, fns.c, fontset.c, frame.c, frame.h,
12368 * indent.c, keyboard.c, keymap.c, lread.c, macros.c, marker.c,
12369 * minibuf.c, mocklisp.c, msdos.c, print.c, process.c, search.c,
12370 * sunfns.c, syntax.c, textprop.c, undo.c, w16select.c, w32console.c,
12371 * w32fns.c, w32menu.c, w32proc.c, w32select.c, window.c, xdisp.c,
12372 * xfaces.c, xmenu.c, xselect.c: Update usage of CHECK_ macros
12373 (remove unused second argument).
12374
12375 2001-11-02 Stefan Monnier <monnier@cs.yale.edu>
12376
12377 * syntax.c (describe_syntax): New wrapper.
12378 (Finternal_describe_syntax_value): Rename from describe_syntax.
12379 Don't insert space at front and \n at the end.
12380 (syms_of_syntax): Defsubr Sinternal_describe_syntax_value.
12381
12382 * regex.c (re_wctype): Try to fix some warnings.
12383 (regcomp, regexec): Don't forget the __restrict.
12384
12385 2001-11-02 Richard M. Stallman <rms@gnu.org>
12386
12387 * textprop.c (Fget_char_property): Doc fix.
12388
12389 2001-11-02 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12390
12391 * process.c (Fstart_process): Add usage to doc-string.
12392
12393 * data.c (Fsetq_default): Ditto.
12394
12395 * callint.c (Finteractive): Ditto.
12396
12397 2001-11-01 Stefan Monnier <monnier@cs.yale.edu>
12398
12399 * macros.c: Don't include keymap.h any more.
12400
12401 2001-11-01 Richard M. Stallman <rms@gnu.org>
12402
12403 * data.c (Fmake_local_variable): Doc fix.
12404
12405 * eval.c (Frun_hooks, Frun_hook_with_args_until_failure): Doc fix.
12406 (Frun_hook_with_args_until_success, Frun_hook_with_args): Doc fix.
12407
12408 * keymap.c (Fdescribe_buffer_bindings): Print character property
12409 bindings along with or instead of the buffer local map.
12410 Make the overriding maps override what they should.
12411
12412 2001-11-01 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12413
12414 * window.c (grow_mini_window): Fix typo in comment.
12415
12416 2001-11-01 Gerd Moellmann <gerd@gnu.org>
12417
12418 * xterm.c (x_scroll_bar_create): Check for width and height > 0.
12419 (XTset_vertical_scroll_bar): Likewise.
12420
12421 * xfns.c (x_build_heuristic_mask): Use four_corners_best
12422 instead of IMAGE_BACKGROUND.
12423
12424 * xfns.c (four_corners_best): Reindent.
12425
12426 * xfaces.c (Finternal_set_lisp_face_attribute_from_resource):
12427 Handle :box so that it is possible to specify sexprs.
12428
12429 2001-10-31 Eli Zaretskii <eliz@is.elta.co.il>
12430
12431 * s/hpux11.h: New file.
12432
12433 2001-10-31 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12434
12435 * emacs.c (USAGE1): Show command line option --no-window-system
12436 instead of --no-windows in usage.
12437 (standard_args): Rename --no-windows to --no-window-system.
12438 (bug_reporting_address): Follow Emacs coding conventions.
12439
12440 * eval.c (Fcommandp): Doc fix.
12441 Change doc-string comments to `new style' [w/`doc:' keyword].
12442
12443 * frame.c (Fframe_live_p): Doc fix.
12444
12445 * buffer.c (selective-display-ellipses): Doc fix.
12446
12447 2001-10-31 Gerd Moellmann <gerd@gnu.org>
12448
12449 * lread.c (to_multibyte): Fix computation of new read_buffer_size.
12450
12451 * xfaces.c (realize_x_face): If C is not a single-byte character,
12452 set the face's colors_copied_bitwise_p instead of the defaulted_p
12453 members which have a different meaning.
12454 (free_face_colors): Do nothing for a face whose colors have been
12455 copied bitwise.
12456
12457 * dispextern.h (struct face) <colors_copied_bitwise_p>: New member.
12458
12459 2001-10-31 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12460
12461 * marker.c, mocklisp.c: Change doc-string comments to `new style'
12462 [w/`doc:' keyword].
12463
12464 2001-10-31 Gerd Moellmann <gerd@gnu.org>
12465
12466 * fns.c (require_unwind): Return Lisp_Object.
12467
12468 2001-10-31 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12469
12470 * keyboard.c (lucid-menu-bar-dirty-flag): Doc fix.
12471 (last-input-char): Revert doc-string to be the same as the
12472 doc-string of `last-input-event'.
12473
12474 * xdisp.c: Fix typos in comments.
12475
12476 2001-10-31 Gerd Moellmann <gerd@gnu.org>
12477
12478 * window.c (grow_mini_window): Handle case that the root
12479 window is already smaller than the nominal mininum height.
12480
12481 2001-10-30 Stefan Monnier <monnier@cs.yale.edu>
12482
12483 * emacs.c (main): Don't call keys_of_macros any more.
12484
12485 * lisp.h (keys_of_macros): Remove.
12486
12487 * macros.c (keys_of_macros): Remove.
12488
12489 * xfaces.c (Fface_attribute_relative_p): Declare args.
12490
12491 2001-10-30 Jason Rumney <jasonr@gnu.org>
12492
12493 * w32fns.c (w32_to_x_charset): Increase size of XLFD charset buffer.
12494 (enum_font_cb2): Ignore fonts with vertical orientation.
12495
12496 2001-10-30 Richard M. Stallman <rms@gnu.org>
12497
12498 * keyboard.c (Finput_pending_p): Doc fix.
12499
12500 2001-10-30 Gerd Moellmann <gerd@gnu.org>
12501
12502 * xterm.c (x_after_update_window_line): Don't run the code
12503 clearing in borders for rows whose visible height is 0.
12504
12505 * xdisp.c (clear_garbaged_frames): Redraw the frame only if its
12506 resized_p flag is set. If not set, use the much less flickering
12507 method previously used.
12508
12509 * dispnew.c (change_frame_size_1): Set frame's resized_p.
12510
12511 * frame.h (struct frame) <resized_p>: New member.
12512
12513 * lread.c (to_multibyte): Ensure read_buffer is at least twice
12514 as large as the number of bytes to convert.
12515
12516 * lread.c (to_multibyte): New function.
12517 (read1): Use it.
12518
12519 2001-10-30 Eli Zaretskii <eliz@is.elta.co.il>
12520
12521 * msdos.h (FRAME_LINE_HEIGHT): Define (it's used by xmenu.c).
12522
12523 2001-10-30 Gerd Moellmann <gerd@gnu.org>
12524
12525 * xterm.c (x_draw_relief_rect): Correct bottom relief by 1 pixel.
12526 (x_set_glyph_string_background_width): Set extends_to_end_of_line_p
12527 if the row's fill_line_p is set and drawing the last glyph with
12528 DRAW_IMAGE_{RAISED,SUNKEN}.
12529
12530 * xdisp.c (clear_garbaged_frames): Call Fredraw_frame.
12531
12532 2001-10-29 Stefan Monnier <monnier@cs.yale.edu>
12533
12534 * xmenu.c: Include coding.h and charset.h.
12535 (Fx_popup_menu): Use FRAME_PTR and FRAME_FONT and FRAME_LINE_HEIGHT.
12536 (Fx_popup_dialog): Use FRAME_PTR and enum scroll_bar_part.
12537 (single_submenu, xmenu_show): Use ENCODE_SYSTEM.
12538 Explicitly set wv->help. Use `TRUE' rather than `True'.
12539 (menu_help_callback): Use empty_string.
12540
12541 * w32menu.c (Fx_popup_menu): Explicitly init f, xpos, and ypos.
12542 (Fx_popup_dialog): Explicitly init f.
12543 (w32_menu_display_help): Use empty_string.
12544
12545 2001-10-29 Richard M. Stallman <rms@gnu.org>
12546
12547 * fns.c (Frequire): Detect recursive try to require the same
12548 feature 3 or more levels deep, and get error.
12549 (require_unwind): New subroutine.
12550 (require_nesting_list): New variable.
12551 (syms_of_fns): Init and staticpro it.
12552
12553 * print.c (print_object): Clarify indication of insertion type.
12554
12555 2001-10-29 Eli Zaretskii <eliz@is.elta.co.il>
12556
12557 * coding.c (syms_of_coding): Document that locale-coding-system is
12558 used for decoding input on X.
12559
12560 * window.c (Fscroll_left, Fscroll_right): Doc fix.
12561
12562 2001-10-29 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12563
12564 * keyboard.c (Finput_pending_p): Fix typo in doc-string.
12565 (echo-area-clear-hook): Properly DEFVAR_LISP and staticpro it.
12566
12567 2001-10-29 Gerd Moellmann <gerd@gnu.org>
12568
12569 * xterm.c (x_display_and_set_cursor): If cursor_in_echo_area,
12570 use NO_CURSOR if cursor_in_non_selected_windows is false.
12571
12572 * xfaces.c (Fface_font): Use UNSPECIFIEDP instead of NILP for
12573 the slant attribute if FRAME is t.
12574
12575 * xfns.c (x_set_internal_border_width): Set frame garbaged
12576 when X window doesn't exist yet.
12577
12578 * xterm.c (x_after_update_window_line): Clear internal border
12579 in different circumstances.
12580
12581 * xterm.c (XTread_socket) <KeyPress>: Don't use
12582 STRING_CHAR_AND_LENGTH if nchars == nbytes. From Kenichi Handa
12583 <handa@etl.go.jp>.
12584
12585 2001-10-28 Eli Zaretskii <eliz@is.elta.co.il>
12586
12587 * m/ibms390.h: New file. From Adam Thornton
12588 <athornton@sinenomine.net>.
12589
12590 2001-10-28 Gerd Moellmann <gerd@gnu.org>
12591
12592 * xfns.c (x_build_heuristic_mask): Use x_alloc_image_color.
12593
12594 * xfns.c (x_build_heuristic_mask): Fix a bug not incrementing
12595 a loop counter.
12596
12597 2001-10-28 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12598
12599 * emacs.c: Use argv[0] instead of emacs when -t was specified.
12600
12601 * keyboard.c: Change doc-string comments to `new style' [w/`doc:'
12602 keyword].
12603 Fix typos in comments.
12604
12605 * emacs.c (bug_reporting_address): New function.
12606 Use it when displaying usage message.
12607
12608 * minibuf.c (read_minibuf): Remove unused external declaration of
12609 variable `Qread_only'.
12610
12611 * keymap.c (access_keymap): Remove unused variable `charset'.
12612
12613 2001-10-28 Miles Bader <miles@gnu.org>
12614
12615 * xfaces.c (merge_face_heights): Handle TO being relative as well.
12616 Remove #ifdef'd-out code.
12617 (Fface_attribute_relative_p, Fmerge_face_attribute): New functions.
12618 (syms_of_xfaces): Initialize them.
12619
12620 2001-10-27 Jason Rumney <jasonr@gnu.org>
12621
12622 * w32fns.c (w32_wnd_proc) <WM_KILLFOCUS>: Destroy the system caret.
12623 <WM_EMACS_DESTROY_CARET, WM_EMACS_TRACK_CARET>: Track cursor
12624 position using the system caret.
12625
12626 * w32term.c (w32_system_caret_hwnd, w32_system_caret_width)
12627 (w32_system_caret_height, w32_system_caret_x)
12628 (w32_system_caret_y): New variables for tracking system caret.
12629 (w32_initialize): Initialize them.
12630 (x_display_and_set_cursor): Make system caret follow the active cursor.
12631
12632 * w32term.h (WM_EMACS_TRACK_CARET, WM_EMACS_DESTROY_CARET):
12633 New messages types.
12634
12635 * w32term.c (note_mouse_highlight): Clear old help_echo.
12636
12637 2001-10-27 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12638
12639 * xterm.c: Fix typo in a comment.
12640
12641 * emacs.c: Fix typos in comments.
12642 Remove unnecessary spaces.
12643 Change doc-string comments to `new style' [w/`doc:' keyword].
12644 (USAGE2): Fix typos in usage string.
12645
12646 * xterm.c: Fix typo in a comment.
12647
12648 * lisp.h: (gdb_lisp_params): Remove code in #if 0 which is now in
12649 emacs.c.
12650
12651 2001-10-27 Gerd Moellmann <gerd@gnu.org>
12652
12653 * xdisp.c (move_it_vertically_backward): Use 2/3 line_height
12654 instead of 1/2 line_height in the heuristic for skipping
12655 farther backward when target_y was not reached.
12656
12657 * sound.c (sound_perror): Unblock SIGIO, turn on atimers.
12658 Display errno only if non-zero.
12659 (sound_warning): New function.
12660 (vox_configure): Don't treat failing to set sample rate as error.
12661 (various places): Improve error messages.
12662
12663 2001-10-26 Eli Zaretskii <eliz@is.elta.co.il>
12664
12665 * fileio.c (Faccess_file): Run the argument filename through
12666 Fexpand_file_name, before using it.
12667
12668 * dispnew.c (syms_of_display) <visible-bell>: Add a reference to
12669 ring-bell-function. Suggested by Alf-Ivar Holm <alfh@ifi.uio.no>
12670
12671 2001-10-26 Gerd Moellmann <gerd@gnu.org>
12672
12673 * insdel.c (insert_1_both): Do nothing if NCHARS == 0.
12674
12675 * xterm.c (XTset_vertical_scroll_bar) [!USE_TOOLKIT_SCROLL_BARS]:
12676 Fix clearing in the case of scroll bars on the right.
12677
12678 2001-10-26 Juanma Barranquero <lektu@terra.es>
12679
12680 * w32gui.h (XImage): Add a dummy typedef.
12681
12682 2001-10-26 Gerd Moellmann <gerd@gnu.org>
12683
12684 * xfns.c (XScreenNumberOfScreen): Fix struct to pointer comparison.
12685
12686 2001-10-25 Eli Zaretskii <eliz@is.elta.co.il>
12687
12688 * frame.c (Fframe_parameter): Fix last change.
12689
12690 * fileio.c: Revert last change (which removed old commented-out
12691 version of expand-file-name). Add a comment that explains why
12692 this old version should not be removed.
12693
12694 2001-10-25 Gerd Moellmann <gerd@gnu.org>
12695
12696 * frame.c (Fframe_parameter): Fix a bug whereby some
12697 ``artificial'' frame parameters, like `minibuffer' were not
12698 obtained by calling Fframe_parameters.
12699
12700 * xterm.c (show_mouse_face): Clean up. Recognize overwritten
12701 cursor differently.
12702
12703 * xdisp.c (move_it_vertically_backward): Compute line height
12704 differently. Add heuristic to try to be more compatible to 20.x.
12705
12706 2001-10-25 Stefan Monnier <monnier@cs.yale.edu>
12707
12708 * lisp.h (make_fixnum_or_float): Coerce double to int explicitly.
12709
12710 * editfns.c (text_property_stickiness): Fix Lisp_Object used as
12711 boolean.
12712
12713 2001-10-25 Miles Bader <miles@gnu.org>
12714
12715 * xfns.c (png_load): Make sure SPECIFIED_BG is a string.
12716 BG is a pointer to a structure, not a structure.
12717 (gif_format, png_format): Add missing commas.
12718
12719 2001-10-24 Richard M. Stallman <rms@gnu.org>
12720
12721 * xfaces.c (Fface_attributes_as_vector): New function.
12722 (syms_of_xfaces): Defsubr it.
12723
12724 2001-10-24 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12725
12726 * dispnew.c (sync_window_with_frame_matrix_rows): Remove unused
12727 variable `area'.
12728
12729 2001-10-25 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12730
12731 * search.c (scan_newline): Remove unused variable `selective_display'.
12732
12733 2001-10-25 Miles Bader <miles@gnu.org>
12734
12735 * dispextern.h (struct image): Add `background',
12736 `background_valid', and `background_transparent' fields.
12737 (image_background, image_background_transparent): New declarations.
12738 (IMAGE_BACKGROUND, IMAGE_BACKGROUND_TRANSPARENT): New macros.
12739 * xfns.c (image_background, image_background_transparent)
12740 (four_corners_best): New functions.
12741 (xpm_format, png_format, jpeg_format, tiff_format, gif_format)
12742 (gs_format): Add `:background' entry.
12743 (lookup_image): Set IMG's background color if specified.
12744 (pbm_load, xbm_load_image, png_load): Set IMG's background field
12745 when appropriate.
12746 (x_clear_image_1): Reset `background_valid' and
12747 `background_transparent_valid' fields.
12748 (x_build_heuristic_mask): Use IMAGE_BACKGROUND instead of
12749 calculating it here. Set IMG's background_transparent field.
12750 (enum xpm_keyword_index): Add XPM_BACKGROUND.
12751 (enum png_keyword_index): Add PNG_BACKGROUND.
12752 (enum jpeg_keyword_index): Add JPEG_BACKGROUND.
12753 (enum tiff_keyword_index): Add TIFF_BACKGROUND.
12754 (enum gif_keyword_index): Add GIF_BACKGROUND.
12755 (enum gs_keyword_index): Add GS_BACKGROUND.
12756 (pbm_load, png_load, jpeg_load, tiff_load, gif_load):
12757 Pre-calculate image background color where necessary.
12758 * xterm.c (x_setup_relief_colors): Use `IMAGE_BACKGROUND' and
12759 `IMAGE_BACKGROUND_TRANSPARENT' to calculate the correct background
12760 color to use for image glyph reliefs.
12761
12762 2001-10-24 Gerd Moellmann <gerd@gnu.org>
12763
12764 * xterm.c (x_draw_glyphs): Don't check for cursor overwriting
12765 in full-width rows.
12766
12767 * xterm.c (XTset_vertical_scroll_bar) [!USE_TOOLKIT_SCROLL_BARS]:
12768 Fix clearing of area not covered by scroll bar.
12769
12770 2001-10-24 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12771
12772 * xterm.c: (x_insert_glyphs): Remove unused variables `real_end'
12773 and `real_start'.
12774 (x_draw_image_foreground): Remove unused variables `mask' and `xgcv'.
12775 (glyph_rect): Remove unused variable `area'.
12776
12777 2001-10-24 Gerd Moellmann <gerd@gnu.org>
12778
12779 * xdisp.c: Change #ifdef GLYPH_DEBUG to #if.
12780
12781 * xdisp.c (try_window_reusing_current_matrix): Use row_containing_pos.
12782 (row_containing_pos): Take additional argument DY.
12783 Treat rows ending in middle of char differently.
12784 (display_line): Handle tabs on window systems differently.
12785
12786 * xterm.c, w32term.c (fast_find_position): Call row_containing_pos
12787 with additional argument.
12788
12789 * dispextern.h (row_containing_pos): Adjust prototype.
12790
12791 * xdisp.c (inhibit_try_window_id, inhibit_try_window_reusing)
12792 (inhibit_try_cursor_movement) [GLYPH_DEBUG]: New variables.
12793 (try_window_id, try_window_reusing_current_matrix)
12794 (try_cursor_movement) [GLYPH_DEBUG]: Don't run if inhibited.
12795 (syms_of_xdisp) [GLYPH_DEBUG]: DEFVAR_BOOL the variables.
12796
12797 2001-10-24 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12798
12799 * xmenu.c: Spell the name of Emacs properly (GNU Emacs instead of
12800 gnuemacs).
12801 (HAVE_BOXES): Fix typo in comment.
12802 (push_menu_pane): Fix typo in comment.
12803
12804 * xdisp.c: (display_prop_string_p): Remove unused local declaration
12805 of `Qwhen'.
12806 (single_display_prop_string_p): Remove unused local declarations
12807 of `Qwhen' and `Qmargin'.
12808 (string_buffer_position): Remove unused variable `around'.
12809 (store_frame_title): Remove unused variable `width'.
12810
12811 * window.c: Don't define max.
12812 (coordinates_in_window): Remove unused variable `uy'.
12813
12814 * widget.c: Don't define max.
12815
12816 * process.c: Don't define max.
12817 (create_process): Remove unused variable `buffer'.
12818
12819 2001-10-23 Gerd Moellmann <gerd@gnu.org>
12820
12821 * xfaces.c (Finternal_set_lisp_face_attribute): Fix compilation error.
12822
12823 2001-10-23 Eli Zaretskii <eliz@is.elta.co.il>
12824
12825 * xfaces.c (Finternal_set_lisp_face_attribute)
12826 [HAVE_WINDOW_SYSTEM]: Don't do anything for QCfont unless the
12827 frame is on a windowed display.
12828
12829 2001-10-23 Gerd Moellmann <gerd@gnu.org>
12830
12831 * dispnew.c (sync_window_with_frame_matrix_rows):
12832 Fix handling of windows which aren't full-width, fix handling
12833 of marginal areas.
12834
12835 * lread.c (syms_of_lread) <recursive-load-depth-limit>: Raise to 50.
12836
12837 2001-10-23 Andreas Schwab <schwab@suse.de>
12838
12839 * m/macppc.h [LINUX]: Undef LD_SWITCH_SYSTEM_TEMACS and override
12840 LD_SWITCH_MACHINE_TEMACS with "-Xlinker -znocombreloc".
12841
12842 2001-10-23 Gerd Moellmann <gerd@gnu.org>
12843
12844 * xterm.c (x_draw_glyphs): Remove parameters READ_START and
12845 REAL_END. Notice if cursor gets overwritten.
12846 (notice_overwritten_cursor): Take X positions as parameters.
12847 (x_draw_phys_cursor_glyph): Save state of w->phys_cursor_on_p
12848 around call to x_draw_glyphs.
12849
12850 2001-10-23 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12851
12852 * syntax.c (modify-syntax-entry): Fix argument names (use CHAR
12853 instead of C) and usage.
12854
12855 * editfns.c (char-to-string): Fix argument names (use CHAR instead
12856 of C) and usage.
12857
12858 * xfns.c (Fx_show_tip): Remove unused variables `buffer', `top',
12859 `left', `max_width' and `max_height'.
12860
12861 2001-10-23 Gerd Moellmann <gerd@gnu.org>
12862
12863 * xdisp.c (display_line): For a tab continued to the next line,
12864 set row's ends_in_middle_of_char_p.
12865
12866 2001-10-22 Gerd Moellmann <gerd@gnu.org>
12867
12868 * xdisp.c (display_line): Fix computation of continuation lines
12869 width for TABs.
12870
12871 2001-10-22 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12872
12873 * xdisp.c (build_desired_tool_bar_string): Remove unused variable
12874 `Qlaplace'.
12875
12876 * fileio.c: Remove unused code.
12877
12878 2001-10-22 Miles Bader <miles@gnu.org>
12879
12880 * lisp.h (DEFVAR_LISP, DEFVAR_LISP_NOPRO, DEFVAR_BOOL)
12881 (DEFVAR_INT, DEFVAR_PER_BUFFER, DEFVAR_KBOARD):
12882 Remove `DOC_STRINGS_IN_COMMENTS' cases.
12883
12884 2001-10-21 Jason Rumney <jasonr@gnu.org>
12885
12886 * w32term.c (x_erase_phys_cursor): Remove inverse_p again.
12887
12888 2001-10-21 Eli Zaretskii <eliz@is.elta.co.il>
12889
12890 * mocklisp.c (Fml_if, Fml_provide_prefix_argument)
12891 (Finsert_string): Avoid the multi-line string literals warning.
12892
12893 2001-10-22 Miles Bader <miles@gnu.org>
12894
12895 * doc.c (Vhelp_manyarg_func_alist): Variable removed.
12896 (Fdocumentation): Don't use it.
12897 (syms_of_doc): Don't initialize it.
12898
12899 * keyboard.c (Ftrack_mouse): Add usage: string to doc string.
12900 * print.c (Fwith_output_to_temp_buffer): Likewise.
12901 * window.c (Fsave_window_excursion): Likewise.
12902 * editfns.c (Fsave_excursion, Fsave_current_buffer)
12903 (Fsave_restriction): Likewise.
12904 * eval.c (Frun_hooks, Frun_hook_with_args)
12905 (Frun_hook_with_args_until_failure)
12906 (Frun_hook_with_args_until_success, Ffuncall, For, Fand, Fif)
12907 (Fcond, Fprogn, Fprog1, Fprog2, Fsetq, Fquote, Ffunction, Fdefun)
12908 (Fdefmacro, Fdefvar, Fdefconst, FletX, Flet, Fwhile, Fcatch)
12909 (Funwind_protect, Fcondition_case): Likewise.
12910 * coding.c (Ffind_operation_coding_system): Likewise.
12911 * keyboard.c (Ftrack_mouse): Likewise.
12912
12913 2001-10-21 Miles Bader <miles@gnu.org>
12914
12915 * fns.c (Fappend, Fconcat, Fvconcat, Fnconc, Fwidget_apply)
12916 (Fmake_hash_table): Add usage: string to doc string.
12917 * editfns.c (Finsert, Finsert_and_inherit, Finsert_before_markers)
12918 (Fmessage, Fmessage_box, Fmessage_or_box, Fpropertize, Fformat)
12919 (Fencode_time, Finsert_and_inherit_before_markers): Likewise.
12920 * mocklisp.c (Finsert_string, Fml_if, Fml_provide_prefix_argument)
12921 (Fml_prefix_argument_loop): Likewise.
12922
12923 2001-10-21 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12924
12925 * fileio.c (Finsert_file_contents): Remove unused variable `gap_size'.
12926
12927 * sysdep.c (init_sys_modes): Change doc-string comments to `new
12928 style' [w/`doc:' keyword].
12929
12930 * data.c, fileio.c, indent.c, print.c, search.c, sound.c,
12931 * sunfns.c, textprop.c, undo.c, xselect.c: Change doc-string
12932 comments to `new style' [w/`doc:' keyword].
12933
12934 2001-10-21 Jason Rumney <jasonr@gnu.org>
12935
12936 * w32fns.c (Fx_file_dialog): Pass a filter to GetOpenFileName.
12937
12938 * w32term.c (remember_mouse_glyph): New function.
12939 (w32_mouse_position): Use it.
12940 (note_mouse_movement): If the mouse moved off the glyph, remember
12941 its new position.
12942
12943 * w32term.h (struct w32_output): Correct spelling of x_compatible.
12944 (w32_display_info): Add mouse_face_overlay.
12945
12946 * w32term.c (notice_overwritten_cursor): Renamed from
12947 note_overwritten_text_cursor. Rewritten to take glyph widths into
12948 account.
12949 (x_y_to_hpos_vpos): Add parameter BUFFER_ONLY_P.
12950 (fast_find_string_pos): New function.
12951 (fast_find_position): Return the correct vpos. Add parameter
12952 STOP. In the final row, stop before glyphs having STOP as object.
12953 Don't consider glyphs that are not from a buffer.
12954 (fast_find_position) [0]: Add a presumably more correct version
12955 for after 21.1.
12956 (expose_window_tree, expose_frame): Don't compute intersections here.
12957 (expose_window): Do it here instead.
12958 (expose_window_tree, expose_window, expose_line): Return 1 when
12959 overwriting mouse-face.
12960 (expose_window): If W is the window currently being updated, mark
12961 the frame garbaged.
12962 (expose_frame): If mouse-face was overwritten, redo it.
12963 (x_use_underline_position_properties): New variable.
12964 (syms_of_xterm): DEFVAR_BOOL it.
12965 (x_draw_glyph_string): Add comment to use it in future.
12966 (x_draw_glyph_string): Restore clipping after drawing box.
12967 Fix a computation of the underline position.
12968 (w32_get_glyph_string_clip_rect): Minor cleanup.
12969 (x_fill_stretch_glyph_string): Remove an assertion.
12970 (x_produce_glyphs): Don't convert multibyte characters
12971 to unibyte characters in unibyte buffers.
12972 (cursor_in_mouse_face_p): New function.
12973 (x_draw_stretch_glyph_string): Use it to choose a different GC
12974 when drawing a cursor within highlighted text. Don't draw
12975 background again if it has already been drawn.
12976 (x_draw_glyph_string_box): Don't draw a full-width
12977 box just because the glyph row's full_width_p flag is set.
12978 (x_draw_glyphs): Fix computation of rightmost x for
12979 full-width rows.
12980 (x_dump_glyph_string): Put in #if GLYPH_DEBUG.
12981 (w32_draw_relief_rect): Extend left shadow to the bottom and left;
12982 change bottom shadow accordingly. Some cleanup.
12983 (x_update_window_end): Handle overwritten mouse face
12984 also for tool bar windows.
12985 (show_mouse_face): Set the glyph row's mouse_face_p flag also when
12986 DRAW is DRAW_IMAGE_RAISED.
12987 (clear_mouse_face): Return 1 if text with mouse face was
12988 actually redrawn. Make the function static.
12989 Reset dpyinfo->mouse_face_overlay otherwise note_mouse_highlight might
12990 optimize away highlighting if we pass over that same overlay again.
12991 (note_mouse_highlight): Call mouse_face_overlay_overlaps
12992 to detect a case where we have to highlight a different region
12993 despite not having left the currently highlighted region.
12994 Set mouse_face_overlay in the x_display_info. Avoid changing the
12995 mouse pointer shape when show_mouse_face has already done it, or
12996 there is no need. Handle mouse-face and help-echo in strings.
12997 (glyph_rect): New function.
12998 (w32_mouse_position): Use it to raise the threshold for mouse
12999 movement event generation.
13000 (w32_initialize_display_info): Initialize the x_display_info's
13001 mouse_face_overlay.
13002 (w32_set_vertical_scroll_bar): Don't clear a zero height
13003 or width area.
13004 (w32_set_vertical_scroll_bar, x_scroll_bar_create): Don't configure
13005 a widget to zero height.
13006
13007 * w32menu.c (single_submenu, w32_menu_show) [!HAVE_MULTILINGUAL_MENU]:
13008 Protect unibyte strings created by replacing their multibyte
13009 equivalents in menu_items.
13010 (w32_menu_show): Don't overwrite an item's name with its key
13011 description in case the description is a multibyte string.
13012 (single_submenu): Some cleanup.
13013
13014 * w32fns.c (x_laplace_read_row, x_laplace_write_row): Removed.
13015 (postprocess_image): New function.
13016 (lookup_image): Call it for all image types except PostScript.
13017 (x_kill_gs_process): Call postprocess_image.
13018 (tiff_error_handler, tiff_warning_handler): New functions.
13019 (tiff_load): Install them as handlers.
13020 (x_kill_gs_process): Recognize if someone has cleared the image
13021 cache under us.
13022 (valid_image_p): Protect better against invalid image
13023 specifications. Previous code could signal an error.
13024 (Fx_hide_tip, Fshow_tip): Doc fix.
13025 (Fv_max_tooltip_size): New variable.
13026 (syns_of_xfns): DEFVAR_LISP it.
13027 (Fx_show_tip): Add parameter TEXT. Set the tip frame's root
13028 window buffer to *tip* right after creating the frame. Set frame's
13029 window_width. Use a maximum tooltip size specified by
13030 Vx_max_tooltip_size, if that has valid contents.
13031 (compute_tip_xy): Add parameters WIDTH and HEIGHT.
13032 Make sure the tooltip is completely visible.
13033 (x_create_tip_frame): Set tooltip buffer's truncate-lines to nil.
13034 (Fx_create_frame): Adjust the frame's height for presence
13035 of the tool bar before calling x_figure_window_size.
13036 (x_set_tool_bar_lines): Clear the tool bar window's current matrix
13037 when the window gets smaller.
13038 (x_set_foreground_color): Set frame's cursor_pixel.
13039 (x_set_foreground_color, x_set_background_color): Cleaned up.
13040 (x_set_font): Handle case of x_new_fontset returning the same name
13041 as before, although there was a change in fontsets.
13042
13043 2001-10-21 Miles Bader <miles@gnu.org>
13044
13045 * data.c (Fplus, Fminus, Fmax, Ftimes, Fquo, Flogand, Flogior)
13046 (Flogxor): Add usage: string to doc string.
13047 * charset.c (Fstring): Likewise.
13048 * callproc.c (Fcall_process_region, Fcall_process): Likewise.
13049 * alloc.c (Fmake_byte_code, Fvector, Flist): Likewise.
13050
13051 2001-10-21 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13052
13053 * buffer.c: Reindent DEFUNs and DEFVARs with doc: keywords.
13054
13055 * alloc.c: Reindent DEFUNs with doc: keywords.
13056
13057 * abbrev.c (Finsert_abbrev_table_description): Reindent.
13058
13059 * frame.c: Change doc-string comments to `new style' [w/`doc:'
13060 keyword].
13061
13062 See ChangeLog.9 for earlier changes.
13063
13064 ;; Local Variables:
13065 ;; coding: iso-2022-7bit
13066 ;; End:
13067
13068 Copyright (C) 2001, 2002 Free Software Foundation, Inc.
13069 Copying and distribution of this file, with or without modification,
13070 are permitted provided the copyright notice and this notice are preserved.
13071
13072 ;;; arch-tag: 5dcc435f-4038-4141-b3bf-5be51cd76bd4