Use version-list-* functions in package.el.
[bpt/emacs.git] / src / ChangeLog
1 2010-08-09 Dan Nicolaescu <dann@ics.uci.edu>
2
3 Use const char* instead of char*.
4 Reduce the number of warnings with -Wwrite-strings.
5 * xrdb.c (get_environ_db, get_system_name):
6 * unexelf.c (find_section):
7 * term.c (string_cost, string_cost_one_line, per_line_cost)
8 (get_named_tty, init_tty):
9 * sysdep.c (sys_subshell):
10 * sound.c (sound_perror, sound_warning, vox_open, vox_init)
11 (alsa_sound_perror, alsa_open, alsa_configure, alsa_init):
12 * search.c (Freplace_match):
13 * process.c (Fmake_network_process, send_process, init_process):
14 * lread.c (Fload, init_lread):
15 * keymap.c (Fdescribe_buffer_bindings, describe_map_tree):
16 * keyboard.c (parse_tool_bar_item, struct event_head):
17 * gtkutil.h (xg_get_font_name):
18 * gtkutil.c (get_dialog_title, create_dialog, xg_get_font_name)
19 (make_widget_for_menu_item, make_menu_item, create_menus)
20 (xg_make_tool_item):
21 * font.c (parse_matrix, font_parse_name):
22 * floatfns.c (rounding_driver, float_error_fn_name):
23 * filelock.c (get_boot_time_1, lock_file_1):
24 * fileio.c (barf_or_query_if_file_exists, check_writable):
25 * editfns.c (get_system_name, get_operating_system_release)
26 (Fencode_time, Fset_time_zone_rule):
27 * dispextern.h (string_cost, per_line_cost, get_named_tty, init_tty):
28 * buffer.c (defvar_per_buffer): Use const.
29
30 2010-08-08 Kenichi Handa <handa@m17n.org>
31
32 * charset.c: Include <stdlib.h>
33 (struct charset_sort_data): New struct.
34 (charset_compare): New function.
35 (Fsort_charsets): New funciton.
36 (syms_of_charset): Declare Fsort_charsets as a Lisp function.
37
38 * coding.c (decode_coding_iso_2022): Fix checking of dimension
39 number in CTEXT extended segment.
40
41 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
42
43 * w32fns.c (syms_of_w32fns) <x-max-tooltip-size>: Fix typo in docstring.
44 * xfns.c (syms_of_xfns) <x-max-tooltip-size>: Reflow docstring.
45
46 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
47
48 * fns.c (Fsubstring_no_properties, Fnthcdr, Ffeaturep)
49 (Fhash_table_size): Fix typos in docstrings.
50 (Fmake_hash_table): Doc fix.
51
52 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
53
54 * minibuf.c (syms_of_minibuf) <read-buffer-function>:
55 Doc fix (bug#5625).
56
57 2010-08-08 Ken Brown <kbrown@cornell.edu>
58
59 * dired.c (DIRENTRY_NONEMPTY) [cygwin]: Use d_ino instead of
60 the MSDOS definition.
61
62 2010-08-08 Dan Nicolaescu <dann@ics.uci.edu>
63
64 Use const char* instead of char*.
65 * xterm.c (x_create_toolkit_scroll_bar):
66 * xfont.c (xfont_list_pattern):
67 * xfns.c (x_default_scroll_bar_color_parameter)
68 (xic_create_fontsetname, x_default_font_parameter)
69 (x_screen_planes):
70 * xdisp.c (c_string_pos, number_of_chars, reseat_to_string)
71 (store_mode_line_string, decode_mode_spec, display_string):
72 * menu.c (digest_single_submenu):
73 * keymap.h (initial_define_key, initial_define_lispy_key):
74 * keymap.c (initial_define_key, initial_define_lispy_key):
75 * image.c (image_error, image_keyword):
76 * gtkutil.h (xg_create_widget, xg_create_scroll_bar):
77 * gtkutil.c (xg_create_widget, xg_create_scroll_bar):
78 * ftfont.c (struct fc_charset_table, ftfont_spec_pattern)
79 (ftfont_list, ftfont_match):
80 * frame.c (frame_parm_table):
81 * font.h (font_intern_prop, font_parse_xlfd, font_parse_fcname)
82 (font_unparse_fcname, font_unparse_fcname, font_open_by_name)
83 (font_add_log, font_deferred_log):
84 * font.c (font_intern_prop, font_parse_xlfd, font_parse_fcname)
85 (font_unparse_fcname, font_unparse_fcname, font_open_by_name)
86 (font_add_log, font_deferred_log):
87 * emacs.c (argmatch):
88 * dispextern.h (struct it):
89 * coding.c (ENCODE_DESIGNATION):
90 * charset.c (define_charset_internal): Use const.
91
92 * s/freebsd.h (DECLARE_GETPWUID_WITH_UID_T): Remove, unused.
93
94 * xrdb.c: Remove include guard. Remove
95 DECLARE_GETPWUID_WITH_UID_T conditional it had no effect.
96 Remove #if 0 code. Replace malloc->xmalloc, free->xfree,
97 realloc->xrealloc instead of using #defines.
98
99 2010-08-08 Eli Zaretskii <eliz@gnu.org>
100
101 * cmds.c (Fforward_line, Fbeginning_of_line, Fend_of_line):
102 * editfns.c (Fline_beginning_position, Fline_end_position): State
103 in the doc strings that start and end of line are in the logical
104 order.
105
106 * xdisp.c (display_line): Move the handling of overlay arrow after
107 the call to find_row_edges. (Bug#6699)
108
109 2010-08-07 Chong Yidong <cyd@stupidchicken.com>
110
111 * keyboard.c (command_loop_1):
112 * insdel.c (prepare_to_modify_buffer): Don't call validate_region.
113
114 2010-08-07 Chong Yidong <cyd@stupidchicken.com>
115
116 * insdel.c (prepare_to_modify_buffer): Save active region text to
117 Vsaved_region_selection.
118
119 * xselect.c (QPRIMARY): Move to keyboard.c.
120
121 * keyboard.c (Vselect_active_regions): Move from simple.el.
122 (Vsaved_region_selection, Qx_set_selection, QPRIMARY, Qlazy): New vars.
123 (command_loop_1): Set window selection prior to deactivating the mark.
124
125 2010-08-07 Juanma Barranquero <lekktu@gmail.com>
126
127 * alloc.c (lisp_malloc):
128 * buffer.c (set_buffer_internal, set_buffer_internal_1):
129 * charset.h (emacs_mule_charset):
130 * dispextern.h (inhibit_free_realized_faces, redraw_frame)
131 (redraw_garbaged_frames, scroll_cost, update_frame, scrolling)
132 (bitch_at_user):
133 * lisp.h (Fcheck_coding_system, Fget_text_property)
134 (Qfunction, Qcompletion_ignore_case, QCwidth, QCsize):
135 Remove duplicate declarations.
136
137 2010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
138
139 * process.c: Simplify include logic.
140
141 * keyboard.h (quit_char): Add declaration.
142 * process.h (QCport, QCspeed, QCprocess, QCbytesize, QCstopbits)
143 (QCparity, Qodd, Qeven, QCflowcontrol, Qhw, Qsw, QCsummary):
144 Add declarations.
145 * sysdep.c:
146 * w32.c: Remove the above declarations.
147
148 Remove extern declarations in .c files, .h files have them.
149 * xterm.c:
150 * xdisp.c:
151 * msdos.c:
152 * image.c:
153 * gtkutil.c:
154 * fileio.c:
155 * eval.c: Remove declarations.
156
157 * frame.c (frame_params): Make const.
158
159 * lisp.h (fatal_error_signal, emacs_root_dir): Add declaration.
160
161 * emacs.c (emacs_copyright, emacs_version): Make static.
162 (Vinitial_window_system, Vauto_save_list_file_name)
163 (Vinhibit_redisplay): Remove declarations.
164 (main): Remove HAVE_SHM code, unused. Remove _I386 conditional
165 for AIX.
166
167 Use const for some arrays and functions.
168 * xterm.h (xg_set_icon_from_xpm_data):
169 * xfns.c (xg_set_icon_from_xpm_data):
170 * term.c (fkeys):
171 * keyboard.c (lispy_accent_keys, lispy_function_keys)
172 (lispy_multimedia_keys, lispy_kana_keys, iso_lispy_function_keys)
173 (lispy_drag_n_drop_names, scroll_bar_parts, modify_event_symbol)
174 (frame.c frame_parms):
175 * emacs-icon.h (gnu_xpm_bits):
176 * callint.c (callint_argfuns): Use const.
177
178 2010-08-06 Jan Djärv <jan.h.d@swipnet.se>
179
180 * sysdep.c: Move include term.h last of includes (Bug#6812).
181
182 2010-08-06 Eli Zaretskii <eliz@gnu.org>
183
184 * dispnew.c (realloc_glyph_pool): Zero out newly allocated glyphs.
185
186 * msdos.c (IT_display_cursor): Log cursor position on termscript.
187
188 * .gdbinit (pgx): Display the avoid_cursor_p flag.
189
190 2010-08-06 Juanma Barranquero <lekktu@gmail.com>
191
192 * makefile.w32-in ($(BLD)/xdisp.$(O)): Update dependencies.
193
194 2010-08-06 Jan Djärv <jan.h.d@swipnet.se>
195
196 * xterm.h (x_get_focus_frame): Declare.
197
198 * keyboard.h (poll_for_input_1): Unconditionally declare.
199
200 * nsterm.h (x_set_menu_bar_lines): Declare.
201
202 * window.c: Don't include menu.h, it depends on lots of other .h-files.
203
204 * xfaces.c (x_create_gc, x_free_gc): Convert to ANSI C prototypes.
205
206 * window.c: Include menu.h.
207
208 * unexmacosx.c (print_region_list, print_regions)
209 (build_region_list, find_emacs_zone_regions)
210 (unexec_regions_merge, read_load_commands, dump_it)
211 (unexec_init_emacs_zone): Convert to ANSI C prototypes.
212
213 * term.c: Check HAVE_SYS_IOCTL_H.
214
215 * sysdep.c: Check HAVE_TERM_H.
216
217 * process.c: Check HAVE_UTIL_H. Include nsterm.h if HAVE_NS.
218
219 * nsterm.m (ns_init_paths, ns_alloc_autorelease_pool)
220 (ns_ring_bell, ns_defined_color, hide_hourglass)
221 (x_display_pixel_height, x_display_pixel_width, syms_of_nsterm):
222 Convert to ANSI C prototypes.
223 (x_set_window_size, ns_draw_fringe_bitmap, judge): Move declarations
224 before code.
225
226 * nsterm.h : Include sysselect.h.
227 (x_sync, x_get_focus_frame, x_set_mouse_position)
228 (x_set_mouse_pixel_position, x_make_frame_visible)
229 (x_make_frame_invisible, x_iconify_frame, x_char_width, x_char_height)
230 (x_pixel_width, x_pixel_height, x_set_frame_alpha, x_set_tool_bar_lines)
231 (x_activate_menubar, free_frame_menubar, ns_init_paths, ns_select)
232 (syms_of_nsterm, syms_of_nsfns, syms_of_nsmenu, syms_of_nsselect):
233 Declare.
234
235 * nsmenu.m (popup_activated, name_is_separator)
236 (syms_of_nsmenu): Convert to ANSI C prototypes.
237 (runMenuAt): Prototypes and move declarations before code.
238
239 * nsimage.m (ns_load_image): Move NSTRACE after declarations.
240
241 * nsfont.m (ns_fallback_entity, syms_of_nsfont): Convert to ANSI C
242 prototypes.
243
244 * nsfns.m (have_menus_p, ns_display_info_for_name)
245 (x_set_cursor_type, ns_appkit_version_str)
246 (ns_appkit_version_int, ns_do_applescript)
247 (x_set_scroll_bar_default_width, x_sync, compute_tip_xy)
248 (syms_of_nsfns): Convert to ANSI C prototypes.
249
250 * menu.h (x_set_menu_bar_line): Declare.
251 (free_menubar_widget_value_tree et.al): Add HAVE_NS for these functions.
252
253 * lisp.h (fmod_float): Declare.
254
255 * image.c (xpm_scan, xpm_make_color_table_v)
256 (xpm_put_color_table_v, xpm_get_color_table_v)
257 (xpm_make_color_table_h, xpm_put_color_table_h)
258 (xpm_get_color_table_h, xpm_str_to_color_key, xpm_load_image)
259 (xpm_load): Convert to ANSI C prototypes.
260
261 * emacs.c: Include nsterm.h if HAVE_NS.
262
263 * bidi.c (bidi_dump_cached_states): Fix fprintf warning.
264
265 2010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
266
267 * process.c: Remove HAVE_SOCKETS #ifdefs inside #ifdef
268 subprocesses, only MSDOS does not define HAVE_SOCKETS.
269 (socket_options): Use const char* for name.
270
271 2010-08-06 Juanma Barranquero <lekktu@gmail.com>
272
273 Fix changes in 2010-08-05T23:15:24Z!dann@ics.uci.edu..2010-08-05T23:34:12Z!dann@ics.uci.edu for Windows build.
274
275 * xmenu.c [USE_X_TOOLKIT || USE_GTK]:
276 Don't declare xmalloc_widget_value and digest_single_submenu.
277
278 * w32font.c (Qlatin): Remove declaration.
279
280 * menu.h (xmalloc_widget_value, digest_single_submenu): Declare.
281
282 * dired.c (compile_pattern): Restore declaration.
283
284 2010-08-05 Dan Nicolaescu <dann@ics.uci.edu>
285
286 Remove extern declarations in .c files, .h files have them.
287 * data.c:
288 * dired.c:
289 * editfns.c:
290 * filelock.c:
291 * fns.c:
292 * font.c:
293 * fontset.c:
294 * frame.c:
295 * fringe.c:
296 * ftfont.c:
297 * gtkutil.c:
298 * indent.c:
299 * keyboard.c:
300 * keymap.c:
301 * lread.c:
302 * menu.c:
303 * print.c:
304 * search.c:
305 * sound.c:
306 * window.c:
307 * xdisp.c:
308 * xfaces.c:
309 * xfns.c:
310 * xfont.c:
311 * xftfont.c:
312 * xmenu.c:
313 * xterm.c: Remove declarations.
314
315 Cleanup syssignal.h.
316 * syssignal.h (sighold, sigrelse, RETSIGTYPE): Remove, unused.
317 (main_thread): Move down to remove #ifdef.
318 (SIGMASKTYPE, SIGEMPTYMASK, SIGFULLMASK, sigmask, sigunblock):
319 Remove conditional definition following unconditional ones.
320
321 * lisp.h: Remove HAVE_SHM code, unused.
322 (QCmap, QCrehash_size, QCrehash_threshold, QCsize, QCtest)
323 (QCweakness, Qabove_handle, Qbackquote, Qbar, Qbelow_handle)
324 (Qborder, Qbottom, Qbox, Qcircular_list, Qcomma, Qcomma_at)
325 (Qcomma_dot, Qcursor, Qdefault, Qdown, Qend_scroll, Qeq, Qeql)
326 (Qequal, Qfile_exists_p, Qfont_param, Qfringe, Qfunction)
327 (Qfunction_documentation, Qhandle, Qhbar, Qheader_line, Qhollow)
328 (Qidentity, Qleft_margin, Qmenu, Qmenu_bar_update_hook)
329 (Qmode_line_inactive, Qmouse, Qoverriding_local_map)
330 (Qoverriding_terminal_local_map, Qratio, Qregion, Qright_margin)
331 (Qscroll_bar, Qtool_bar, Qtop, Qup, Qvertical_border, Qwhen)
332 (Qwindow_scroll_functions, Vafter_load_alist)
333 (Vauto_save_list_file_name, Vface_alternative_font_family_alist)
334 (Vface_alternative_font_registry_alist, Vface_font_rescale_alist)
335 (Vface_ignored_fonts, Vinhibit_redisplay, Vminibuffer_list)
336 (Vprint_length, Vprint_level, Vscalable_fonts_allowed)
337 (Vshell_file_name, Vsystem_name, Vwindow_scroll_functions)
338 (Vwindow_system_version, Vx_no_window_manager, initial_argc)
339 (initial_argv, last_nonmenu_event, load_in_progress)
340 (noninteractive_need_newline, scroll_margin): Add declarations.
341
342 * keyboard.h (xmalloc_widget_value, digest_single_submenu): Remove
343 declarations, menu.h has them.
344 (QCbutton, QCtoggle, QCradio, QClabel, extra_keyboard_modifiers)
345 (Vinput_method_function, Qinput_method_function)
346 (Qevent_symbol_element_mask, last_event_timestamp):
347 * dispextern.h (Voverflow_newline_into_fringe):
348 * font.h (QCantialias, Qp, syms_of_ftfont, syms_of_xfns)
349 (syms_of_ftxfont, syms_of_xftfont, syms_of_bdffont)
350 (syms_of_w32font, syms_of_nsfont):
351 * fontset.h (find_font_encoding, Qlatin):
352 * frame.h (Qtooltip, Qrun_hook_with_args, Vmenu_bar_mode)
353 (Vtool_bar_mode, set_frame_menubar):
354 * ftfont.h (ftfont_font_format, ftfont_get_fc_charset):
355 * xterm.h (Qx_gtk_map_stock):
356 * keymap.h (meta_prefix_char): Add declarations.
357
358 * term.c: Remove dead code.
359
360 Fix emacs -Q -f server-start & emacsclient -t on GNU/Linux.
361 * term.c (dissociate_if_controlling_tty): Use USG5 instead of
362 USG. This is equivalent to defined (USG) && !defined (BSD_PGRPS),
363 which is what was there before BSD_PGRPS was removed.
364
365 2010-08-05 Eli Zaretskii <eliz@gnu.org>
366
367 * deps.mk (unexcoff.o): Rename unexec.[co] => unexcoff.[co].
368
369 * unexcoff.c: Renamed from unexec.c.
370
371 2010-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
372
373 * sysdep.c (child_setup_tty): Comment-out left-over non-ICANON code.
374
375 2010-08-03 Johan Bockgård <bojohan@gnu.org>
376
377 * data.c (Flocal_variable_p): Handle variable aliases correctly.
378 (Bug#6744)
379
380 2010-08-02 Jan Djärv <jan.h.d@swipnet.se>
381
382 * xterm.c (x_create_toolkit_scroll_bar): Only set XtNbeNiceToColormap
383 to TRUE if depth of screen is < 16.
384
385 * gtkutil.c (hierarchy_ch_cb, qttip_cb): Do not define unless
386 USE_GTK_TOOLTIP.
387 (xg_prepare_tooltip): Return 0 unless USE_GTK_TOOLTIP.
388 (xg_show_tooltip, xg_hide_tooltip): Do nothing unless USE_GTK_TOOLTIP.
389 (xg_create_frame_widgets): Surround tooltip-related code with ifdef
390 USE_GTK_TOOLTIP.
391 (xg_free_frame_widgets): Don't delete ttip_* unless USE_GTK_TOOLTIP.
392
393 * xterm.h (USE_GTK_TOOLTIP): New define.
394 (struct x_output): Put ttip_* inside ifdef USE_GTK_TOOLTIP.
395
396 * sysdep.c (child_setup_tty): Enable ICANON in lflags and set VEOF
397 to Control-D (Bug#6771).
398
399 2010-08-02 Juanma Barranquero <lekktu@gmail.com>
400
401 * editfns.c (Fregion_beginning, Fregion_end): Doc fixes (bug#6493).
402 Wording by Drew Adams <drew.adams@oracle.com>.
403
404 2010-08-01 Jan Djärv <jan.h.d@swipnet.se>
405
406 * xterm.h (struct x_output): Add ttip_widget, ttip_window and
407 ttip_lbl.
408
409 * xterm.c (x_clear_frame): Check FRAME_GTK_WIDGET (f) before
410 calling gtk_widget_queue_draw.
411 (x_free_frame_resources): Call xg_free_frame_widgets.
412
413 * xfns.c (x_gtk_use_system_tooltips): New variable.
414 (Fx_show_tip): If USE_GTK and x_gtk_use_system_tooltips, call
415 new gtkutil tooltip functions to show the tooltip.
416 (Fx_hide_tip): Call xg_hide_tooltip.
417 (syms_of_xfns): Defvar x-gtk-use-system-tooltips.
418
419 * gtkutil.h (xg_free_frame_widgets, xg_prepare_tooltip)
420 (xg_show_tooltip, xg_hide_tooltip): Declare.
421
422 * gtkutil.c (hierarchy_ch_cb, qttip_cb, xg_prepare_tooltip)
423 (xg_show_tooltip, xg_hide_tooltip, xg_free_frame_widgets):
424 New functions.
425 (xg_create_frame_widgets): Set ttip_* to 0. Set a dummy tooltip
426 text so qttip_cb is called. Connect query-tooltip to qttip_cb.
427 Remove code that is commented out.
428
429 2010-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
430
431 * keymap.c (Fdefine_key, Flookup_key): Say what event is invalid.
432
433 2010-07-31 Chong Yidong <cyd@stupidchicken.com>
434
435 * xselect.c (x_own_selection): Use list4.
436
437 2010-07-30 Dan Nicolaescu <dann@ics.uci.edu>
438
439 * buffer.c (Qwindow): Do not define, already defined in data.c.
440 (syms_of_buffer): Do not intern and staticpro Qwindow. (Bug#6760)
441
442 2010-07-29 Chad Brown <yandros@mit.edu>
443
444 Replace tests for SYSV_SYSTEM_DIR with HAVE_DIRENT_H, set via autoconf.
445 * dired.c, sysdep.c: Test HAVE_DIRENT_H instead of SYSV_SYSTEM_DIR.
446 * config.in: Undef HAVE_DIRENT_H.
447 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/gnu-linux.h,
448 * s/msdos.h, s/usg5-4.h: Don't define SYSV_SYSTEM_DIR.
449
450 2010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
451
452 Rename s/usg5-4.h -> s/usg5-4-common.h.
453 * s/usg5-4.h: Rename file to ...
454 * s/usg5-4-common.h: ... this for consistency with what we do for BSD.
455 * s/unixware.h:
456 * s/sol2-6.h:
457 * s/irix6-5.h: Update includes accordingly.
458
459 2010-07-29 Jan Djärv <jan.h.d@swipnet.se>
460
461 * xfns.c (x_set_tool_bar_position): Remove debug fprintf.
462
463 * xterm.h (struct x_output): Add toolbar_top_height,
464 toolbar_bottom_height, toolbar_left_width, toolbar_right_width.
465 Remove toolbar_height.
466 If USE_GTK: Add hbox_widget and toolbar_in_hbox.
467 (FRAME_TOOLBAR_TOP_HEIGHT, FRAME_TOOLBAR_BOTTOM_HEIGHT)
468 (FRAME_TOOLBAR_LEFT_WIDTH, FRAME_TOOLBAR_RIGHT_WIDTH): New macros.
469 (FRAME_TOOLBAR_HEIGHT): Is now TOP_HEIGHT + BOTTOM_HEIGHT.
470
471 * xterm.c (x_set_window_size_1): Add FRAME_TOOLBAR_WIDTH to pixelwidth.
472
473 * xfns.c (x_set_tool_bar_position): New function.
474 (xic_set_statusarea): Use FRAME_TOOLBAR_TOP_HEIGHT.
475 (x_frame_parm_handlers): Add x_set_tool_bar_position.
476 (syms_of_xfns): If USE_GTK, provide move-toolbar.
477
478 * window.c (calc_absolute_offset): Check for FRAME_TOOLBAR_TOP_HEIGHT
479 and FRAME_TOOLBAR_LEFT_WIDTH.
480
481 * gtkutil.h (xg_change_toolbar_position): Declare.
482
483 * gtkutil.c (FRAME_TOTAL_PIXEL_WIDTH): New macro.
484 (xg_frame_set_char_size): Add FRAME_TOOLBAR_WIDTH to pixelwidth.
485 (xg_height_or_width_changed): Use FRAME_TOTAL_PIXEL_WIDTH.
486 (xg_create_frame_widgets): Create a hobox for placing widgets
487 vertically. Use gtk_box_pack_start.
488 (xg_height_or_width_changed): Renamed from xg_height_changed.
489 (x_wm_set_size_hint): Add FRAME_TOOLBAR_WIDTH to base_width.
490 (xg_update_frame_menubar, free_frame_menubar): Change to
491 xg_height_or_width_changed.
492 (xg_tool_bar_detach_callback): Update left/right/top/bottom tool bar
493 size correctly. Remove hardcoded 4, instead use handlebox size -
494 toolbar size.
495 (xg_tool_bar_attach_callback): Update left/right/top/bottom tool bar
496 size correctly. Use handlebox size + toolbar size as additional size.
497 (xg_pack_tool_bar): POS is a new parameter.
498 Set orientation of tool bar based on pos.
499 Only make handlebox_widget if NULL.
500 Check if tool bar goes to vbox or hbox depending on pos.
501 (xg_update_tool_bar_sizes): New function.
502 (update_frame_tool_bar): Remove old_req, new_req. Do not get tool bar
503 height, call xg_update_tool_bar_sizes instead.
504 (free_frame_tool_bar): Remove from hbox or vbox depending on
505 toolbar_in_hbox, Set all FRAME_TOOLBAR_*_(WIDTH|HEIGHT) to zero.
506 (xg_change_toolbar_position): New function.
507
508 * frame.h (struct frame): Add tool_bar_position.
509 (Qbottom): Declare.
510
511 * frame.c (Qtool_bar_position): New variable.
512 (make_frame): Set tool_bar_position to Qtop.
513 (frame_parms): Add tool-bar-position.
514 (x_report_frame_params): Store tool_bar_position.
515 (x_set_fringe_width): Reset wm size hint after fringe changes.
516
517 2010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
518
519 Make lisp_time_argument declaration work on all systems.
520 * lisp.h (lisp_time_argument): Move declaration ...
521 * systime.h (lisp_time_argument): ... here
522 * editfns.c (lisp_time_argument): Remove declaration. (Bug#6751)
523
524 2010-07-29 Jan Djärv <jan.h.d@swipnet.se>
525
526 * vm-limit.c (POINTER): Add typedef for it.
527 (start_of_data): Change return type from POINTER to char *.
528
529 * frame.h (Qtty_color_mode): Move declaration out of ifdef
530 HAVE_WINDOW_SYSTEM.
531
532 2010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
533
534 * vm-limit.c: Do not include sys/resource.h, mem-limits.h does it.
535 Remove reference to __osf__, unused.
536
537 * mem-limits.h: Remove duplicated includes.
538 (NULL): Remove definition, unused.
539 (POINTER): Remove definition.
540 (start_of_data): Use char* in prototype, as the function
541 definition does.
542
543 Remove extern declarations from .c files, and them to .h files.
544 * keyboard.h (Qhelp_echo, waiting_for_input)
545 (input_available_clear_time, ignore_mouse_drag_p)
546 (Vdouble_click_time, real_this_command, Vthis_original_command):
547 * keymap.h (Qremap, Qmenu_item, Voverriding_local_map)
548 (Voverriding_local_map_menu_flag):
549 * lisp.h (Qinteractive_form, use_file_dialog)
550 (Qcursor_in_echo_area, QCascent, QCmargin, QCrelief, Qcount)
551 (Qextension_data, QCconversion, QCcolor_symbols, QCheuristic_mask)
552 (QCindex, QCmatrix, QCcolor_adjustment, QCmask)
553 (Qrisky_local_variable, map_char_table_for_charset, Vprint_level)
554 (Qfunction, debug_on_next_call, Qfield)
555 (Vinhibit_field_text_motion, Vuser_login_name, lisp_time_argument)
556 (Qpriority, Qwindow, Qevaporate, Qbefore_string, Qafter_string)
557 (Qfile_directory_p, Qinsert_file_contents)
558 (Qcompletion_ignore_case, Qcompletion_ignore_case)
559 (Vcompletion_regexp_list, Vhistory_length, completion_ignore_case)
560 (history_delete_duplicates, minibuffer_auto_raise, Qonly)
561 (Qfile_name_handler_alist, Qfront_sticky, Qrear_nonsticky)
562 (Qminibuffer_prompt)
563 (Vtemporary_file_directory,char_ins_del_vector, Qface):
564 * xterm.h (gray_bitmap_width, gray_bitmap_height)
565 (gray_bitmap_bits, xic_create_fontsetname):
566 * coding.h (Vtranslation_table_for_input): Add extern declarations.
567
568 * xsmfns.c (Vuser_login_name):
569 * xrdb.c (Vdouble_click_time):
570 * xfaces.c (xic_create_fontsetname):
571 * w32select.c (waiting_for_input):
572 * print.c (minibuffer_auto_raise):
573 * msdos.c (Qhelp_echo):
574 * macros.c (real_this_command):
575 * keymap.c (Voverriding_local_map):
576 * xterm.c (poll_for_input_1, gray_bitmap_width)
577 (gray_bitmap_height, gray_bitmap_bits;
578 * xmenu.c ( Voverriding_local_map)
579 (Voverriding_local_map_menu_flag; Qmenu_item; use_dialog_box)
580 (use_file_dialog, Xt_app_con):
581 * xdisp.c (minibuffer_auto_raise, Voverriding_local_map)
582 (Voverriding_local_map_menu_flag, Qmenu_item, Qface, Qinvisible)
583 (Qwidth, Qinvisible, Qwindow, Qpriority, Qtool_bar_lines)
584 (Qtool_bar_lines, ignore_mouse_drag_p):
585 * minibuf.c (Voverriding_local_map, Qfield, Qfront_sticky)
586 (Qrear_nonsticky, nconc2):
587 * keyboard.c (current_global_map, minibuf_level, Qmenu_item)
588 (Vhistory_length, Vtranslation_table_for_input, Qcomposition)
589 (Qdisplay, Qafter_string, Qbefore_string, Qundefined):
590 * fileio.c (use_dialog_box, use_file_dialog, Vuser_login_name)
591 (minibuf_level, minibuffer_auto_raise, lisp_time_argument):
592 * eval.c (Qinteractive_form, Qrisky_local_variable, Qfunction)
593 (gc_in_progress):
594 * doc.c (Voverriding_local_map, Qremap):
595 * dired.c (completion_ignore_case, Qcompletion_ignore_case)
596 (Vcompletion_regexp_list):
597 * coding.c (Qmac, Qinsert_file_contents, Qwrite_region)
598 (Qcompletion_ignore_case):
599 * callint.c (Qcursor_in_echo_area, Qfile_directory_p, Qonly)
600 (Vhistory_length, Vthis_original_command, real_this_command)
601 (Qface, Qminibuffer_prompt, history_delete_duplicates):
602 * image.c (Qrisky_local_variable):
603 * fontset.c (QCname):
604 * fns.c (minibuffer_auto_raise, QCname):
605 * dispnew.c (char_ins_del_cost):
606 * composite.c (font_fill_lglyph_metrics):
607 * cmds.c (Qface, Vtranslation_table_for_input):
608 * charset.c (map_char_table_for_charset, Qfile_name_handler_alist):
609 * ccl.c (charset_unicode):
610 * callproc.c (Vtemporary_file_directory):
611 * buffer.c (emacs_strerror): Remove extern declarations.
612
613 * data.c (Qwindow): Make non-static, used from other files too.
614 * frame.c (validate_x_resource_name): Remove shadow definition for i.
615
616 * unexec.c (make_hdr): Remove references to NO_REMAP, COFF,
617 SEGMENT_MASK, SECTION_ALIGNMENT, ADJUST_EXEC_HEADER.
618 * s/usg5-4.h (COFF):
619 * s/template.h:
620 * s/msdos.h (COFF, NO_REMAP):
621 * s/ms-w32.h (NO_REMAP):
622 * s/hpux10-20.h (NO_REMAP):
623 * m/sparc.h (SEGMENT_MASK):
624 * m/m68k.h (NO_REMAP):
625 * m/intel386.h (SEGMENT_MASK):
626 * m/arm.h (NO_REMAP):
627 * m/alpha.h (COFF):
628 * m/template.h: Remove references to unused defines.
629
630 2010-07-28 Jan Djärv <jan.h.d@swipnet.se>
631
632 * xsettings.c (Ftool_bar_get_system_style): Also check for
633 Qtext_image_horiz.
634
635 * xdisp.c (Qtext_image_horiz): Define.
636 (syms_of_xdisp): Initialize Qtext_image_horiz. Add text-image-horiz
637 to documentation of tool-bar-style.
638
639 * lisp.h (Qtext_image_horiz): Declare.
640
641 * gtkutil.c (xg_make_tool_item, xg_show_toolbar_item): Handle tool bar
642 style text_image_horiz.
643
644 2010-07-27 Dan Nicolaescu <dann@ics.uci.edu>
645
646 * emacs.c (Fkill_emacs): Remove return statement.
647
648 * term.c (Qspace, QCalign_to, QCwidth): Remove declarations.
649 (encode_terminal_code, produce_composite_glyph): Remove unused variables.
650 (set_tty_color_mode, term_mouse_highlight, term_get_fkeys): Remove
651 local extern declarations.
652
653 * xmenu.c: Do not included lwlib.h, not needed.
654
655 * m/iris4d.h (XUINT, XSET): Remove, not needed.
656
657 * process.c: Move definitions earlier to minimize #ifdefs.
658
659 * xterm.h (x_get_customization_string, x_load_resources)
660 (x_get_resource, x_text_icon, x_text_icon, x_check_errors)
661 (x_check_errors, x_property_data_to_lisp, defined_color)
662 (xic_set_xfontset, x_defined_color): Use const.
663
664 * xterm.c (xlwmenu_window_p, xlwmenu_redisplay): Remove declarations.
665 (x_text_icon, x_check_errors, x_connection_closed): Use const.
666
667 * xselect.c (selection_data_to_lisp_data)
668 (x_property_data_to_lisp):
669 * xrdb.c (x_get_string_resource, file_p)
670 (x_get_customization_string, magic_file_p, search_magic_path)
671 (get_system_app, get_user_app, x_load_resources, x_get_resource)
672 (x_get_string_resource): Use const.
673
674 * xfns.c: Include xlwmenu.h when USE_LUCID.
675 (x_defined_color, xic_set_xfontset): Use const.
676 (Fx_hide_tip): Remove local extern declaration.
677
678 * xfaces.c (Qmouse_face): Remove declaration.
679 (face_color_gray_p, tty_defined_color, defined_color)
680 (face_color_gray_p, face_color_supported_p): Add const.
681
682 * xdisp.c (do_mouse_tracking): Remove declaration.
683 (add_to_log): Use const.
684
685 * minibuf.c (Qmouse_face): Remove declaration.
686
687 * msdos.c (IT_note_mouse_highlight): Remove local extern declaration.
688
689 * keyboard.h (do_mouse_tracking): Add declaration.
690
691 * image.c (QCwidth, QCheight, QCforeground, QCbackground, QCfile)
692 (QCdata, QCtype, Qcenter): Remove declarations.
693
694 * frame.c (x_get_resource_string, x_get_string_resource)
695 (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
696 (x_default_parameter): Use const.
697
698 * font.c (Qnormal, QCtype, QCfamily, QCweight, QCslant, QCwidth)
699 (QCheight, QCsize, QCname): Remove declarations.
700
701 * emacs.c (main): Remove local extern declaration.
702
703 * editfns.c (region_limit, syms_of_editfns): Remove local extern
704 declarations.
705
706 * dispnew.c: Remove duplicate #include <unistd.h>.
707 (update_window, update_frame_1, init_display): Remove local extern
708 declarations.
709
710 * dispextern.h (add_to_log): Remove declaration.
711 (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
712 (x_frame_get_and_record_arg, x_default_parameter): Add const.
713
714 * dired.c (scmp): Add const.
715 (directory_files_internal): Remove local extern declaration.
716
717 * data.c (Finteractive_form): Use const.
718
719 * composite.c (syms_of_composite): Remove local extern declarations.
720
721 * charset.c (add_to_log): Remove declaration.
722
723 * character.c (strwidth, parse_str_to_multibyte): Add const.
724
725 * character.h (strwidth, parse_str_to_multibyte): Likewise.
726
727 * buffer.c (Fset_buffer_multibyte): Remove local extern declaration.
728
729 * lisp.h (Fkill_emacs): Mark as NO_RETURN.
730 (Lisp_Subr): Make doc and intspec constant.
731 (QCsize, Qspace, Qcenter, QCalign_to, QCdata, QCfile, QCtype)
732 (Qlocal, Qapply, Qnormal, QCfamily, QCweight, QCslant, QCwidth)
733 (QCheight, QCsize, QCname, QCwidth, QCforeground)
734 (QCbackground, add_to_log, stack_base, Vmark_even_if_inactive)
735 (display_arg): Add declarations.
736
737 2010-07-27 Christoph Scholtes <cschol2112@gmail.com>
738
739 * minibuf.c (Fread_buffer): Doc fix (bug#6528).
740
741 * window.c (Fwindow_height): Doc fix (bug#6518).
742
743 2010-07-27 Juanma Barranquero <lekktu@gmail.com>
744
745 * buffer.c (syms_of_buffer) <fringe-indicator-alist>: Doc fix.
746
747 2010-07-26 Dan Nicolaescu <dann@ics.uci.edu>
748
749 * keyboard.c (Ftop_level, Fexit_recursive_edit)
750 (Fabort_recursive_edit): Remove return statements in NO_RETURN
751 functions.
752
753 * frame.h (Qtty_color_mode): Add declaration.
754
755 * lisp.h (Ftop_level, Fexit_recursive_edit)
756 (Fabort_recursive_edit): Mark as NO_RETURN.
757
758 2010-07-26 Kenichi Handa <handa@m17n.org>
759
760 * font.c (Ffont_shape_gstring): Terminate GSTRING by nil if the
761 number of glyphs gets smaller than the original length. (Bug#6621)
762
763 2010-07-26 Juanma Barranquero <lekktu@gmail.com>
764
765 * lread.c (unreadpure, mapatoms_1): Make static.
766
767 2010-07-25 Juanma Barranquero <lekktu@gmail.com>
768
769 * terminfo.c (tparam): Fix prototype of tparm.
770
771 2010-07-25 Andreas Schwab <schwab@linux-m68k.org>
772
773 * emacs.c (main) [PROFILING]: Use __executable_start if defined to
774 find start of text segment.
775 * dispnew.c (safe_bcopy): Don't define if HAVE___EXECUTABLE_START
776 is defined.
777
778 * callproc.c (set_initial_environment): Avoid unbalanced braces.
779
780 2010-07-25 Ken Brown <kbrown@cornell.edu>
781
782 * vm-limit.c (check_memory_limits): Fix previous change;
783 accidentally reverted an earlier change.
784
785 2010-07-25 Ken Brown <kbrown@cornell.edu>
786
787 * mem-limits.h (BSD4_2) [cygwin]: Don't define here; instead...
788 * vm-limit.c: ...add 'defined (CYGWIN)' here (Bug#6715).
789
790 2010-07-25 Juanma Barranquero <lekktu@gmail.com>
791
792 * callproc.c (relocate_fd): Set inside #ifndef WINDOWSNT.
793 * dired.c (opendir, readdir): Fix prototypes.
794 * editfns.c (w32_get_internal_run_time): Fix prototypes.
795 * keyboard.c (input_available_signal): Declare inside #ifdef SIGIO.
796 * ndir.h (opendir, readdir, seekdir, closedir): Fix prototypes.
797 (telldir): Remove declaration.
798 * ralloc.c (real_morecore, __morecore): Fix prototypes.
799 * sound.c (alsa_sound_perror): Declare inside #ifdef HAVE_ALSA.
800 * syssignal.h (strsignal): Fix prototype.
801 * term.c (tparam): Fix prototype.
802 (term_get_fkeys_address, term_get_fkeys_kboard, term_get_fkeys_1)
803 (term_get_fkeys): Set inside "#ifndef DOS_NT".
804 * vm-limit.c (check_memory_limits): Fix prototypes of real_morecore
805 and __morecore.
806 * w32gui.h (XParseGeometry): Fix prototype.
807 * w32heap.h (get_data_start, get_data_end, init_heap): Fix prototypes.
808 * w32term.c (my_set_focus): Declare inside #if 0.
809 * w32term.h (x_window_to_frame, x_display_info_for_name, w32_term_init)
810 (w32_fill_rect, w32_clear_window, init_crit, delete_crit, signal_quit)
811 (drain_message_queue, get_next_msg, post_msg, parse_button)
812 (ClipboardSequence_Proc): Fix prototypes.
813 (wait_for_sync): Remove declaration.
814
815 2010-07-24 Juanma Barranquero <lekktu@gmail.com>
816
817 * w32fns.c (w32_to_x_color): Remove, unused.
818
819 2010-07-24 Andreas Schwab <schwab@linux-m68k.org>
820
821 * lisp.h: Remove leftover P_.
822
823 2010-07-24 Dan Nicolaescu <dann@ics.uci.edu>
824
825 * ecrt0.c, unexalpha.c: Remove files, unused.
826
827 2010-07-24 Andreas Schwab <schwab@linux-m68k.org>
828
829 * cmds.c (internal_self_insert): Make static.
830 * lisp.h (internal_self_insert): Remove declaration.
831
832 2010-07-23 Juanma Barranquero <lekktu@gmail.com>
833
834 * alloc.c (free_float):
835 * font.c [ENABLE_CHECKING] (font_match_xlfd, font_check_xlfd_parse):
836 * frame.c (delete_frame_handler):
837 * ralloc.c (reorder_bloc):
838 * w32menu.c (menubar_id_to_frame, add_left_right_boundary):
839 Remove unused static functions.
840
841 * menu.c (cleanup_popup_menu): Set inside "#ifdef HAVE_NS";
842 it is called only from NS code.
843
844 * w32term.c (my_set_focus): #ifdef away; it is called only from
845 "#ifdef 0" code.
846
847 * w32fns.c (x_edge_detection):
848 * xfaces.c (may_use_scalable_font_p):
849 Remove obsolete static declarations.
850
851 2010-07-20 Juanma Barranquero <lekktu@gmail.com>
852
853 * alloc.c (emacs_blocked_free, emacs_blocked_malloc)
854 (emacs_blocked_realloc, uninterrupt_malloc):
855 * fringe.c (w32_reset_fringes):
856 * image.c (convert_mono_to_color_image, lookup_rgb_color)
857 (init_color_table, XPutPixel, jpeg_resync_to_restart_wrapper):
858 * sound.c (be2hs, do_play_sound):
859 * vm-limit.c (get_lim_data, ret_lim_data):
860 * w32term.c (x_free_frame_resources):
861 * xfaces.c (x_create_gc, x_free_gc):
862 Convert definitions to standard C.
863
864 2010-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
865
866 * eval.c (Feval, Ffuncall): Use the new names.
867
868 * lisp.h (struct Lisp_Subr): Rename `am' to aMANY and add aUNEVALLED.
869 (DEFUN): Add braces around the union initialisation and use ## to
870 specify the right union alternative and avoid a cast.
871
872 2010-07-18 Juanma Barranquero <lekktu@gmail.com>
873
874 * makefile.w32-in ($(BLD)/keyboard.$(O)): Update dependencies.
875
876 2010-07-17 Chong Yidong <cyd@stupidchicken.com>
877
878 * frame.c (make_initial_frame): Use set_menu_bar_lines (Bug#6660).
879
880 2010-07-17 Jan Djärv <jan.h.d@swipnet.se>
881
882 * gtkutil.c (xg_event_is_for_menubar): Also check that event window
883 is related to the menu bar (Bug#6499).
884 (xg_frame_resized): GTK_IS_MAPPED => gtk_widget_get_mapped, for Gtk 3.0.
885
886 2010-07-16 Jan Djärv <jan.h.d@swipnet.se>
887
888 * xterm.h (x_menubar_window_to_frame): Second parameter is XEvent*.
889
890 * xterm.c (handle_one_xevent): Pass event to x_menubar_window_to_frame.
891
892 * xmenu.c (x_activate_menubar): Revert previous fix for Bug#6499,
893 i.e. don't put back ButtonRelease (Bug#6608).
894
895 * xfns.c (x_menubar_window_to_frame): Take XEvent as second parameter
896 instead of Window. Call xg_event_is_for_menubar when
897 USE_GTK (Bug#6499).
898
899 * gtkutil.h (xg_event_is_for_menubar): Declare.
900
901 * gtkutil.c (xg_event_is_for_menubar): New function (Bug#6499).
902
903 2010-07-16 Eli Zaretskii <eliz@gnu.org>
904
905 * w32fns.c (x_set_foreground_color): Fix setting the cursor color
906 when it's the same as the old foreground. (Bug#6609)
907
908 2010-07-16 Jan Djärv <jan.h.d@swipnet.se>
909
910 * xmenu.c (free_frame_menubar): Only call x_set_window_size if
911 widget is non-null (Bug#6645).
912
913 2010-07-15 Andreas Schwab <schwab@linux-m68k.org>
914
915 * xterm.c (x_fully_uncatch_errors, x_trace_wire, x_check_font):
916 Convert old-style definition.
917
918 * xmenu.c (create_and_show_popup_menu, xmenu_show): Fix type of
919 timestamp argument.
920
921 2010-07-15 Eli Zaretskii <eliz@gnu.org>
922
923 * fringe.c (update_window_fringes): Restore mistakenly reverted
924 code from 2010-04-17T12:33:05Z!eliz@gnu.org merged in 2010-04-20T13:31:28Z!eliz@gnu.org.
925
926 2010-07-14 Jan Djärv <jan.h.d@swipnet.se>
927
928 * xterm.c (xm_scroll_callback, x_process_timeouts): K&R => prototype.
929 (SET_SAVED_KEY_EVENT): Remove (not used).
930 (SET_SAVED_MENU_EVENT): Rename to SET_SAVED_BUTTON_EVENT and
931 remove size parameter.
932 (handle_one_xevent): Check popup_activated () for menu for Xt also.
933 Remove #ifdef USE_GTK around finish = X_EVENT_DROP.
934 Remove #ifdef USE_MOTIF code that did SET_SAVED_BUTTON_EVENT for
935 ButtonRelease.
936 (x_set_window_size_1): scroll_bar_actual_width is always
937 SCROLL_BAR_COLS * COLUMN_WIDTH for the purpose of frame sizing.
938
939 * xdisp.c (pending_menu_activation): Remove extern declaration.
940 (prepare_menu_bars): Remove setting of pending_menu_activation.
941
942 * xmenu.c (pending_menu_activation): Remove.
943 (x_activate_menubar): Set popup_activated_flag for Xt also.
944 Remove setting of pending_menu_activation.
945 (set_frame_menubar): Remove check of pending_menu_activation.
946 Declare menubar_size before code. Correct spelling in comment.
947
948 2010-07-14 Kenichi Handa <handa@m17n.org>
949
950 * font.c (font_open_entity): Cancel previous change.
951 (Ffont_get): Don't check FONT_ENTITY_INDEX of a font-object.
952
953 2010-07-13 Eli Zaretskii <eliz@gnu.org>
954
955 Remove subprocesses #ifdefs.
956 * process.c <inhibit_sentinels>: Move to the common part.
957 (Fwaiting_for_user_input_p): Move to the common part; return nil
958 if async subprocesses aren't supported.
959 * sysdep.c (wait_for_termination) [!MSDOS]: Don't compile on
960 MS-DOS. Remove "#ifdef subprocesses".
961 (sys_subshell, sys_select): Remove "#ifdef subprocesses".
962 (gettimeofday): Remove "#ifdef subprocesses".
963 (wait_without_blocking): Remove function.
964 (flush_pending_output, child_setup_tty): Don't compile on MS-DOS.
965 Remove "#ifdef subprocesses".
966 (child_setup_tty): Use WINDOWSNT instead of DOS_NT, since not
967 compiled on MS-DOS.
968 * callproc.c (Fcall_process) [!MSDOS]: Don't call
969 wait_for_termination on MS-DOS.
970 * emacs.c (shut_down_emacs): Remove "#ifndef subprocesses" from
971 initialization of inhibit_sentinels.
972 * keyboard.c (record_asynch_buffer_change): Remove "#ifdef
973 subprocesses" conditional.
974 * callproc.c (Fcall_process) [!subprocesses]: Don't call
975 wait_for_termination, since `buffer' cannot be an integer when
976 async subprocesses are not supported
977 * xdisp.c (decode_mode_spec): Use `MSDOS' instead of `subprocesses'
978 for ifdefing away the call to Fprocess_status.
979
980 * process.c (add_keyboard_wait_descriptor) [!subprocesses]: Ifdef
981 away the entire body of the function.
982
983 2010-07-13 Dan Nicolaescu <dann@ics.uci.edu>
984
985 Remove subprocesses #ifdefs from term.c.
986 * process.c (add_keyboard_wait_descriptor)
987 (delete_keyboard_wait_descriptor): Move to common section, do
988 nothing when subprocesses is not defined.
989 * term.c (Fsuspend_tty, Fresume_tty, init_tty):
990 Remove subprocesses #ifdefs.
991
992 Convert maybe_fatal to standard C.
993 * lisp.h (verror): Declare.
994 * eval.c (verror): New function containing the code from ...
995 (error): ... this. Call verror.
996 * term.c (vfatal): New function containing the code from ...
997 (fatal): ... this. Call vfatal.
998 (maybe_fatal): Convert to standard C, use variable number of
999 arguments. Declare as non-return.
1000 (init_tty): Fix maybe_fatal call.
1001
1002 2010-07-12 Dan Nicolaescu <dann@ics.uci.edu>
1003
1004 * xterm.c (x_scroll_bar_set_handle, x_scroll_bar_expose)
1005 (_scroll_bar_note_movement): Convert definitions to standard C.
1006 * xmenu.c (menu_help_callback, pop_down_menu, xmenu_show):
1007 * xfns.c (hack_wm_protocols, x_window, x_window): Likewise.
1008
1009 2010-07-12 Dan Nicolaescu <dann@ics.uci.edu>
1010
1011 * xterm.c (x_frame_of_widget, x_alloc_nearest_color_for_widget)
1012 (x_alloc_lighter_color_for_widget, cvt_string_to_pixel)
1013 (cvt_pixel_dtor, x_window_to_menu_bar, xt_action_hook)
1014 (xaw_jump_callback, xaw_scroll_callback)
1015 (x_create_toolkit_scroll_bar, x_set_toolkit_scroll_bar_thumb)
1016 (x_wm_set_size_hint, x_activate_timeout_atimer): Convert
1017 definitions to standard C.
1018 * xmenu.c (menubar_id_to_frame, popup_get_selection)
1019 (popup_activate_callback, popup_deactivate_callback)
1020 (menu_highlight_callback, menubar_selection_callback)
1021 (apply_systemfont_to_dialog, apply_systemfont_to_menu)
1022 (free_frame_menubar, popup_selection_callback, as)
1023 (create_and_show_popup_menu, dialog_selection_callback)
1024 (create_and_show_dialog):
1025 * xfns.c (hack_wm_protocols, x_window):
1026 * xfaces.c (x_update_menu_appearance):
1027 * widget.c (get_default_char_pixel_size, pixel_to_char_size)
1028 (char_to_pixel_size, round_size_to_char, get_wm_shell)
1029 (set_frame_size, update_wm_hints, setup_frame_gcs)
1030 (update_various_frame_slots, update_from_various_frame_slots)
1031 (EmacsFrameInitialize, EmacsFrameRealize, EmacsFrameResize)
1032 (EmacsFrameSetValues, EmacsFrameQueryGeometry)
1033 (EmacsFrameSetCharSize, widget_store_internal_border): Likewise.
1034
1035 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
1036
1037 * dbusbind.c (xd_initialize): Don't compare boolean with a constant.
1038
1039 2010-07-12 Eli Zaretskii <eliz@gnu.org>
1040
1041 * process.c (setup_process_coding_systems): Move to the part
1042 shared by non-subprocesses systems, and make its body empty when
1043 subprocesses is not defined.
1044 (close_process_descs): Move to the part shared by non-subprocesses
1045 systems.
1046 (wait_reading_process_output) [!subprocesses]: Convert arg list to
1047 ANSI C.
1048
1049 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
1050
1051 * editfns.c (transpose_markers): Convert old-style definition.
1052 * emacs.c (abort, shut_down_emacs, fixup_locale)
1053 (synchronize_system_time_locale)
1054 (synchronize_system_messages_locale, syms_of_emacs): Likewise.
1055 * floatfns.c (extract_float, matherr, init_floatfns)
1056 (syms_of_floatfns): Likewise.
1057 * fns.c (make_hash_table): Likewise.
1058 * ftfont.c (ftfont_get_otf, ftfont_otf_features)
1059 (ftfont_otf_capability, ftfont_get_glyph_id, ftfont_get_metrics)
1060 (ftfont_drive_otf, ftfont_shape_by_flt, ftfont_shape)
1061 (ftfont_variation_glyphs): Likewise.
1062 * gtkutil.c (xg_create_widget, xg_modify_menubar_widgets): Likewise.
1063 * keymap.c (describe_map_tree, describe_map, describe_vector): Likewise.
1064 * lread.c (read_filtered_event): Likewise.
1065 * minibuf.c (read_minibuf_noninteractive, read_minibuf): Likewise.
1066 * process.c (wait_reading_process_output): Likewise.
1067 * scroll.c (do_line_insertion_deletion_costs): Likewise.
1068 * search.c (search_buffer, boyer_moore): Likewise.
1069 * syntax.c (scan_sexps_forward): Likewise.
1070 * xdisp.c (try_scrolling): Likewise.
1071 * xfaces.c (face_at_buffer_position, face_for_overlay_string)
1072 (face_at_string_position): Likewise.
1073 * xfns.c (x_default_scroll_bar_color_parameter): Likewise.
1074 * xselect.c (x_get_window_property, receive_incremental_selection)
1075 (x_get_window_property_as_lisp_data, lisp_data_to_selection_data):
1076 Likewise.
1077 * xterm.c (x_draw_relief_rect, x_draw_box_rect): Likewise.
1078
1079 2010-07-12 Dan Nicolaescu <dann@ics.uci.edu>
1080
1081 * callproc.c (child_setup): Remove subprocesses conditional.
1082 Remove code dealing with SET_EMACS_PRIORITY, unused.
1083
1084 * buffer.c (Fset_buffer_multibyte): Remove subprocesses conditional.
1085 * process.c (close_process_descs): Use DOS_NT instead of WINDOWSNT.
1086
1087 * emacs.c (__do_global_ctors, __do_global_ctors_aux)
1088 (__do_global_dtors, __main): Use void in definition.
1089 (main): Remove code dealing with SET_EMACS_PRIORITY, unused.
1090 Remove SYMS_MACHINE code, unused. Remove SYMS_SYSTEM, inline
1091 the only users from ...
1092 * s/ms-w32.h (SYMS_SYSTEM): ... here and ...
1093 * s/msdos.h (SYMS_SYSTEM): ... here. Remove.
1094 (HAVE_VOLATILE): Remove, unused.
1095
1096 Convert more function definitions to standard C.
1097 * xdisp.c (window_box_edges, handle_single_display_spec)
1098 (display_string): Convert definition to standard C.
1099 * scroll.c (do_direct_scrolling, scrolling_1):
1100 * dispnew.c (allocate_matrices_for_frame_redisplay)
1101 (mirrored_line_dance):
1102 * coding.c (code_convert_string):
1103 * charset.c (map_charset_chars):
1104 * ccl.c (Fccl_program_p, Fccl_execute, Fccl_execute_on_string)
1105 (Fregister_ccl_program, Fregister_code_conversion_map):
1106 * keyboard.c (kbd_buffer_nr_stored): Likewise.
1107 (head_table): Make static and const.
1108
1109 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
1110
1111 * Makefile.in (C_WARNINGS_SWITCH, PROFILING_CFLAGS)
1112 (PROFILING_LDFLAGS): Set from substitution.
1113 (ALL_CFLAGS): Add C_WARNINGS_SWITCH and PROFILING_CFLAGS, put
1114 CFLAGS last.
1115
1116 2010-07-12 Kenichi Handa <handa@m17n.org>
1117
1118 * Makefile.in (lisp): Change hebrew.el to hebrew.elc.
1119 (shortlisp): Likewise.
1120
1121 * font.h (enum font_property_index): New member FONT_ENTITY_INDEX.
1122
1123 * font.c (font_open_entity): Record ENTITY in FONT_OBJECT's slot
1124 of FONT_ENTITY_INDEX.
1125 (Ffont_get): If KEY is :otf and the font-object doesn't have the
1126 property, get the property value dynamically.
1127 (Ffont_put): Accept font-entity and font-object too.
1128 (Ffont_get_glyhphs): Renamed from Fget_font_glyphs. Arguments and
1129 return value changed.
1130 (syms_of_font): Adjusted for the above change.
1131
1132 2010-07-11 Andreas Schwab <schwab@linux-m68k.org>
1133
1134 * blockinput.h: Remove obsolete comment.
1135
1136 * lisp.h: Include <stddef.h>.
1137 (OFFSETOF): Don't define.
1138 (VECSIZE): Use offsetof instead of OFFSETOF.
1139 (PSEUDOVECSIZE): Likewise.
1140 * process.c (conv_sockaddr_to_lisp): Likewise.
1141 * alloc.c: Don't include <stddef.h>.
1142 * buffer.h (PER_BUFFER_VAR_OFFSET): Use offsetof.
1143
1144 * process.c: Remove obsolete comment.
1145
1146 2010-07-11 Chong Yidong <cyd@stupidchicken.com>
1147
1148 * xfaces.c (Vface_remapping_alist): Doc fix (Bug#6091).
1149
1150 2010-07-11 Andreas Schwab <schwab@linux-m68k.org>
1151
1152 * callint.c (Fcall_interactively): Use strchr, strrchr instead of
1153 index, rindex.
1154 * doc.c (get_doc_string, Fsnarf_documentation): Likewise.
1155 * editfns.c (Fuser_full_name, Fformat): Likewise.
1156 * emacs.c (argmatch, sort_args, decode_env_path): Likewise.
1157 * fileio.c (Ffile_symlink_p): Likewise.
1158 * filelock.c (current_lock_owner): Likewise.
1159 * font.c (font_parse_name, font_parse_family_registry): Likewise.
1160 * fontset.c (fontset_pattern_regexp): Likewise.
1161 * lread.c (read1): Likewise.
1162 * sysdep.c (init_system_name): Likewise.
1163 * xfns.c (select_visual): Likewise.
1164 * s/hpux10-20.h (index, rindex): Don't define.
1165 * s/ms-w32.h (index): Likewise.
1166 * s/usg5-4.h: Likewise.
1167
1168 * callproc.c (relocate_fd): Use F_DUPFD if defined.
1169
1170 * alloc.c (pending_malloc_warning, malloc_warning): Add const.
1171 * callproc.c (relocate_fd, getenv_internal_1, getenv_internal)
1172 (egetenv): Likewise.
1173 * doprnt.c (doprnt): Likewise.
1174 * editfns.c (set_time_zone_rule, format2): Likewise.
1175 * emacs.c (decode_env_path): Likewise.
1176 * eval.c (signal_error, error): Likewise.
1177 * insdel.c (replace_range_2): Likewise.
1178 * keyboard.c (cmd_error_internal): Likewise.
1179 * lread.c (isfloat_string, make_symbol, dir_warning): Likewise.
1180 * print.c (write_string, write_string_1, print_error_message):
1181 Likewise.
1182 * vm-limit.c (warn_function, memory_warnings): Likewise.
1183 * xdisp.c (message1, message1_nolog, message_with_string)
1184 (vmessage, message, message_nolog): Likewise.
1185 * emacs.c: Remove duplicate declaration.
1186 * keyboard.h: Likewise.
1187 * lisp.h: Update prototypes.
1188
1189 * eval.c: Fix indentation problem.
1190
1191 * keyboard.c: Include "process.h"
1192
1193 * eval.c: Remove obsolete noinline declaration.
1194 * fns.c: Likewise.
1195
1196 2010-07-11 Ken Raeburn <raeburn@raeburn.org>
1197
1198 * doprnt.c (doprnt): Take a va_list argument instead of count and
1199 pointer.
1200 * eval.c (error): Change to a standard-C variadic function.
1201 * xdisp.c (vmessage): Renamed from message, made static, and
1202 changed to take a va_list argument.
1203 (message): New variadic wrapper.
1204 (message_nolog): Now a variadic function, calling vmessage.
1205 * lisp.h: Include stdarg.h for va_list.
1206 (doprnt, error, message, message_nolog): Decls updated.
1207
1208 2010-07-11 Eli Zaretskii <eliz@gnu.org>
1209
1210 * process.c (syms_of_process) <delete-exited-processes>: Define
1211 even if !subprocesses.
1212 (delete_exited_processes): Ditto.
1213
1214 * msdos.c (syms_of_msdos) <delete-exited-processes>: Remove DEFVAR.
1215 (delete_exited_processes): Don't define.
1216
1217 2010-07-10 Chong Yidong <cyd@stupidchicken.com>
1218
1219 * frame.c (make_frame): Initialize menu_bar_lines and
1220 tool_bar_lines members.
1221 (make_initial_frame, make_terminal_frame): Initialize
1222 menu_bar_lines using value of menu-bar-mode.
1223
1224 * msdos.c (IT_set_frame_parameters): Don't set menu-bar-lines.
1225
1226 2010-07-10 Eli Zaretskii <eliz@gnu.org>
1227
1228 * process.c: Reshuffle #include's. Condition some of the global
1229 and static variables on `subprocesses'.
1230 (hold_keyboard_input, unhold_keyboard_input, kbd_on_hold_p):
1231 Leave only one implementation.
1232 (Fget_buffer_process, Fprocess_inherit_coding_system_flag)
1233 (kill_buffer_processes, Flist_system_processes)
1234 (Fprocess_attributes, init_process, syms_of_process): Unify the
1235 implementations for with subprocesses and without them.
1236
1237 2010-07-09 Jan Djärv <jan.h.d@swipnet.se>
1238
1239 * xmenu.c (set_frame_menubar): Must realize menubar_widget to get the
1240 correct size for Motif.
1241 (free_frame_menubar): Call x_set_window_size to update frame size.
1242
1243 * xfns.c (x_window): Set borderWidth to 0 for pane and
1244 EmacsFrame. Frame size calculation is wrong otherwise.
1245
1246 2010-07-09 Michael Albinus <michael.albinus@gmx.de>
1247
1248 * dbusbind.c (xd_initialize): Add new argument RAISE_ERROR, which
1249 allows to suppress errors when polling in Emacs' main loop.
1250 (Fdbus_init_bus, Fdbus_get_unique_name, Fdbus_call_method)
1251 (Fdbus_call_method_asynchronously, Fdbus_method_return_internal)
1252 (Fdbus_method_error_internal, Fdbus_send_signal)
1253 (xd_get_dispatch_status, xd_read_message, Fdbus_register_signal)
1254 (Fdbus_register_method): Use it. (Bug#6579)
1255
1256 2010-07-08 Dan Nicolaescu <dann@ics.uci.edu>
1257
1258 * alloc.c: Convert DEFUNs to standard C.
1259 * buffer.c:
1260 * bytecode.c:
1261 * callint.c:
1262 * callproc.c:
1263 * casefiddle.c:
1264 * casetab.c:
1265 * category.c:
1266 * character.c:
1267 * charset.c:
1268 * chartab.c:
1269 * cmds.c:
1270 * coding.c:
1271 * composite.c:
1272 * data.c:
1273 * dbusbind.c:
1274 * dired.c:
1275 * dispnew.c:
1276 * doc.c:
1277 * dosfns.c:
1278 * editfns.c:
1279 * emacs.c:
1280 * eval.c:
1281 * fileio.c:
1282 * filelock.c:
1283 * floatfns.c:
1284 * fns.c:
1285 * font.c:
1286 * fontset.c:
1287 * frame.c:
1288 * fringe.c:
1289 * image.c:
1290 * indent.c:
1291 * insdel.c:
1292 * keyboard.c:
1293 * keymap.c:
1294 * lread.c:
1295 * macros.c:
1296 * marker.c:
1297 * menu.c:
1298 * minibuf.c:
1299 * msdos.c:
1300 * nsfns.m:
1301 * nsmenu.m:
1302 * nsselect.m:
1303 * print.c:
1304 * process.c:
1305 * search.c:
1306 * sound.c:
1307 * syntax.c:
1308 * term.c:
1309 * terminal.c:
1310 * textprop.c:
1311 * undo.c:
1312 * w16select.c:
1313 * w32console.c:
1314 * w32fns.c:
1315 * w32font.c:
1316 * w32menu.c:
1317 * w32proc.c:
1318 * w32select.c:
1319 * window.c:
1320 * xdisp.c:
1321 * xfaces.c:
1322 * xfns.c:
1323 * xmenu.c:
1324 * xselect.c:
1325 * xsettings.c:
1326 * xsmfns.c: Likewise.
1327
1328 2010-07-08 Eli Zaretskii <eliz@gnu.org>
1329
1330 * process.c (kbd_is_on_hold, hold_keyboard_input)
1331 (unhold_keyboard_input, kbd_on_hold_p) [!subprocesses]: Define.
1332
1333 2010-07-08 Jan Djärv <jan.h.d@swipnet.se>
1334
1335 * xmenu.c (set_frame_menubar, create_and_show_popup_menu)
1336 (create_and_show_dialog): Don't call apply_systemfont_to_(menu|dialog)
1337 unless USE_LUCID.
1338
1339 2010-07-08 Dan Nicolaescu <dann@ics.uci.edu>
1340
1341 * xdisp.c (store_mode_line_noprop_char): Remove K&R alternative
1342 declaration.
1343
1344 Clean up include guards.
1345 * tparam.c: Remove include guards for config.h, string.h and code
1346 that assumes #ifndef emacs.
1347 * termcap.c:
1348 * unexalpha.c:
1349 * sysdep.c:
1350 * filemode.c:
1351 * filelock.c:
1352 * bidi.c: Likewise.
1353
1354 Remove prefix-args.c
1355 * prefix-args.c: Remove file.
1356 * autodeps.mk (ALLOBJS): Remove reference to prefix-args.
1357 * Makefile.in (temacs${EXEEXT}): Remove references to
1358 PRE_EDIT_LDFLAGS and POST_EDIT_LDFLAGS.
1359 (mostlyclean): Remove reference to prefix-args.
1360 (prefix-args): Remove.
1361
1362 Simplify cstart_of_data, start_of_code and related code.
1363 * mem-limits.h: Remove !emacs and _LIBC conditional code.
1364 (start_of_data): Merge into start_of_data function.
1365 * sysdep.c (start_of_text): Remove. Move simplified versions of
1366 it in the only users: unexaix.c and unexec.c.
1367 (read_input_waiting): Remove local declaration of quit_char.
1368 (start, etext): Remove declarations.
1369 (start_of_data): Merge with the version in mem-limits.h and move
1370 to vm-limits.c.
1371 * vm-limit.c (start_of_data): Merged and simplified version of the
1372 code formerly in mem-limits.h and sysdep.c.
1373 * unexec.c (start): New declaration, moved from sysdep.c.
1374 (start_of_text): Simplified version of the code formerly in sysdep.c.
1375 * unexaix.c (start_of_text): Simplified version of the code
1376 formerly in sysdep.c.
1377 * m/alpha.h (HAVE_TEXT_START): Remove.
1378 (TEXT_START): Move ...
1379 * unexalpha.c (TEXT_START): ... here.
1380 * s/hpux10-20.h (TEXT_START): Remove.
1381 * s/darwin.h (TEXT_START):
1382 * m/mips.h (TEXT_START):
1383 * m/macppc.h (HAVE_TEXT_START):
1384 * m/m68k.h (TEXT_START):
1385 * m/iris4d.h (TEXT_START):
1386 * m/intel386.h (TEXT_START):
1387 * m/ibmrs6000.h (TEXT_START):
1388 * m/ia64.h (HAVE_TEXT_START):
1389 * s/msdos.h (TEXT_START): Likewise.
1390
1391 2010-07-07 Andreas Schwab <schwab@linux-m68k.org>
1392
1393 * alloc.c (overrun_check_malloc, overrun_check_realloc)
1394 (overrun_check_free, xstrdup, allocate_string)
1395 (allocate_string_data, compact_small_strings, Fmake_string)
1396 (make_unibyte_string, make_multibyte_string)
1397 (make_string_from_bytes, make_specified_string, make_float)
1398 (Fcons, allocate_terminal, allocate_frame, make_pure_string)
1399 (Fgarbage_collect): Replace bcopy, safe_bcopy, bzero, bcmp by
1400 memcpy, memmove, memset, memcmp.
1401 * atimer.c (start_atimer, set_alarm): Likewise.
1402 * buffer.c (clone_per_buffer_values, report_overlay_modification)
1403 (mmap_realloc, init_buffer_once): Likewise.
1404 * callint.c (Fcall_interactively): Likewise.
1405 * callproc.c (Fcall_process, Fcall_process_region, child_setup)
1406 (getenv_internal_1): Likewise.
1407 * casefiddle.c (casify_object): Likewise.
1408 * ccl.c (ccl_driver): Likewise.
1409 * character.c (str_as_multibyte, str_to_multibyte): Likewise.
1410 * charset.c (load_charset_map_from_file)
1411 (load_charset_map_from_file, load_charset_map_from_vector)
1412 (Fdefine_charset_internal): Likewise.
1413 * cm.c (Wcm_clear): Likewise.
1414 * coding.c (decode_eol, decode_coding_object)
1415 (Fset_coding_system_priority, make_subsidiaries): Likewise.
1416 * data.c (Faset): Likewise.
1417 * dired.c (directory_files_internal, file_name_completion_stat):
1418 Likewise.
1419 * dispnew.c (new_glyph_matrix, adjust_glyph_matrix)
1420 (clear_glyph_row, copy_row_except_pointers)
1421 (copy_glyph_row_contents, new_glyph_pool, realloc_glyph_pool)
1422 (save_current_matrix, restore_current_matrix)
1423 (build_frame_matrix_from_leaf_window, mirrored_line_dance)
1424 (mirror_line_dance, scrolling_window): Likewise.
1425 * doc.c (Fsnarf_documentation, Fsubstitute_command_keys):
1426 Likewise.
1427 * doprnt.c (doprnt): Likewise.
1428 * editfns.c (Fuser_full_name, make_buffer_string_both)
1429 (Fmessage_box, Fformat, Ftranspose_regions): Likewise.
1430 * emacs.c (sort_args): Likewise.
1431 * eval.c (Fapply, Ffuncall): Likewise.
1432 * fileio.c (Ffile_name_directory, make_temp_name)
1433 (Fexpand_file_name, search_embedded_absfilename)
1434 (Fsubstitute_in_file_name, Ffile_symlink_p, Finsert_file_contents)
1435 (auto_save_error): Likewise.
1436 * fns.c (Fstring_equal, Fcopy_sequence, concat)
1437 (string_to_multibyte, Fstring_as_unibyte, Fstring_as_multibyte)
1438 (internal_equal, Fclear_string, larger_vector, copy_hash_table)
1439 (Fmake_hash_table): Likewise.
1440 * fringe.c (Fdefine_fringe_bitmap): Likewise.
1441 * ftfont.c (ftfont_text_extents): Likewise.
1442 * getloadavg.c (getloadavg): Likewise.
1443 * image.c (define_image_type, make_image, make_image_cache)
1444 (x_create_x_image_and_pixmap, xbm_image_p)
1445 (w32_create_pixmap_from_bitmap_data, xbm_load, xpm_lookup_color)
1446 (xpm_image_p, x_create_bitmap_from_xpm_data, xpm_load)
1447 (init_color_table, x_build_heuristic_mask, pbm_image_p, pbm_load)
1448 (png_image_p, png_read_from_memory, png_load, jpeg_image_p)
1449 (tiff_image_p, tiff_read_from_memory, gif_image_p)
1450 (gif_read_from_memory, gif_load, svg_image_p, gs_image_p):
1451 Likewise.
1452 * indent.c (scan_for_column, compute_motion): Likewise.
1453 * insdel.c (gap_left, gap_right, make_gap_smaller, copy_text)
1454 (insert_1_both, insert_from_gap, replace_range_2): Likewise.
1455 * intervals.c (reproduce_tree, reproduce_tree_obj): Likewise.
1456 * keyboard.c (echo_char, save_getcjmp, restore_getcjmp)
1457 (kbd_buffer_store_event_hold, apply_modifiers_uncached)
1458 (store_user_signal_events, menu_bar_items, tool_bar_items)
1459 (process_tool_bar_item, append_tool_bar_item)
1460 (read_char_minibuf_menu_prompt, read_key_sequence)
1461 (Fread_key_sequence, Fread_key_sequence_vector, Frecent_keys):
1462 Likewise.
1463 * keymap.c (current_minor_maps, Fdescribe_buffer_bindings):
1464 Likewise.
1465 * lisp.h (STRING_COPYIN): Likewise.
1466 * lread.c (Fload, read1, oblookup): Likewise.
1467 * msdos.c (Frecent_doskeys): Likewise.
1468 * nsfns.m (Fx_create_frame): Likewise.
1469 * nsfont.m (nsfont_open, nsfont_text_extents, ns_glyph_metrics):
1470 Likewise.
1471 * nsimage.m (EmacsImage-initFromSkipXBM:width:height:)
1472 (EmacsImage-initForXPMWithDepth:width:height:flip:length:):
1473 Likewise.
1474 * nsmenu.m (ns_update_menubar): Likewise.
1475 * nsterm.m (ns_draw_fringe_bitmap, ns_term_init): Likewise.
1476 * print.c (print_unwind, printchar, strout, print_string)
1477 (print_error_message): Likewise.
1478 * process.c (conv_lisp_to_sockaddr, set_socket_option)
1479 (Fmake_network_process, Fnetwork_interface_list)
1480 (Fnetwork_interface_info, read_process_output, Fprocess_send_eof)
1481 (init_process): Likewise.
1482 * ralloc.c (resize_bloc, r_alloc_sbrk, r_alloc_init): Likewise.
1483 * regex.c (init_syntax_once, regex_compile, re_compile_fastmap):
1484 Likewise.
1485 * scroll.c (do_scrolling, do_direct_scrolling)
1486 (scrolling_max_lines_saved): Likewise.
1487 * search.c (search_buffer, wordify, Freplace_match): Likewise.
1488 * sound.c (wav_init, au_init, Fplay_sound_internal): Likewise.
1489 * syntax.c (skip_chars, skip_syntaxes): Likewise.
1490 * sysdep.c (child_setup_tty, sys_subshell, emacs_get_tty)
1491 (emacs_set_tty): Likewise.
1492 * term.c (encode_terminal_code, calculate_costs)
1493 (produce_special_glyphs, create_tty_output, init_tty, delete_tty):
1494 Likewise.
1495 * termcap.c (tgetst1, gobble_line): Likewise.
1496 * termhooks.h (EVENT_INIT): Likewise.
1497 * tparam.c (tparam1): Likewise.
1498 * unexalpha.c (unexec): Likewise.
1499 * unexec.c (write_segment): Likewise.
1500 * unexmacosx.c (unexec_write_zero): Likewise.
1501 * w32fns.c (w32_wnd_proc, Fx_create_frame, x_create_tip_frame)
1502 (Fx_file_dialog, Fsystem_move_file_to_trash): Likewise.
1503 * w32font.c (w32font_list_family, w32font_text_extents)
1504 (w32font_list_internal, w32font_match_internal)
1505 (w32font_open_internal, compute_metrics, Fx_select_font):
1506 Likewise.
1507 * w32menu.c (set_frame_menubar, add_menu_item)
1508 (w32_menu_display_help, w32_free_submenu_strings): Likewise.
1509 * w32term.c (XCreateGC, w32_initialize_display_info): Likewise.
1510 * w32uniscribe.c (uniscribe_list_family): Likewise.
1511 * w32xfns.c (get_next_msg, post_msg, prepend_msg): Likewise.
1512 * window.c (make_window, replace_window, set_window_buffer)
1513 (Fsplit_window): Likewise.
1514 * xdisp.c (init_iterator, RECORD_OVERLAY_STRING, reseat_to_string)
1515 (add_to_log, message3, x_consider_frame_title)
1516 (append_space_for_newline, extend_face_to_end_of_line)
1517 (decode_mode_spec_coding, init_glyph_string): Likewise.
1518 * xfaces.c (x_create_gc, get_lface_attributes_no_remap)
1519 (Finternal_copy_lisp_face, Finternal_merge_in_global_face)
1520 (face_attr_equal_p, make_realized_face, make_face_cache)
1521 (free_realized_faces, lookup_named_face, smaller_face)
1522 (face_with_height, lookup_derived_face)
1523 (x_supports_face_attributes_p, Finternal_set_font_selection_order)
1524 (Finternal_set_font_selection_order, realize_default_face)
1525 (compute_char_face, face_at_buffer_position)
1526 (face_for_overlay_string, face_at_string_position, merge_faces):
1527 Likewise.
1528 * xfns.c (xic_create_fontsetname, Fx_create_frame)
1529 (Fx_window_property, x_create_tip_frame)
1530 (Fx_backspace_delete_keys_p): Likewise.
1531 * xfont.c (xfont_list, xfont_match, xfont_list_family)
1532 (xfont_text_extents): Likewise.
1533 * xmenu.c (set_frame_menubar, xmenu_show): Likewise.
1534 * xrdb.c (magic_file_p, x_get_resource): Likewise.
1535 * xselect.c (x_queue_event, x_get_window_property)
1536 (receive_incremental_selection): Likewise.
1537 * xsmfns.c (x_session_check_input): Likewise.
1538 * xterm.c (x_send_scroll_bar_event, SET_SAVED_MENU_EVENT)
1539 (handle_one_xevent, x_check_errors, xim_initialize, x_term_init):
1540 Likewise.
1541 * character.h (BCOPY_SHORT): Removed.
1542 * config.in: Regenerate.
1543 * dispnew.c (safe_bcopy): Only define as dummy if PROFILING.
1544 * emacs.c (main) [PROFILING]: Don't declare
1545 dump_opcode_frequencies.
1546 * lisp.h (safe_bcopy): Remove declaration.
1547 (memset) [!HAVE_MEMSET]: Declare.
1548 (memcpy) [!HAVE_MEMCPY]: Likewise.
1549 (memmove) [!HAVE_MEMMOVE]: Likewise.
1550 (memcmp) [!HAVE_MEMCMP]: Likewise.
1551 * s/ms-w32.h (bzero, bcopy, bcmp, GAP_USE_BCOPY)
1552 (BCOPY_UPWARD_SAFE, BCOPY_DOWNWARD_SAFE, HAVE_BCOPY, HAVE_BCMP):
1553 Don't define.
1554 (HAVE_MEMCMP, HAVE_MEMCPY, HAVE_MEMMOVE, HAVE_MEMSET): Define.
1555 * s/msdos.h (GAP_USE_BCOPY, BCOPY_UPWARD_SAFE)
1556 (BCOPY_DOWNWARD_SAFE): Don't define.
1557 * sysdep.c (memset) [!HAVE_MEMSET]: Define.
1558 (memcpy) [!HAVE_MEMCPY]: Define.
1559 (memmove) [!HAVE_MEMMOVE]: Define.
1560 (memcmp) [!HAVE_MEMCMP]: Define.
1561
1562 2010-07-07 Jan Djärv <jan.h.d@swipnet.se>
1563
1564 * process.c (kbd_is_on_hold): New variable.
1565 (hold_keyboard_input, unhold_keyboard_input, kbd_on_hold_p):
1566 New functions.
1567 (wait_reading_process_output): If kbd_on_hold_p returns non-zero,
1568 select on empty input mask.
1569 (init_process): Initialize kbd_is_on_hold to 0.
1570
1571 * process.h (hold_keyboard_input, unhold_keyboard_input)
1572 (kbd_on_hold_p): Declare.
1573
1574 * keyboard.c (input_available_signal): Declare.
1575 (kbd_buffer_nr_stored): New function.
1576 (kbd_buffer_store_event_hold): If kbd_buffer_nr_stored returns
1577 more than KBD_BUFFER_SIZE/2, stop reding input (Bug#6571).
1578 (kbd_buffer_get_event): If input is suspended and kbd_buffer_nr_stored
1579 returns less than KBD_BUFFER_SIZE/4, resume reding input (Bug#6571).
1580 (tty_read_avail_input): If input is on hold, return.
1581 Don't read more that free slots in kbd_buffer (Bug#6571).
1582
1583 2010-07-07 Eli Zaretskii <eliz@gnu.org>
1584
1585 * msdos.h:
1586 * msdos.c:
1587 * dosfns.c:
1588 * w16select.c: Convert function definitions to ANSI C.
1589
1590 * msdos.h (ctrl_break_func, install_ctrl_break_check):
1591 Remove unused prototypes.
1592
1593 2010-07-07 Juanma Barranquero <lekktu@gmail.com>
1594
1595 * coding.c, sysdep.c: Convert some more functions to standard C.
1596
1597 2010-07-07 Juanma Barranquero <lekktu@gmail.com>
1598
1599 * coding.c (decode_coding_gap, encode_coding_gap, decode_coding_object)
1600 (encode_coding_object): Use SPECPDL_INDEX.
1601 (syms_of_coding): Use DOS_NT.
1602
1603 2010-07-07 Dan Nicolaescu <dann@ics.uci.edu>
1604
1605 * intervals.h (interval): Use EMACS_UINT instead of unsigned EMACS_INT.
1606
1607 Make the function member of Lisp_Subr use standard C prototypes.
1608 * lisp.h (struct Lisp_Subr): Use a union for the function member.
1609 (DECL_ALIGN): Add a cast for the function.
1610 * eval.c (Feval, Ffuncall): Use the proper type for each type
1611 function call.
1612
1613 2010-07-06 Chong Yidong <cyd@stupidchicken.com>
1614
1615 * fringe.c (draw_fringe_bitmap_1): Use lookup_named_face to get
1616 fringe face id, so face-remapping-alist works (Bug#6091).
1617
1618 2010-07-06 Juanma Barranquero <lekktu@gmail.com>
1619
1620 * w32.c, w32console.c, w32fns.c, w32font.c, w32heap.c, w32inevt.c
1621 * w32menu.c, w32proc.c, w32reg.c, w32select.c, w32term.c
1622 * w32uniscribe.c, w32xfns.c: Convert function definitions to standard C.
1623
1624 2010-07-06 Andreas Schwab <schwab@linux-m68k.org>
1625
1626 * xterm.c (x_get_keysym_name): Change type of parameter to int.
1627 * lisp.h: Declare x_get_keysym_name.
1628 * keyboard.c (modify_event_symbol): Don't declare
1629 x_get_keysym_name here.
1630
1631 2010-07-06 Dan Nicolaescu <dann@ics.uci.edu>
1632
1633 * ecrt0.c: Revert conversion to standard C.
1634
1635 2010-07-05 Dan Nicolaescu <dann@ics.uci.edu>
1636
1637 * vm-limit.c (memory_warnings):
1638 * keyboard.c (modify_event_symbol):
1639 * floatfns.c (rounding_driver, ceiling2, floor2, truncate2)
1640 (round2, emacs_rint):
1641 * process.c (send_process, old_sigpipe): Convert function
1642 definitions and declarations to standard C.
1643
1644 2010-07-05 Juanma Barranquero <lekktu@gmail.com>
1645
1646 * buffer.c, cm.c, eval.c, keyboard.c, process.c, term.c, vm-limit.c,
1647 * xdisp.c: Convert function definitions to standard C.
1648
1649 * cm.c (cmputc): Arg C is now int, not char.
1650 * process.c (Fmake_network_process): Cast sockaddr_in* to sockaddr*.
1651
1652 2010-07-05 James Cloos <cloos@jhcloos.com>
1653
1654 * xterm.h (Xatom_net_wm_name, Xatom_net_wm_icon_name): New.
1655
1656 * xterm.c (x_term_init): Intern the _NET_WM_NAME and
1657 _NET_WM_ICON_NAME atoms.
1658
1659 * xfns.c (x_set_name_internal): Set the EWMH _NET_WM_NAME
1660 and _NET_WM_ICON_NAME properties, too, matching what is
1661 done in the Gtk+ case.
1662
1663 2010-07-05 Jan Djärv <jan.h.d@swipnet.se>
1664
1665 * xterm.c (XTring_bell, XTset_terminal_window): Fix wrong prototype.
1666
1667 * xsmfns.c (SSDATA): New macro.
1668 (smc_save_yourself_CB, x_session_initialize): Use SSDATA for strings
1669 passed to strlen/strcpy/strcat.
1670 (create_client_leader_window): Surround with #ifndef USE_GTK. Cast
1671 7:th arg to XChangeProperty to (unsigned char *)
1672
1673 * xsettings.c (something_changedCB, parse_settings)
1674 (apply_xft_settings): Reformat prototype.
1675 (something_changedCB, init_gconf): Remove unused variable i.
1676 (read_settings): Remove unused variable long_len.
1677
1678 * gtkutil.c (xg_get_pixbuf_from_pix_and_mask)
1679 (xg_get_image_for_pixmap, create_dialog)
1680 (xg_get_file_with_selection, xg_get_file_name, update_cl_data)
1681 (menuitem_highlight_callback, make_menu_item)
1682 (xg_create_one_menuitem, create_menus, xg_update_menu_item)
1683 (xg_create_scroll_bar, xg_update_scrollbar_pos)
1684 (xg_set_toolkit_scroll_bar_thumb, xg_tool_bar_button_cb)
1685 (xg_tool_bar_proxy_help_callback, xg_tool_bar_detach_callback)
1686 (xg_tool_bar_attach_callback, xg_tool_bar_help_callback)
1687 (xg_tool_bar_item_expose_callback): Reformat prototype.
1688 (xg_update_menubar): GList *group => GSList *group.
1689 (xg_modify_menubar_widgets): Initialize witem to 0, check witem != 0
1690 before use.
1691 (update_frame_tool_bar): 4:th param to xg_get_image_for_pixmap changed
1692 to GTK_IMAGE (wimage).
1693
1694 2010-07-05 Dan Nicolaescu <dann@ics.uci.edu>
1695
1696 * atimer.c: Use "" instead of <> for local includes for
1697 consistency with the rest of the code.
1698
1699 * xsmfns.c (smc_save_yourself_CB, smc_error_handler):
1700 * xrdb.c (get_system_name):
1701 * window.c (shrink_windows):
1702 * syntax.c (forw_comment):
1703 * scroll.c (calculate_scrolling, calculate_direct_scrolling)
1704 (ins_del_costs):
1705 * mem-limits.h (start_of_data):
1706 * lread.c (readevalloop):
1707 * gtkutil.c (xg_dialog_response_cb, xg_get_file_with_chooser)
1708 (xg_get_file_with_selection, xg_update_menubar, xg_update_submenu):
1709 * frame.c (x_get_focus_frame):
1710 * floatfns.c (fmod_float):
1711 * fileio.c (choose_write_coding_system):
1712 * emacs.c (fatal_error_signal, init_cmdargs, argmatch)
1713 (malloc_initialize_hook, sort_args, synchronize_locale):
1714 * doprnt.c (doprnt):
1715 * dired.c (compile_pattern):
1716 * data.c (fmod_float):
1717 * chartab.c (map_sub_char_table, map_sub_char_table_for_charset)
1718 (map_char_table_for_charset):
1719 * charset.c (define_charset_internal):
1720 * alloc.c (Fgarbage_collect): Convert declarations or definitions
1721 to standard C.
1722
1723 2010-07-04 Tetsurou Okazaki <okazaki@be.to> (tiny change)
1724 Stefan Monnier <monnier@iro.umontreal.ca>
1725
1726 * lread.c (read1): Fix up last change to not mess up `c'.
1727
1728 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
1729
1730 * strftime.c: Revert conversion to standard C (2010-07-04T07:50:25Z!dann@ics.uci.edu).
1731
1732 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
1733
1734 Fix prototypes.
1735
1736 * atimer.c (start_atimer): Use EMACS_TIME, not struct timeval.
1737 * dired.c (file_name_completion_stat): Use DIRENTRY, not struct dirent.
1738 * fileio.c (read_non_regular, read_non_regular_quit): Add Lisp_Object
1739 arg, as required by internal_condition_case_1.
1740 * print.c (strout): Use const char* for arg PTR.
1741 * regex.c (bcmp_translate): Use RE_TRANSLATE_TYPE, not Lisp_Object.
1742 (analyse_first): Fix "const const".
1743 * sysdep.c (set_file_times): Use EMACS_TIME, not struct timeval.
1744 * unexelf.c (round_up, find_section): Use ElfW macro for arguments.
1745 * xgselect.c (xg_select): Use SELECT_TYPE, EMACS_TIME.
1746
1747 2010-07-04 Dan Nicolaescu <dann@ics.uci.edu>
1748
1749 * alloc.c: Convert function definitions to standard C.
1750 * atimer.c:
1751 * bidi.c:
1752 * bytecode.c:
1753 * callint.c:
1754 * callproc.c:
1755 * casefiddle.c:
1756 * casetab.c:
1757 * category.c:
1758 * ccl.c:
1759 * character.c:
1760 * charset.c:
1761 * chartab.c:
1762 * cmds.c:
1763 * coding.c:
1764 * composite.c:
1765 * data.c:
1766 * dbusbind.c:
1767 * dired.c:
1768 * dispnew.c:
1769 * doc.c:
1770 * doprnt.c:
1771 * ecrt0.c:
1772 * editfns.c:
1773 * fileio.c:
1774 * filelock.c:
1775 * filemode.c:
1776 * fns.c:
1777 * font.c:
1778 * fontset.c:
1779 * frame.c:
1780 * fringe.c:
1781 * ftfont.c:
1782 * ftxfont.c:
1783 * gtkutil.c:
1784 * indent.c:
1785 * insdel.c:
1786 * intervals.c:
1787 * keymap.c:
1788 * lread.c:
1789 * macros.c:
1790 * marker.c:
1791 * md5.c:
1792 * menu.c:
1793 * minibuf.c:
1794 * prefix-args.c:
1795 * print.c:
1796 * ralloc.c:
1797 * regex.c:
1798 * region-cache.c:
1799 * scroll.c:
1800 * search.c:
1801 * sound.c:
1802 * strftime.c:
1803 * syntax.c:
1804 * sysdep.c:
1805 * termcap.c:
1806 * terminal.c:
1807 * terminfo.c:
1808 * textprop.c:
1809 * tparam.c:
1810 * undo.c:
1811 * unexelf.c:
1812 * window.c:
1813 * xfaces.c:
1814 * xfns.c:
1815 * xfont.c:
1816 * xftfont.c:
1817 * xgselect.c:
1818 * xmenu.c:
1819 * xrdb.c:
1820 * xselect.c:
1821 * xsettings.c:
1822 * xsmfns.c:
1823 * xterm.c: Likewise.
1824
1825 2010-07-03 Eli Zaretskii <eliz@gnu.org>
1826
1827 * msdos.c (IT_set_frame_parameters): Fix setting of colors in
1828 frames other than the initial one. Fix reversal of colors when
1829 `reverse' is specified in the frame parameters. Call
1830 update_face_from_frame_parameter instead of
1831 internal-set-lisp-face-attribute. Initialize screen colors from
1832 initial_screen_colors[] when f->default_face_done_p is zero,
1833 instead of depending on being called with default-frame-alist as
1834 the alist argument.
1835
1836 * xfaces.c (update_face_from_frame_parameter): Move out of
1837 HAVE_WINDOW_SYSTEM portion. Condition window-system only parts
1838 with HAVE_WINDOW_SYSTEM.
1839
1840 * msdos.c (IT_set_frame_parameters): Set menu-bar-lines according
1841 to menu-bar-mode, if not set in the frame parameters or in
1842 default-frame-alist.
1843
1844 * w32console.c (sys_tputs): Adjust argument list to prototype in
1845 term.c.
1846
1847 2010-07-03 Juanma Barranquero <lekktu@gmail.com>
1848
1849 * lisp.h (memory_warnings): Fix prototype.
1850
1851 * cm.h (evalcost): Fix prototype.
1852
1853 * cm.c (evalcost): Fix arg type.
1854
1855 2010-07-02 Dan Nicolaescu <dann@ics.uci.edu>
1856
1857 * term.c (term_clear_mouse_face, Fidentity):
1858 * syssignal.h (signal_handler_t):
1859 * lisp.h (memory_warnings):
1860 * coding.h (preferred_coding_system):
1861 * cm.h (evalcost):
1862 * blockinput.h (reinvoke_input_signal): Convert to standard C prototypes.
1863
1864 2010-07-02 Eli Zaretskii <eliz@gnu.org>
1865
1866 * dosfns.h (msdos_stdcolor_idx, msdos_stdcolor_name): Remove P_
1867 from prototypes.
1868
1869 * msdos.h (load_pixmap): Don't define away.
1870
1871 2010-07-02 Jan Djärv <jan.h.d@swipnet.se>
1872
1873 * lisp.h:
1874 * atimer.h: Remove define for P_.
1875
1876 * alloc.c: Remove __P and P_ from .c and .m files.
1877 * atimer.c:
1878 * buffer.c:
1879 * callint.c:
1880 * category.c:
1881 * charset.c:
1882 * chartab.c:
1883 * cm.c:
1884 * coding.c:
1885 * composite.c:
1886 * data.c:
1887 * dired.c:
1888 * dispnew.c:
1889 * doc.c:
1890 * editfns.c:
1891 * emacs.c:
1892 * eval.c:
1893 * fileio.c:
1894 * filelock.c:
1895 * fns.c:
1896 * font.c:
1897 * fontset.c:
1898 * frame.c:
1899 * ftfont.c:
1900 * ftxfont.c:
1901 * gmalloc.c:
1902 * gtkutil.c:
1903 * image.c:
1904 * indent.c:
1905 * intervals.c:
1906 * keyboard.c:
1907 * keymap.c:
1908 * lread.c:
1909 * marker.c:
1910 * menu.c:
1911 * minibuf.c:
1912 * print.c:
1913 * process.c:
1914 * scroll.c:
1915 * search.c:
1916 * sound.c:
1917 * strftime.c:
1918 * syntax.c:
1919 * sysdep.c:
1920 * term.c:
1921 * terminal.c:
1922 * textprop.c:
1923 * unexalpha.c:
1924 * w32console.c:
1925 * w32fns.c:
1926 * w32font.c:
1927 * w32menu.c:
1928 * w32term.c:
1929 * w32uniscribe.c:
1930 * window.c:
1931 * xdisp.c:
1932 * xfaces.c:
1933 * xfns.c:
1934 * xfont.c:
1935 * xftfont.c:
1936 * xmenu.c:
1937 * xselect.c:
1938 * xterm.c: Likewise.
1939
1940 Remove P_ and __P macros.
1941 * atimer.h: Remove P_ and __P macros.
1942 * buffer.h:
1943 * category.h:
1944 * ccl.h:
1945 * character.h:
1946 * charset.h:
1947 * cm.h:
1948 * coding.h:
1949 * composite.h:
1950 * dispextern.h:
1951 * disptab.h:
1952 * dosfns.h:
1953 * font.h:
1954 * fontset.h:
1955 * frame.h:
1956 * gtkutil.h:
1957 * indent.h:
1958 * intervals.h:
1959 * keyboard.h:
1960 * keymap.h:
1961 * lisp.h:
1962 * macros.h:
1963 * md5.h:
1964 * menu.h:
1965 * msdos.h:
1966 * nsterm.h:
1967 * puresize.h:
1968 * region-cache.h:
1969 * syntax.h:
1970 * syssignal.h:
1971 * systime.h:
1972 * termhooks.h:
1973 * w32font.h:
1974 * w32term.h:
1975 * widget.h:
1976 * window.h:
1977 * xgselect.h:
1978 * xsettings.h:
1979 * xterm.h: Likewise.
1980
1981 2010-07-02 Dan Nicolaescu <dann@ics.uci.edu>
1982
1983 * lisp.h: Document that USE_LISP_UNION_TYPE is now enabled using autoconf.
1984
1985 Cleanup old code.
1986 * dired.c (BSD4_3): Remove all uses, redundant with BSD4_2.
1987 * syssignal.h: Remove code for Lynx, not supported anymore.
1988 * vm-limit.c: Remove unused code the depends on emacs not being
1989 defined and NO_LIM_DATA being defined.
1990 * mem-limits.h: Remove dead code.
1991
1992 2010-07-01 Jan Djärv <jan.h.d@swipnet.se>
1993
1994 * window.c (Fwindow_absolute_pixel_edges): Doc fix.
1995
1996 * window.c (calc_absolute_offset, Fwindow_absolute_pixel_edges)
1997 (Fwindow_inside_absolute_pixel_edges): New functions (bug#5721).
1998
1999 * nsfns.m (compute_tip_xy): Do not convert coordinates from frame
2000 parameters, they are already absolute.
2001
2002 * nsterm.m (x_set_window_size, initFrameFromEmacs):
2003 Rename FRAME_NS_TOOLBAR_HEIGHT to FRAME_TOOLBAR_HEIGHT.
2004
2005 * nsterm.h (FRAME_NS_TOOLBAR_HEIGHT): Rename to FRAME_TOOLBAR_HEIGHT.
2006
2007 * nsmenu.m (update_frame_tool_bar, free_frame_tool_bar):
2008 Update FRAME_TOOLBAR_HEIGHT.
2009
2010 * nsmenu.m (free_frame_tool_bar, update_frame_tool_bar):
2011 Add BLOCK/UNBLOCK_INPUT so asserts don't trigger.
2012
2013 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
2014
2015 * frame.c (get_future_frame_param, Fmake_terminal_frame): Don't
2016 check default-frame-alist.
2017
2018 2010-06-30 Andreas Schwab <schwab@linux-m68k.org>
2019
2020 * process.c (create_process): Avoid using invalid file descriptors.
2021
2022 * callproc.c (child_setup): Avoid closing a file descriptor twice.
2023
2024 2010-06-30 Jan Djärv <jan.h.d@swipnet.se>
2025
2026 * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font):
2027 Improve documentation. Return font regardless of use_system_font.
2028 (syms_of_xsettings): Improve documentation for font-use-system-font.
2029
2030 2010-07-10 Chong Yidong <cyd@stupidchicken.com>
2031
2032 * xfaces.c (realize_face): Garbage the frame if a face is removed
2033 (Bug#6593).
2034
2035 2010-07-05 Andreas Schwab <schwab@linux-m68k.org>
2036
2037 * keyboard.c: Remove duplicate <setjmp.h>.
2038 (read_key_sequence): Remove volatile qualifiers.
2039
2040 2010-07-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2041
2042 * dispextern.h (FRINGE_HEIGHT_BITS): New define.
2043 (struct glyph_row): New members left_fringe_offset and
2044 right_fringe_offset.
2045
2046 * xterm.c (x_draw_fringe_bitmap): Don't clip bottom aligned bitmap
2047 specially.
2048 * w32term.c (w32_draw_fringe_bitmap): Likewise.
2049 * nsterm.m (ns_draw_fringe_bitmap): Likewise.
2050
2051 * fringe.c (draw_fringe_bitmap_1): Don't clip bitmap here.
2052 Take account of bitmap offset.
2053 (draw_window_fringes): Take account of window vscroll.
2054 (update_window_fringes): Likewise. Extend top-aligned top indicator
2055 or bottom-aligned bottom indicator to adjacent rows if it doesn't fit
2056 in one row. Don't set redraw_fringe_bitmaps_p outside row comparison.
2057 Set left_fringe_offset and right_fringe_offset (Bug#5634, Bug#6325).
2058
2059 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
2060
2061 * w32fns.c (Qtooltip): Declare.
2062 Suggested by Andy Moreton <andrewjmoreton@gmail.com>.
2063
2064 2010-07-03 Jan Djärv <jan.h.d@swipnet.se>
2065
2066 * xmenu.c (x_activate_menubar): Send Press/Release for Gtk+ to avoid
2067 grab on just Press (Bug#6499).
2068
2069 2010-07-02 Chong Yidong <cyd@stupidchicken.com>
2070
2071 * frame.c (Qtooltip): New var.
2072 (delete_frame): Use it. Fix faulty if statement. Don't update
2073 mode line for tooltip frames. Suggested by Martin Rudalics.
2074
2075 * xfns.c (x_create_tip_frame):
2076 * w32fns.c (x_create_tip_frame): Use it.
2077
2078 2010-06-17 Naohiro Aota <naota@elisp.net> (tiny change)
2079
2080 * xftfont.c (xftfont_open): Check font width one by one also when
2081 spacing is dual.
2082
2083 * ftfont.c (ftfont_open): Ditto.
2084
2085 2010-06-30 Glenn Morris <rgm@gnu.org>
2086
2087 * s/sol2-6.h (INHIBIT_X11R6_XIM): Remove, handled by configure now.
2088
2089 * Makefile.in (CANNOT_DUMP): Update for configure name change.
2090
2091 * s/freebsd.h (USE_MMAP_FOR_BUFFERS):
2092 * s/irix6-5.h (USE_MMAP_FOR_BUFFERS):
2093 * s/darwin.h (SYSTEM_MALLOC):
2094 * s/sol2-10.h (SYSTEM_MALLOC): Move to configure.
2095
2096 2010-06-29 Jan Djärv <jan.h.d@swipnet.se>
2097
2098 * nsfns.m: extern declare Vmenu_bar_mode, Vtool_bar_mode.
2099 (ns_get_screen): Don't assign integer to f.
2100 (Fx_display_color_cells): Declarations before statements.
2101
2102 2010-06-28 Jan Djärv <jan.h.d@swipnet.se>
2103
2104 * xfns.c (x_default_font_parameter): Remove got_from_system
2105 (Bug#6526).
2106
2107 * xterm.h (gtk_widget_get_window, gtk_widget_get_mapped)
2108 (gtk_adjustment_get_page_size, gtk_adjustment_get_upper): New
2109 defines based on what configure finds.
2110
2111 * xterm.c (XTflash): Use gtk_widget_get_window.
2112 (xg_scroll_callback): Use gtk_adjustment_get_upper and
2113 gtk_adjustment_get_page_size.
2114 (handle_one_xevent): Use gtk_widget_get_mapped.
2115 (x_term_init): Remove HAVE_GTK_MULTIDISPLAY and associated error
2116 messages.
2117
2118 * xmenu.c (create_and_show_popup_menu): Call gtk_widget_get_mapped.
2119
2120 * gtkutil.h: Replace HAVE_GTK_FILE_BOTH with
2121 HAVE_GTK_FILE_SELECTION_NEW.
2122
2123 * gtkutil.c (xg_display_open, xg_display_close): Remove
2124 HAVE_GTK_MULTIDISPLAY, it is always defined.
2125 (xg_display_open): Return type is void.
2126 (gtk_widget_set_has_window)
2127 (gtk_dialog_get_action_area, gtk_dialog_get_content_area)
2128 (gtk_widget_get_sensitive, gtk_adjustment_set_page_size)
2129 (gtk_adjustment_set_page_increment)
2130 (gtk_adjustment_get_step_increment): #define these if not found
2131 by configure.
2132 (remove_submenu): New define based on Gtk+ version.
2133 (xg_set_cursor, xg_frame_resized, xg_event_is_for_scrollbar): Use
2134 gtk_widget_get_window.
2135 (xg_frame_resized, xg_update_frame_menubar): Use gtk_widget_get_mapped.
2136 (xg_create_frame_widgets): Use gtk_widget_set_has_window.
2137 (create_dialog): Use gtk_dialog_get_action_area and
2138 gtk_dialog_get_content_area.
2139 (xg_uses_old_file_dialog, xg_get_file_name): Remove HAVE_GTK_FILE_BOTH
2140 and HAVE_GTK_FILE_CHOOSER_DIALOG_NEW. File chooser is always
2141 available, so checking for HAVE_GTK_FILE_SELECTION_NEW is enough.
2142 (xg_update_menubar, xg_update_submenu, xg_show_toolbar_item): Use
2143 g_object_ref and g_object_unref.
2144 (xg_update_menu_item, xg_tool_bar_menu_proxy): Use
2145 gtk_widget_get_sensitive.
2146 (xg_update_submenu): Use remove_submenu.
2147 (xg_update_scrollbar_pos): Don't use GtkFixedChild, use child
2148 properties instead to get old x and y position.
2149 (xg_set_toolkit_scroll_bar_thumb): Use gtk_adjustment_get_page_size,
2150 gtk_adjustment_get_step_increment, gtk_adjustment_set_page_size,
2151 gtk_adjustment_set_step_increment and gtk_adjustment_set_page_increment.
2152 (xg_get_tool_bar_widgets): New function.
2153 (xg_tool_bar_menu_proxy, xg_show_toolbar_item)
2154 (update_frame_tool_bar): Call xg_get_tool_bar_widgets.
2155 (toolbar_set_orientation): New #define based on if configure
2156 finds gtk_orientable_set_orientation.
2157 (xg_create_tool_bar): Call toolbar_set_orientation.
2158 (xg_make_tool_item, xg_show_toolbar_item): Call gtk_box_pack_start
2159 instead of gtk_box_pack_start_defaults.
2160
2161 2010-06-28 Chong Yidong <cyd@stupidchicken.com>
2162
2163 * cmds.c (Fdelete_backward_char): Move into Lisp.
2164
2165 2010-06-27 Dan Nicolaescu <dann@ics.uci.edu>
2166
2167 * s/freebsd.h (BSD4_2): Remove redundant definition.
2168 bsd-common.h defines it already.
2169
2170 2010-06-27 Chong Yidong <cyd@stupidchicken.com>
2171
2172 * xfns.c (Fx_create_frame): Don't consult X resouces when setting
2173 menu-bar-lines and tool-bar-lines. Use menu-bar-mode and
2174 tool-bar-mode, which are now set using these X resources at
2175 startup, to determine the defaults (Bug#2249).
2176
2177 * w32fns.c (Fx_create_frame):
2178 * nsfns.m (Fx_create_frame): Likewise.
2179
2180 * frame.c (Vmenu_bar_mode, Vtool_bar_mode): New vars.
2181
2182 2010-06-24 Juanma Barranquero <lekktu@gmail.com>
2183
2184 * gtkutil.c (xg_update_scrollbar_pos):
2185 Avoid C99 mid-block variable declaration.
2186
2187 2010-06-22 Jan Djärv <jan.h.d@swipnet.se>
2188
2189 * xterm.c (x_scroll_bar_create): Remove call to xg_show_scroll_bar.
2190
2191 * gtkutil.h (xg_show_scroll_bar): Remove.
2192
2193 * gtkutil.c (xg_update_scrollbar_pos): Show/hide scroll bar as needed
2194 if height is less than scroll bar min size.
2195 (xg_show_scroll_bar): Remove, show moved to xg_update_scrollbar_pos.
2196
2197 * xfns.c (x_default_font_parameter): Try to open font from system
2198 before using it (bug#6478). Rename got_from_gconf to got_from_system.
2199
2200 2010-06-22 Keith Packard <keithp@keithp.com> (tiny change)
2201
2202 * font.c (font_parse_fcname): Allow . for sizes like 7.5 (bug#6437).
2203
2204 2010-06-20 Eli Zaretskii <eliz@gnu.org>
2205
2206 * xdisp.c (try_scrolling): When scroll-conservatively is set to
2207 most-positive-fixnum, be extra accurate when scrolling window
2208 start, to avoid missing the cursor line.
2209
2210 2010-06-19 Eli Zaretskii <eliz@gnu.org>
2211
2212 * xdisp.c (try_scrolling): Compute the limit for searching point
2213 in forward scroll from scroll_max, instead of an arbitrary limit
2214 of 10 screen lines. See
2215 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00766.html
2216 and
2217 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00773.html
2218 for details.
2219
2220 2010-06-16 Glenn Morris <rgm@gnu.org>
2221
2222 * editfns.c (Fbyte_to_string): Pacify compiler.
2223
2224 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
2225
2226 * lread.c (read1): Phase out old-style backquotes a bit more.
2227
2228 2010-06-12 Eli Zaretskii <eliz@gnu.org>
2229
2230 * makefile.w32-in ($(BLD)/bidi.$(O)): Depend on biditype.h and
2231 bidimirror.h.
2232
2233 * deps.mk (bidi.o): Depend on biditype.h and bidimirror.h.
2234
2235 * bidi.c (bidi_initialize): Remove explicit initialization of
2236 bidi_type_table; include biditype.h instead. Don't support
2237 entries whose second codepoint is zero. Initialize bidi_mirror_table.
2238 (bidi_mirror_char): Use bidi_mirror_table.
2239
2240 * biditype.h: New file.
2241
2242 * bidimirror.h: New file.
2243
2244 * window.c (syms_of_window): Doc fix (bug#6409).
2245
2246 2010-06-12 Romain Francoise <romain@orebokech.com>
2247
2248 * Makefile.in (lisp, shortlisp): Use new location of vc-hooks and
2249 ediff-hook.
2250
2251 2010-06-10 Glenn Morris <rgm@gnu.org>
2252
2253 * editfns.c (Fbyte_to_string): Pacify compiler.
2254
2255 * m/ibms390x.h: Rather than duplicating ibms390.h, just include it.
2256
2257 2010-06-26 Andreas Schwab <schwab@linux-m68k.org>
2258
2259 * alloc.c (Fmake_byte_code): Don't access undefined argument
2260 (Bug#6517).
2261
2262 2010-06-25 Chong Yidong <cyd@stupidchicken.com>
2263
2264 * xdisp.c (next_element_from_image): Ensure that after-strings are
2265 read the next time we hit handle_stop (Bug#1336).
2266
2267 2010-06-23 Andreas Schwab <schwab@linux-m68k.org>
2268
2269 * lread.c (read1): Signal error if #s is not followed by paren.
2270
2271 2010-06-19 Chong Yidong <cyd@stupidchicken.com>
2272
2273 * image.c (free_image): Mark frame as garbaged (Bug#6426).
2274
2275 * keymap.c (Fdefine_key): Doc fix (Bug#6460).
2276
2277 2010-06-15 Glenn Morris <rgm@gnu.org>
2278
2279 * editfns.c (Fbyte_to_string): Pacify compiler.
2280
2281 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
2282
2283 * dbusbind.c (xd_append_arg): Don't "make-unibyte" the string.
2284 Check `object's type before accessing its guts.
2285
2286 2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
2287
2288 * s/usg5-4.h: Fix previous change.
2289 Suggested by Lawrence Mitchell <wence@gmx.li>
2290
2291 2010-06-08 Andreas Schwab <schwab@linux-m68k.org>
2292
2293 * minibuf.c (Fall_completions): Add more checks.
2294
2295 2010-06-08 Juanma Barranquero <lekktu@gmail.com>
2296
2297 * minibuf.c (Fall_completions): Check COLLECTION's size (bug#6378).
2298
2299 2010-06-08 Dan Nicolaescu <dann@ics.uci.edu>
2300
2301 * lread.c (X_OK): Remove, unused.
2302
2303 * dispnew.c: Remove obsolete comment.
2304
2305 Remove INCLUDED_FCNTL.
2306 * xterm.c (INCLUDED_FCNTL):
2307 * callproc.c (INCLUDED_FCNTL):
2308 * alloc.c (INCLUDED_FCNTL):
2309 * systty.h (INCLUDED_FCNTL): Remove all uses, not needed anymore.
2310 (emacs_get_tty, emacs_set_tty): Declare unconditionally.
2311
2312 2010-06-07 Martin Rudalics <rudalics@gmx.at>
2313
2314 * window.c (Fselect_window): Move `record_buffer' up to the
2315 beginning of this function, so the buffer gets recorded
2316 even if the selected window does not change.
2317 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00137.html
2318
2319 2010-06-07 Juanma Barranquero <lekktu@gmail.com>
2320
2321 * cmds.c (Fforward_char, Fbackward_char): Fix typos in docstrings.
2322 (Fforward_line, Fbeginning_of_line): Reflow docstrings.
2323
2324 2010-06-06 Dan Nicolaescu <dann@ics.uci.edu>
2325
2326 Remove BSTRING related code, all platforms define it.
2327 * s/usg5-4.h (BSTRING): Remove definition.
2328 * s/template.h (BSTRING):
2329 * s/msdos.h (BSTRING):
2330 * s/ms-w32.h (BSTRING):
2331 * s/hpux10-20.h (BSTRING):
2332 * s/gnu-linux.h (BSTRING):
2333 * s/darwin.h (BSTRING):
2334 * s/cygwin.h (BSTRING):
2335 * s/bsd-common.h (BSTRING):
2336 * s/aix4-2.h (BSTRING): Likewise.
2337 * sysdep.c: Remove code depending on BSTRING not being defined.
2338
2339 2010-06-05 Juanma Barranquero <lekktu@gmail.com>
2340
2341 Remove obsolete macro BASE_LEADING_CODE_P.
2342 * character.h (BASE_LEADING_CODE_P): Remove.
2343 * regex.c [!emacs] (BASE_LEADING_CODE_P): Remove.
2344 * buffer.c (Fset_buffer_multibyte):
2345 * indent.c (scan_for_column, compute_motion):
2346 * insdel.c (count_combining_before, count_combining_after):
2347 Use LEADING_CODE_P instead of BASE_LEADING_CODE_P.
2348
2349 2010-06-04 Juanma Barranquero <lekktu@gmail.com>
2350
2351 Turn `directory-sep-char' into a noop.
2352
2353 * lisp.h [WINDOWSNT] (Vdirectory_sep_char): Don't declare.
2354 (DIRECTORY_SEP): Define unconditionally.
2355
2356 * s/ms-w32.h (DIRECTORY_SEP): Remove.
2357
2358 * emacs.c (decode_env_path): Don't check DIRECTORY_SEP,
2359 call dostounix_filename directly.
2360
2361 * fileio.c (CORRECT_DIR_SEPS): Remove.
2362 (Ffile_name_directory, directory_file_name, Fexpand_file_name)
2363 (Fsubstitute_in_file_name): Use dostounix_filename instead.
2364 (file_name_as_directory): Use dostounix_filename, DIRECTORY_SEP.
2365 (syms_of_fileio) <directory-sep-char>: Move to subr.el.
2366
2367 * w32proc.c (CORRECT_DIR_SEPS): Remove.
2368 (Fw32_short_file_name, Fw32_long_file_name): Use dostounix_filename.
2369
2370 2010-06-03 Andreas Schwab <schwab@linux-m68k.org>
2371
2372 * process.c (conv_lisp_to_sockaddr): Fix conversion of IPv4 address.
2373 (Bug#6346)
2374
2375 2010-06-03 Juanma Barranquero <lekktu@gmail.com>
2376
2377 * ccl.c (Fccl_program_p): Fix typo in docstring.
2378
2379 2010-06-03 Dan Nicolaescu <dann@ics.uci.edu>
2380
2381 Move UNEXEC definition to autoconf.
2382 * s/usg5-4.h (UNEXEC): Remove, move to configure.in.
2383 * s/sol2-10.h (UNEXEC):
2384 * s/irix6-5.h (UNEXEC):
2385 * s/hpux10-20.h (UNEXEC):
2386 * s/gnu-linux.h (UNEXEC):
2387 * s/darwin.h (UNEXEC):
2388 * s/cygwin.h (UNEXEC):
2389 * s/bsd-common.h (UNEXEC):
2390 * s/aix4-2.h (UNEXEC):
2391 * m/alpha.h (UNEXEC): Likewise.
2392 * Makefile.in (UNEXEC_OBJ): Define using @UNEXEC_OBJ@.
2393
2394 2010-06-03 Juanma Barranquero <lekktu@gmail.com>
2395
2396 Remove obsolete pre-unicode2 macros.
2397 * character.h (MULTIBYTE_FORM_LENGTH, PARSE_MULTIBYTE_SEQ): Remove.
2398 * composite.c (composition_reseat_it):
2399 * data.c (Faset):
2400 * fns.c (Ffillarray):
2401 * regex.c (re_search_2): Use BYTES_BY_CHAR_HEAD.
2402 [!emacs] (BYTES_BY_CHAR_HEAD): Define instead of MULTIBYTE_FORM_LENGTH.
2403
2404 2010-06-03 Juri Linkov <juri@jurta.org>
2405
2406 * buffer.c (Fother_buffer): Add CHECK_FRAME.
2407 (Fswitch_to_buffer): Remove unused variable `err'.
2408
2409 2010-06-03 Glenn Morris <rgm@gnu.org>
2410
2411 * m/template.h (NO_SOCK_SIGIO): Remove, no longer used.
2412
2413 * m/hp800.h (alloca) [__NetBSD__ && __GNUC__]: No need to define it,
2414 now that AH_BOTTOM does it.
2415
2416 * m/hp800.h (HAVE_ALLOCA):
2417 * m/ibms390x.h (HAVE_ALLOCA): Do not define, no longer needed.
2418
2419 * m/ia64.h, s/gnu-linux.h, s/gnu.h, s/netbsd.h, s/usg5-4.h:
2420 Remove NOT_C_CODE tests, it is always true now.
2421
2422 2010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
2423
2424 Fix config.h includes.
2425 * xsettings.c:
2426 * xgselect.c:
2427 * nsterm.m:
2428 * nsselect.m:
2429 * nsimage.m:
2430 * nsfont.m:
2431 * nsfns.m:
2432 * dbusbind.c: Use #include <config.h> instead of "config.h" as all
2433 other files do.
2434
2435 * gmalloc.c: Remove BROKEN_PROTOTYPES reference, unused.
2436
2437 * s/sol2-6.h: Remove obsolete comments.
2438
2439 Remove unnecessary alloca.h includes.
2440 * keymap.c: Do not include alloca.h, config.h does that.
2441 * sysdep.c: Likewise. Do not define fwrite, not used.
2442
2443 2010-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
2444
2445 * sysdep.c (child_setup_tty): Move the non-canonical initialization to
2446 the HAVE_TERMIO where it belongs (bug#6149).
2447
2448 2010-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
2449
2450 * keymap.c (Fwhere_is_internal): Fix handling of remapping (in thread
2451 of bug#6305).
2452
2453 2010-05-30 Eli Zaretskii <eliz@gnu.org>
2454
2455 * bidi.c (bidi_move_to_visually_next): Make sure the sentinel
2456 state is always cached (bug#6306).
2457
2458 2010-05-29 Eli Zaretskii <eliz@gnu.org>
2459
2460 Fix cursor motion in bidi-reordered continued lines.
2461 * xdisp.c (try_cursor_movement): Backup to non-continuation line
2462 only after finding point's row. Fix the logic. Rewrite the loop
2463 over continuation lines in bidi-reordered buffers. Return
2464 CURSOR_MOVEMENT_MUST_SCROLL upon failure to find a suitable row,
2465 rather than CURSOR_MOVEMENT_CANNOT_BE_USED.
2466
2467 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
2468
2469 * fileio.c (Fdelete_file): Pass TRASH arg to handler call.
2470
2471 2010-05-28 Kenichi Handa <handa@m17n.org>
2472
2473 * font.c (font_delete_unmatched): Check Vface_ignored_fonts.
2474 Don't sheck SPEC if it is nil.
2475 (font_list_entities): Call font_delete_unmatched if
2476 Vface_ignored_fonts is non-nil. (Bug#6287)
2477
2478 2010-05-28 Glenn Morris <rgm@gnu.org>
2479
2480 * Makefile.in (LIBES): Remove $LOADLIBES, it is never set.
2481
2482 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
2483
2484 * fileio.c (Fdelete_file): Change meaning of optional arg to mean
2485 whether to trash.
2486 (internal_delete_file, Frename_file): Callers changed.
2487 (delete_by_moving_to_trash): Doc fix.
2488 (Fdelete_directory_internal): Don't move to trash.
2489
2490 * callproc.c (delete_temp_file):
2491 * buffer.c (Fkill_buffer): Callers changed.
2492
2493 * lisp.h: Update prototype.
2494
2495 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
2496
2497 * xdisp.c (redisplay_window): After redisplay, check if point is
2498 still valid before setting it (Bug#6177).
2499
2500 2010-05-27 Glenn Morris <rgm@gnu.org>
2501
2502 * Makefile.in, autodeps.mk, deps.mk, ns.mk:
2503 Convert comments to Makefile format.
2504
2505 * Makefile.in (bootstrap-clean): No more Makefile.c.
2506
2507 2010-05-26 Glenn Morris <rgm@gnu.org>
2508
2509 * Makefile.in (YMF_PASS_LDFLAGS): Remove.
2510 (temacs${EXEEXT}): Use PRE_EDIT_LDFLAGS, POST_EDIT_LDFLAGS.
2511
2512 * Makefile.in (NS_IMPL_GNUSTEP_INC, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS):
2513 Remove.
2514 (TEMACS_LDFLAGS): Do not use NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
2515
2516 2010-05-26 Kenichi Handa <handa@m17n.org>
2517
2518 * composite.c (composition_compute_stop_pos): Fix condition for
2519 backward scanning.
2520
2521 2010-05-25 Glenn Morris <rgm@gnu.org>
2522
2523 * Makefile.in (@NS_IMPL_GNUSTEP_INC@, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS):
2524 Move before TEMACS_LDFLAGS.
2525 (TEMACS_LDFLAGS): Use $NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
2526 (temacs${EXEEXT}): Do not use $NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
2527
2528 * Makefile.in (NOT_C_CODE): No longer define.
2529 (config.h): No longer include.
2530
2531 * Makefile.in (LD_SWITCH_SYSTEM_TEMACS): Move definition after some
2532 variables it may reference.
2533
2534 * Makefile.in (LD_SWITCH_SYSTEM_EXTRA): Remove.
2535 (TEMACS_LDFLAGS): Remove LD_SWITCH_SYSTEM_EXTRA.
2536
2537 2010-05-25 Kenichi Handa <handa@m17n.org>
2538
2539 * dispextern.h (struct composition_it): New members rule_idx and
2540 charpos.
2541
2542 * xdisp.c (set_iterator_to_next): While scanning backward, assume
2543 that the character positions of IT point the last character of the
2544 current grapheme cluster.
2545 (next_element_from_composition): Don't change character positions
2546 of IT.
2547 (append_composite_glyph): Set glyph->charpos to
2548 it->cmp_it.charpos.
2549
2550 * composite.c (autocmp_chars): Change the first argument to RULE,
2551 and try composition with RULE only.
2552 (composition_compute_stop_pos): Record the index number of the
2553 composition rule in CMP_IT->rule_idx.
2554 (composition_reseat_it): Call autocmp_chars repeatedly until the
2555 correct rule of the composition is found.
2556 (composition_update_it): Set CMP_IT->charpos. Assume the CHARPOS
2557 is at the last character of the current grapheme cluster when
2558 CMP_IT->reversed_p is nonzero.
2559
2560 2010-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
2561
2562 * editfns.c (Fbyte_to_string): New function.
2563
2564 2010-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
2565
2566 * process.c (Fmake_network_process): Set :host to nil if it's not used.
2567 Suggested by Masatake YAMATO <yamato@redhat.com>.
2568
2569 2010-05-23 Eli Zaretskii <eliz@gnu.org>
2570
2571 * dispextern.h (init_iterator): Sync prototype with changed definition.
2572
2573 2010-05-20 enami tsugutomo <tsugutomo.enami@jp.sony.com>
2574
2575 * s/netbsd.h: If terminfo is found, use it in preference to
2576 termcap. (Bug#6190) [Backport from trunk]
2577
2578 2010-05-19 Eli Zaretskii <eliz@gnu.org>
2579
2580 Redesign and reimplement bidi-aware edge positions of glyph rows.
2581
2582 * dispextern.h (struct glyph_row): New members minpos and maxpos.
2583 (MATRIX_ROW_START_CHARPOS, MATRIX_ROW_START_BYTEPOS)
2584 (MATRIX_ROW_END_CHARPOS, MATRIX_ROW_END_BYTEPOS): Reference minpos
2585 and maxpos members instead of start.pos and end.pos, respectively.
2586
2587 * xdisp.c (display_line): Compare IT_CHARPOS with the position in
2588 row->start.pos, rather than with MATRIX_ROW_START_CHARPOS.
2589 (cursor_row_p): Use row->end.pos rather than MATRIX_ROW_END_CHARPOS.
2590 (try_window_reusing_current_matrix, try_window_id):
2591 Use ROW->minpos rather than ROW->start.pos.
2592 (init_from_display_pos, init_iterator): Use EMACS_INT for
2593 character and byte positions.
2594 (find_row_edges): Rename from find_row_end. Accept additional
2595 arguments for minimum and maximum buffer positions seen by
2596 display_line for this row. Don't use iterator to find the
2597 position following the maximum one; instead, increment the
2598 position found by display_line directly. Fix logic; eol_pos
2599 should be tested before the rest. Handle the case of characters
2600 delivered from display vector (bug#6036). Fix tests related to
2601 it->method. Handle the truncated_on_right_p rows.
2602 (RECORD_MAX_MIN_POS): New macro.
2603 (display_line): Use it to record the minimum and maximum buffer
2604 positions for glyphs in the row being assembled. Record the
2605 position of the newline that terminates the line. If word wrap is
2606 in effect, restore minimum and maximum positions seen up to the
2607 wrap point, when iterator returns to it.
2608 (try_window_reusing_current_matrix): Give up if in bidi-reordered
2609 row and cursor not already at point. Restore original pre-bidi
2610 code for unidirectional buffers.
2611
2612 * dispnew.c (increment_row_positions, check_matrix_invariants):
2613 Increment and check row->start.pos and row->end.pos, in addition
2614 to MATRIX_ROW_START_CHARPOS and MATRIX_ROW_END_CHARPOS.
2615
2616 * .gdbinit (prowlims): Display row->minpos and row->maxpos.
2617 Display truncated_on_left_p and truncated_on_right_p flags.
2618 Formatting fixes.
2619 (pmtxrows): Display the ordinal number of each row. Don't display
2620 rows beyond the last one.
2621
2622 * bidi.c (bidi_cache_iterator_state): Don't zero out new_paragraph:
2623 it is not copied by bidi_copy_it.
2624
2625 2010-05-22 Eli Zaretskii <eliz@gnu.org>
2626
2627 * w32.c (sys_write): Break writes into chunks smaller than 32MB.
2628 (Bug#6237)
2629
2630 2010-05-22 Chong Yidong <cyd@stupidchicken.com>
2631
2632 * image.c (Fimage_flush): Rename from image-refresh.
2633
2634 2010-05-21 Chong Yidong <cyd@stupidchicken.com>
2635
2636 * xdisp.c (redisplay_internal): Clear caches even if redisplaying
2637 just one window.
2638
2639 * image.c (Vimage_cache_eviction_delay): Decrease to 300.
2640 (clear_image_cache): If the number of cached images is unusually
2641 large, decrease the cache eviction delay (Bug#6230).
2642
2643 2010-05-21 Glenn Morris <rgm@gnu.org>
2644
2645 * Makefile.in (${ns_appdir}, ${ns_appbindir}Emacs, ns-app):
2646 Move these rules to ns.mk.
2647 * ns.mk: New file.
2648
2649 * Makefile.in (../src/$(OLDXMENU), $(OLDXMENU)): Always define rules.
2650
2651 * Makefile.in (CANNOT_DUMP): New, set by configure.
2652 (emacs${EXEEXT}, bootstrap-emacs${EXEEXT}): Use $CANNOT_DUMP.
2653
2654 2010-05-20 Juri Linkov <juri@jurta.org>
2655
2656 * fileio.c (Fdelete_file): Change interative spec to use
2657 `read-file-name' like in `find-file-read-args' where the default
2658 value is `default-directory' instead of `buffer-file-name'.
2659 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00533.html
2660
2661 2010-05-20 Kevin Ryde <user42@zip.com.au>
2662
2663 * keyboard.c (Vlast_command, Vkeyboard_translate_table)
2664 (Voverriding_terminal_local_map, Vsystem_key_alist)
2665 (Vlocal_function_key_map): Fix manual link in docstring (Bug#6224).
2666
2667 2010-05-20 Glenn Morris <rgm@gnu.org>
2668
2669 * Makefile.in (DEPDIR): New constant.
2670 (DEPFLAGS): Set with configure, not cpp.
2671 (MKDEPDIR): New, set by configure.
2672 (.c.o, .m.o, ecrt0.o): Use $MKDEPDIR.
2673 (clean): Use $DEPDIR.
2674 (deps_frag): Include from configure.
2675 Move static/dynamic dependency stuff to deps.mk/autodeps.mk.
2676 * deps.mk, autodeps.mk: New files, extracted from Makefile.in.
2677
2678 * bidi.c (bidi_cache_shrink, bidi_cache_iterator_state): Fix
2679 reallocation of the cache. (Bug#6210)
2680
2681 2010-05-19 Glenn Morris <rgm@gnu.org>
2682
2683 * s/msdos.h (ORDINARY_LINK): Move to sed2v2.inp.
2684
2685 * Makefile.in (LD, YMF_PASS_LDFLAGS): Set with configure, not cpp.
2686 (GNULIB_VAR): Remove.
2687 (LIBES): Use LIB_GCC instead of GNULIB_VAR.
2688
2689 * m/ibms390x.h (LINKER):
2690 * m/macppc.h (LINKER) [GNU_LINUX]:
2691 * s/aix4-2.h (ORDINARY_LINK):
2692 * s/cygwin.h (LINKER):
2693 * s/darwin.h (ORDINARY_LINK):
2694 * s/gnu.h (ORDINARY_LINK):
2695 * s/netbsd.h (LINKER):
2696 * s/usg5-4.h (ORDINARY_LINK):
2697 Move to configure.
2698
2699 * s/aix4-2.h (LINKER): Remove; this file sets ORDINARY_LINK.
2700
2701 2010-05-18 Chong Yidong <cyd@stupidchicken.com>
2702
2703 * character.c (Fstring, Funibyte_string): Use SAFE_ALLOCA to
2704 prevent stack overflow if number of arguments is too large
2705 (Bug#6214).
2706
2707 2010-05-18 Juanma Barranquero <lekktu@gmail.com>
2708
2709 * charset.c (load_charset_map_from_file): Don't call close after fclose.
2710
2711 2010-05-18 Glenn Morris <rgm@gnu.org>
2712
2713 * s/gnu-linux.h: Combine two conditionals.
2714
2715 * Makefile.in (otherobj): Include $(VMLIMIT_OBJ) separately from
2716 $(POST_ALLOC_OBJ).
2717
2718 * Makefile.in (RALLOC_OBJ): New, set by configure.
2719 (rallocobj): Replace with the previous variable.
2720 (otherobj): Use $RALLOC_OBJ.
2721
2722 * s/gnu.h (REL_ALLOC) [DOUG_LEA_MALLOC]:
2723 * s/gnu-linux.h (REL_ALLOC) [DOUG_LEA_MALLOC]: Move undef to configure.
2724
2725 * Makefile.in (GMALLOC_OBJ, VMLIMIT_OBJ): New, set by configure.
2726 (gmallocobj, vmlimitobj): Replace with previous two variables.
2727 (otherobj): Use $GMALLOC_OBJ, $VMLIMIT_OBJ.
2728
2729 2010-05-17 Glenn Morris <rgm@gnu.org>
2730
2731 * Makefile.in (OLDXMENU_DEPS): New, set by configure.
2732 (stamp-oldxmenu): Use $OLDXMENU_DEPS.
2733
2734 2010-05-16 Glenn Morris <rgm@gnu.org>
2735
2736 * Makefile.in (${ns_appbindir}Emacs, ns-app): Always define these rules.
2737
2738 * Makefile.in (clean): Get rid of HAVE_NS conditional.
2739
2740 * Makefile.in (ns_appdir, ns_appbindir): Now configure adds the
2741 trailing "/".
2742
2743 * Makefile.in (TEMACS_LDFLAGS2): New, set by configure.
2744 (temacs${EXEEXT}): Combine the NS_IMPL_GNUSTEP case with the default.
2745
2746 * Makefile.in (GNUSTEP_SYSTEM_LIBRARIES): Remove, unused.
2747 (NS_IMPL_GNUSTEP_TEMACS_LDFLAGS): New, set by configure.
2748 (LD) [NS_IMPL_GNUSTEP]: Set to $(CC) -rdynamic.
2749 (temacs${EXEEXT}): Remove $LOCALCPP, never defined or referenced.
2750 Make most of the NS_IMPL_GNUSTEP case the same as the default case.
2751
2752 * Makefile.in (temacs${EXEEXT}) [!NS_IMPL_GNUSTEP]:
2753 Remove ${STARTFLAGS}, nothing ever sets it.
2754
2755 2010-05-16 Dan Nicolaescu <dann@ics.uci.edu>
2756
2757 * m/ia64.h (UNEXEC): Remove, set in s/*.h.
2758
2759 2010-05-16 Glenn Morris <rgm@gnu.org>
2760
2761 * Makefile.in (LIBX_BASE): Always define.
2762
2763 * Makefile.in (LIBX_OTHER): Move out of cpp section.
2764
2765 * Makefile.in (LIBXT): Always define.
2766
2767 2010-05-15 Glenn Morris <rgm@gnu.org>
2768
2769 * Makefile.in (OLDXMENU, LIBXMENU, LIBX_OTHER): Always define.
2770
2771 * Makefile.in (FONT_DRIVERS): Remove, replace with $FONT_OBJ.
2772 (obj, SOME_MACHINE_OBJECTS): Use $FONT_OBJ.
2773
2774 2010-05-15 Ken Raeburn <raeburn@raeburn.org>
2775
2776 * lisp.h (XFLOAT_DATA): Use "0?x:x" to generate an rvalue. (Bug#5916)
2777 (LISP_MAKE_RVALUE) [!USE_LISP_UNION_TYPE && !__GNUC__]: Likewise.
2778
2779 * emacs.c (main): Initialize initial-environment and
2780 process-environment before generating from env, not after.
2781
2782 Handle --version reasonably in CANNOT_DUMP configuration.
2783 * emacs.c (emacs_version, emacs_copyright): New string variables.
2784 (Vemacs_version, Vemacs_copyright): New Lisp_Object variables.
2785 (syms_of_emacs): Defvar them, and initialize them from the C
2786 string variables.
2787 (main): If initialization hasn't been done, print initial version
2788 info from the C strings, instead of starting an interactive session.
2789
2790 2010-05-15 Eli Zaretskii <eliz@gnu.org>
2791
2792 * bidi.c (bidi_paragraph_init): Don't leave alone garbage values
2793 of bidi_it->paragraph_dir. Call bidi_initialize if needed.
2794 (bidi_paragraph_init): Remove redundant assertion that we are at
2795 the beginning of a line after call to bidi_find_paragraph_start.
2796
2797 * xdisp.c (Fcurrent_bidi_paragraph_direction): New function.
2798 (syms_of_xdisp): Defsubr it.
2799
2800 * cmds.c (Fforward_char, Fbackward_char): Doc fix.
2801
2802 * Makefile.in: Fix MSDOS-related comments.
2803
2804 2010-05-15 Glenn Morris <rgm@gnu.org>
2805
2806 * Makefile.in (OLDXMENU_TARGET): New, set by configure.
2807 (really-lwlib, really-oldXMenu): Always define.
2808 ($OLDXMENU): Depend on $OLDXMENU_TARGET.
2809
2810 * Makefile.in: Simplify cpp conditional.
2811
2812 * Makefile.in (${ns_appdir}): Simplify using umask.
2813
2814 * Makefile.in (${ns_appdir}): Remove references to CVS-related files.
2815
2816 2010-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
2817
2818 * eval.c (specbind): Remove left-over duplicate test.
2819 Disallow let-binding frame-local vars. Add comment.
2820
2821 2010-05-14 Eli Zaretskii <eliz@gnu.org>
2822
2823 Make the cache of bidi iterator states dynamically allocated.
2824 * bidi.c (bidi_cache_shrink): New function.
2825 (bidi_init_it): Call it.
2826 (bidi_cache_iterator_state): Enlarge the cache if needed.
2827
2828 * bidi.c (bidi_move_to_visually_next): Rename from
2829 bidi_get_next_char_visually. All callers changed.
2830
2831 2010-05-14 Kenichi Handa <handa@m17n.org>
2832
2833 * dispextern.h (struct composition_it): New member reversed_p.
2834
2835 * composite.c (composition_compute_stop_pos): Search backward if
2836 ENDPOS < CHARPOS.
2837 (composition_reseat_it): Handle the case that ENDPOS < CHARPOS.
2838 Set CMP_IT->reversed_p.
2839 (composition_update_it): Pay attention to CMP_IT->reversed_p.
2840
2841 * xdisp.c (set_iterator_to_next):
2842 Call composition_compute_stop_pos with negative ENDPOS if we are
2843 scanning backward. Call composition_compute_stop_pos if scan
2844 direction is changed.
2845 (next_element_from_buffer): Call composition_compute_stop_pos with
2846 negative ENDPOS if we are scanning backward.
2847 (next_element_from_composition): Pay attention to
2848 IT->cmp_it.reversed_p.
2849
2850 2010-05-14 Kenichi Handa <handa@m17n.org>
2851
2852 * font.c (font_range): Return the range for the font found at first.
2853
2854 2010-05-14 Glenn Morris <rgm@gnu.org>
2855
2856 * Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Always define.
2857
2858 * Makefile.in (mktime, X11, register): Move undefs to configure.
2859
2860 * Makefile.in (MSDOS_OBJ): Default to empty, let msdos scripts set it.
2861 (MSDOS_X_OBJ): New variable.
2862 (MSDOS_SUPPORT_REAL): New constant.
2863 (MSDOS_SUPPORT): Set as a variable, not with cpp.
2864 (obj): Use MSDOS_X_OBJ.
2865 (lisp): Use MSDOS_SUPPORT as a variable.
2866
2867 * Makefile.in (REAL_MOUSE_SUPPORT): New constant.
2868 (GPM_MOUSE_SUPPORT): Now it's a constant.
2869 (MOUSE_SUPPORT, TOOLTIP_SUPPORT, WINDOW_SUPPORT): Set with configure,
2870 not cpp.
2871
2872 * Makefile.in (@NS_IMPL_GNUSTEP_INC@): Use in place of #ifdef.
2873 (ns_appresdir): Remove, unused.
2874
2875 * Makefile.in (SHELL): Move outside cpp section.
2876
2877 * s/netbsd.h (AMPERSAND_FULL_NAME): Remove (defined in AH_BOTTOM).
2878
2879 2010-05-13 Glenn Morris <rgm@gnu.org>
2880
2881 * Makefile.in (FONT_DRIVERS): Place with other HAVE_X_WINDOWS stuff.
2882 (TOOLTIP_SUPPORT): Place with other HAVE_WINDOW_SYSTEM stuff.
2883
2884 * Makefile.in (FONT_DRIVERS): If HAVE_X_WINDOWS is defined,
2885 HAVE_WINDOW_SYSTEM must be too.
2886
2887 * Makefile.in (WINNT_SUPPORT): Remove, nt build does not use this file.
2888 (lisp): Remove WINNT_SUPPORT.
2889
2890 * Makefile.in (OLDXMENU, LIBXMENU) [!HAVE_MENUS]:
2891 Let configure set these variables (to empty) in this case as well.
2892
2893 * Makefile.in (LD_SWITCH_X_SITE): Define as a variable, not via cpp.
2894 (LIBX_BASE): Use $LD_SWITCH_X_SITE.
2895
2896 * Makefile.in (C_SWITCH_X_SYSTEM, C_SWITCH_X_SITE, LIB_STANDARD)
2897 (LIB_MATH, FONTCONFIG_CFLAGS, FONTCONFIG_LIBS, FREETYPE_CFLAGS)
2898 (FREETYPE_LIBS, LIBOTF_CFLAGS, LIBOTF_LIBS, M17N_FLT_CFLAGS)
2899 (M17N_FLT_LIBS, GNU_OBJC_CFLAGS, GNUSTEP_SYSTEM_LIBRARIES, LIBGPM)
2900 (LIBRESOLV, UNEXEC_OBJ): For clarity, define variables to hold
2901 the values output by configure.
2902 (ALL_CFLAGS, obj, LIBES, temacs${EXEEXT}): Use the above variables.
2903
2904 2010-05-12 Glenn Morris <rgm@gnu.org>
2905
2906 * Makefile.in (YMF_PASS_LDFLAGS, LD, LINKER): Simplify the logic.
2907 (LINKER_WAS_SPECIFIED): Remove.
2908
2909 * Makefile.in (LIB_GCC): Set using configure, not cpp.
2910 (GNULIB_VAR) [!ORDINARY_LINK]: Always set to $LIB_GCC.
2911 * m/arm.h (LIB_GCC) [GNU_LINUX]:
2912 * s/cygwin.h (LIB_GCC):
2913 * s/freebsd.h (LIB_GCC):
2914 * s/gnu-linux.h (LIB_GCC):
2915 * s/msdos.h (LIB_GCC):
2916 * s/netbsd.h (LIB_GCC):
2917 Move to configure.
2918
2919 2010-05-11 Karel Klic <kklic@redhat.com>
2920
2921 * ftfont.c: Fix incorrect parentheses of #if condition for
2922 definining M17N_FLT_USE_NEW_FEATURE.
2923
2924 2010-05-11 Glenn Morris <rgm@gnu.org>
2925
2926 * Makefile.in (LIBS_SYSTEM) [MSDOS]: Do not reset.
2927 * s/msdos.h (MSDOS_LIBS_SYSTEM): Remove.
2928
2929 2010-05-10 Eli Zaretskii <eliz@gnu.org>
2930
2931 * xdisp.c (init_iterator): Don't turn on bidi reordering in
2932 unibyte buffers. See
2933 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00263.html.
2934
2935 2010-05-10 Glenn Morris <rgm@gnu.org>
2936
2937 * Makefile.in (LIBS_SYSTEM): Set using configure, not cpp.
2938 (LIBS_SYSTEM) [MSDOS]: Reset with MSDOS_LIBS_SYSTEM.
2939 (LIBES): Use LIBS_SYSTEM as a variable.
2940 * s/msdos.h (LIBS_SYSTEM): Rename to MSDOS_LIBS_SYSTEM. Always define.
2941 * s/aix4-2.h (LIBS_SYSTEM):
2942 * s/freebsd.h (LIBS_SYSTEM):
2943 * s/hpux10-20.h (LIBS_SYSTEM):
2944 * s/sol2-6.h (LIBS_SYSTEM):
2945 * s/unixware.h (LIBS_SYSTEM):
2946 Move to configure.
2947
2948 * s/aix4-2.h (MAIL_USE_LOCKF):
2949 * s/bsd-common.h (MAIL_USE_FLOCK):
2950 * s/darwin.h (MAIL_USE_FLOCK):
2951 * s/gnu-linux.h (MAIL_USE_FLOCK):
2952 * s/irix6-5.h (MAIL_USE_FLOCK):
2953 * s/template.h (MAIL_USE_FLOCK):
2954 Move to configure.
2955
2956 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
2957
2958 * Version 23.2 released.
2959
2960 2010-05-08 Andreas Schwab <schwab@linux-m68k.org>
2961
2962 * composite.c (autocmp_chars): Save point as marker before calling
2963 auto-composition-function (Bug#5984).
2964
2965 * lisp.h (restore_point_unwind): Add prototype.
2966
2967 * fileio.c (restore_point_unwind): Remove static attribute.
2968
2969 2010-05-08 Kenichi Handa <handa@m17n.org>
2970
2971 * ftfont.c (M17N_FLT_USE_NEW_FEATURE): Define it if we can use the
2972 new feature of libotf and m17n-flt.
2973 (ftfont_check_otf) [M17N_FLT_USE_NEW_FEATURE]:
2974 Call OTF_check_features even if no specific feature is given.
2975 (PACK_OTF_TAG) [M17N_FLT_USE_NEW_FEATURE]: New macro.
2976 (ftfont_drive_otf) [M17N_FLT_USE_NEW_FEATURE]: Handle the case
2977 that OUT is NULL. Use OTF_drive_gsub_with_log and
2978 OTF_drive_gpos_with_log instead of OTF_drive_gsub and
2979 OTF_drive_gpos.
2980 (ftfont_try_otf) [M17N_FLT_USE_NEW_FEATURE]: New function.
2981 (ftfont_shape_by_flt) [M17N_FLT_USE_NEW_FEATURE]:
2982 Setup mflt_enable_new_feature and mflt_try_otf.
2983
2984 2010-05-08 Jan Djärv <jan.h.d@swipnet.se>
2985
2986 * xsettings.c (Ftool_bar_get_system_style): Correct comment.
2987
2988 * gtkutil.c (xg_pack_tool_bar): Change show_all to show for handle
2989 box and toolbar (Bug #6139).
2990 (xg_create_tool_bar): Remove comment (Bug #6139).
2991 (xg_make_tool_item): Remove gtk_widget_show_all (Bug #6139).
2992 (xg_show_toolbar_item): Add gtk_widget_show for weventbox (Bug #6139).
2993
2994 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
2995
2996 * makefile.w32-in ($(BLD)/eval.$(O), $(BLD)/w32fns.$(O)):
2997 Update dependencies.
2998
2999 2010-05-08 Eli Zaretskii <eliz@gnu.org>
3000
3001 * fringe.c (update_window_fringes): Set up truncation bitmaps for
3002 R2L lines.
3003
3004 2010-05-08 Glenn Morris <rgm@gnu.org>
3005
3006 * Makefile.in (THIS_IS_MAKEFILE): Remove, unused.
3007
3008 * Makefile.in (LIBS_TERMCAP): Set with configure, not cpp.
3009 (TERMCAP_OBJ): New, set by configure, replacing termcapobj.
3010 (termcapobj): Replace with TERMCAP_OBJ.
3011 (otherobj): Use $TERMCAP_OBJ instead of $termcapobj.
3012 (LIBES): Use LIBS_TERMCAP as a variable.
3013
3014 * s/freebsd.h (osreldate.h): No longer include, since this file
3015 does not use __FreeBSD_version any more.
3016
3017 * s/aix4-2.h (TERMINFO):
3018 * s/cygwin.h (TERMINFO):
3019 * s/darwin.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
3020 * s/freebsd.h (TERMINFO, LIBS_TERMCAP):
3021 * s/gnu-linux.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
3022 * s/gnu.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
3023 * s/hpux10-20.h (TERMINFO, LIBS_TERMCAP):
3024 * s/irix6-5.h (TERMINFO):
3025 * s/netbsd.h (LIBS_TERMCAP):
3026 * s/openbsd.h (TERMINFO, LIBS_TERMCAP):
3027 * s/sol2-6.h (LIBS_TERMCAP) [!TERMINFO]:
3028 * s/usg5-4.h (TERMINFO):
3029 Move to configure.
3030
3031 2010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
3032
3033 * eval.c (unbind_to): Don't unbind a local binding into the global
3034 binding when the local binding disappeared. Inversely, don't unbind
3035 a global binding into a newly created local binding.
3036 * data.c (set_internal): Make its `buf' arg into a `where' arg so we
3037 can specify the frame to use, when applicable. Adjust callers.
3038
3039 2010-05-07 Vincent Belaïche <vincent.belaiche@gmail.com>
3040 Stefan Monnier <monnier@iro.umontreal.ca>
3041
3042 * floatfns.c (Fisnan, Fcopysign, Ffrexp, Fldexp): New functions.
3043
3044 2010-05-07 Eli Zaretskii <eliz@gnu.org>
3045
3046 * w32fns.c: Include w32.h.
3047 (Fw32_shell_execute): Decode the error message before passing it
3048 to `error'. (Bug#6126)
3049
3050 * msdos.c (dos_set_window_size):
3051 * w16select.c (Fx_selection_exists_p): Use `Fsymbol_value (foo)'
3052 instead of `XSYMBOL (foo)->value'.
3053
3054 2010-05-07 Eli Zaretskii <eliz@gnu.org>
3055
3056 Fix the MS-DOS build, broken by autoconfiscation.
3057
3058 * Makefile.in: Don't use Make-style comments past the "start of
3059 cpp stuff" line.
3060 (MSDOS_OBJ): Remove xmenu.o (it is now defined by XMENU_OBJ).
3061
3062 * s/msdos.h (UNEXEC): Don't define (@unexec@ in Makefile.in is
3063 edited directly by msdos/sed1v2.inp).
3064
3065 2010-05-07 Glenn Morris <rgm@gnu.org>
3066
3067 * Makefile.in (LD_SWITCH_SYSTEM): Set with configure, not cpp.
3068 (LD_SWITCH_SYSTEM_EXTRA): New variable, set by configure.
3069 (TEMACS_LDFLAGS): Use $LD_SWITCH_SYSTEM and $LD_SWITCH_SYSTEM_EXTRA,
3070 move out of cpp section.
3071 * s/freebsd.h (LD_SWITCH_SYSTEM):
3072 * s/gnu-linux.h (LD_SWITCH_SYSTEM):
3073 * s/netbsd.h (LD_SWITCH_SYSTEM):
3074 * s/openbsd.h (LD_SWITCH_SYSTEM): Move to configure.in.
3075
3076 2010-05-07 Dan Nicolaescu <dann@ics.uci.edu>
3077
3078 Define LIB_STANDARD and START_FILES using autoconf.
3079 * s/usg5-4.h (LIB_STANDARD):
3080 * s/netbsd.h (START_FILES):
3081 * s/irix6-5.h (LIB_STANDARD):
3082 * s/hpux10-20.h (LIB_STANDARD, START_FILES):
3083 * s/gnu-linux.h (START_FILES, LIB_STANDARD):
3084 * s/freebsd.h (START_FILES):
3085 * s/darwin.h (START_FILES):
3086 * s/cygwin.h (START_FILES):
3087 * s/aix4-2.h (LIB_STANDARD):
3088 * m/ibmrs6000.h (START_FILES): Remove, move logic to configure.in.
3089 * Makefile.in (STARTFILES): Rename to START_FILES, define using
3090 autoconf, not cpp.
3091
3092 2010-05-06 Dan Nicolaescu <dann@ics.uci.edu>
3093
3094 Remove NEED_BSDTTY and NEED_UNISTD_H.
3095 * s/hpux10-20.h (NEED_BSDTTY): Remove.
3096 * s/aix4-2.h (NEED_UNISTD_H): Remove.
3097 * systty.h: Simplify conditionals for including <sys/bsdtty.h>,
3098 <sys/ptyio.h> and <unistd.h>.
3099
3100 * emacs.c (main): Remove NO_DIR_LIBRARY conditional, unused.
3101
3102 * Makefile.in (STARTFILES): Conditionally define to make the usage clear.
3103 * s/gnu.h (START_FILES): Remove empty definition.
3104
3105 2010-05-06 Jan Djärv <jan.h.d@swipnet.se>
3106
3107 * xterm.c (x_draw_image_relief): Move declaration of extra to beginning.
3108
3109 2010-05-06 Glenn Morris <rgm@gnu.org>
3110
3111 * Makefile.in (CPP, LN_S): Remove unused variables.
3112
3113 2010-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
3114
3115 * syntax.c (Fchar_syntax): Check the arg is a character (bug#6080).
3116
3117 2010-05-05 Lawrence Mitchell <wence@gmx.li>
3118
3119 * m/sparc.h: Fix typo in earlier change.
3120
3121 2010-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
3122
3123 Misc tweaks.
3124 * eval.c (Fdefvaralias): Remove unintended nested if.
3125 (internal_condition_case_2, internal_condition_case_n): Use ANSI type.
3126
3127 2010-05-04 Bernhard Herzog <bh@intevation.de> (tiny change)
3128
3129 * xsmfns.c (smc_save_yourself_CB): strlen(client_id) => strlen(cwd).
3130
3131 2010-05-04 Dan Nicolaescu <dann@ics.uci.edu>
3132
3133 Remove BSD_PGRPS.
3134 * s/bsd-common.h (BSD_PGRPS): Remove undef.
3135 * s/gnu-linux.h (BSD_PGRPS): Remove.
3136 * term.c (dissociate_if_controlling_tty):
3137 * sysdep.c (narrow_foreground_group, widen_foreground_group)
3138 (init_sys_modes, reset_sys_modes):
3139 * emacs.c (main):
3140 * callproc.c (Fcall_process, child_setup): Remove code depending
3141 on BSD_PGRPS.
3142
3143 Remove POSIX_SIGNALS.
3144 * s/usg5-4.h (POSIX_SIGNALS):
3145 * s/netbsd.h (POSIX_SIGNALS):
3146 * s/msdos.h (POSIX_SIGNALS):
3147 * s/ms-w32.h (POSIX_SIGNALS):
3148 * s/hpux11.h (POSIX_SIGNALS):
3149 * s/gnu.h (POSIX_SIGNALS):
3150 * s/gnu-linux.h (POSIX_SIGNALS):
3151 * s/freebsd.h (POSIX_SIGNALS):
3152 * s/darwin.h (POSIX_SIGNALS):
3153 * s/cygwin.h (POSIX_SIGNALS):
3154 * s/aix4-2.h (POSIX_SIGNALS): Remove definition.
3155 * s/unixware.h:
3156 * s/sol2-6.h: Remove comments on POSIX_SIGNALS.
3157 * process.c (create_process):
3158 * syssignal.h:
3159 * sysdep.c (wait_for_termination, init_signals):
3160 * process.c (create_process):
3161 * msdos.c: POSIX_SIGNALS is always defined on all platforms,
3162 remove all code that assumes the contrary.
3163
3164 2010-05-04 Glenn Morris <rgm@gnu.org>
3165
3166 * s/gnu-linux.h (LD_SWITCH_SYSTEM): Use LD_SWITCH_X_SITE_AUX as a shell
3167 variable.
3168 * s/netbsd.h (LD_SWITCH_SYSTEM_tmp): Remove.
3169 (LD_SWITCH_SYSTEM): Use $LD_SWITCH_X_SITE_AUX_RPATH.
3170 * s/openbsd.h (LD_SWITCH_SYSTEM_tmp): Remove.
3171 (LD_SWITCH_SYSTEM): Use $LD_SWITCH_X_SITE_AUX_RPATH instead of
3172 LD_SWITCH_SYSTEM_tmp.
3173 * Makefile.in (LD_SWITCH_X_SITE_AUX, LD_SWITCH_X_SITE_AUX_RPATH):
3174 New variables, set by configure.
3175
3176 * s/aix4-2.h (LD_SWITCH_SYSTEM_TEMACS): Move to configure.in.
3177 * s/darwin.h (HEADERPAD_EXTRA, LIBS_NSGUI): Remove.
3178 (LD_SWITCH_SYSTEM_TEMACS): Move to configure.in.
3179 * Makefile.in (LD_SWITCH_SYSTEM_TEMACS): New variable, set by configure.
3180 (TEMACS_LDFLAGS): Use $LD_SWITCH_SYSTEM_TEMACS.
3181
3182 * s/aix4-2.h (C_SWITCH_SYSTEM):
3183 * m/alpha.h (C_SWITCH_MACHINE):
3184 Move to configure.in.
3185 * Makefile.in (C_SWITCH_MACHINE, C_SWITCH_SYSTEM):
3186 New variables, set by configure.
3187 (ALL_CFLAGS): Use $C_SWITCH_MACHINE and $C_SWITCH_SYSTEM in place of
3188 $c_switch_machine and $c_switch_system.
3189
3190 2010-05-04 Dan Nicolaescu <dann@ics.uci.edu>
3191
3192 * s/hpux10-20.h (LIB_STANDARD): New definition.
3193 * Makefile.in (ORDINARY_LINK): Remove setting LIB_STANDARD based
3194 on it, not used anymore.
3195
3196 2010-05-03 Chong Yidong <cyd@stupidchicken.com>
3197
3198 * eval.c (internal_condition_case_n): Rename from
3199 internal_condition_case_2.
3200 (internal_condition_case_2): New function.
3201
3202 * xdisp.c (safe_call): Use internal_condition_case_n.
3203
3204 * fileio.c (Fdelete_file, internal_delete_file): New arg FORCE.
3205 (internal_delete_file, Frename_file): Callers changed.
3206
3207 * buffer.c (Fkill_buffer):
3208 * callproc.c (delete_temp_file): Callers changed (Bug#6070).
3209
3210 * lisp.h: Update prototypes.
3211
3212 2010-05-03 Glenn Morris <rgm@gnu.org>
3213
3214 * Makefile.in (LIBX_EXTRA, LIBX_BASE): New variables.
3215 (LIBXT_OTHER, LIBX_OTHER): New, set by configure.
3216 (LIBXT): Set with configure, not cpp.
3217 (LIBX): Remove.
3218 (LIBES): Replace $LIBX with $LIBX_BASE and $LIBX_OTHER.
3219
3220 2010-05-02 Dan Nicolaescu <dann@ics.uci.edu>
3221
3222 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Remove.
3223 The FreeBSD is not needed, the default works, Solaris version is
3224 not needed, and the remaining case is not supported by configure.
3225
3226 2010-05-02 Jan Djärv <jan.h.d@swipnet.se>
3227
3228 * xsmfns.c (CHDIR_OPT): New define.
3229 (smc_save_yourself_CB): Add CHDIR_OPT to options to use when
3230 restarting emacs.
3231
3232 * xterm.c (x_connection_closed): Call Fkill_emacs instead of
3233 shut_down_emacs.
3234
3235 * emacs.c (USAGE1): Mention --chdir.
3236 (main): Handle --chdir.
3237 (standard_args): Add --chdir.
3238 (fatal_error_signal): Call Fkill_emacs for SIGTERM and SIGHUP (Bug
3239 #5552).
3240
3241 2010-05-01 Dan Nicolaescu <dann@ics.uci.edu>
3242
3243 Remove LD_SWITCH_MACHINE.
3244 * Makefile.in (LD_SWITCH_MACHINE): Remove definition, unused.
3245 (TEMACS_LDFLAGS): Do not use LD_SWITCH_MACHINE.
3246
3247 Clean up IRIX code.
3248 * m/iris4d.h (TERMINFO, FIRST_PTY_LETTER): Move definitions ...
3249 * s/irix6-5.h (TERMINFO, FIRST_PTY_LETTER): ... here.
3250
3251 Clean up AIX code.
3252 * m/ibmrs6000.inp: Remove file, unused.
3253 * m/ibmrs6000.h (IBMR2AIX): Remove, unused.
3254 (LD_SWITCH_MACHINE): Rename to LD_SWITCH_SYSTEM_TEMACS, and move
3255 definition ...
3256 * s/aix4-2.h (LD_SWITCH_SYSTEM_TEMACS): ... here.
3257
3258 * sysdep.c (child_setup_tty, init_sys_modes): Remove !IBMR2AIX code,
3259 unused.
3260
3261 2010-05-01 Eli Zaretskii <eliz@gnu.org>
3262
3263 Emulate POSIX_SIGNALS on MS-Windows.
3264
3265 * s/ms-w32.h (POSIX_SIGNALS, struct sigaction, SIG_BLOCK)
3266 (SIG_SETMASK, SIG_UNBLOCK): Define.
3267
3268 * sysdep.c (sys_signal) [WINDOWSNT]: #ifdef away.
3269 (wait_for_termination) [WINDOWSNT]: Move MS-Windows specific code
3270 from non-POSIX_SIGNALS section to POSIX_SIGNALS section.
3271
3272 * w32.c (sigemptyset, sigaddset, sigfillset, sigprocmask):
3273 New stubs.
3274
3275 Miscellaneous fixes of bidi display.
3276
3277 * xdisp.c (find_row_end): New function, refactored from display_line.
3278 (display_line): Use it.
3279 (extend_face_to_end_of_line): In almost-filled rows, extend only
3280 if the row is R2L and not continued.
3281 (display_line): Fix prepending of truncation glyphs to R2L rows.
3282 Preserve overlay and string info in row->end.
3283 (insert_left_trunc_glyphs): Support addition of left truncation
3284 glyphs to R2L rows.
3285 (set_cursor_from_row): Don't place cursor on the vertical border
3286 glyph between adjacent windows. Fix a crash when a display string
3287 is continued to the next line. Don't return zero if cursor was
3288 found by `cursor' property of a display string.
3289 (try_cursor_movement): Don't assume that row->end == (row+1)->start,
3290 test for that explicitly.
3291
3292 2010-05-01 Glenn Morris <rgm@gnu.org>
3293
3294 * Makefile.in (gmallocobj, rallocobj, vmlimitobj): Initialize to null,
3295 for clarity.
3296 (OTHER_OBJ): Remove.
3297 (PRE_ALLOC_OBJ, POST_ALLOC_OBJ): New, set by configure.
3298 (otherobj): Use PRE_ALLOC_OBJ, POST_ALLOC_OBJ rather than OTHER_OBJ.
3299
3300 2010-05-01 Karel Klíč <kklic@redhat.com>
3301
3302 * fileio.c (Ffile_selinux_context): Context functions may return null.
3303
3304 2010-04-30 Dan Nicolaescu <dann@ics.uci.edu>
3305
3306 * s/gnu.h (POSIX_SIGNALS, START_FILES): New definitions.
3307
3308 2010-04-30 Glenn Morris <rgm@gnu.org>
3309
3310 * Makefile.in (vmlimitobj) [!SYSTEM_MALLOC]: New variable. (Bug#6065)
3311 (OTHER_OBJ): Define as a separate variable, for clarity.
3312
3313 2010-04-30 Jan Djärv <jan.h.d@swipnet.se>
3314
3315 * xsettings.c: include limits.h and update file comment.
3316
3317 2010-04-30 Glenn Morris <rgm@gnu.org>
3318
3319 * Makefile.in (OLDXMENU, LIBXMENU) [HAVE_MENUS]:
3320 Set with configure, not cpp.
3321 (LIBW): Remove, replace with $TOOLKIT_LIBW.
3322
3323 * Makefile.in (mallocobj): Remove.
3324 (otherobj): Simplify using @OTHER_OBJ@.
3325
3326 * Makefile.in (dispnew.o, frame.o, fringe.o, font.o, fontset.o)
3327 (keyboard.o, window.o, xdisp.o, xfaces.o, menu.o):
3328 Don't bother making nsgui.h dependency platform-specific.
3329
3330 * Makefile.in (nsfns.o): Remove duplicate nsgui.h dependency.
3331
3332 2010-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
3333
3334 * process.c (read_process_output, exec_sentinel): Don't burp if the
3335 sentinel/filter kills the current buffer (bug#6060).
3336
3337 Fix wrong-docstring problem introduced with hash-consing. (Bug#6008)
3338 * eval.c (Fautoload): Set doc to a unique number rather than to 0.
3339 Remove unused var `args'.
3340 * lisp.h (XSETCARFASTINT, XSETCDRFASTINT): Remove.
3341 (LOADHIST_ATTACH): Wrap with do...while to avoid surprises for callers.
3342 * doc.c (store_function_docstring): Use XSETCAR.
3343
3344 2010-04-28 Glenn Morris <rgm@gnu.org>
3345
3346 * Makefile.in (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT): New variables.
3347 (WINDOW_SUPPORT) [HAVE_WINDOW_SYSTEM]: Use them.
3348
3349 * Makefile.in (CYGWIN_OBJ): Set with configure, not cpp.
3350
3351 * Makefile.in (GPM_MOUSE_SUPPORT): New, set by configure.
3352 (MOUSE_SUPPORT) [!HAVE_MOUSE]: Use $GPM_MOUSE_SUPPORT.
3353
3354 * Makefile.in (FONT_OBJ): New, set by configure.
3355 (FONT_DRIVERS): Use $FONT_OBJ.
3356
3357 * Makefile.in (LIBXMU): Set with configure, not cpp.
3358 * s/aix4-2.h (LIBXMU):
3359 * s/hpux10-20.h (LIBXMU):
3360 Remove definition, now set in configure.
3361
3362 * Makefile.in (NS_OBJ, NS_SUPPORT): Set with configure, not cpp.
3363
3364 * m/amdx86-64.h [i386]: Move this test to configure.in.
3365
3366 2010-04-27 Glenn Morris <rgm@gnu.org>
3367
3368 * Makefile.in (LIBXTR6): Set with configure, not cpp.
3369 * s/unixware.h (NEED_LIBW): Remove definition.
3370
3371 * Makefile.in (LUCID_LIBW, MOTIF_LIBW): Remove, replacing by...
3372 (TOOLKIT_LIBW): New, set by configure.
3373 (@X_TOOLKIT_TYPE@): No longer define it.
3374
3375 * Makefile.in (LIBXP): Remove, since included in MOTIF_LIBW.
3376 (MOTIF_LIBW): Set with configure, not cpp.
3377 * s/aix4-2.h (LIB_MOTIF):
3378 * s/gnu-linux.h (LIB_MOTIF):
3379 * s/unixware.h (LIB_MOTIF): Move to configure.in.
3380
3381 2010-04-27 Dan Nicolaescu <dann@ics.uci.edu>
3382
3383 Reduce CPP usage.
3384 * Makefile.in (LIB_X11_LIB): Remove, inline in the only user.
3385 (obj): Use autoconf for unexec instead of cpp.
3386 (C_SWITCH_SYSTEM, C_SWITCH_MACHINE, C_SWITCH_X_SITE): Remove
3387 definitions and undefs. Inline definitions in the only user.
3388 (ALL_CFLAGS): Substitute C_SWITCH_X_SYSTEM using autoconf.
3389
3390 2010-04-27 Glenn Morris <rgm@gnu.org>
3391
3392 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Change the logic around,
3393 since the defaults (set by the system file) are fine in most cases.
3394 [GNU_LINUX, __OpenBSD__, __NetBSD__, __APPLE__]: Remove sections.
3395 * m/ibms390x.h (START_FILES, LIB_STANDARD):
3396 * m/macppc.h (START_FILES, LIB_STANDARD) [GNU_LINUX]:
3397 * m/sparc.h (START_FILES, LIB_STANDARD) [__linux__]:
3398 Remove definitions, since they are set correctly in s/gnu-linux.h.
3399 * s/freebsd.h (START_FILES, LIB_STANDARD):
3400 * s/gnu-linux.h (START_FILES, LIB_STANDARD):
3401 * s/hpux10-20.h (START_FILES):
3402 * s/netbsd.h (START_FILES, LIB_STANDARD, START_FILES_1, END_FILES_1):
3403 Use $CRT_DIR in place of fixed /usr/lib, /lib directories.
3404
3405 * Makefile.in (LIBXP, LUCID_LIBW, WIDGET_OBJ): Set via configure.
3406 (MOTIF_LIBW): Use $LIBXP.
3407 (otherobj): Use $WIDGET_OBJ.
3408
3409 2010-04-26 Dan Nicolaescu <dann@ics.uci.edu>
3410
3411 * Makefile.in (LIBS_MACHINE): Remove, unused.
3412
3413 Use autoconf instead of cpp for LIB_MATH.
3414 * s/darwin.h (LIB_MATH): Do not define here, move to configure.
3415 * s/cygwin.h (LIB_MATH): Likewise.
3416 * Makefile.in (LIB_MATH): Do not define with cpp.
3417 (LIBES): Use autoconf for LIB_MATH.
3418
3419 2010-04-26 Kenichi Handa <handa@m17n.org>
3420
3421 * composite.c (Ffind_composition_internal): Fix the return value
3422 for an automatic composition.
3423
3424 2010-04-25 Dan Nicolaescu <dann@ics.uci.edu>
3425
3426 Remove all NO_ARG_ARRAY uses.
3427 * fns.c (concat2, concat3, nconc2):
3428 * eval.c (apply1, call1, call2, call3, call4, call5, call6)
3429 (call7): Remove NO_ARG_ARRAY usage, assume it's always true.
3430 * m/xtensa.h (NO_ARG_ARRAY):
3431 * m/template.h (NO_ARG_ARRAY):
3432 * m/sparc.h (NO_ARG_ARRAY):
3433 * m/sh3.h (NO_ARG_ARRAY):
3434 * m/mips.h (NO_ARG_ARRAY):
3435 * m/macppc.h (NO_ARG_ARRAY):
3436 * m/iris4d.h (NO_ARG_ARRAY):
3437 * m/intel386.h (NO_ARG_ARRAY):
3438 * m/ibms390x.h (NO_ARG_ARRAY):
3439 * m/ibms390.h (NO_ARG_ARRAY):
3440 * m/ibmrs6000.h (NO_ARG_ARRAY):
3441 * m/ia64.h (NO_ARG_ARRAY):
3442 * m/hp800.h (NO_ARG_ARRAY):
3443 * m/arm.h (NO_ARG_ARRAY):
3444 * m/amdx86-64.h (NO_ARG_ARRAY):
3445 * m/alpha.h (NO_ARG_ARRAY): Remove definition.
3446
3447 2010-04-25 Eli Zaretskii <eliz@gnu.org>
3448
3449 * xdisp.c (display_line): Don't assume 2nd call to
3450 get_next_display_element cannot return zero. (Bug#6030)
3451 (iterate_out_of_display_property): New function, body from pop_it.
3452 (pop_it): Use it.
3453
3454 2010-04-24 Glenn Morris <rgm@gnu.org>
3455
3456 * m/amdx86-64.h (START_FILES, LIB_STANDARD) [__OpenBSD__]:
3457 For clarity, revert to using fixed /usr/lib rather than $CRT_DIR.
3458 (START_FILES, LIB_STANDARD) [__FreeBSD__]: Merge into the generic case,
3459 since CRT_DIR defaults to /usr/lib. Suggested by Dan Nicolaescu.
3460
3461 2010-04-24 Eli Zaretskii <eliz@gnu.org>
3462
3463 * xdisp.c (display_line): Use `reseat' instead of `reseat_1', and
3464 use `get_next_display_element' and `set_iterator_to_next' to
3465 advance to the next character, when looking for the character that
3466 begins the next row.
3467
3468 * .gdbinit: Add a "set Fmake_symbol" line to force GDB to load the
3469 definition of "struct Lisp_Symbol".
3470
3471 2010-04-24 Glenn Morris <rgm@gnu.org>
3472
3473 * Makefile.in (CRT_DIR): New variable, set by configure.
3474 * m/amdx86-64.h, m/ibms390x.h (START_FILES, LIB_STANDARD):
3475 Use $CRT_DIR rather than HAVE_LIB64_DIR. (Bug#5655)
3476
3477 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
3478
3479 * Makefile.in: Remove C_SWITCH_X_MACHINE, unused.
3480
3481 * s/cygwin.h (LIBS_DEBUG): Remove, unused.
3482
3483 Remove redundant flags.
3484 * s/freebsd.h (C_SWITCH_SYSTEM):
3485 * s/hpux10-20.h (C_SWITCH_X_SYSTEM, LD_SWITCH_X_DEFAULT):
3486 * s/netbsd.h (C_SWITCH_SYSTEM):
3487 * s/openbsd.h (LD_SWITCH_X_DEFAULT): Remove, configure takes care
3488 of these.
3489
3490 Simplify m/intel386.h.
3491 * m/intel386.h (CRT0_DUMMIES): Remove, inline value in the only
3492 user: ecrt0.c.
3493 (SOLARIS2): Remove LOAD_AVE_TYPE, LOAD_AVE_CVT, LIBS_MACHINE, unused.
3494 (USG5_4): Move LOAD_AVE_TYPE, LOAD_AVE_CVT, FSCALE definitions to
3495 the only user: s/unixware.h.
3496 * ecrt0.c: Remove #ifndef static. Inline CRT0_DUMMIES definition
3497 from m/intel386.h.
3498 * s/unixware.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, FSCALE): Definitions
3499 moved here from m/intel386.h.
3500
3501 * m/mips.h: Remove #if 0 code.
3502
3503 2010-04-23 Eli Zaretskii <eliz@gnu.org>
3504
3505 Fix display of composed characters from L2R scripts in bidi buffers.
3506 * xdisp.c (set_iterator_to_next, next_element_from_composition):
3507 After advancing IT past the composition, resync the bidi iterator
3508 with IT's position. (Bug#5977)
3509
3510 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
3511
3512 * Makefile.in (LD_SWITCH_MACHINE_TEMACS): Remove, unused.
3513 (TEMACS_LDFLAGS): Don't use LD_SWITCH_SYSTEM_TEMACS.
3514
3515 2010-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
3516
3517 * gtkutil.c: Include xsettings.h for Ftool_bar_get_system_style.
3518
3519 2010-04-23 Eli Zaretskii <eliz@gnu.org>
3520
3521 Support `display' text properties and overlay strings in bidi buffers.
3522 * xdisp.c (pop_it): When the stack is popped after displaying
3523 from a string, bidi-iterate to exit from the text portion covered
3524 by the `display' property or overlay. (Bug#5988, bug#5920)
3525
3526 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
3527
3528 * m/macppc.h (LD_SWITCH_SYSTEM_TEMACS): Remove #undef.
3529 (LD_SWITCH_MACHINE_TEMACS): Remove, configure sets nocombreloc.
3530
3531 * s/netbsd.h (LD_SWITCH_SYSTEM_TEMACS): Remove, configure sets nocombreloc.
3532 * s/openbsd.h (LD_SWITCH_SYSTEM_TEMACS): Remove.
3533
3534 Simplify STARTFILES definition.
3535 * s/hpux10-20.h (START_FILES): Explicitly define here instead of
3536 relying on Makefile.in to define it.
3537 * s/cygwin.h (START_FILES): Likewise.
3538 * Makefile.in (STARTFILES): Remove conditional code, not needed anymore.
3539
3540 Clean up Solaris code.
3541 * s/sol2-6.h (LD_SWITCH_SYSTEM_TEMACS, C_SWITCH_X_SYSTEM)
3542 (LIB_MOTIF): Remove, configure takes care of this.
3543 (NOT_USING_MOTIF): Remove, unused.
3544 * xrdb.c: Remove #if 0-ed #include.
3545 (SYSV): Remove conditional for old SysV.
3546 * sysdep.c (closedir): Remove conditional code for Solaris,
3547 Solaris has closedir.
3548
3549 2010-04-22 Jan Djärv <jan.h.d@swipnet.se>
3550
3551 * xsettings.c (read_and_apply_settings): Check if current_font is
3552 NULL before strcmp (Bug#6001).
3553
3554 2010-04-21 Dan Nicolaescu <dann@ics.uci.edu>
3555
3556 Clean up HP-UX files.
3557 * m/hp800.h (NO_REMAP, VIRT_ADDR_VARIES, DATA_SEG_BITS)
3558 (DATA_START, TEXT_START, LOAD_AVE_TYPE, LOAD_AVE_CVT)
3559 (LDAV_SYMBOL, index, rindex): Move definitions only used in HP-UX ...
3560 * s/hpux10-20.h: ... to the only user, here.
3561
3562 2010-04-21 Eli Zaretskii <eliz@gnu.org>
3563
3564 * bidi.c (bidi_find_paragraph_start, bidi_at_paragraph_end): Don't
3565 use buffer-local values of paragraph-start and paragraph-separate.
3566 <paragraph_start_re, paragraph_separate_re>: Rename from
3567 fallback_paragraph_start_re and fallback_paragraph_separate_re.
3568 (Bug#5992)
3569
3570 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
3571
3572 * xsettings.c: Qmonospace_font_name, Qtool_bar_style and
3573 current_tool_bar_style are new.
3574 (store_config_changed_event): Rename from store_font_changed_event.
3575 (XSETTINGS_TOOL_BAR_STYLE): New define.
3576 (SEEN_FONT, SEEN_TB_STYLE): New enum values.
3577 (struct xsettings): Add font and tb_style, set xft stuff inside #ifdef
3578 HAVE_XFT.
3579 (something_changedCB): store_font_changed_event is now
3580 store_config_changed_event.
3581 (parse_settings): Rename from parse_xft_settings. Read
3582 non-xft xsettings outside #ifdef HAVE_XFT.
3583 (read_settings): Renamed from read_xft_settings.
3584 (apply_xft_settings): Take current settings as parameter. Do not
3585 call read_(xft)_settings.
3586 (read_and_apply_settings): New function.
3587 (xft_settings_event): Do non-xft stuff out of HAVE_XFT. Call
3588 read_and_apply_settings if there are settings to be read.
3589 (init_xsettings): Renamed from init_xfd_settings.
3590 Call read_and_apply_settings unconditionally.
3591 (xsettings_initialize): Call init_xsettings.
3592 (Ftool_bar_get_system_style): New function.
3593 (syms_of_xsettings): Define Qmonospace_font_name and
3594 Qtool_bar_style. Initialize current_tool_bar_style to nil.
3595 defsubr Stool_bar_get_system_style. Fprovide on
3596 dynamic-setting.
3597 Move misplaced HAVE_GCONF
3598
3599 * xsettings.h (Ftool_bar_get_system_style): Declare.
3600
3601 * xdisp.c: Vtool_bar_style, tool_bar_max_label_size,
3602 Qtext, Qboth, Qboth_horiz are new.
3603 (syms_of_xdisp): Intern Qtext, Qboth, Qboth_horiz, DEFVAR
3604 Vtool_bar_style, tool_bar_max_label_size.
3605
3606 * lisp.h: Extern declare Qtext, Qboth, Qboth_horiz.
3607
3608 * keyboard.c: QClabel is new.
3609 (parse_tool_bar_item): Take out QClabel from tool bar items.
3610 Try to construct a label if ther is no QClabel.
3611 (syms_of_keyboard): Intern :label as QClabel.
3612
3613 * dispextern.h (tool_bar_item_idx): TOOL_BAR_ITEM_LABEL is new.
3614 (Vtool_bar_style, tool_bar_max_label_size, DEFAULT_TOOL_BAR_LABEL_SIZE):
3615 New.
3616
3617 * Makefile.in (SOME_MACHINE_LISP): font-setting.el renamed to
3618 dynamic-setting.el.
3619
3620 * gtkutil.c (xg_tool_bar_menu_proxy): Handle label in tool bar item.
3621 (xg_make_tool_item, xg_show_toolbar_item): New function.
3622 (update_frame_tool_bar): Take label from TOOL_BAR_ITEM_LABEL.
3623 Call xg_make_tool_item to make a tool bar item.
3624 Call xg_show_toolbar_item. Use wtoolbar instead of x->toolbar_widget.
3625
3626 * xterm.c (x_draw_image_relief): Take Vtool_bar_button_margin
3627 into account for toolbars.
3628
3629 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
3630
3631 * data.c (make_blv): Declarations before code (Bug#5993).
3632
3633 2010-04-21 Glenn Morris <rgm@gnu.org>
3634
3635 * Makefile.in (DBUS_OBJ, GTK_OBJ, XMENU_OBJ, XOBJ):
3636 Define using autoconf, not cpp.
3637 (LIBXSM): New variable, set by autoconf.
3638 (LIBXT): Use $LIBXSM.
3639
3640 2010-04-21 Dan Nicolaescu <local_user@dannlt>
3641
3642 Remove NOMULTIPLEJOBS, unused.
3643 * s/template.h (NOMULTIPLEJOBS):
3644 * s/msdos.h (NOMULTIPLEJOBS): Remove, unused.
3645
3646 Simplify LD_SWITCH_SYSTEM_TEMACS usage.
3647 * s/freebsd.h (LD_SWITCH_SYSTEM_TEMACS):
3648 * s/gnu-linux.h (LD_SWITCH_SYSTEM_TEMACS): Remove, configure
3649 detects -znocombreloc and passes it to the linker
3650 * s/hpux10-20.h (LD_SWITCH_SYSTEM_TEMACS): Remove, empty.
3651
3652 2010-04-21 Glenn Morris <rgm@gnu.org>
3653
3654 * Makefile.in (LIBSELINUX_LIBS): Move out of #ifdef.
3655
3656 2010-04-21 Karel Klíč <kklic@redhat.com>
3657
3658 * Makefile.in (LIBSELINUX_LIBS): New.
3659 (LIBES): Add $LIBSELINUX_LIBS.
3660 * eval.c, lisp.h (call7): New function.
3661 * fileio.c [HAVE_LIBSELINUX]: Include selinux headers.
3662 (Ffile_selinux_context, Fset_file_selinux_context):
3663 New functions.
3664 (Fcopy_file): New parameter preserve-selinux-context.
3665 (Frename_file): Preserve selinux context when renaming by copy-file.
3666
3667 2010-04-21 Juanma Barranquero <lekktu@gmail.com>
3668 Eli Zaretskii <eliz@gnu.org>
3669
3670 Don't depend on cm.c or termcap.c on Windows, use stubs.
3671 * makefile.w32-in (OBJ1): Remove cm.$(O) and termcap.$(O).
3672 ($(BLD)/cm.$(O), $(BLD)/termcap.$(O)): Remove.
3673 * w32console.c (current_tty, cost): New vars; lifted from cm.c.
3674 (evalcost, cmputc, cmcheckmagic, cmcostinit, cmgoto, Wcm_clear)
3675 (sys_tputs, sys_tgetstr): New stubs.
3676 * s/ms-w32.h (chcheckmagic, cmcostinit, cmgoto, cmputc, Wcm_clear)
3677 (tputs, tgetstr): New; define to sys_*.
3678
3679 2010-04-20 Juanma Barranquero <lekktu@gmail.com>
3680
3681 * buffer.c (syms_of_buffer) <bidi-display-reordering>: Doc fix.
3682
3683 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
3684
3685 * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
3686 Just signal a warning rather than an error when inside a let.
3687 (Fmake_variable_frame_local): Add the same test.
3688
3689 * font.c (syms_of_font): Make the style table vars read-only.
3690
3691 * buffer.h (struct buffer): Remove unused var `direction_reversed'.
3692 * buffer.c (init_buffer_once, syms_of_buffer): Remove its initialization.
3693
3694 * bidi.c (bidi_initialize): Simplify fallback_paragraph_*_re init.
3695
3696 2010-04-20 Eli Zaretskii <eliz@gnu.org>
3697
3698 Fix R2L paragraph display on TTY.
3699
3700 * xdisp.c (unproduce_glyphs): New function.
3701 (display_line): Use it when produced glyphs are discarded from R2L
3702 glyph rows.
3703 (append_composite_glyph): In R2L rows, prepend the glyph rather
3704 than appending it.
3705
3706 * term.c (append_composite_glyph): In R2L rows, prepend the glyph
3707 rather than append it. Set up the resolved_level and bidi_type
3708 attributes of the appended glyph.
3709 (produce_special_glyphs): Mirror the backslash continuation
3710 character in R2L lines.
3711
3712 Implement display of R2L paragraphs in GUI sessions.
3713
3714 * xdisp.c [HAVE_WINDOW_SYSTEM]: Add prototype for
3715 append_stretch_glyph.
3716 (set_cursor_from_row) <cursor_x>: Remove unused variable. Fix
3717 off-by-one error in computing x at end of text in the row.
3718 (append_stretch_glyph): In reversed row, prepend the glyph rather
3719 than append it. Set resolved_level and bidi_type of the glyph.
3720 (extend_face_to_end_of_line): If the row is reversed, prepend a
3721 stretch glyph whose width is such that the rightmost glyph will be
3722 drawn at the right margin of the window. Fix off-by-one error on
3723 TTY frames in testing whether a line needs face extension. Fix
3724 face extension at ZV. If this is the last glyph row, use
3725 DEFAULT_FACE_ID, to avoid painting the rest of the window with the
3726 region face.
3727 (set_cursor_from_row, display_line): Use
3728 MATRIX_ROW_CONTINUATION_LINE_P instead of testing value of
3729 row->continuation_lines_width.
3730 (next_element_from_buffer): Don't call bidi_paragraph_init if we
3731 are at ZV. Fixes a crash when reseated to ZV by
3732 try_window_reusing_current_matrix.
3733 (display_and_set_cursor, erase_phys_cursor): Handle negative HPOS,
3734 which happens with R2L glyph rows. Fixes a crash when inserting a
3735 character at end of an R2L line.
3736 (set_cursor_from_row): Don't be fooled by truncated rows: don't
3737 treat them as having zero-width characters. Improve comments.
3738 Don't reverse pos_before and pos_after for reversed glyph rows.
3739 Set cursor.x to negative value when the cursor might be on the
3740 left fringe.
3741 (IT_OVERFLOW_NEWLINE_INTO_FRINGE): For R2L lines, consider the
3742 left fringe, not the right one.
3743 (notice_overwritten_cursor, draw_phys_cursor_glyph)
3744 (erase_phys_cursor): For reversed cursor_row, support cursor on
3745 the left fringe.
3746
3747 * fringe.c (update_window_fringes): For R2L rows, swap the bitmaps
3748 of continuation indicators on the fringes.
3749 (draw_fringe_bitmap): For reversed glyph rows, allow cursor on the
3750 left fringe.
3751
3752 * w32term.c (w32_draw_window_cursor): For reversed glyph rows,
3753 draw cursor on the left fringe.
3754
3755 * xterm.c (x_draw_window_cursor): For reversed glyph rows, draw
3756 cursor on the left fringe.
3757
3758 * dispnew.c (update_text_area): Handle reversed desired rows when
3759 the cursor is on the left fringe.
3760 (set_window_cursor_after_update): Limit cursor's hpos by -1 from
3761 below, not by 0, for when the cursor is on the left fringe.
3762
3763 2010-04-20 Jan Djärv <jan.h.d@swipnet.se>
3764
3765 * gtkutil.c (xg_event_is_for_scrollbar): Check if grabbed
3766 widget is a scrollbar.
3767
3768 2010-04-20 Kenichi Handa <handa@m17n.org>
3769
3770 * charset.c (char_charset): Consider Vcharset_non_preferred_head
3771 only when the arg CHARSET_LIST is nil.
3772
3773 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
3774
3775 Make variable forwarding explicit rather the using special values.
3776 Basically, this makes the structure of buffer-local values and object
3777 forwarding explicit in the type of Lisp_Symbols rather than use
3778 special Lisp_Objects for that. This tends to lead to slightly more
3779 verbose code, but is more C-like, simpler, and makes it easier to make
3780 sure we handled all cases, among other things by letting the compiler
3781 help us check it.
3782 * lisp.h (enum Lisp_Misc_Type, union Lisp_Misc):
3783 Removing forwarding objects.
3784 (enum Lisp_Fwd_Type, enum symbol_redirect, union Lisp_Fwd): New types.
3785 (struct Lisp_Symbol): Make the various forms of variable-forwarding
3786 explicit rather than hiding them inside Lisp_Object "values".
3787 (XFWDTYPE): New macro.
3788 (XINTFWD, XBOOLFWD, XOBJFWD, XKBOARD_OBJFWD): Redefine.
3789 (XBUFFER_LOCAL_VALUE): Remove.
3790 (SYMBOL_VAL, SYMBOL_ALIAS, SYMBOL_BLV, SYMBOL_FWD, SET_SYMBOL_VAL)
3791 (SET_SYMBOL_ALIAS, SET_SYMBOL_BLV, SET_SYMBOL_FWD): New macros.
3792 (SYMBOL_VALUE, SET_SYMBOL_VALUE): Remove.
3793 (struct Lisp_Intfwd, struct Lisp_Boolfwd, struct Lisp_Objfwd)
3794 (struct Lisp_Buffer_Objfwd, struct Lisp_Kboard_Objfwd):
3795 Remove the Lisp_Misc_* header.
3796 (struct Lisp_Buffer_Local_Value): Redefine.
3797 (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): New macros.
3798 (struct Lisp_Misc_Any): Add filler to get the right size.
3799 (struct Lisp_Free): Use struct Lisp_Misc_Any rather than struct
3800 Lisp_Intfwd.
3801 (DEFVAR_LISP, DEFVAR_LISP_NOPRO, DEFVAR_BOOL, DEFVAR_INT)
3802 (DEFVAR_KBOARD): Allocate a forwarding object.
3803 * data.c (do_blv_forwarding, store_blv_forwarding): New macros.
3804 (let_shadows_global_binding_p): New function.
3805 (union Lisp_Val_Fwd): New type.
3806 (make_blv): New function.
3807 (swap_in_symval_forwarding, indirect_variable, do_symval_forwarding)
3808 (store_symval_forwarding, swap_in_global_binding, Fboundp)
3809 (swap_in_symval_forwarding, find_symbol_value, Fset)
3810 (let_shadows_buffer_binding_p, set_internal, default_value)
3811 (Fset_default, Fmake_variable_buffer_local, Fmake_local_variable)
3812 (Fkill_local_variable, Fmake_variable_frame_local)
3813 (Flocal_variable_p, Flocal_variable_if_set_p)
3814 (Fvariable_binding_locus):
3815 * xdisp.c (select_frame_for_redisplay):
3816 * lread.c (Fintern, Funintern, init_obarray, defvar_int)
3817 (defvar_bool, defvar_lisp_nopro, defvar_lisp, defvar_kboard):
3818 * frame.c (store_frame_param):
3819 * eval.c (Fdefvaralias, Fuser_variable_p, specbind, unbind_to):
3820 * bytecode.c (Fbyte_code) <varref, varset>: Adapt to the new symbol
3821 value structure.
3822 * buffer.c (PER_BUFFER_SYMBOL): Move from buffer.h.
3823 (clone_per_buffer_values): Only adjust markers into the current buffer.
3824 (reset_buffer_local_variables): PER_BUFFER_IDX is never -2.
3825 (Fbuffer_local_value, set_buffer_internal_1)
3826 (swap_out_buffer_local_variables):
3827 Adapt to the new symbol value structure.
3828 (DEFVAR_PER_BUFFER): Allocate a Lisp_Buffer_Objfwd object.
3829 (defvar_per_buffer): Take a new arg for the fwd object.
3830 (buffer_lisp_local_variables): Return a proper alist (different fix
3831 for bug#4138).
3832 * alloc.c (Fmake_symbol): Use SET_SYMBOL_VAL.
3833 (Fgarbage_collect): Don't handle buffer_defaults specially.
3834 (mark_object): Handle new symbol value structure rather than the old
3835 special Lisp_Misc_* objects.
3836 (gc_sweep) <symbols>: Free also the buffer-local-value objects.
3837 * term.c (set_tty_color_mode):
3838 * bidi.c (bidi_initialize): Don't access the ->value field directly.
3839 * buffer.h (PER_BUFFER_VAR_OFFSET): Don't bother with
3840 a buffer_local_flags.
3841 * print.c (print_object): Get rid of impossible forwarding objects.
3842
3843 2010-04-19 Eli Zaretskii <eliz@gnu.org>
3844
3845 * bidi.c (bidi_get_type, bidi_get_category)
3846 (bidi_at_paragraph_end, bidi_resolve_weak, bidi_resolve_neutral)
3847 (bidi_type_of_next_char, bidi_level_of_next_char):
3848 Declare static. Use `INLINE' rather than `inline'.
3849
3850 2010-04-19 Juanma Barranquero <lekktu@gmail.com>
3851
3852 * dired.c (Ffile_attributes): Fix typo in docstring.
3853
3854 2010-04-19 Adrian Robert <Adrian.B.Robert@gmail.com>
3855
3856 * nsmenu.m (EmacsDialog-runDialogAt:): Declare ret as
3857 NSInteger (Bug#5811).
3858
3859 2010-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3860
3861 * s/darwin.h (PTY_ITERATION, PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF)
3862 (PTY_OPEN): New defines. Use openpty (Bug#726, Bug#5819).
3863
3864 2010-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3865
3866 * frame.h (FRAME_LINE_TO_PIXEL_Y): Add missing parenthesis.
3867
3868 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
3869
3870 * xdisp.c (prepare_menu_bars): Don't call ns_set_doc_edited for
3871 terminal frames (Bug#5837).
3872
3873 2010-04-19 Eli Zaretskii <eliz@gnu.org>
3874
3875 * .gdbinit (xsubchartable): New command.
3876
3877 2010-04-19 Eli Zaretskii <eliz@gnu.org>
3878
3879 * xdisp.c (display_line): Don't write beyond the last glyph row in
3880 the desired matrix. Fixes a crash in "emacs -nw" (bug#5972), see
3881 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00075.html
3882 and
3883 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00213.html
3884
3885 2010-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
3886
3887 * alloc.c (Fpurecopy): Hash-cons if requested.
3888 (syms_of_alloc): Update purify-flag docstring.
3889
3890 2010-04-18 Jan Djärv <jan.h.d@swipnet.se>
3891
3892 * gtkutil.c (xg_set_geometry): Set size in geometry string also.
3893 (x_wm_set_size_hint): Set USER_POS in hint_flags (Bug#5968).
3894
3895 2010-04-17 Eli Zaretskii <eliz@gnu.org>
3896
3897 Fix a crash when an NSM character is inserted at BEGV.
3898
3899 * bidi.c (bidi_init_it): Fix initialization of bidi_it->prev.
3900 (bidi_resolve_weak): Don't use prev.type_after_w1 if it is
3901 NEUTRAL_B or UNKNOWN_BT.
3902
3903 2010-04-16 Eli Zaretskii <eliz@gnu.org>
3904
3905 * xdisp.c (set_cursor_from_row): Don't consider possibility of
3906 other rows with cursor unless they are different from this row and
3907 this row is part of a continued line. (Bug#5943)
3908
3909 2010-04-16 Dan Nicolaescu <dann@ics.uci.edu>
3910
3911 * s/freebsd.h: Restore osreldate.h include.
3912 Suggested by Naohiro Aota.
3913
3914 2010-04-16 Jan Djärv <jan.h.d@swipnet.se>
3915
3916 * xmenu.c (apply_systemfont_to_menu): *childs was incorrectly used.
3917
3918 2010-04-16 Ken Brown <kbrown@cornell.edu> (tiny change)
3919
3920 * s/cygwin.h: Avoid linking against static libgcc.
3921
3922 2010-04-15 Juri Linkov <juri@jurta.org>
3923
3924 * window.c: Add Qscroll_command.
3925 Remove Vscroll_preserve_screen_position_commands.
3926 (window_scroll_pixel_based, window_scroll_line_based): Check the
3927 `scroll-command' property on the last command instead of searching
3928 the last command in Vscroll_preserve_screen_position_commands.
3929 (syms_of_window): Initialize and staticpro `Qscroll_command'.
3930 Put Qscroll_command property on Qscroll_up and Qscroll_down.
3931 (scroll-preserve-screen-position): Doc fix.
3932 (Vscroll_preserve_screen_position_commands): Remove variable.
3933
3934 2010-04-15 Dan Nicolaescu <dann@ics.uci.edu>
3935
3936 * xdisp.c (message): Do not use NO_ARG_ARRAY.
3937
3938 2010-04-14 Dan Nicolaescu <dann@ics.uci.edu>
3939
3940 Reduce cpp use in Makefile.in.
3941 * Makefile.in (DBUS_CFLAGS, DBUS_LIBS, GCONF_CFLAGS, GCONF_LIBS)
3942 (LIBSOUND, CFLAGS_SOUND, RSVG_LIBS, RSVG_CFLAGS, INTERVALS_H)
3943 (GETLOADAVG_LIBS, RUN_TEMACS): Move to the autoconf section.
3944 (ORDINARY_LINK): Remove, defined in src/s/gnu.h.
3945 (CRT0_COMPILE): Remove, inline it in the only user.
3946
3947 2010-04-14 Juri Linkov <juri@jurta.org>
3948
3949 * window.c (keys_of_window): Rebind `C-v' from `scroll-up' to
3950 `scroll-up-command' and `M-v' from `scroll-down' to
3951 `scroll-down-command'.
3952
3953 2010-04-14 Juri Linkov <juri@jurta.org>
3954
3955 * window.c (Vscroll_preserve_screen_position_commands): New variable
3956 with the default value as the list of Qscroll_down and Qscroll_up.
3957 (window_scroll_pixel_based, window_scroll_line_based): Search the
3958 last command in the list Vscroll_preserve_screen_position_commands
3959 instead of comparing with Qscroll_up and Qscroll_down.
3960
3961 2010-04-13 Jan Djärv <jan.h.d@swipnet.se>
3962
3963 * gtkutil.c (xg_set_geometry): Set geometry for PPosition also.
3964 (x_wm_set_size_hint): Dont set position flags, gtk_window_parse_geometry
3965 does that.
3966
3967 * xfns.c (Fx_create_frame, x_create_tip_frame): Set default border width
3968 to zero.
3969
3970 2010-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
3971
3972 * term.c (init_tty): Move common text outside of #ifdef TERMINFO.
3973
3974 Try to solve the problem of spurious EOF chars in long lines of text
3975 sent to interactive subprocesses.
3976 * sysdep.c (child_setup_tty): Do not enable ICANON any more.
3977 (system_process_attributes): Remove unused var `ttotal'.
3978 * process.c (send_process): Don't bother breaking long line with EOF
3979 chars when talking to ttys any more.
3980 (wait_reading_process_output): Output a warning when called in such
3981 a way that it could block without being interruptible.
3982
3983 Try to detect file modification within the same second.
3984 * buffer.h (struct buffer): New field modtime_size.
3985 * buffer.c (reset_buffer): Initialize it.
3986 * fileio.c (Finsert_file_contents, Fwrite_region): Set it.
3987 (Fverify_visited_file_modtime): Check it.
3988 (Fclear_visited_file_modtime, Fset_visited_file_modtime): Clear it.
3989 (Fset_visited_file_modtime): Set (or clear) it.
3990
3991 2010-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
3992
3993 * process.c (status_notify): Remove unused var `ro'.
3994
3995 2010-04-12 Jan Djärv <jan.h.d@swipnet.se>
3996
3997 * xfns.c (select_visual): Don't call error if XGetVisualInfo returns
3998 more than one visual (Bug#5938).
3999
4000 2010-04-12 Dan Nicolaescu <dann@ics.uci.edu>
4001
4002 * Makefile.in (C_SWITCH_SYSTEM,C_SWITCH_MACHINE,C_SWITCH_X_SITE):
4003 Undefine.
4004
4005 2010-04-11 Dan Nicolaescu <dann@ics.uci.edu>
4006
4007 Remove C_SWITCH_SYSTEM_TEMACS.
4008 * s/darwin.h (C_SWITCH_SYSTEM_TEMACS): Remove.
4009 (malloc, realloc, free): Use emacs, not temacs for conditional
4010 definition.
4011
4012 * Makefile.in (C_SWITCH_SYSTEM_TEMACS): Remove.
4013 (ALL_CFLAGS): Do not use C_SWITCH_SYSTEM_TEMACS.
4014
4015 Use autoconf, not cpp for some variables.
4016 * Makefile.in (C_SWITCH_SYSTEM, C_SWITCH_MACHINE)
4017 (C_SWITCH_X_SITE): Define using autoconf, not cpp.
4018 (ALL_CFLAGS): Use them as make variables.
4019 (really-lwlib, really-oldXMenu): Do not pass them.
4020
4021 2010-04-11 Jan Djärv <jan.h.d@swipnet.se>
4022
4023 * xmenu.c (apply_systemfont_to_dialog): New.
4024 (create_and_show_dialog): Call apply_systemfont_to_dialog if HAVE_XFT.
4025
4026 2010-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
4027
4028 * process.c (exec_sentinel): Preserve current-buffer.
4029
4030 * process.c (read_process_output): Move the save-current-buffer to
4031 apply to both the filter and the non-filter branches.
4032
4033 2010-04-10 Dan Nicolaescu <dann@ics.uci.edu>
4034
4035 * s/msdos.h (UNEXEC): New definition.
4036
4037 2010-04-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4038
4039 * dispextern.h (TRY_WINDOW_CHECK_MARGINS)
4040 (TRY_WINDOW_IGNORE_FONTS_CHANGE): New defines.
4041
4042 * xdisp.c (try_window): Change arg from CHECK_MARGINS to FLAGS.
4043 Don't abort with fonts change if TRY_WINDOW_IGNORE_FONTS_CHANGE is
4044 set in FLAGS. Callers with non-zero CHECK_MARGINS changed to use
4045 TRY_WINDOW_CHECK_MARGINS.
4046
4047 * xfns.c (Fx_show_tip): Undo last change. Call try_window with
4048 TRY_WINDOW_IGNORE_FONTS_CHANGE (Bug#2423). Subtract last glyph's
4049 width only when it is for padding.
4050
4051 2010-04-09 Jan Djärv <jan.h.d@swipnet.se>
4052
4053 * xfns.c (Fx_show_tip): Call try_window in a loop until
4054 fonts_changed_p is zero (Bug#2423).
4055
4056 2010-04-08 Eli Zaretskii <eliz@gnu.org>
4057
4058 * xdisp.c (set_cursor_from_row): Don't dereference glyphs beyond
4059 the end of TEXT_AREA. (Bug#5856)
4060
4061 2010-04-08 Jan Djärv <jan.h.d@swipnet.se>
4062
4063 * xsettings.c (XSETTINGS_FONT_NAME): Move XSETTINGS_FONT_NAME out of
4064 HAVE_GCONF.
4065
4066 2010-04-08 Eli Zaretskii <eliz@gnu.org>
4067
4068 * bidi.c (bidi_resolve_weak): Use prev.type_after_w1, instead of
4069 prev.orig_type, for resolving type of NSM. (Bug#5858)
4070
4071 2010-04-08 Jan Djärv <jan.h.d@swipnet.se>
4072
4073 * xsettings.c (current_font, SYSTEM_FONT, XSETTINGS_FONT_NAME): New.
4074 (parse_xft_settings): Also check for XSETTINGS_FONT_NAME and save that
4075 in current_font.
4076 (init_gconf): Read value of SYSTEM_FONT and save it in current_font.
4077 (Ffont_get_system_normal_font, xsettings_get_system_normal_font):
4078 New functions.
4079 (syms_of_xsettings): Initialize current_font.
4080 defsubr Sfont_get_system_normal_font.
4081
4082 * xsettings.h (Ffont_get_system_normal_font)
4083 (xsettings_get_system_normal_font): Declare.
4084
4085 * xfns.c (extern xlwmenu_default_font): Remove.
4086 (Fx_create_frame): Remove setting of xlwmenu_default_font, moved
4087 to xlwmenu.c.
4088
4089 * menu.c (digest_single_submenu): If USE_LUCID and HAVE_XFT, encode
4090 menu items in UTF-8.
4091
4092 * xmenu.c: include xsettings.h and xlwmenu.h if USE_LUCID.
4093 (apply_systemfont_to_menu): New function.
4094 (set_frame_menubar, create_and_show_popup_menu): Call
4095 apply_systemfont_to_menu.
4096
4097 2010-04-07 Jan Djärv <jan.h.d@swipnet.se>
4098
4099 * frame.h (FRAME_TEXT_LINES_TO_PIXEL_HEIGHT): Don't use
4100 FRAME_LINE_TO_PIXEL_Y.
4101
4102 * xterm.c (x_set_window_size_1): Don't add border_width/height to
4103 pixelwidth/height.
4104
4105 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
4106
4107 Simplify code for HP machines.
4108 * m/hp800.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, NO_REMAP): Do not define
4109 for GNU_LINUX, not needed.
4110 (UNEXEC, NEED_BSDTTY): Move definitions...
4111 * s/hpux10-20.h (UNEXEC, NEED_BSDTTY): ... here.
4112
4113 * m/iris4d.h (UNEXEC): Move definition ...
4114 * s/irix6-5.h (UNEXEC): ... here.
4115
4116 2010-04-04 Jan Djärv <jan.h.d@swipnet.se>
4117
4118 * xfns.c (set_machine_and_pid_properties): New function.
4119 (Fx_create_frame): Call set_machine_and_pid_properties.
4120
4121 2010-04-03 Eli Zaretskii <eliz@gnu.org>
4122
4123 * bidi.c (bidi_resolve_explicit, bidi_level_of_next_char): Check
4124 bidi_it->bytepos against ZV_BYTE instead of bidi_it->ch against
4125 BIDI_EOB. Fixes infloop with vertical cursor motion at ZV.
4126
4127 * w32fns.c (x_create_tip_frame): Copy `parms' before we modify it
4128 in this function. (Bug#5703)
4129
4130 2010-04-03 Chong Yidong <cyd@stupidchicken.com>
4131
4132 * nsterm.h: Fix last change.
4133
4134 2010-04-03 Dan Nicolaescu <dann@ics.uci.edu>
4135
4136 * m/intel386.h (NO_REMAP): Move definition ...
4137 * s/msdos.h (NO_REMAP): ... here.
4138
4139 * m/vax.h (CRT0_DUMMIES): Remove, unused.
4140
4141 * ecrt0.c: Remove MSDOS, m68k and __sparc__ conditionals, file not
4142 used on those platforms.
4143
4144 2010-04-02 Dan Nicolaescu <dann@ics.uci.edu>
4145
4146 Remove extern errno declarations.
4147 * xterm.c:
4148 * xrdb.c:
4149 * w32term.c:
4150 * unexec.c:
4151 * unexaix.c:
4152 * sysdep.c:
4153 * process.c:
4154 * lread.c:
4155 * keyboard.c:
4156 * floatfns.c:
4157 * filelock.c:
4158 * fileio.c:
4159 * emacs.c (main):
4160 * ecrt0.c:
4161 * dispnew.c:
4162 * callproc.c:
4163 * buffer.c: Remove errno extern declarations.
4164 * s/netbsd.h (NEED_ERRNO): Remove.
4165
4166 2010-04-01 Dan Nicolaescu <dann@ics.uci.edu>
4167
4168 Remove all uses of LIBX11_SYSTEM.
4169 * Makefile.in (LIBX11_SYSTEM): Remove.
4170 * s/msdos.h (LIBX11_SYSTEM): Do not define, define LIBS_SYSTEM
4171 instead.
4172
4173 2010-04-01 Eli Zaretskii <eliz@gnu.org>
4174
4175 Remove support for DJGPP v1.x (bug#5813).
4176
4177 * w16select.c (__dpmi_int): Remove DJGPP v1.x compatibility.
4178 * s/msdos.h:
4179 * unexec.c (make_hdr, copy_text_and_data):
4180 * sysdep.c (wait_for_termination, sys_subshell):
4181 * msdos.c (dos_set_window_size, msdos_set_cursor_shape)
4182 (IT_set_terminal_modes, __write, _rename, gethostname)
4183 (gettimeofday, alarm, fork, kill, dos_ttraw, dos_ttcooked)
4184 (run_msdos_command, abort): Remove DJGPP v1.x code and tests of
4185 the value of __DJGPP__.
4186 (nice, pause, sigsetmask, sigblock): Remove DJGPP v1.x
4187 compatibility code.
4188 * lread.c:
4189 * gmalloc.c (memalign):
4190 * fileio.c (Fcopy_file, check_executable, Ffile_modes):
4191 * emacs.c (main):
4192 * dosfns.c (init_dosfns):
4193 * dired.c (file_name_completion_stat): Remove tests of __DJGPP__.
4194
4195 2010-04-01 Eli Zaretskii <eliz@gnu.org>
4196
4197 * xdisp.c (set_cursor_from_row): Fix cursor positioning when the
4198 string with `cursor' property comes from an `after-string'
4199 overlay. (Bug#5816)
4200
4201 2010-04-01 Glenn Morris <rgm@gnu.org>
4202
4203 * Makefile.in (LIBTIFF, LIBJPEG, LIBPNG, LIBGIF, LIBXPM, XFT_LIBS):
4204 Define as Makefile variables.
4205 (LIBX): Use above variables rather than directly using autoconf.
4206
4207 2010-03-31 Dan Nicolaescu <dann@ics.uci.edu>
4208
4209 Clean up BSD_SYSTEM use.
4210 * xterm.c:
4211 * process.c:
4212 * emacs.c: Use HAVE_SYS_IOCTL_H instead of BSD_SYSTEM as a guard
4213 for including <sys/ioctl.h>.
4214 * sysdep.c (wait_without_blocking): Remove BSD_SYSTEM case, this
4215 code is only used for MSDOS.
4216
4217 2010-03-31 Juri Linkov <juri@jurta.org>
4218
4219 * image.c: Add `Qextension_data'.
4220 (syms_of_image): Initialize and staticpro `Qextension_data'.
4221 (Fimage_metadata): Rename from `Fimage_extension_data'.
4222 (gif_load): Put GIF extension data to the property
4223 `Qextension_data'.
4224
4225 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
4226
4227 * nsfns.m (ns_set_doc_edited): Remove unused arg OLDVAL.
4228 * nsterm.h: Fix prototype.
4229
4230 2010-03-31 Eli Zaretskii <eliz@gnu.org>
4231
4232 * xdisp.c (highlight_trailing_whitespace): Support highlight of
4233 trailing whitespace in right-to-left rows.
4234
4235 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
4236
4237 Get rid of the direct_output optimizations.
4238 * keyboard.c (nonundocount): Remove extern declaration.
4239 (command_loop_1): Remove brittle optimisation for cheap and
4240 common operations.
4241 * xdisp.c (redisplay_internal): Don't bother checking
4242 redisplay_performed_directly_p any more.
4243 * sysdep.c (init_sys_modes): Don't call direct_output_forward_char
4244 any more.
4245 * dispnew.c (redisplay_performed_directly_p)
4246 (direct_output_for_insert, direct_output_forward_char):
4247 * dispextern.h (redisplay_performed_directly_p)
4248 (direct_output_for_insert, direct_output_forward_char): Remove.
4249 * cmds.c (nonundocount): Make it static.
4250
4251 2010-03-31 Bernhard Herzog <bh@intevation.de> (tiny change)
4252
4253 * menu.c (Fx_popup_menu): Use last_event_timestamp (Bug#4930).
4254
4255 2010-03-31 Jan Djärv <jan.h.d@swipnet.se>
4256
4257 * xdisp.c (note_mouse_highlight): Don't do highlight if pointer is
4258 invisible (Bug#5766).
4259
4260 2010-03-31 Adrian Robert <adrian.b.robert@gmail.com>
4261
4262 * xdisp.c (x_consider_frame_title, update_window_cursor):
4263 Remove HAVE_NS conditionals.
4264 (prepare_menu_bars) [HAVE_NS]: Call ns_set_doc_edited.
4265
4266 * nsfns.m (x_implicitly_set_name): If frame-title-format is t, use
4267 filename for the title.
4268 (ns_set_doc_edited): Do nothing if the selected window is a
4269 minibuffer window.
4270
4271 * nsterm.h: Add prototypes for ns_set_name_as_filename and
4272 ns_set_doc_edited.
4273
4274 * nsterm.m: Remove unneeded prototype.
4275
4276 2010-03-31 Glenn Morris <rgm@gnu.org>
4277
4278 * Makefile.in (SOME_MACHINE_OBJECTS): Ensure dbus stuff is always
4279 in the DOC file. (Bug#5336)
4280
4281 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
4282
4283 * xdisp.c (pos_visible_p): Revert 2008-01-25 change (Bug#5730).
4284
4285 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
4286
4287 * window.c (keys_of_window): Remove redundant/overridden bindings.
4288
4289 2010-03-30 Eli Zaretskii <eliz@gnu.org>
4290
4291 * xdisp.c (BUFFER_POS_REACHED_P, move_it_in_display_line_to):
4292 Restore original behavior when the iterator is not bidi_p.
4293
4294 2010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
4295
4296 * xdisp.c (syms_of_xdisp): Use intern_c_string instead of intern.
4297
4298 2010-03-30 Eli Zaretskii <eliz@gnu.org>
4299
4300 * bidi.c (bidi_cache_iterator_state): Invalidate the cache if we
4301 are outside the range of cached character positions.
4302
4303 2010-03-30 Juanma Barranquero <lekktu@gmail.com>
4304
4305 * makefile.w32-in ($(BLD)/bidi.$(O)): Add dependency on w32gui.h.
4306
4307 2010-03-30 Eli Zaretskii <eliz@gnu.org>
4308
4309 Initial support for bidirectional editing.
4310
4311 * Makefile.in (obj): Include bidi.o.
4312 (bidi.o): New target.
4313
4314 * makefile.w32-in (OBJ1): Add $(BLD)/bidi.$(O).
4315 ($(BLD)/bidi.$(O)): New target.
4316
4317 * bidi.c: New file.
4318
4319 * buffer.h (struct buffer): New members bidi_display_reordering
4320 and bidi_paragraph_direction.
4321
4322 * buffer.c (init_buffer_once): Initialize bidi_display_reordering
4323 and bidi_paragraph_direction.
4324 (syms_of_buffer): Declare Lisp variables bidi-display-reordering
4325 and bidi-paragraph-direction.
4326 (Fbuffer_swap_text): Swap the values of
4327 bidi_display_reordering and bidi_paragraph_direction.
4328
4329 * dispextern.h (BIDI_MAXLEVEL, BIDI_AT_BASE_LEVEL): New macros.
4330 (bidi_type_t, bidi_dir_t): New types.
4331 (bidi_saved_info, bidi_stack, bidi_it): New structures.
4332 (struct it): New members bidi_p, bidi_it, paragraph_embedding,
4333 prev_stop, base_level_stop, and eol_pos.
4334 (bidi_init_it, bidi_get_next_char_visually): New prototypes.
4335 (IT_STACK_SIZE): Enlarge to 5.
4336 (struct glyph_row): New member reversed_p.
4337 <string_buffer_position>: Update prototype.
4338 (PRODUCE_GLYPHS): Set the reversed_p flag in the iterator's
4339 glyph_row if bidi_it.paragraph_dir == R2L.
4340 (struct glyph): New members resolved_level and bidi_type.
4341
4342 * dispnew.c (direct_output_forward_char): Give up if we need bidi
4343 processing or buffer's direction is right-to-left.
4344 (prepare_desired_row): Preserve the reversed_p flag.
4345 (row_equal_p): Compare the reversed_p attributes as well.
4346
4347 * xdisp.c (init_iterator): Initialize it->bidi_p. Call
4348 bidi_init_it and set it->paragraph_embedding from the current
4349 buffer's value of bidi_paragraph_direction.
4350 (reseat_1): Initialize bidi_it.first_elt.
4351 (set_iterator_to_next, next_element_from_buffer): Use the value of
4352 paragraph_embedding to determine the paragraph direction.
4353 (set_iterator_to_next): Under bidi reordering, call
4354 bidi_get_next_char_visually. Call bidi_paragraph_init if the
4355 new_paragraph flag is set in the bidi iterator.
4356 (next_element_from_buffer): If bidi_it.first_elt is set,
4357 initialize paragraph direction and find the first character to
4358 display in the visual order. If reseated to a middle of a line,
4359 prime the bidi iterator starting at the line's beginning. Handle
4360 the situation where we overstepped stop_charpos due to
4361 non-linearity of the bidi iteration. Likewise for when we back up
4362 beyond the previous stop_charpos. When moving across stop_charpos,
4363 record it in prev_stop.
4364 (display_line): Set row->end and it->start for the next row to the
4365 next character in logical order. Always extend reversed_p rows to
4366 the end of line, even if they end at ZV. Copy the reversed_p flag
4367 to the next glyph row. Keep calling set_cursor_from_row for
4368 bidi-reordered rows even if we already have a possible candidate
4369 for cursor position. Set row_end after all the row's glyphs have
4370 been produced, by looping over the glyphs. Record the position
4371 after EOL in it->eol_pos, and use it to set end_pos of the last
4372 row produced for a continued line.
4373 <Qright_to_left, Qleft_to_right>: New variables.
4374 (syms_of_xdisp): Initialize and staticpro them.
4375 (string_buffer_position_lim): New function.
4376 (string_buffer_position): Most of code moved to
4377 string_buffer_position_lim. Last argument and return value are
4378 now EMACS_INT; all callers changed.
4379 (set_cursor_from_row): Rewritten to support bidirectional text and
4380 reversed glyph rows.
4381 (text_outside_line_unchanged_p, try_window_id): Disable
4382 optimizations if we are reordering bidirectional text and the
4383 paragraph direction can be affected by the change.
4384 (append_glyph, append_composite_glyph)
4385 (produce_image_glyph, append_stretch_glyph): Set the
4386 resolved_level and bidi_type members of each glyph.
4387 (append_glyph): If the glyph row is reversed, prepend the glyph
4388 rather than appending it.
4389 (handle_stop_backwards): New function.
4390 (reseat_1, pop_it, push_it): Set prev_stop and base_level_stop.
4391 (reseat): call handle_stop_backwards to recompute prev_stop and
4392 base_level_stop for the new position.
4393 (handle_invisible_prop): Under bidi iteration, skip invisible text
4394 using bidi_get_next_char_visually. If we are `reseat'ed, init the
4395 paragraph direction. Update IT->prev_stop after skipping
4396 invisible text.
4397 (move_it_in_display_line_to): New variables prev_method
4398 and prev_pos. Compare for strict equality in
4399 BUFFER_POS_REACHED_P.
4400 (try_cursor_movement): Examine all the candidate rows that occlude
4401 point, to return the best match. If rows are bidi-reordered
4402 and point moved backwards, back up to the row that is not a
4403 continuation line, and start looking for a suitable row from
4404 there.
4405
4406 * term.c (append_glyph): Reverse glyphs by pre-pending them,
4407 rather than appending, if the glyph_row's reversed_p flag is set.
4408 Set the resolved_level and bidi_type members of each glyph.
4409
4410 * .gdbinit (pbiditype): New command.
4411 (pgx): Use it to display bidi level and type of the glyph.
4412 (pitx): Display some bidi information about the iterator.
4413 (prowlims, pmtxrows): New commands.
4414
4415 2010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
4416
4417 Remove all uses of C_DEBUG_SWITCH and LIBS_DEBUG.
4418 * s/usg5-4.h (LIBS_DEBUG):
4419 * s/irix6-5.h (C_DEBUG_SWITCH):
4420 * s/gnu-linux.h (LIBS_DEBUG):
4421 * s/darwin.h (LIBS_DEBUG):
4422 * s/bsd-common.h (LIBS_DEBUG):
4423 * s/aix4-2.h (LIBS_DEBUG, C_DEBUG_SWITCH):
4424 * m/iris4d.h (LIBS_DEBUG):
4425 * m/hp800.h (LIBS_DEBUG): Remove definitions.
4426
4427 * Makefile.in (LIBES): Remove reference to LIBS_DEBUG.
4428 (LIBS_DEBUG): Remove definition.
4429
4430 2010-03-27 Chong Yidong <cyd@stupidchicken.com>
4431
4432 * process.c (Fmake_network_process): Don't apply Bug#5173 fix for
4433 Windows.
4434
4435 2010-03-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4436
4437 * process.c (Fmake_network_process): Don't call turn_on_atimers around
4438 `connect' (Bug#5723).
4439
4440 2010-03-25 Helmut Eller <eller.helmut@gmail.com>
4441
4442 * process.c (Fmake_network_process): Call `select' for interrupted
4443 `connect' rather than creating new socket (Bug#5173).
4444
4445 2010-03-24 Jan Djärv <jan.h.d@swipnet.se>
4446
4447 * frame.c (x_get_arg): Handle RES_TYPE_BOOLEAN_NUMBER (bug #5736).
4448
4449 * xfns.c (Fx_create_frame): Make menuBar a RES_TYPE_BOOLEAN_NUMBER.
4450
4451 * dispextern.h (resource_types): RES_TYPE_BOOLEAN_NUMBER is new.
4452
4453 2010-03-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4454
4455 * xfns.c (Fx_create_frame) [USE_LUCID]: Add BLOCK_INPUT around
4456 XLoadQueryFont.
4457
4458 2010-03-24 Kenichi Handa <handa@m17n.org>
4459
4460 * coding.c (decode_coding_ccl): Fix previous change for the
4461 multibyte case.
4462 (encode_coding_ccl): Don't setup ccl program here. Fix for the
4463 case that the output buffer is fullfilled.
4464 (encode_coding): Setup ccl program here.
4465
4466 2010-03-23 Dan Nicolaescu <dann@ics.uci.edu>
4467
4468 * s/gnu-linux.h (LIBS_SYSTEM): Remove, same as default.
4469
4470 Simplify LIBS_MACHINE definitions.
4471 * m/hp800.h (LIBS_MACHINE): Remove, same as default.
4472 * m/iris4d.h (LIBS_MACHINE): Likewise.
4473 * m/ibmrs6000.h (LIBS_MACHINE): Rename to LIBS_SYSTEM and move ...
4474 * s/aix4-2.h (LIBS_SYSTEM): ... here.
4475 * s/netbsd.h: Remove commented out code.
4476
4477 2010-03-22 Dan Nicolaescu <dann@ics.uci.edu>
4478
4479 Remove dead code dealing with POSIX_SIGNALS.
4480 * atimer.c (set_alarm): Remove dead code, all USG systems define
4481 POSIX_SIGNALS.
4482 * data.c (arith_error): Likewise.
4483 * keyboard.c (input_available_signal, handle_user_signal)
4484 (interrupt_signal): Likewise.
4485 * process.c (sigchld_handler): Likewise.
4486 (create_process): Remove if 0 code. Remove HPUX conditional when
4487 !defined (POSIX_SIGNALS), it cannot be true.
4488 * syssignal.h: Remove USG5_4 and USG conditionals when
4489 !POSIX_SIGNALS, they cannot be true.
4490
4491 * keyboard.c (Fset_input_interrupt_mode): Remove code depending on
4492 NO_SOCK_SIGIO, not used anymore.
4493
4494 2010-03-21 Dan Nicolaescu <dann@ics.uci.edu>
4495
4496 * m/vax.h (BSD_SYSTEM, BSD4_2): Remove conditionals, we only
4497 support vax on BSDs.
4498
4499 * m/ibmrs6000.h (ORDINARY_LINK): Move definition ...
4500 * s/aix4-2.h (ORDINARY_LINK): ... here.
4501
4502 2010-03-21 Andreas Schwab <schwab@linux-m68k.org>
4503
4504 * Makefile.in (abs_builddir): Define.
4505 (bootstrap_exe): Use it.
4506 (VPATH): Use $(srcdir) instead of @srcdir@.
4507
4508 2010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
4509
4510 * Makefile.in (bootstrap_exe): Use an absolute name.
4511
4512 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
4513
4514 Remove support for old GNU/Linux using libc version 5.
4515 * m/alpha.h (LINUX_SBRK_BUG): Remove definition.
4516 * emacs.c (main): Remove code depending on LINUX_SBRK_BUG.
4517
4518 Consolidate redundant definitions in s/bsd-common.h.
4519 * s/bsd-common.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
4520 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
4521 (LDAV_SYMBOL, KERNEL_FILE): Define (or undefine) here instead of
4522 doing it in all files that include this one.
4523 * s/gnu.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
4524 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
4525 (LDAV_SYMBOL, KERNEL_FILE): Remove.
4526 * s/freebsd.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
4527 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
4528 (LDAV_SYMBOL, KERNEL_FILE): Remove.
4529 * s/netbsd.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
4530 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
4531 (LDAV_SYMBOL, KERNEL_FILE): Remove.
4532
4533 Consolidate redundant definitions.
4534 * s/usg5-4.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not define,
4535 it's undefined in all files that include this one.
4536 (POSIX_SIGNALS): Define here instead of doing it in all files that
4537 include this one.
4538 * s/irix6-5.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
4539 (POSIX_SIGNALS): Do not define.
4540 * s/sol2-6.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
4541 (POSIX_SIGNALS): Do not define.
4542 * s/unixware.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
4543 (POSIX_SIGNALS): Do not define.
4544
4545 Remove support for old UNIX System V systems.
4546 * s/unixware.h: Add the contents of s/usg-5-4-2.h.
4547 * s/usg-5-4-2.h: Remove.
4548
4549 Remove support for Solaris on PPC and for old versions.
4550 * s/sol2-6.h: Add the contents of s/sol-2.3.h, s/sol-2.4.h, s/sol-2.5.h.
4551 (LD_SWITCH_SYSTEM, USE_MMAP_FOR_BUFFERS): Remove #defines/#undef
4552 that cancel each other.
4553 * s/sol2-3.h:
4554 * s/sol2-4.h:
4555 * s/sol2-5.h: Remove.
4556 * m/ibmrs6000.h: Remove code for USG5_4, this file is only used on AIX.
4557 (NO_REMAP): Remove, unused.
4558 (UNEXEC): Move definition ...
4559 * s/aix4-2.h (UNEXEC): ... here.
4560
4561 * s/openbsd.h: Remove support for non-ELF and for systems that do
4562 not support shared libraries.
4563 * s/netbsd.h:
4564 * s/freebsd.h: Likewise.
4565
4566 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
4567
4568 Remove non-working support for lynxos 3.0.
4569 * s/lynxos.h: Remove file.
4570
4571 * unexec.c (unexec, adjust_lnnoptrs): Do not depend on
4572 COFF_BSD_SYMBOLS, nothing defines it anymore.
4573
4574 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
4575
4576 Remove obsolete uses of HAVE_SHM.
4577 * emacs.c (standard_args):
4578 (Fdump_emacs):
4579 (syms_of_emacs): Remove code depending on HAVE_SHM.
4580
4581 * alloc.c: Remove HAVE_SHM dependent definition.
4582
4583 * Makefile.in (RUN_TEMACS): Do not depend on HAVE_SHM.
4584
4585 2010-03-18 Glenn Morris <rgm@gnu.org>
4586
4587 * emacs.c (USAGE4): Hard-code bug address.
4588 (REPORT_EMACS_BUG_ADDRESS, REPORT_EMACS_BUG_PRETEST_ADDRESS): Remove.
4589 (bug_reporting_address): Remove.
4590 (main): Don't call bug_reporting_address.
4591
4592 * Makefile.in (XFT_LIBS, LIBXPM, LIBJPEG, LIBPNG, LIBTIFF, LIBGIF)
4593 (LIBGPM, LIBRESOLV): Set using autoconf rather than cpp.
4594
4595 2010-03-15 Chong Yidong <cyd@stupidchicken.com>
4596
4597 * xfns.c (Fx_create_frame):
4598 * frame.c (Vdefault_frame_scroll_bars): Put non-GTK X scroll-bars
4599 on left.
4600
4601 2010-03-13 Andreas Politz <politza@fh-trier.de> (tiny change)
4602
4603 * editfns.c (Fformat): Account for string precision when computing
4604 field width (Bug#5710).
4605
4606 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
4607
4608 * xfns.c (Fx_create_frame): Set default to Qright.
4609
4610 * frame.c (Vdefault_frame_scroll_bars): Set default to Qright for
4611 all window systems.
4612
4613 2010-03-12 Eli Zaretskii <eliz@gnu.org>
4614
4615 These changes remove termcap.c from the build on Posix platforms.
4616 * Makefile.in (termcapobj): Move termcap.o from here...
4617 (MSDOS_OBJ): ...to here.
4618 (termcapobj) [!LIBS_TERMCAP]: Remove specialized value, as it is
4619 now identical to when LIBS_TERMCAP is defined.
4620
4621 * term.c: Remove (ifdef'ed away) inclusion of termcap.h.
4622
4623 * cm.c: Remove (ifdef'ed away) inclusion of termcap.h.
4624
4625 * config.in: Regenerated. (See top-level ChangeLog.)
4626
4627 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
4628
4629 * Branch for 23.2.
4630
4631 2010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
4632
4633 Cleanup setup of gl_state in various parts of the code.
4634 * syntax.h (SETUP_BUFFER_SYNTAX_TABLE): New macro.
4635 (SETUP_SYNTAX_TABLE, SETUP_SYNTAX_TABLE_FOR_OBJECT):
4636 * syntax.c (find_defun_start, Fchar_syntax, Fmatching_paren)
4637 (skip_chars):
4638 * regex.c (regex_compile): Use it.
4639 (re_compile_pattern): Don't set gl_state.current_syntax_table since
4640 it's now set in regex_compile when/if we need it.
4641
4642 2010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
4643
4644 Make it possible to C-g in a tight bytecode loop again (bug#5680).
4645 * lisp.h (ELSE_PENDING_SIGNALS): New macro.
4646 (QUIT): Use it to consolidate code and remove redundancy.
4647 * bytecode.c (BYTE_CODE_QUIT): Use it as well.
4648
4649 * regex.c (regex_compile): Setup gl_state as well.
4650
4651 * syntax.c (skip_chars): Setup gl_state (bug#3823).
4652 (in_classes): Use CONSP before XCAR/XCDR.
4653
4654 2010-03-03 Chong Yidong <cyd@stupidchicken.com>
4655
4656 * keymap.c (Fwhere_is_internal): Use Fequal to compare
4657 definitions, so that keyboard macros are correctly handled
4658 (Bug#5481).
4659
4660 2010-03-02 Eli Zaretskii <eliz@gnu.org>
4661
4662 * coding.c (decode_coding_emacs_mule): Fixup pointers to buffer
4663 text that could be relocated inside the call to emacs_mule_char.
4664 (emacs_mule_char): Use CODING_DECODE_CHAR instead of DECODE_CHAR.
4665 (CODING_DECODE_CHAR): Add a comment describing its purpose.
4666
4667 2010-03-02 Kenichi Handa <handa@m17n.org>
4668
4669 * character.c (parse_str_as_multibyte): Fix handling of the
4670 multibyte form of raw-bytes.
4671 (str_as_multibyte): Likewise.
4672
4673 * buffer.c (Fset_buffer_multibyte): Fix handling of the multibyte
4674 form of raw-bytes.
4675
4676 2010-02-28 Chong Yidong <cyd@stupidchicken.com>
4677
4678 * charset.c (load_charset_map_from_file)
4679 (load_charset_map_from_vector): Zero out allocated
4680 charset_map_entries before using them.
4681
4682 2010-02-27 Andreas Schwab <schwab@linux-m68k.org>
4683
4684 * w32uniscribe.c (uniscribe_check_otf): Fix length check.
4685
4686 2010-02-27 Chong Yidong <cyd@stupidchicken.com>
4687
4688 * font.c (font_parse_fcname): Recognize "Book", "Condensed",
4689 "Medium", and "Semi-Condensed" keywords in GTK names (Bug#5646).
4690
4691 2010-02-26 Kenichi Handa <handa@m17n.org>
4692
4693 * ftfont.c (ftfont_get_open_type_spec): Fix parsing of otf_spec.
4694
4695 * xdisp.c (reseat_to_string): Fix previous change.
4696
4697 2010-02-26 David Reitter <david.reitter@gmail.com>
4698
4699 * nsfont.m (nsfont_draw): ns_antialias_text should be a
4700 Lisp_Object (Bug#4736).
4701
4702 2010-02-25 Kenichi Handa <handa@m17n.org>
4703
4704 * xdisp.c (reseat_to_string): Fix previous change (bug#5609).
4705
4706 2010-02-24 Jan Djärv <jan.h.d@swipnet.se>
4707
4708 * xterm.c (XTflash): Move declarations before statements.
4709
4710 * gtkutil.c (xg_get_gdk_display): Remove (unused).
4711 (xg_get_pixbuf_from_pix_and_mask, xg_create_frame_widgets)
4712 (xg_toggle_notify_cb, xg_set_toolkit_scroll_bar_thumb)
4713 (xg_create_tool_bar): Remove unused variables.
4714 (x_wm_set_size_hint): Move declarations before statements.
4715 (xg_create_frame_widgets): Remove variable grav.
4716
4717 2010-02-21 Chong Yidong <cyd@stupidchicken.com>
4718
4719 * m/arm.h: Define the LIB_GCC flag to be -lgcc_s (Bug#5518).
4720
4721 2010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
4722
4723 * term.c (fatal): Add a final \n if needed (bug#5596).
4724
4725 2010-02-18 Chong Yidong <cyd@stupidchicken.com>
4726
4727 * nsterm.m (ns_ring_bell): Revert last change (Bug#5569).
4728
4729 2010-02-18 Glenn Morris <rgm@gnu.org>
4730
4731 * callint.c (Finteractive): Doc fix.
4732
4733 2010-02-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
4734
4735 * coding.c (record_conversion_result):
4736 Handle CODING_RESULT_INSUFFICIENT_DST.
4737 (decode_coding_object): Record CODING_RESULT_INSUFFICIENT_MEM on
4738 memory allocation error.
4739
4740 2010-02-17 Kenichi Handa <handa@m17n.org>
4741
4742 * coding.c (decode_coding_ccl): Don't setup ccl program here.
4743 Fix for the case that the output buffer is fullfilled.
4744 (decode_coding): Setup ccl program here. Keep looping when the
4745 decoder stopped because the output buffer is
4746 fullfilled (bug#5534).
4747
4748 * ccl.c (ccl_driver): Never reset ic to CCL_HEADER_MAIN.
4749
4750 2010-02-13 Jan Djärv <jan.h.d@swipnet.se>
4751
4752 * xterm.c (x_clear_frame_area): Call gtk_widget_queue_draw if USE_GTK,
4753 bug #5571.
4754 (XTflash): Use Gdk-routines if USE_GTK so scroll bars don't get
4755 overdrawn.
4756
4757 2010-02-10 Jan Djärv <jan.h.d@swipnet.se>
4758
4759 * xsmfns.c (x_session_initialize): Move initialization of ice_fd and
4760 doing_interact here.
4761 (ice_connection_closed): New function.
4762 (x_session_check_input, smc_die_CB, ice_io_error_handler)
4763 (ice_conn_watch_CB, x_session_close): Call ice_connection_closed.
4764 (x_session_check_input): Call IceCloseConnection if IceProcessMessages
4765 returns I/O error.
4766 (ice_conn_watch_CB): Call add_keyboard_wait_descriptor on ice_fd,
4767 bug #5512.
4768
4769 2010-02-08 Francis Devereux <francis@devrx.org> (tiny change)
4770
4771 * nsfont.m (nsfont_open): The system's value for the font descent
4772 is negative, so round it down to avoid clipping.
4773
4774 2010-02-06 Chong Yidong <cyd@stupidchicken.com>
4775
4776 * charset.c (load_charset_map_from_file)
4777 (load_charset_map_from_vector): Fix last change to use SAFE_ALLOCA
4778 instead of xmalloc (Bug#5526). Suggested by Vivek Dasmohapatra.
4779
4780 2010-02-05 Chong Yidong <cyd@stupidchicken.com>
4781
4782 * charset.c (load_charset_map_from_file): Allocate large
4783 charset_map_entries structure on the heap rather than the stack.
4784 (Bug#5526).
4785
4786 2010-01-31 Kenichi Handa <handa@m17n.org>
4787
4788 * font.c (font_parse_xlfd): If FONT is a font-entity and pixel
4789 size in NAME is invalid, return -1 (Bug#5396).
4790
4791 2010-01-31 Chong Yidong <cyd@stupidchicken.com>
4792
4793 * nsterm.m (ns_defined_color): Block input. Suggested by Mike
4794 <deactivated@gmail.com> (Bug#3605).
4795
4796 2010-01-31 David De La Harpe Golden <david@harpegolden.net>
4797
4798 * fileio.c (Frename_file): Correctly rename symlinks to
4799 directories (Bug#5496).
4800
4801 2010-01-31 Filipe Cabecinhas <filcab@gmail.com> (tiny change)
4802
4803 * nsterm.m (ns_ring_bell): Handle visible bell like X.
4804
4805 2010-01-30 Andreas Schwab <schwab@linux-m68k.org>
4806
4807 * character.h (CHAR_PRINTABLE_P): Reparenthesize to avoid warning.
4808
4809 2010-01-29 Chong Yidong <cyd@stupidchicken.com>
4810
4811 * frame.c (DEFAULT_ROWS): Change default to 35.
4812
4813 * xfns.c (x_default_font_parameter): Change default XFT font to
4814 monospace-10 (Bug#3643).
4815
4816 2010-01-29 Eli Zaretskii <eliz@gnu.org>
4817
4818 * w32inevt.c (key_event): Remove unnecessary comparison of
4819 event->uChar.AsciiChar with 128.
4820
4821 2010-01-28 Chong Yidong <cyd@stupidchicken.com>
4822
4823 * fileio.c (Frename_file): Fix last change (Bug#5487).
4824
4825 * m/mips.h: Remove DATA_START. Suggested by Dan Nicolaescu.
4826
4827 * m/alpha.h: Don't define DATA_START on NetBSD (Bug#4629).
4828
4829 2010-01-28 Jan Djärv <jan.h.d@swipnet.se>
4830
4831 * xfns.c (Fx_create_frame): Remove window size matching code from
4832 2010-01-15.
4833 (x_get_current_desktop, x_get_desktop_workarea): Remove.
4834
4835 2010-01-27 Jason Rumney <jasonr@gnu.org>
4836
4837 * w32inevt.c (w32_kbd_patch_key): Save the unicode character.
4838 (key_event): Use unicode for characters 128 and higher (Bug#4567).
4839
4840 2010-01-27 Kenichi Handa <handa@m17n.org>
4841
4842 * regex.c (analyse_first): Fix setting of fastmap for unibyte
4843 pattern string (Bug#4209).
4844
4845 2010-01-27 David De La Harpe Golden <david@harpegolden.net>
4846
4847 * fileio.c (Frename_file): Call copy-directory and
4848 delete-directory for directories, in order to handle cross-device
4849 renaming (Bug#3353).
4850
4851 2010-01-25 Jan Djärv <jan.h.d@swipnet.se>
4852
4853 * xfns.c (Fx_create_frame): If frame height is too big, try
4854 sizes 24 and 10. Bug #3643.
4855
4856 2010-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
4857
4858 Try and fix bug#788, hopefully for real this time.
4859 * keymap.c (shadow_lookup): Add `remap' arg.
4860 (describe_map, describe_vector): Update calls to shadow_lookup.
4861 (Fwhere_is_internal): Fix up handling of `remapped_sequences' and
4862 `remapped' so this flag is applicable to `sequence'. Be careful to
4863 perform remapping during shadow_lookup check of remapped_sequences.
4864
4865 2010-01-24 Eric Bélanger <snowmaniscool@gmail.com> (tiny change)
4866
4867 * image.c (png_load): Use png_sig_cmp instead of the obsolete
4868 png_check_sig, which has been removed in libpng 1.4.
4869
4870 2010-01-23 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
4871
4872 * filelock.c: Include utmp.h only when HAVE_UTMP_H (FreeBSD 9.x
4873 lacks this header file).
4874
4875 2010-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4876
4877 * xdisp.c (draw_glyphs): Update `start' for left_overwritten case
4878 as in Emacs 22.
4879
4880 2010-01-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4881
4882 * lisp.h (make_pure_string): String pointer arg now points to const.
4883
4884 * alloc.c (find_string_data_in_pure, make_pure_string): String pointer
4885 args now point to const.
4886
4887 2010-01-22 Eli Zaretskii <eliz@gnu.org>
4888
4889 * lread.c (Fload): Don't treat files without .elc extension as
4890 byte-compiled if they are ``magic'', i.e. `openp' returned -2 for
4891 them. (bug#5303)
4892
4893 2010-01-20 Kenichi Handa <handa@m17n.org>
4894
4895 * coding.c (consume_chars): If ! multibyte and the encoder is ccl,
4896 treat the source as actual byte sequence.
4897
4898 2010-01-19 Alan Mackenzie <acm@muc.de>
4899
4900 Fix spurious before-change-functions invocation from (insert ?\n).
4901 * textprop.c (set_text_properties): Rename parameter
4902 `signal_after_change_p' to `coherent_change_p', and make the
4903 invocation of `modify_region' conditional on it.
4904
4905 2010-01-19 Jan Djärv <jan.h.d@swipnet.se>
4906
4907 * xsettings.c (apply_xft_settings): Save settings in Vxft_settings
4908 for debug purpose.
4909 (syms_of_xsettings): Declare xft-settings.
4910
4911 2010-01-18 Chong Yidong <cyd@stupidchicken.com>
4912
4913 * editfns.c (Fcurrent_time_string): Doc fix (Bug#5408).
4914
4915 2010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
4916
4917 * xterm.c (event_handler_gdk): Block input (Bug#5037).
4918
4919 2010-01-16 Chong Yidong <cyd@stupidchicken.com>
4920
4921 * emacs.c (standard_args): Adjust arg priorities to reflect how
4922 they are processed in startup.el.
4923
4924 2010-01-16 Andreas Schwab <schwab@linux-m68k.org>
4925
4926 * Makefile.in (lisp, shortlisp): Update.
4927
4928 2010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
4929
4930 * xterm.c (x_term_init): Instead of inhibiting GC while running Lisp
4931 code, link the new kboard into all_kboard before running Lisp code,
4932 and protect the new terminal with GCPRO (Bug#5365).
4933 (x_term_init): Remove unused var `atom'.
4934 (x_delete_display, x_delete_terminal): Remove unused var `i'.
4935
4936 2010-01-15 Jan Djärv <jan.h.d@swipnet.se>
4937
4938 * xfns.c (x_get_current_desktop, x_get_desktop_workarea): New functions.
4939 (Fx_create_frame): Call x_get_current_desktop and x_get_desktop_workarea
4940 to find out usable size of the desktop. Don't make frames larger than
4941 this. Bug #3643.
4942
4943 2010-01-15 Kenichi Handa <handa@m17n.org>
4944
4945 * xdisp.c (CHAR_COMPOSED_P): New arg END_CHARPOS. Callers changed.
4946
4947 2010-01-15 Chong Yidong <cyd@stupidchicken.com>
4948
4949 * nsterm.m (Qnone): Define.
4950
4951 * nsfns.m (Qnone): Move definition to nsterm.m.
4952
4953 2010-01-14 Kenichi Handa <handa@m17n.org>
4954
4955 * coding.c (detect_coding_iso_2022): Fix handling of euc-xx coding
4956 systems.
4957
4958 2010-01-14 Kenichi Handa <handa@m17n.org>
4959
4960 Make auto-composition work on all buffers even if they are
4961 fundamental mode.
4962
4963 * composite.c (Vauto_composition_mode): New variable.
4964 (composition_compute_stop_pos): Check Vauto_composition_mode
4965 instead of Vauto_composition_function.
4966 (composition_adjust_point, Ffind_composition_internal): Likewise.
4967 (syms_of_composite): Declare Lisp variable
4968 "auto-composition-mode" here.
4969
4970 2010-01-13 Chong Yidong <cyd@stupidchicken.com>
4971
4972 * xterm.c (x_term_init): Avoid garbage-collecting the new terminal
4973 during call to vendor-specific-keysyms (Bug#5365).
4974
4975 2010-01-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4976
4977 * keyboard.c (input_available_signal) [SYNC_INPUT]:
4978 Call SIGNAL_THREAD_CHECK (Bug#5333).
4979
4980 * atimer.c (alarm_signal_handler) [!SYNC_INPUT]:
4981 Call SIGNAL_THREAD_CHECK.
4982
4983 2010-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
4984
4985 Try to fix bug#5314. This is probably not the final word, tho.
4986 * buffer.c (Fset_buffer_modified_p): Try and be careful not to modify
4987 recent-auto-save-p as a side-effect.
4988 * buffer.h (BUF_AUTOSAVE_MODIFF): New macro.
4989 * buffer.c (Fkill_buffer, reset_buffer):
4990 * editfns.c (Fsubst_char_in_region):
4991 * fileio.c (Finsert_file_contents, Fdo_auto_save)
4992 (Fset_buffer_auto_saved, Frecent_auto_save_p): Use it.
4993
4994 2010-01-13 Kenichi Handa <handa@m17n.org>
4995
4996 Display buffer name, etc. in mode line by composing correctly.
4997
4998 * xdisp.c (reseat_to_string): Call composition_compute_stop_pos if
4999 STRING is not nil.
5000 (display_mode_element): Adjust for the change of
5001 decode_mode_spec and display_line.
5002 (decode_mode_spec): Change arg MULTIBYTE to STRING.
5003 (display_string): Handle the case that STRING is non-null and
5004 LISP_STRING is not nil.
5005
5006 * xterm.c (x_draw_composite_glyph_string_foreground):
5007 Pay attention to s->face->overstrike.
5008
5009 * composite.c (composition_reseat_it): Don't check PT if STRING is
5010 non nil.
5011
5012 2010-01-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5013
5014 * keyboard.c (read_char): Don't apply previous change when current
5015 buffer is unchanged by command execution.
5016
5017 2010-01-12 Jan Djärv <jan.h.d@swipnet.se>
5018
5019 * keyboard.c (read_char): Return after executing from special map.
5020
5021 2010-01-12 Glenn Morris <rgm@gnu.org>
5022
5023 * emacs.c (REPORT_EMACS_BUG_PRETEST_ADDRESS): Set it to
5024 bug-gnu-emacs rather than emacs-pretest-bug.
5025
5026 2010-01-11 Chong Yidong <cyd@stupidchicken.com>
5027
5028 * nsterm.m (syms_of_nsterm): Initialize Qcontrol etc. before
5029 initializing the Lisp variables that depend on them.
5030
5031 2010-01-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5032
5033 * xfns.c (x_set_menu_bar_lines) [!USE_X_TOOLKIT && !USE_GTK]:
5034 Clear areas that will not be updated after change of menu bar lines.
5035 Clear the menu bar window's current matrix when the window gets empty.
5036
5037 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
5038
5039 * intervals.h, textprop.c (extend_property_ranges): Return value
5040 and args changed. Discard properties that begin at or after the
5041 new end (Bug#5306).
5042
5043 * editfns.c (Fformat): Caller changed.
5044
5045 * nsterm.m (ns_set_default_prefs): Delete function.
5046 (syms_of_nsterm): Initialize ns_command_modifier,
5047 ns_control_modifier, ns_function_modifier, ns_antialias_text, and
5048 ns_antialias_threshold here, not in ns_term_init (Bug#4113).
5049
5050 * xdisp.c (pos_visible_p): Check for invisible text at the correct
5051 position (Bug#4040).
5052
5053 2010-01-09 Eli Zaretskii <eliz@gnu.org>
5054
5055 * editfns.c (Ffloat_time): Doc fix.
5056
5057 2010-01-09 Jan Djärv <jan.h.d@swipnet.se>
5058
5059 * xfns.c (Fx_create_frame): Don't create frame larger than display
5060 by default bug#3643.
5061
5062 2010-01-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5063
5064 * frame.h (FRAME_TOP_MARGIN_HEIGHT): New macro.
5065 (FRAME_LINE_TO_PIXEL_Y, FRAME_PIXEL_Y_TO_LINE): Take account of pseudo
5066 windows above internal border.
5067
5068 * window.h (WINDOW_MENU_BAR_P, WINDOW_TOOL_BAR_P): New macros.
5069 (WINDOW_TOP_EDGE_Y, WINDOW_BOTTOM_EDGE_Y): Take account of pseudo
5070 windows above internal border.
5071
5072 * xdisp.c (get_glyph_string_clip_rects, init_glyph_string): Don't treat
5073 tool bar windows specially.
5074
5075 * xfns.c (x_set_tool_bar_lines): Take account of menu bar height.
5076
5077 * xterm.c (x_after_update_window_line): Don't treat tool bar windows
5078 specially.
5079 (XTflash): Take account of menu bar height.
5080
5081 * w32term.c (x_after_update_window_line): Don't treat tool bar windows
5082 specially.
5083
5084 2010-01-08 Jan Djärv <jan.h.d@swipnet.se>
5085
5086 * dispnew.c (change_frame_size_1): newwidth == FRAME_COLS (f) must
5087 also be true before we can return early (bug #5339).
5088
5089 2010-01-06 David Reitter <david.reitter@gmail.com>
5090
5091 * nsfns.m (ns_get_screen): Rewrite, returning NULL for non-NS.
5092 (Fns_display_usable_bounds): Rewrite, computing bounds properly
5093 (Bug#3233).
5094
5095 2010-01-06 Jan Djärv <jan.h.d@swipnet.se>
5096
5097 * font.c (font_open_entity): Enable chache and call cached_font_ok
5098 for the driver if defined.
5099 (QCuser_spec): New symbol.
5100 (font_spec_from_name): Save name as user-spec.
5101 (font_load_for_lface): Keep user-spec instead of name.
5102 (font_open_by_name): Save name as user-spec.
5103 (syms_of_font): Initialize QCuser_spec.
5104 (font_clear_prop): Clear name if it exists in font (bug#5157).
5105
5106 * xftfont.c (xftfont_open): Call xftfont_add_rendering_parameters.
5107 (xftfont_add_rendering_parameters, xftfont_cached_font_ok): New.
5108 (syms_of_xftfont): Initialize xftfont_driver.cached_font_ok.
5109
5110 * font.h (struct font_driver): Add cached_font_ok.
5111
5112 * xterm.c (x_clear_frame): Queue draw for scroll bars.
5113
5114 2010-01-05 Jan Djärv <jan.h.d@swipnet.se>
5115
5116 * xterm.c (x_new_font): Move code for setting rows/cols before
5117 resizing ...
5118 (x_set_window_size): ... to here. Bug #2568.
5119
5120 * gtkutil.c (xg_clear_under_internal_border): New function.
5121 (xg_frame_resized, xg_frame_set_char_size):
5122 Call xg_clear_under_internal_border.
5123 (xg_update_scrollbar_pos): Clear under old scroll bar position.
5124
5125 2010-01-05 Chong Yidong <cyd@stupidchicken.com>
5126
5127 * keyboard.c (read_key_sequence): Catch keyboard switch after
5128 making a new tty frame (Bug#5095).
5129
5130 2010-01-05 Kenichi Handa <handa@m17n.org>
5131
5132 * fontset.c (fontset_find_font): Fix getting the frame pointer.
5133
5134 2010-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
5135
5136 * dbusbind.c (xd_remove_watch): Avoid trying to convert a void* to
5137 Lisp_Object, preferring to convert a lisp_Object to a void* instead.
5138 (Fdbus_init_bus): Use XHASH to get a scalar value from a Lisp_Object.
5139
5140 2010-01-03 Michael Albinus <michael.albinus@gmx.de>
5141
5142 * dbusbind.c (xd_add_watch): Improve debug message.
5143 (xd_remove_watch): Improve debug message. If DATA is the session
5144 bus, unset D-Bus session environment.
5145 (Fdbus_init_bus): Pass the bus as argument to
5146 dbus_connection_set_watch_functions. (Bug#5283)
5147
5148 2010-01-01 Chong Yidong <cyd@stupidchicken.com>
5149
5150 * nsterm.m (ns_get_color): Fix buffer overflow (Bug#4763).
5151
5152 * lread.c (syms_of_lread): Make it clearer that these are the
5153 names of loaded files (Bug#5068).
5154
5155 * eval.c (run_hook_with_args): Handle the case where the global
5156 value has the obsolete single-function form (Bug#5026).
5157
5158 2009-12-27 Chong Yidong <cyd@stupidchicken.com>
5159
5160 * minibuf.c (Fall_completions): Minor optimization.
5161
5162 2009-12-26 Eli Zaretskii <eliz@gnu.org>
5163
5164 * .gdbinit (pgx): Fix display of composite glyphs.
5165 Display cmp.from and cmp.to as well.
5166 (pitx): Fix last change.
5167
5168 2009-12-25 Kenichi Handa <handa@m17n.org>
5169
5170 * composite.h (composition_adjust_point): Update prototype.
5171
5172 * composite.c (composition_reseat_it): Don't make a composition
5173 spanning over point.
5174 (CHAR_COMPOSABLE_P): Treat U+200C (ZWNJ) and U+200D (ZWJ) as
5175 composable characters.
5176 (composition_adjust_point): New arg NEW_PT. Callers changed.
5177
5178 * keyboard.c (command_loop_1): Force redisplay if the last point
5179 was within a composition.
5180 (adjust_point_for_property): Don't adjust point for automatic
5181 composition when called after buffer modification.
5182
5183 2009-12-19 Eli Zaretskii <eliz@gnu.org>
5184
5185 * .gdbinit (pitx): Don't use enum names, use their values.
5186 Remove reference to non-existing value GET_FROM_COMPOSITION.
5187 (pgx): Don't use enum names, use their values.
5188 (pitmethod): New helper command.
5189 (pitx): Use it to display iteration method.
5190 (pgrowit): New command.
5191
5192 * makefile.w32-in ($(BLD)/cmds.$(O)): Depend on frame.h.
5193
5194 Update dependencies in Makefile.in.
5195
5196 * Makefile.in (alloc.o): Depend on termhooks.h.
5197 (atimer.o): Depend on blockinput.h.
5198 (buffer.o): Depend on indent.h, keyboard.h, coding.h, keymap.h,
5199 and frame.h.
5200 (callint.o): Depend on systime.h, coding.h, and composite.h.
5201 (callproc.o): Depend on buffer.h.
5202 (casefiddle.o): Don't depend on charset.h.
5203 (casetab.o): Depend on character.h.
5204 (ccl.o): Depend on composite.h.
5205 (chartab.o): Depend on ccl.h.
5206 (cm.o): Depend on dispextern.h.
5207 (cmds.o): Depend on systime.h, coding.h, frame.h, and composite.h.
5208 (coding.o): Don't depend on $(INTERVALS_H).
5209 (composite.o): Don't depend on dispextern.h explicitly (it's in
5210 $(INTERVALS_H)). Depend on ccl.h.
5211 (data.o): Depend on systime.h, coding.h, composite.h,
5212 dispextern.h, font.h, and ccl.h.
5213 (dired.o): Depend on composite.h.
5214 (dispnew.o): Depend on coding.h. Don't depend explicitly on
5215 composite.h (it's in $(INTERVALS_H)).
5216 (doc.o): Depend on systime.h, coding.h, and composite.h.
5217 (editfns.o): Don't depend explicitly on dispextern.h.
5218 (emacs.o): Depend on frame.h and coding.h.
5219 (eval.o): Depend on coding.h, composite.h, and xterm.h.
5220 (fileio.o): Depend on frame.h and commands.h. Don't depend
5221 explicitly on dispextern.h.
5222 (filelock.o): Don't depend on epaths.h and charset.h. Depend on
5223 composite.h.
5224 (fns.o): Don't depend on termhooks.h.
5225 (font.o): Depend on buffer.h, composite.h, fontset.h, and xterm.h.
5226 (fontset.o): Depend on blockinput.h, atimer.h, systime.h,
5227 coding.h, $(INTERVALS_H), window.h, xterm.h.
5228 (frame.o): Depend on coding.h, composite.h, termhooks.h, and ccl.h.
5229 (fringe.o): Depend on blockinput.h, atimer.h, and systime.h.
5230 (ftfont.o): Depend on blockinput.h, atimer.h, systime.h, coding.h,
5231 fontset.h, ccl.h, and ftfont.h.
5232 (ftxfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
5233 (gtkutil.o): Depend on dispextern.h and composite.h.
5234 (image.o): Depend on epaths.h, character.h, coding.h, composite.h,
5235 termhooks.h, and ccl.h.
5236 (indent.o): Depend on systime.h, coding.h, and $(INTERVALS_H).
5237 (intervals.o): Depend on systime.h and coding.h.
5238 (keyboard.o): Depend on composite.h and coding.h.
5239 (keymap.o): Depend on coding.h and frame.h.
5240 (lread.o): Depend on systime.h, frame.h, blockinput.h, and atimer.h.
5241 (macros.o): Depend on systime.h, coding.h, and composite.h.
5242 (menu.o): Depend on systime.h, coding.h, composite.h, window.h,
5243 and atimer.h.
5244 (minibuf.o): Depend on systime.h and coding.h. Don't depend on
5245 dispextern.h explicitly.
5246 (print.o): Depend on termhooks.h, coding.h, and ccl.h.
5247 Don't depend explicitly on dispextern.h and composite.h.
5248 (process.o): Depend on character.h, xgselect.h, and sysselect.h.
5249 (regex.o): Don't depend on charset.h.
5250 (scroll.o): Depend on systime.h, coding.h, composite.h, and window.h.
5251 (search.o): Don't depend explicitly on composite.h.
5252 (sound.o): Depend on atimer.h and systime.h.
5253 (syntax.o): Don't depend explicitly on composite.h.
5254 (sysdep.o): Depend on coding.h and composite.h.
5255 (term.o): Depend on xterm.h and buffer.h.
5256 (terminal.o): Depend on dispextern.h, composite.h, and systime.h.
5257 (textprop.o): Don't depend on dispextern.h explicitly.
5258 (undo.o): Depend on dispextern.h.
5259 (window.o): Depend on coding.h and termhooks.h. Don't depend on
5260 dispextern.h and composite.h explicitly.
5261 (xdisp.o): Depend on ccl.h.
5262 (xfaces.o): Depend on coding.h and ccl.h.
5263 (xfns.o): Depend on $(INTERVALS_H) and ccl.h.
5264 (xfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
5265 (xftfont.o): Depend on atimer.h, systime.h, fontset.h, ccl.h, and
5266 ftfont.h.
5267 (xgselect.o): New dependency.
5268 (xmenu.o): Depend on composite.h, keymap.h, and sysselect.h.
5269 (xselect.o): Depend on keyboard.h, coding.h, and composite.h.
5270 (xsettings.o): Depend on dispextern.h, keyboard.h, systime.h,
5271 coding.h, composite.h, blockinput.h, atimer.h, and termopts.h.
5272 (xsmfns.o): Depend on frame.h and dispextern.h.
5273 (xterm.o): Depend on intervals.h, keymap.h, xgselect.h, and
5274 sysselect.h.
5275
5276 2009-12-19 Andreas Schwab <schwab@linux-m68k.org>
5277
5278 * font.c (Fclear_font_cache): Pass correct cache argument to
5279 font_clear_cache.
5280
5281 2009-12-16 Andreas Schwab <schwab@linux-m68k.org>
5282
5283 * Makefile.in (prefix-args${EXEEXT}): Don't compile prefix-args.c
5284 twice.
5285
5286 2009-12-15 Chong Yidong <cyd@stupidchicken.com>
5287
5288 * xdisp.c (decode_mode_spec): Inhibit garbage collection when
5289 calling file-remote-p. Reported by Jim Meyering.
5290
5291 2009-12-15 Michael Albinus <michael.albinus@gmx.de>
5292
5293 * dbusbind.c (xd_retrieve_arg): Reorder declarations in order to
5294 avoid compiler warnings. (Bug #5217)
5295
5296 2009-12-14 Kenichi Handa <handa@m17n.org>
5297
5298 * coding.c (decode_coding_iso_2022): Ignore ISO_CODE_SS2_7 (0x19)
5299 in 8-bit encoding.
5300
5301 2009-12-13 Pat Thoyts <patthoyts@users.sourceforge.net> (tiny change)
5302
5303 * xfns.c (x_create_tip_frame): Set the extended window manager hint for
5304 tooltip windows.
5305
5306 2009-12-13 Jan Djärv <jan.h.d@swipnet.se>
5307
5308 * xterm.h (struct x_display_info): Add Xatom_net_window_type_tooltip and
5309 Xatom_net_window_type.
5310
5311 * xterm.c (x_term_init): Initialize Xatom_net_window_type_tooltip and
5312 Xatom_net_window_type.
5313
5314 * xterm.c (my_log_handler): New function.
5315 (x_term_init): Set my_log_handler as log handler during gtk_init
5316 so we can filter out buggy messages. (Bug #5120).
5317
5318 * xterm.c (xg_scroll_callback): Parameter list changed,
5319 use parameter GtkScrollType to determine scroll/line/page.
5320 Only allow dragging if a button < 4 is grabbed (bug #5177).
5321 (xg_end_scroll_callback): New function.
5322 (x_create_toolkit_scroll_bar): Pass xg_end_scroll_callback to
5323 xg_create_scroll_bar.
5324
5325 * gtkutil.c (xg_gtk_scroll_destroy): Remove XG_LAST_SB_DATA handling.
5326 (scroll_end_callback): Remove.
5327 (xg_create_scroll_bar): Add parameter end_callback, bind it to
5328 button-release-event. Replace value-changed event with change-value,
5329 bug #5177.
5330 (xg_event_is_for_scrollbar): Only return true if button is less than 4,
5331 bug #5177.
5332
5333 * gtkutil.h (XG_LAST_SB_DATA): Remove.
5334 (xg_create_scroll_bar): Add GCallback end_callback.
5335
5336 * xftfont.c (QClcdfilter): New variable.
5337 (xftfont_open): Parse constant names for RGBA, HINT_STYLE and LCDFILTER.
5338 (syms_of_xftfont): Initialize QClcdfilter.
5339
5340 2009-12-12 Jan Djärv <jan.h.d@swipnet.se>
5341
5342 * xsettings.c (struct xsettings): Add member seen.
5343 (parse_xft_settings): Update member seen with what we have read.
5344 Return non-zero if Xft-settings have been parsed, 0 otherwise.
5345 (apply_xft_settings): Only update Xft settings with what member seen
5346 indicates as new.
5347
5348 2009-12-12 Eli Zaretskii <eliz@gnu.org>
5349
5350 * dispextern.h (struct text_pos): Use EMACS_INT.
5351 (struct glyph): Use EMACS_INT for charpos.
5352 (struct it): Use EMACS_INT for stop_charpos, end_charpos,
5353 region_beg_charpos, region_end_charpos,
5354 redisplay_end_trigger_charpos, and also for
5355 iterator_stack_entry.end_charpos and
5356 iterator_stack_entry.stop_charpos.
5357
5358 2009-12-12 Jan Djärv <jan.h.d@swipnet.se>
5359
5360 * gtkutil.c (scroll_end_callback): New function (bug #5177).
5361 (xg_create_scroll_bar): Call scroll_end_callback on button release
5362 event (bug #5177).
5363 (xg_event_is_for_scrollbar): != replaced with ==.
5364
5365 2009-12-12 Kenichi Handa <handa@m17n.org>
5366
5367 * ftfont.c (struct ftfont_info): New member matrix.
5368 (ftfont_open): Setup xftfont_info->matrix.
5369 (MFLTFontFT): New member matrix.
5370 (FLOOR, CEIL, ROUND): New macros.
5371 (ftfont_get_metrics): Handle matrix transformation.
5372 (ftfont_shape_by_flt): New arg matrix. Callers changed.
5373
5374 * xftfont.c (struct xftfont_info): New member matrix.
5375 (xftfont_open): Setup xftfont_info->matrix.
5376
5377 2009-12-10 Kenichi Handa <handa@m17n.org>
5378
5379 * xdisp.c (append_space_for_newline): Consider face-remapping.
5380
5381 2009-12-09 Andreas Schwab <schwab@linux-m68k.org>
5382
5383 * xsettings.c: Include "keyboard.h".
5384
5385 * gtkutil.c (xg_tool_bar_proxy_help_callback): Fix missing return.
5386
5387 Fix implicit function declarations.
5388 * cmds.c: Include "frame.h".
5389 * frame.c: Include "font.h" also if !HAVE_WINDOW_SYSTEM.
5390 * frame.h: Move declaration of delete_frame outside of
5391 HAVE_WINDOW_SYSTEM.
5392
5393 2009-12-09 Ken Brown <kbrown@cornell.edu> (tiny change)
5394
5395 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC): New variable.
5396
5397 * emacs.c (main): Set the G_SLICE environment variable for Cygwin
5398 GTK builds.
5399
5400 2009-12-07 Andreas Schwab <schwab@linux-m68k.org>
5401
5402 * unexelf.c (unexec): Don't search for .data twice.
5403
5404 2009-12-05 Chong Yidong <cyd@stupidchicken.com>
5405
5406 * xdisp.c (push_display_prop): Don't set avoid_cursor_p. Return 0
5407 if push failed.
5408 (handle_line_prefix): Set avoid_cursor_p here. Check return value
5409 of push_display_prop (Bug#5000).
5410
5411 * xfaces.c (Fx_family_fonts): Handle 2009-07-14 change to return
5412 value of font_list_entities (Bug#5085).
5413
5414 2009-12-04 Juanma Barranquero <lekktu@gmail.com>
5415
5416 Fix `string-to-number' to deal consistently with integers and floats.
5417 * lread.c (isfloat_string): New argument ignore_trailing to accept all
5418 trailing characters, not just whitespace.
5419 (read1): Pass new arg 0 to keep old behavior.
5420 * data.c (Fstring_to_number): Pass 1 to isfloat_string to ignore
5421 trailing chars, as it is already done for integers. Doc fixes.
5422 * lisp.h (isfloat_string): Add new arg to declaration of isfloat_string.
5423
5424 2009-12-04 Eli Zaretskii <eliz@gnu.org>
5425
5426 * dispextern.h (enum prop_idx) <AUTO_COMPOSED_PROP_IDX>:
5427 Delete unused enumeration value.
5428
5429 2009-12-03 Eli Zaretskii <eliz@gnu.org>
5430
5431 * Makefile.in (lisp, shortlisp): Replace indian.el with indian.elc.
5432
5433 2009-12-03 Daniel Hackney <dan@haxney.org> (tiny change)
5434
5435 * process.c (Fmake_network_process): Fix up the tests for
5436 "connectionless socket", so they DTRT for seqpacket sockets as well.
5437
5438 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
5439
5440 * process.c (Qseqpacket): New symbol.
5441 (HAVE_SEQPACKET): New macro.
5442 (Fmake_network_process): Accept new :type `seqpacket'.
5443 (init_process): Add `seqpacket' feature when applicable.
5444 (syms_of_process): Initialize Qseqpacket.
5445
5446 2009-12-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5447
5448 * font.c (font_load_for_lface, font_open_by_name): Don't store name
5449 if entity is Qnil.
5450
5451 2009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
5452
5453 * print.c (print_preprocess): Preprocess the key_and_value table of
5454 hashtables, even tho they're "hidden" (bug#5082).
5455
5456 2009-11-29 Jan Djärv <jan.h.d@swipnet.se>
5457
5458 * frame.c (frame_make_pointer_invisible)
5459 (frame_make_pointer_visible): Declare f before statements.
5460
5461 2009-11-28 Eli Zaretskii <eliz@gnu.org>
5462
5463 * Makefile.in [!AUTO_DEPEND]: Remove outdated comment about
5464 omitted dependencies on lisp.h.
5465
5466 2009-11-27 Jan Djärv <jan.h.d@swipnet.se>
5467
5468 * xftfont.c (xftfont_end_for_frame): Just return if dpyinfo->display
5469 is NULL.
5470
5471 * xterm.c (x_delete_terminal): Set dpyinfo->display to NULL.
5472
5473 * frame.c (frame_make_pointer_invisible)
5474 (frame_make_pointer_visible): Just return if there isn't any selected
5475 frame.
5476
5477 * search.c (simple_search): Remove warning by making *p const.
5478
5479 2009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
5480
5481 * xdisp.c (power_letter): Remove duplicate const.
5482
5483 2009-11-25 Jan Djärv <jan.h.d@swipnet.se>
5484
5485 * term.c (delete_tty): Remove check for last terminal (bug#4970).
5486
5487 * xsettings.c: Revert changes from 2009-11-23. Just use Xft
5488 defaults (bug #5025).
5489
5490 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
5491
5492 * insdel.c (adjust_markers_for_delete): Move it in the
5493 right direction! (bug#4803)
5494
5495 2009-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5496
5497 * font.c (font_open_entity): Don't use ASET if font_object is Qnil.
5498
5499 * xterm.c (x_new_font): Update f->scroll_bar_actual_width.
5500
5501 2009-11-24 Glenn Morris <rgm@gnu.org>
5502
5503 * frame.c (focus-follows-mouse): Mention mouse-autoselect-window.
5504
5505 2009-11-23 Jan Djärv <jan.h.d@swipnet.se>
5506
5507 * Makefile.in: Must create deps for ecrt0.o in its rule.
5508
5509 * xfns.c (Fx_select_font): Try to convert Fontconfig name to Gtk name
5510 because that is what Gtk+ font dialog understands.
5511
5512 * font.c (font_make_object, Fcopy_font_spec): Use Fcopy_alist instead
5513 of Fcopy_sequence.
5514 (font_open_by_name): Put name given into QCname for font-object returned.
5515
5516 * frame.c (x_set_font): Save original font name as frame parameter
5517 font-parameter.
5518
5519 * xsettings.c (set_default_xft_settings): New function.
5520 (init_xfd_settings): Call set_default_xft_settings if no XSETTINGS window
5521 is found.
5522
5523 2009-11-22 Andreas Schwab <schwab@linux-m68k.org>
5524
5525 * search.c (simple_search): Avoid CHAR_TO_BYTE in inner loop when
5526 searching backwards through multibyte buffer.
5527
5528 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
5529
5530 * xterm.c: #include xgselect.h.
5531 (x_initialize): Call xgselect_initialize.
5532
5533 * xsettings.c (something_changedCB): C++ comments => C comments.
5534 (init_gconf): Do not deal with any GLib file descriptors, xg_select
5535 does that now.
5536
5537 * gtkutil.c (xg_timer, xg_process_timeouts, xg_start_timer)
5538 (xg_stop_timer, menu_grab_callback_cnt, menu_grab_callback)
5539 (scroll_bar_button_cb): Remove.
5540 (create_menus): C++ comments => C comments. Don't bind grab-notify
5541 event.
5542 (xg_create_scroll_bar): Don't bind button-press-event and
5543 button-release-event.
5544
5545 * process.c: Include xgselect.h if defined (USE_GTK) ||
5546 defined (HAVE_GCONF).
5547 (wait_reading_process_output): Call xg_select for the same condition.
5548
5549 * xgselect.c (xg_select): New function to better integrate with
5550 GLib/Gtk event handling. Needed if GConf daemon dies/restarts.
5551
5552 * xgselect.h: New file, declare xg_select, xgselect_initialize.
5553
5554 * Makefile.in (XOBJ): Add xgselect.o.
5555
5556 2009-11-21 Andreas Schwab <schwab@linux-m68k.org>
5557
5558 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH):
5559 Remove ignored second argument. All callers changed.
5560 * regex.c (STRING_CHAR, STRING_CHAR_AND_LENGTH, RE_STRING_CHAR)
5561 (RE_STRING_CHAR_AND_LENGTH): Likewise.
5562 * xdisp.c (string_char_and_length): Likewise.
5563
5564 2009-11-21 Dan Nicolaescu <dann@ics.uci.edu>
5565
5566 * xterm.c (x_new_font):
5567 * print.c (print_object):
5568 * cmds.c (Fself_insert_command): Move declarations before statements.
5569
5570 2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
5571
5572 * s/cygwin.h: Remove unneeded linker flags.
5573
5574 2009-11-20 Jan Djärv <jan.h.d@swipnet.se>
5575
5576 * xfns.c (x_default_font_parameter): Call xsettings_get_system_font.
5577
5578 * xsettings.h: Declare xsettings_get_system_font.
5579
5580 * xsettings.c (xsettings_get_system_font): New function.
5581 (init_gconf): No use initiating gconf unless we have Xft also.
5582 (syms_of_xsettings): Only provide system-font-setting if HAVE_XFT and
5583 HAVE_GCONF.
5584
5585 * gtkutil.c (xg_modify_menubar_widgets): If menubar is totally empty
5586 add a blank entry so it doesn't collapse into nothing.
5587
5588 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
5589
5590 * lread.c (Funintern): Comment out last change.
5591
5592 2009-11-19 Richard Stallman <rms@gnu.org>
5593
5594 * lread.c (Funintern): Error if symbol is t or nil.
5595
5596 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
5597
5598 * insdel.c (make_gap_larger): Don't make as many assumptions about the
5599 representation of Lisp integers.
5600 Reported by MJ Chan <mjchan.inbox@gmail.com>.
5601
5602 2009-11-17 Andreas Schwab <schwab@linux-m68k.org>
5603
5604 * lisp.h: Remove declaration of Ffont_get_system_font.
5605 * xfns.c: Move include of "xsettings.h".
5606 * xsettings.h: Use EXFUN to declare Ffont_get_system_font.
5607
5608 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
5609
5610 * xsettings.c (something_changedCB, Ffont_get_system_font):
5611 Check use_system_font.
5612 (syms_of_xsettings): DEFVAR font-use-system-font.
5613
5614 2009-11-17 Andreas Schwab <schwab@linux-m68k.org>
5615
5616 * xfns.c (x_default_font_parameter): Remove dead assignment.
5617
5618 * lisp.h (Fbyteorder, init_font, Ffont_get_system_font): Declare.
5619
5620 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
5621
5622 * xftfont.c (xftfont_fix_match): Older versions of fontconfig do
5623 not have FC_LCD_*. #define them if not there.
5624
5625 * xsettings.c (parse_xft_settings, apply_xft_settings): Ditto.
5626
5627 * xterm.h (struct x_display_info): Add atoms and Window for xsettings.
5628
5629 * xterm.c (handle_one_xevent): Call xft_settings_event for
5630 ClientMessage, PropertyNotify and DestroyNotify.
5631 (x_term_init): If we have XFT, get DPI from Xft.dpi.
5632 Call xsettings_initialize.
5633
5634 * xftfont.c (xftfont_fix_match): New function.
5635 (xftfont_open): Call XftDefaultSubstitute before XftFontMatch.
5636 Call xftfont_fix_match after XftFontMatch.
5637
5638 * xfont.c (xfont_driver): Initialize all members.
5639
5640 * xfns.c (x_default_font_parameter):
5641 Try font from Ffont_get_system_font.
5642 Do not get font from x_default_parameter if we got one from
5643 Ffont_get_system_font.
5644 (Fx_select_font): Get the defaut font name from :name of FRAME_FONT(f).
5645
5646 * w32font.c (w32font_driver): Initialize all members.
5647
5648 * termhooks.h (enum event_kind): CONFIG_CHANGED_EVENT is new.
5649
5650 * lisp.h: Declare syms_of_xsettings.
5651
5652 * keyboard.c (kbd_buffer_get_event, make_lispy_event):
5653 Handle CONFIG_CHANGED_EVENT.
5654
5655 * ftfont.c (ftfont_filter_properties): New function.
5656
5657 * frame.c (x_set_font): Remove unused variable lval.
5658
5659 * font.h (struct font_driver): Add filter_properties.
5660
5661 * font.c (font_put_extra): Don't return if val is nil, it means
5662 boolean option is off.
5663 (font_parse_fcname): Collect all extra properties in extra_props
5664 and call filter_properties for all drivers with extra_props and
5665 font as parameter.
5666 (font_open_entity): Do not use cache, it does not pick up new
5667 fontconfig settings like hinting.
5668 (font_load_for_lface): If spec had a name in it, store it in entity.
5669
5670 * emacs.c (main): Call syms_of_xsettings.
5671
5672 * config.in: HAVE_GCONF is new.
5673
5674 * Makefile.in (GCONF_CFLAGS, GCONF_LIBS): New variables for HAVE_GCONF.
5675 xsettings.o is new.
5676
5677 2009-11-17 Kenichi Handa <handa@m17n.org>
5678
5679 * xdisp.c (x_produce_glyphs): Consider face-remapping when falling
5680 back to the default font in case that no suitable font is found.
5681
5682 2009-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
5683
5684 * menu.c (Fx_popup_menu) [HAVE_NS]: Use generic code for window edge.
5685 Suggested by Chad Brown <yandros@mit.edu>.
5686 (push_menu_item): Use MENU_ITEMS_ITEM_* names.
5687
5688 2009-11-16 Jan Djärv <jan.h.d@swipnet.se>
5689
5690 * xmenu.c (x_menu_wait_for_event): Call XFlush before select.
5691
5692 2009-11-14 Andreas Schwab <schwab@linux-m68k.org>
5693
5694 * Makefile.in: Ignore errors from mkdir when creating deps directory.
5695
5696 2009-11-14 Jan Djärv <jan.h.d@swipnet.se>
5697
5698 * gtkutil.c (xg_update_frame_menubar): Do nothing if menubar already
5699 has a parent.
5700
5701 * Makefile.in: If AUTO_DEPEND is defined, make gcc generate
5702 dependency files in deps/. Include those files into Makefile.
5703
5704 * config.in: Generated (AUTO_DEPEND).
5705
5706 2009-11-13 Michael Albinus <michael.albinus@gmx.de>
5707
5708 * dbusbind.c (Vdbus_registered_objects_table): Rename from
5709 Vdbus_registered_functions_table, because it contains also
5710 properties. Fix docstring.
5711 (Fdbus_call_method, Fdbus_call_method_asynchronously): Fix docstring.
5712
5713 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
5714
5715 * alloc.c (mark_object): Don't reprocess marked strings.
5716 Check vector's markbit earlier. Adjust calls to mark_vectorlike.
5717 (mark_vectorlike, mark_char_table): Assume the object is unmarked.
5718
5719 2009-11-13 Kenichi Handa <handa@m17n.org>
5720
5721 * category.c (word_boundary_p): Adjust for the change of the
5722 semantics of Vword_combining_categories.
5723 (Vword_combining_categories): Describe the slight change of the
5724 semantics.
5725
5726 2009-11-13 Eli Zaretskii <eliz@gnu.org>
5727
5728 * menu.c (Fx_popup_menu): Call Fx_hide_tip only if HAVE_WINDOW_SYSTEM.
5729
5730 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Revert last change.
5731
5732 2009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
5733
5734 * xdisp.c (syms_of_xdisp): Fix typo in last change.
5735
5736 2009-11-12 Juanma Barranquero <lekktu@gmail.com>
5737
5738 * makefile.w32-in: Update dependencies; add dependencies to lisp.h.
5739
5740 2009-11-11 David Reitter <david.reitter@gmail.com>
5741
5742 * menu.c (Fx_popup_menu): Remove left-over debugging code and rename
5743 variables to fix 2009-11-09 change.
5744
5745 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
5746
5747 * process.c (ifflag_def): Make flag_sym constant.
5748 (Fnetwork_interface_info): Use a constant pointer.
5749 (ifflag_table):
5750 * xfns.c (cursor_bits):
5751 * xdisp.c (power_letter):
5752 * termcap.c (speeds, esctab):
5753 * sysdep.c (baud_convert):
5754 * keyboard.c (lispy_accent_codes, modifier_names):
5755 * image.c (xbm_format, xpm_format, pbm_format, png_format)
5756 (jpeg_format, tiff_format, gif_format, svg_format)
5757 (interlace_start, interlace_increment, gs_format):
5758 * gtkutil.c (separator_names):
5759 * fringe.c (swap_nibble):
5760 * fns.c (base64_value_to_char, base64_char_to_value):
5761 * fileio.c (make_temp_name_tbl):
5762 * coding.c (suffixes): Make constant.
5763
5764 * frame.c (make_initial_frame):
5765 * buffer.c (init_buffer_once): Use make_pure_c_string instead of
5766 build_string.
5767 * alloc.c (syms_of_alloc): Build Vmemory_signal_data in pure memory.
5768
5769 * s/freebsd.h:
5770 * s/netbsd.h: Remove code referring to non-existent file: unexsunos4.o.
5771
5772 * Makefile.in: Add dependencies to lisp.h. Remove dependencies
5773 for non-existent files: unexmips.c, unexnext.c, abbrev.c, malloc.c.
5774
5775 * xfns.c (syms_of_xfns): Use make_pure_string instead of build_string.
5776 * xterm.c (syms_of_xterm):
5777 * xfaces.c (syms_of_xfaces):
5778 * xdisp.c (syms_of_xdisp):
5779 * lread.c (syms_of_lread):
5780 * keyboard.c (syms_of_keyboard): Use make_pure_c_string instead of
5781 build_string.
5782
5783 * doc.c (Fsnarf_documentation): Purecopy Vbuild_files.
5784
5785 2009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
5786
5787 * fns.c (Fplist_get): Merge the active and the commented out code.
5788
5789 2009-11-10 Jan Djärv <jan.h.d@swipnet.se>
5790
5791 * keyboard.h: Declare timer_check.
5792
5793 * keyboard.c (timer_check_2): New function that does what the old
5794 timer_check did.
5795 (timer_check): Call timer_check_2 until -1 or a non-zero time is
5796 returned, i.e. don't return -1 with timers pending.
5797
5798 * process.c: Remove extern declaration of timer_check.
5799
5800 * xmenu.c (x_menu_wait_for_event): Remove code that did a timeout
5801 even if timer_check returned -1.
5802
5803 * gtkutil.c (xg_dialog_response_cb): Data is now a struct
5804 xg_dialog_data.
5805 (pop_down_dialog): Destroy widget (if any), cancel timer and unref
5806 the event loop.
5807 (xg_maybe_add_timer, xg_dialog_run): New functions (bug #4574).
5808 (xg_get_file_name, xg_get_font_name): Call xg_dialog_run (bug #4574).
5809 Destroy the dialog after xg_dialog_run.
5810
5811 2009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
5812
5813 * menu.c (Fx_popup_menu) [HAVE_NS]: Remove unused vars.
5814
5815 2009-11-10 Jan Djärv <jan.h.d@swipnet.se>
5816
5817 * xmenu.c (xmenu_show): Must not be static after 2009-11-09 changes.
5818
5819 2009-11-09 Juanma Barranquero <lekktu@gmail.com>
5820
5821 * menu.c [HAVE_NTGUI]: Declare current_popup_menu.
5822
5823 2009-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
5824
5825 * menu.c (Fx_popup_menu): Consolidate versions from xmenu.c,
5826 w32menu.c, and nsmenu.m.
5827 Simplify the obsolete case where position is nil.
5828 (cleanup_popup_menu): New function, moved from nsmenu.m.
5829 (struct skp): Remove slot `notreal'.
5830 (single_keymap_panes, keymap_panes): Remove arg `notreal' and
5831 adjust callers.
5832 (single_menu_item): Adjust call to parse_menu_item.
5833 (syms_of_menu): Defsubr x-popup-menu.
5834 * menu.h (Vmenu_updating_frame): Consolidate declarations from *menu.c.
5835 (keymap_panes): Don't export any more.
5836 (mouse_position_for_popup, w32_menu_show, ns_menu_show)
5837 (xmenu_show): Declare.
5838 * keyboard.c (parse_menu_item): Remove arg `notreal'.
5839 (menu_bar_item, read_char_minibuf_menu_prompt): Adjust callers.
5840 * keyboard.h (parse_menu_item): Update declaration.
5841 * xmenu.c (Fx_popup_menu): Remove.
5842 (syms_of_xmenu): Don't defsubr x-popup-menu.
5843 * w32menu.c (Fx_popup_menu): Remove.
5844 (syms_of_w32menu): Don't defsubr x-popup-menu.
5845 * nsmenu.m (cleanup_popup_menu): Remove.
5846 (ns_menu_show): Rename from ns_popup_menu and remove all the code
5847 moved to menu.c's Fx_popup_menu.
5848 (Fx_popup_menu): Remove.
5849 (syms_of_nsmenu): Don't defsubr x-popup-menu, and don't initialize
5850 menu_items (it's done in menu.c already).
5851
5852 2009-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
5853
5854 * keyboard.c (parse_menu_item): Handle `notreal' a bit earlier.
5855 Use `tem' less. Make sure KEYEQ holds a string or nil (bug#4879).
5856
5857 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
5858
5859 * xmenu.c (Fx_popup_menu): Extract event timestamp. Pass it to
5860 xmenu_show. Hide any tooltip before opening a menu.
5861 (xmenu_show): New arg. Pass it to create_and_show_popup_menu.
5862 (create_and_show_popup_menu): New arg. Pass it to gtk_menu_popup.
5863
5864 2009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
5865
5866 Let integers use up 2 tags to give them one extra bit and thus double
5867 their range.
5868 * lisp.h (USE_2_TAGS_FOR_INTS): New macro.
5869 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P):
5870 New macros.
5871 (enum Lisp_Type): Use them. Give explicit values.
5872 (Lisp_Type_Limit): Remove.
5873 (XINT, XUINT, make_number) [!USE_LISP_UNION_TYPE]:
5874 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
5875 Pay attention to USE_2_TAGS_FOR_INTS.
5876 (INTEGERP): Use LISP_INT_TAG_P.
5877 * fns.c (internal_equal): Simplify the default case.
5878 (sxhash): Use case_Lisp_Int.
5879 * data.c (wrong_type_argument): Don't check against Lisp_Type_Limit
5880 any more.
5881 (Ftype_of): Use case_Lisp_Int.
5882 (store_symval_forwarding): Take into account the fact that Ints can
5883 now have more than one tag.
5884 * buffer.c (syms_of_buffer): Use LISP_INT_TAG.
5885 (buffer_slot_type_mismatch):
5886 * xfaces.c (face_attr_equal_p):
5887 * print.c (print_object):
5888 * alloc.c (mark_maybe_object, mark_object, survives_gc_p):
5889 Use case_Lisp_Int.
5890
5891 2009-11-06 Eli Zaretskii <eliz@gnu.org>
5892
5893 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Reduce by further 30K.
5894
5895 * alloc.c (make_pure_c_string): Fix last change to avoid compiler
5896 warning.
5897
5898 2009-11-06 Jan Djärv <jan.h.d@swipnet.se>
5899
5900 * gtkutil.c (xg_event_is_for_scrollbar): New function (bug#4870).
5901
5902 * gtkutil.h: Declare xg_event_is_for_scrollbar (bug#4870).
5903
5904 * xterm.c (handle_one_xevent): Call xg_event_is_for_scrollbar for
5905 ButtonPressRelease and MotionNotify (bug#4870).
5906
5907 2009-11-06 Dan Nicolaescu <dann@ics.uci.edu>
5908
5909 * keymap.c (syms_of_keymap): Construct exclude_keys in pure memory.
5910
5911 * xterm.c (syms_of_xterm):
5912 * xselect.c (syms_of_xselect):
5913 * xmenu.c (syms_of_xmenu):
5914 * xfns.c (syms_of_xfns):
5915 * xfaces.c (syms_of_xfaces):
5916 * xdisp.c (syms_of_xdisp):
5917 * window.c (syms_of_window):
5918 * w32fns.c (syms_of_w32fns):
5919 * undo.c (syms_of_undo):
5920 * textprop.c (syms_of_textprop):
5921 * terminal.c (syms_of_terminal):
5922 * syntax.c (syms_of_syntax):
5923 * sound.c (syms_of_sound):
5924 * search.c (syms_of_search):
5925 * print.c (syms_of_print):
5926 * minibuf.c (syms_of_minibuf):
5927 * macros.c (syms_of_macros):
5928 * keymap.c (syms_of_keymap, initial_define_key)
5929 (initial_define_lispy_key):
5930 * keyboard.c (syms_of_keyboard):
5931 * insdel.c (syms_of_insdel):
5932 * image.c (syms_of_image):
5933 * fringe.c (syms_of_fringe):
5934 * frame.c (syms_of_frame):
5935 * fontset.c (syms_of_fontset):
5936 * fns.c (syms_of_fns):
5937 * fns.c (syms_of_fns):
5938 * fileio.c (syms_of_fileio):
5939 * fileio.c (syms_of_fileio):
5940 * eval.c (syms_of_eval):
5941 * doc.c (syms_of_doc):
5942 * dispnew.c (syms_of_display):
5943 * dired.c (syms_of_dired):
5944 * dbusbind.c (syms_of_dbusbind):
5945 * data.c (syms_of_data):
5946 * composite.c (syms_of_composite):
5947 * coding.c (syms_of_coding):
5948 * cmds.c (syms_of_cmds):
5949 * charset.c (define_charset_internal, syms_of_character):
5950 * ccl.c (syms_of_ccl):
5951 * category.c (syms_of_category, init_category_once):
5952 * casetab.c (syms_of_casetab):
5953 * casefiddle.c (syms_of_casefiddle):
5954 * callint.c (syms_of_callint):
5955 * bytecode.c (syms_of_bytecode):
5956 * buffer.c (keys_of_buffer, syms_of_buffer):
5957 * alloc.c (syms_of_alloc):
5958 * process.c (syms_of_process, init_process):
5959 * lread.c (syms_of_lread, init_obarray):
5960 * font.c (build_style_table):
5961 * emacs.c (syms_of_emacs, main): Replace calls to intern with
5962 intern_c_string, calls to make_pure_string with
5963 make_pure_c_string. Use pure_cons instead of Fcons.
5964
5965 * process.c (socket_options): Make it const.
5966 (set_socket_option, init_process): Use a const pointer.
5967
5968 * lread.c (intern_c_string): New function.
5969 (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
5970 (defvar_int): Uset it. Make the name const char*.
5971
5972 * lisp.h (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
5973 (defvar_int): Update prototypes.
5974 (DEFUN, EXFUN): Support for prototypes is now required.
5975 (intern_c_string): New prototype.
5976 (struct Lisp_Subr): Make symbol_name constant.
5977
5978 * font.c (struct table_entry): Remove unused member. Make NAMES
5979 constant.
5980 (weight_table, slant_table, width_table): Make constant.
5981
5982 * emacs.c (struct standard_args): Make name and longname constant.
5983
5984 * character.h (DEFSYM): Use intern_c_string.
5985
5986 2009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
5987
5988 * alloc.c (make_pure_c_string): New function.
5989
5990 * eval.c (Fautoload): Purecopy all arguments.
5991
5992 2009-11-05 Kenichi Handa <handa@m17n.org>
5993
5994 * fileio.c (Finsert_file_contents): Be sure set coding-system of
5995 the buffer in case of replace.
5996
5997 2009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
5998
5999 * puresize.h (BASE_PURESIZE): Increase to 1620000.
6000
6001 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
6002
6003 * editfns.c (save_restriction_restore): Update the (pt/begv/vz)_markers
6004 when applicable (bug#4851).
6005
6006 * lisp.h: Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
6007 (P_): Support for prototypes is now required.
6008
6009 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
6010
6011 * frame.c (Fmake_frame_invisible, Fframe_visible_p): Doc fix
6012 (Bug#4827).
6013
6014 2009-10-30 Eli Zaretskii <eliz@gnu.org>
6015
6016 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Redefine to waste less pure space.
6017
6018 2009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
6019
6020 * puresize.h (BASE_PURESIZE): Increase to 1470000.
6021
6022 * lread.c (Fload): Purecopy the file name when building
6023 Vpreloaded_file_list.
6024
6025 2009-10-29 Jason Rumney <jasonr@wanchan.jasonrumney.net>
6026
6027 * w32fns.c (syms_of_w32fns): Change default value of
6028 w32-scroll-lock-modifier to nil. (Bug#2827)
6029
6030 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
6031
6032 * minibuf.c (Fall_completions): Fix typos in docstring.
6033
6034 2009-10-26 Andreas Schwab <schwab@redhat.com>
6035
6036 * puresize.h (PURESIZE_RATIO): Increase back to 10/6.
6037
6038 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
6039
6040 * window.c (grow_mini_window): Comment out "delta >= 0" assertion.
6041 For delta < 0, skip check that only makes sense when the mini-window
6042 is going to be enlarged. (Bug#4534)
6043
6044 2009-10-25 Chong Yidong <cyd@stupidchicken.com>
6045
6046 * keyboard.c (read_char_x_menu_prompt): Don't demand a prompt
6047 string in menu maps (Bug#4471).
6048
6049 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
6050
6051 * nsfns.m (ns_set_name, ns_set_name_as_filename): Don't call
6052 FRAME_NS_VIEW on terminal frames (Bug#4765).
6053
6054 2009-10-24 Andreas Schwab <schwab@linux-m68k.org>
6055
6056 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_INTnn and
6057 DBUS_TYPE_UINTnn separately to get proper sign extension.
6058
6059 * dired.c (Ffile_attributes): Simplify now that FIXNUM_OVERFLOW_P
6060 can properly handle unsigned types.
6061 (make_uid, make_gid): Remove.
6062
6063 * lisp.h (FIXNUM_OVERFLOW_P): Fix last change to handle unsigned
6064 types again.
6065
6066 * sysdep.c (procfs_ttyname): Fix sprintf format to match argument type.
6067 (system_process_attributes): Likewise.
6068
6069 2009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
6070
6071 * keymap.c (Fmake_sparse_keymap): Purecopy the name.
6072
6073 * eval.c (Fautoload): Purecopy the filename. Simplify.
6074
6075 * category.c (Fdefine_category): Purecopy docstring.
6076
6077 2009-10-23 Andreas Schwab <schwab@linux-m68k.org>
6078
6079 * lisp.h (FIXNUM_OVERFLOW_P): Remove cast to avoid overflow.
6080
6081 * puresize.h (PURESIZE_RATIO): Decrease to 11/7.
6082
6083 2009-10-23 Chong Yidong <cyd@stupidchicken.com>
6084
6085 * window.c (Fwindow_edges, Fwindow_pixel_edges)
6086 (Fwindow_inside_edges, Fwindow_inside_pixel_edges): Doc fix
6087 (Bug#4775).
6088
6089 2009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
6090
6091 * fileio.c (syms_of_fileio): Initialize Vdirectory_sep_char.
6092 (init_fileio_once):
6093 * lisp.h (init_fileio_once): Remove.
6094 * emacs.c (main): Don't call init_fileio_once.
6095
6096 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
6097
6098 * puresize.h (BASE_PURESIZE): Increase to 1430000.
6099
6100 2009-10-21 Andreas Schwab <schwab@linux-m68k.org>
6101
6102 * doprnt.c (doprnt): Fix overflow check.
6103
6104 2009-10-21 Jan Djärv <jan.h.d@swipnet.se>
6105
6106 * xterm.c (x_term_init): Remove XSynchronize call done for debugging.
6107
6108 * xterm.h (x_wait_for_event): Declare it.
6109
6110 * xterm.c (pending_event_wait): New variable.
6111 (handle_one_xevent): Set pending_event_wait.eventtype to 0 if we
6112 see pending_event_wait.eventtype.
6113 (handle_one_xevent): Don't change gravity when parent changes.
6114 (x_new_font): Call change_frame_size with new rows/columns before we
6115 try to resize the frame.
6116 (x_wait_for_event): New function.
6117 (x_set_window_size_1): Don't change gravity unless change_gravity
6118 is set.
6119 Call XResizeWindow with FRAME_OUTER_WINDOW. If we are visible,
6120 don't change frame size, instead wait for the ConfigureNotify.
6121 (x_set_window_size): Call x_set_window_size_1 for USE_X_TOOLKIT also.
6122 (x_wm_set_size_hint): Remove ifdefs for USE_X_TOOLKIT.
6123 (x_initialize): Initialize pending_event_wait.
6124
6125 * xmenu.c (set_frame_menubar): Add internal border width to menu bar
6126 size.
6127
6128 * widget.c (EmacsFrameSetValues): Add comment.
6129 (EmacsFrameSetCharSize): Just call x_set_window_size.
6130
6131 * gtkutil.c (xg_frame_set_char_size): Flush events and call
6132 x_wait_for_event.
6133 (flush_and_sync): Remove again.
6134 (xg_get_font_name): Suggest monospace if no previous font is known.
6135
6136 2009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
6137
6138 * character.c (char_resolve_modifier_mask): Don't resolve meta to the
6139 8th bit, since that only made sense in the ASCII world (bug#4751).
6140
6141 2009-10-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6142
6143 * xterm.c (XTread_socket) [!USE_GTK && HAVE_X_I18N]: Don't quit
6144 processing pending events when event is filtered for input method.
6145 (Bug#3681)
6146
6147 2009-10-20 Juanma Barranquero <lekktu@gmail.com>
6148
6149 * fns.c: Add #endif accidentally removed in previous change.
6150
6151 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
6152
6153 * fns.c: Remove code for unsupported system: MAC_OS.
6154 * image.c: Likewise. Include setjmp.h.
6155
6156 2009-10-19 Jan Djärv <jan.h.d@swipnet.se>
6157
6158 * xterm.c (x_create_toolkit_scroll_bar): Don't allocate color for
6159 pixel -1 (bug #4742).
6160
6161 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
6162
6163 * process.c (create_pty): Remove conditionals for no longer
6164 supported systems: UNIPLUS and RTU.
6165
6166 * xterm.c:
6167 * xfns.c: Remove always true condition: XtSpecificationRelease >= 5.
6168
6169 * alloc.c: Do not define struct catchtag.
6170 * eval.c: Move struct catchtag definition ...
6171 * lisp.h: ... here.
6172
6173 * image.c: Move png.h #include earlier to avoid warnings.
6174
6175 * xterm.c:
6176 * xsmfns.c:
6177 * xselect.c:
6178 * xrdb.c:
6179 * xmenu.c:
6180 * xftfont.c:
6181 * xfont.c:
6182 * xfns.c:
6183 * xfaces.c:
6184 * xdisp.c:
6185 * window.c:
6186 * widget.c:
6187 * w32xfns.c:
6188 * w32uniscribe.c:
6189 * w32term.c:
6190 * w32select.c:
6191 * w32reg.c:
6192 * w32proc.c:
6193 * w32menu.c:
6194 * w32inevt.c:
6195 * w32heap.c:
6196 * w32font.c:
6197 * w32fns.c:
6198 * w32console.c:
6199 * w32.c:
6200 * w16select.c:
6201 * vm-limit.c:
6202 * unexsol.c:
6203 * unexec.c:
6204 * unexcw.c:
6205 * unexaix.c:
6206 * undo.c:
6207 * tparam.c:
6208 * textprop.c:
6209 * terminfo.c:
6210 * terminal.c:
6211 * termcap.c:
6212 * term.c:
6213 * syntax.c:
6214 * sound.c:
6215 * sheap.c:
6216 * search.c:
6217 * scroll.c:
6218 * region-cache.c:
6219 * regex.c:
6220 * ralloc.c:
6221 * process.c:
6222 * print.c:
6223 * nsterm.m:
6224 * nsselect.m:
6225 * nsmenu.m:
6226 * nsimage.m:
6227 * nsfont.m:
6228 * nsfns.m:
6229 * msdos.c:
6230 * minibuf.c:
6231 * menu.c:
6232 * marker.c:
6233 * macros.c:
6234 * keymap.c:
6235 * keyboard.c:
6236 * intervals.c:
6237 * insdel.c:
6238 * indent.c:
6239 * gtkutil.c:
6240 * ftxfont.c:
6241 * ftfont.c:
6242 * fringe.c:
6243 * frame.c:
6244 * fontset.c:
6245 * font.c:
6246 * fns.c:
6247 * floatfns.c:
6248 * filelock.c:
6249 * fileio.c:
6250 * emacs.c:
6251 * editfns.c:
6252 * dosfns.c:
6253 * doprnt.c:
6254 * doc.c:
6255 * dispnew.c:
6256 * dired.c:
6257 * dbusbind.c:
6258 * data.c:
6259 * composite.c:
6260 * coding.c:
6261 * cmds.c:
6262 * cm.c:
6263 * chartab.c:
6264 * charset.c:
6265 * character.c:
6266 * ccl.c:
6267 * category.c:
6268 * casetab.c:
6269 * casefiddle.c:
6270 * callproc.c:
6271 * callint.c:
6272 * bytecode.c:
6273 * buffer.c:
6274 * atimer.c: Include setjmp.h. (Bug#4643)
6275
6276 2009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
6277
6278 Remove leftover table unibyte_to_multibyte_table.
6279 * character.c (unibyte_to_multibyte_table): Remove.
6280 (Funibyte_char_to_multibyte): Use MAKE_CHAR_MULTIBYTE.
6281 * charset.c (init_charset_once): Don't init unibyte_to_multibyte_table.
6282 * character.h (UNIBYTE_TO_CHAR): New macro.
6283 (MAKE_CHAR_MULTIBYTE): Use it.
6284 (unibyte_to_multibyte_table, unibyte_char_to_multibyte): Remove.
6285 * xdisp.c (get_next_display_element): USE ASCII_CHAR_P.
6286 (message_dolog, set_message_1):
6287 * search.c (Freplace_match):
6288 * editfns.c (Fcompare_buffer_substrings):
6289 * fns.c (Fcompare_strings): Use MAKE_CHAR_MULTIBYTE.
6290 (concat):
6291 * insdel.c (copy_text, count_size_as_multibyte):
6292 Use ASCII_CHAR_P and BYTE8_TO_CHAR.
6293 * term.c (produce_glyphs):
6294 * syntax.c (skip_chars): Use BYTE8_TO_CHAR.
6295 * regex.c (RE_CHAR_TO_MULTIBYTE):
6296 * cmds.c (internal_self_insert):
6297 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use UNIBYTE_TO_CHAR.
6298
6299 * cmds.c (internal_self_insert): `c' is already in "multibyte" form.
6300
6301 2009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
6302
6303 * puresize.h (BASE_PURESIZE): Increase to 1310000.
6304
6305 2009-10-16 Juanma Barranquero <lekktu@gmail.com>
6306
6307 * buffer.c (Fbuffer_name): Doc fix. (Bug#4728)
6308
6309 2009-10-15 Adrian Robert <Adrian.B.Robert@gmail.com>
6310
6311 * nsterm.h (NS_HAVE_NSINTEGER): Back out and augment with CGFloat,
6312 still needed under Tiger.
6313
6314 * nsterm.m (EmacsView-conversationIdentifier): Arg is long.
6315
6316 * m/amdx86-64.h: Don't set LIB_STANDARD and START_FILES under
6317 __Apple__.
6318
6319 * m/intel386.h: Remove DARWIN_OS/_LP64 special case.
6320
6321 2009-10-15 Kenichi Handa <handa@m17n.org>
6322
6323 * print.c (print_object): Escape a symbol like "2E10" too.
6324
6325 2009-10-11 Adrian Robert <Adrian.B.Robert@gmail.com>
6326
6327 Cleanups and changes for 64-bit compile under Snow Leopard.
6328 Based on suggestions by Erik Charlebois.
6329
6330 * nsfns.m (xw-color-values): Use CGFloat where appropriate.
6331
6332 * nsfont.m (ns_char_width): Replace deprecated call.
6333 (ns_findfonts, nsfont_list_family): Use long format in printf, and
6334 cast argument.
6335 (nsfont_open): Use ns_char_width() everywhere.
6336 (ns_uni_to_glyphs, NSGlyphStorage): Use NS[U]Integer where appropriate.
6337
6338 * nsgui.h (NSPoint, NSSize) [!__OBJC__]: Define and use CGFloat.
6339
6340 * nsimage.m (EmacsImage-setXBMColor:,-getPixelAtX:Y:): Use CGFloat
6341 where appropriate.
6342
6343 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Use NSInteger
6344 where appropriate.
6345 (EmacsToolbar-addDisplayItemWithImage:idx:helpText:enabled:):
6346 Use stringWithUTF8String.
6347 (EmacsDialogPanel-initWithContentRect:styleMask:): Fix signature.
6348
6349 * nsterm.h (EmacsView, EmacsMenu, EmacsToolbar, EmacsTooltip):
6350 Add formal protocol mention to inheritance.
6351 [NS_HAVE_NSINTEGER]: Drop conditional and contents.
6352
6353 * nsterm.m (ns_color_to_lisp): Use CGFloat where appropriate.
6354 Fix printf format.
6355 (ns_query_color): Use CGFloat where appropriate.
6356 (EmacsView<NSTextInput>, EmacsScroller): Fix method signatures.
6357 (EmacsScroller-mouseDown:): Use long format in printf, and cast
6358 argument.
6359
6360 * config.in (NS_HAVE_NSINTEGER): Drop.
6361
6362 * dbusbind.c (dbus-method-return-internal)
6363 (dbus-method-error-internal): Use long format in printf, and cast
6364 argument.
6365
6366 * font.c (font_unparse_xlfd, font_unparse_fcname): Use long format
6367 in printf, and cast argument.
6368
6369 * process.c (list_processes_1): Use long format in printf, and
6370 cast argument.
6371
6372 2009-10-11 Glenn Morris <rgm@gnu.org>
6373
6374 * frame.c (Fframe_pixel_height): Doc fix. (Bug#4535)
6375
6376 2009-10-08 Jan Djärv <jan.h.d@swipnet.se>
6377
6378 * gtkutil.c (create_menus): Call gtk_widget_set_size_request for
6379 menu bar with a small width so it doesn't enlarge the frame.
6380
6381 2009-10-08 Juanma Barranquero <lekktu@gmail.com>
6382
6383 * fontset.c (Fset_fontset_font): Fix typos in error messages.
6384
6385 2009-10-06 Glenn Morris <rgm@gnu.org>
6386
6387 * Makefile.in (emacs${EXEEXT}): Remove direct dependence on
6388 SOME_MACHINE_LISP (this enters indirectly via DOC).
6389
6390 2009-10-05 Eli Zaretskii <eliz@gnu.org>
6391
6392 * dired.c (Ffile_attributes): Doc fix. (Bug#4638)
6393
6394 2009-10-04 Eli Zaretskii <eliz@gnu.org>
6395
6396 * xdisp.c (syms_of_xdisp) <unibyte-display-via-language-environment>:
6397 Doc fix.
6398
6399 2009-10-03 Martin Rudalics <rudalics@gmx.at>
6400
6401 * window.c (Fdelete_window): Check WINDOW argument. (Bug#4618)
6402
6403 2009-10-02 Michael Albinus <michael.albinus@gmx.de>
6404
6405 * lisp.h (Qdelete_directory_internal): Remove, because it is not
6406 used anymore outside fileio.c.
6407
6408 * w32fns.c (Fsystem_move_file_to_trash): Use delete-directory.
6409
6410 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
6411
6412 * lisp.h (Qdelete_directory_internal):
6413 Declare, instead of Qdelete_directory.
6414
6415 * w32fns.c (Fsystem_move_file_to_trash): Use it.
6416
6417 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
6418
6419 * eval.c (Fcalled_interactively_p): Add `kind' argument.
6420
6421 2009-10-01 Michael Albinus <michael.albinus@gmx.de>
6422
6423 * fileio.c (Fdelete_directory_internal): Rename from
6424 Fdelete_directory. It is not a command anymore. It has no file
6425 name handler.
6426
6427 2009-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
6428
6429 * xdisp.c (get_next_display_element): Use an enum in last change.
6430
6431 2009-09-28 Kenichi Handa <handa@m17n.org>
6432
6433 * xdisp.c (get_next_display_element): Pay attention to
6434 unibyte_display_via_language_environment in handling
6435 Vnobreak_char_display.
6436
6437 2009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
6438
6439 * nsterm.h (ns_app_name): New extern variable.
6440
6441 * nsterm.m (ns_app_name): New variable.
6442 (ns_term_init): Set and use it.
6443 (ns_term_shutdown): Use it.
6444
6445 * nsmenu.m (ns_update_menubar): Use ns_app_name. Sync with xmenu.c.
6446 (EmacsMenu-clear:, ns_popup_dialog): Use ns_app_name.
6447
6448 * nsfns.m (ns_set_name_iconic, ns_set_name)
6449 (ns_set_name_as_filename, x-create-frame, ns-get-resource)
6450 (ns-set-resource): Use ns_app_name instead of NSProcessInfo call.
6451
6452 * menu.c (find_and_return_menu_selection) [HAVE_NS]:
6453 Remove double-casting in client_data comparison.
6454
6455 2009-09-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6456
6457 * keyboard.c (make_lispy_event): Remember last wheel direction.
6458 (syms_of_keyboard) <wheel_syms>: Compute array size at compile time.
6459
6460 2009-09-26 Glenn Morris <rgm@gnu.org>
6461
6462 * Makefile.in (MSDOS_SUPPORT) [MSDOS]: Remove unneeded '/' in
6463 internal.elc. Add term/pc-win.elc.
6464 (WINDOW_SUPPORT) [HAVE_X_WINDOWS]: Add term/common-win.elc and
6465 term/x-win.elc.
6466 (WINNT_SUPPORT) [WINDOWSNT]: Add term/common-win.elc and
6467 term/w32-win.elc.
6468 (NS_SUPPORT): New.
6469 (lisp): Add NS_SUPPORT.
6470 (SOME_MACHINE_LISP): Add term/w32-win.elc and emacs-lisp/easymenu.elc.
6471
6472 2009-09-25 David Reitter <david.reitter@gmail.com>
6473
6474 * nsmenu.m (EmacsMenu-clear): Recognize application menu
6475 on Mac OS X 10.6+ (bug#4513).
6476
6477 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
6478
6479 * frame.c (xrdb_get_resource): Return nil for empty string resources;
6480 some parts of Emacs code (like font selection) don't grok them.
6481 See http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00528.html
6482
6483 2009-09-24 Andreas Schwab <schwab@redhat.com>
6484
6485 * coding.c (decode_coding_iso_2022): Fix operator precedence.
6486
6487 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
6488
6489 * dired.c (Fdirectory_files): Fix typo in docstring.
6490
6491 2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
6492
6493 * nsterm.m (EV_TIMESTAMP, x_set_window_size)
6494 (EmacsApp-application:openFiles:): Remove GNUstep conditionals.
6495 (EmacsScroller-setPosition:portion:whole:): Remove -display call
6496 under GNUstep.
6497 (EmacsView-initFrameFromEmacs:): Set autoresizing mask.
6498
6499 * nsfont.m (ns_glyph_metrics): Remove GNUstep conditional for
6500 glyph advancement.
6501
6502 2009-09-22 Adrian Robert <Adrian.B.Robert@gmail.com>
6503
6504 * nsterm.m (CGContextSetFontRenderingMode): Drop declaration.
6505 (EmacsScroller-mouseDown:): Use SCROLL_BAR_FIRST_DELAY.
6506
6507 * nsmenu.m (EmacsMenu-menuNeedsUpdate): Ignore if frame has been
6508 deleted (bug #4492).
6509
6510 * nsfont.m (Vns_reg_to_script): New lisp variable.
6511 (syms_of_nsfont): Declare it.
6512 (ns_registry_to_script): New function.
6513 (ns_get_req_script): Call it.
6514 (ns_findfonts): Don't give up on non-unicode registry.
6515
6516 * font.c (DEFAULT_ENCODING) [HAVE_NS]: Remove special case.
6517
6518 2009-09-20 Tom Tromey <tromey@redhat.com>
6519
6520 * eval.c (find_handler_clause): Make stack-trace-on-error work in
6521 batch mode (bug#4228).
6522
6523 2009-09-18 Rob Christie <robchristie@gmail.com> (tiny change)
6524
6525 * nsmenu.m (EmacsMenu-parseKeyEquiv:): Parse key equivalent more
6526 carefully. (Bug #4339)
6527
6528 2009-09-18 Chong Yidong <cyd@stupidchicken.com>
6529
6530 * syntax.c (Fchar_syntax): Minor doc fix (Bug#4400).
6531
6532 2009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
6533
6534 * emacs.c (inhibit_x_resources): Update doc string for NS.
6535 (main) [HAVE_NS]: Don't process --no-init-file option. Remove
6536 legacy code for -NXHost. Fix error printf in daemon case.
6537
6538 * nsterm.h (ns_no_defaults): Remove.
6539
6540 * nsterm.m (ns_no_defaults): Remove.
6541 (ns_term_init): Switch ns_no_defaults -> inhibit_x_resources.
6542 (ns_use_qd_smoothing): Remove legacy variable.
6543 (EmacsView-windowShouldZoom:): Set frame left_pos, top_pos and
6544 don't update the NSWindow itself.
6545 (EmacsView-windowWillUseStandardFrame:defaultFrame:): Improve
6546 state detection and store user rect ourselves. (Bug #3581)
6547
6548 * nsfont.m (nsfont_draw) [NS_IMPL_COCOA]: Don't use
6549 ns_use_qd_smoothing.
6550
6551 * nsfns.m (x_get_string_resource): Ape just-previous changes to other
6552 platform versions. Drop support for emacs-20-style face specs.
6553 (x-close-connection): Drop PSFlush() under OS X.
6554 (x-focus-frame): Activate the app first. (Bug #4180)
6555
6556 2009-09-17 Juanma Barranquero <lekktu@gmail.com>
6557
6558 * emacs.c (inhibit_x_resources): New variable.
6559 (main) [HAVE_NS]: Don't process --quick command line option.
6560 (syms_of_emacs) <inhibit-x-resources>: DEFVAR_BOOL it.
6561
6562 * lisp.h (inhibit_x_resources): Declare it extern.
6563
6564 * w32reg.c (x_get_string_resource):
6565 * xrdb.c (x_get_string_resource): Obey inhibit_x_resources.
6566
6567 2009-09-17 Eli Zaretskii <eliz@gnu.org>
6568
6569 * Makefile.in (MSDOS_SUPPORT, SOME_MACHINE_LISP):
6570 Add lisp/term/internal.elc.
6571
6572 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
6573
6574 * frame.c (x_get_resource_string): Re-add for non-toolkit builds
6575 (bug#4461).
6576
6577 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
6578
6579 * puresize.h (BASE_PURESIZE): Increase to 1290000.
6580
6581 * Makefile.in (OTHER_FILES): Define using autoconf, not cpp.
6582 (OBJECTS_MACHINE): Remove, unused.
6583
6584 2009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
6585
6586 * frame.c (x_get_resource_string): Remove unused.
6587
6588 2009-09-15 Jan Djärv <jan.h.d@swipnet.se>
6589
6590 * xterm.c (x_new_font): Call change_frame_size before calling
6591 x_set_window_size, in case frame size won't change.
6592
6593 * frame.c (x_set_font): Remove dead code.
6594
6595 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
6596
6597 * lread.c (Fload): Also run do-after-load-evaluation while dumping.
6598
6599 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
6600
6601 * lread.c (Fload): Don't output a message after loading an obsolete
6602 package any more (done in Lisp now).
6603
6604 2009-09-12 Chong Yidong <cyd@stupidchicken.com>
6605
6606 * fns.c (syms_of_fns): Doc fix (Bug#4227).
6607
6608 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
6609
6610 * keymap.c (Fwhere_is_internal): Use nconc2.
6611
6612 2009-09-11 Alan Mackenzie <acm@muc.de>
6613
6614 * dispnew.c (Fsend_string_to_terminal): Amend doc string to cover
6615 batch mode.
6616
6617 2009-09-11 Andreas Schwab <schwab@linux-m68k.org>
6618
6619 * xdisp.c (display_mode_element): Detect cycles.
6620
6621 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
6622
6623 * keymap.c (where_is_internal): Don't erroneously return nil right after
6624 filling the cache.
6625 (where_is_internal_1): Fix up typo.
6626
6627 2009-09-11 Glenn Morris <rgm@gnu.org>
6628
6629 * frame.c (Fx_parse_geometry): Unify the X and NS versions so that they
6630 share a common doc-string.
6631
6632 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
6633
6634 * keymap.c (get_keymap): Return the actual keymap symbol rather than
6635 t for autoloaded keymaps when autoloading is not allowed (bug#4393).
6636
6637 * keymap.c (QCadvertised_binding): New constant.
6638 (syms_of_keymap): Initialize it.
6639 (Fwhere_is_internal): Try and use bindings from :advertised-binding
6640 if applicable.
6641
6642 2009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
6643
6644 * keyboard.c (Qmenu_alias, Vdefine_key_rebound_commands): Remove.
6645 (parse_menu_item): Streamline since bindings are recomputed all the
6646 time anyway. Don't bother checking Vdefine_key_rebound_commands any
6647 more and don't support lmenu's menu-alias any more either.
6648
6649 * keymap.c (where_is_internal_data): Make noindirect a boolean.
6650 (where_is_internal): Strip it down to only traverse the keymaps.
6651 Move the cache handling from Fwhere_is_internal to here.
6652 (Fwhere_is_internal): Move the handling of remapping and the choice of
6653 the best binding from where_is_internal to here.
6654 Unify the cached/noncached paths, so remapping is also handled
6655 correctly when the cache is used, and so the cache can be used to
6656 speed up remap-handling when applicable.
6657 Give preference to non-remapped bindings.
6658 * doc.c (Fsubstitute_command_keys): Let Fwhere_is_internal's prefer
6659 non-remapped bindings.
6660 * keyboard.c (parse_menu_item): Let Fwhere_is_internal handle
6661 command remapping.
6662
6663 * xdisp.c (display_mode_element): Move list length limit from 50 to
6664 5000 (see thread starting with <xbaik5174uqu.fsf@cam.ac.uk>).
6665
6666 2009-09-09 Adrian Robert <Adrian.B.Robert@gmail.com>
6667
6668 * nsfont.m (ns_get_family): Don't force first letter to uppercase.
6669
6670 2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
6671
6672 * xdisp.c (Vtruncate_partial_width_windows): Improve docstring.
6673 (Bug#4334)
6674
6675 * keymap.c (where_is_internal): Filter out shadowed remappings.
6676 Assume that where_is_internal returns unshadowed bindings to simplify
6677 the code and get rid of the gotos. Use ASIZE.
6678
6679 2009-09-04 Jan Djärv <jan.h.d@swipnet.se>
6680
6681 * xterm.c (x_focus_changed): If we get a focusout and pointer
6682 is invisible, make it visible.
6683
6684 * xterm.h: Remove condition for declaration of
6685 x_*_window_to_frame.
6686
6687 2009-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
6688
6689 * dispnew.c (Fsend_string_to_terminal): Make it work again on the
6690 initial terminal as well.
6691
6692 2009-09-02 Jan Djärv <jan.h.d@swipnet.se>
6693
6694 * xterm.h: Rename x_non_menubar_window_to_frame to
6695 x_menubar_window_to_frame.
6696
6697 * xterm.c: Remove declarations also in xterm.h.
6698 (XTmouse_position): Do not return valid positions
6699 for clicks in the menubar and the toolbar for Gtk+.
6700
6701 * xfns.c (x_any_window_to_frame): Assume less about Gtk+ internals,
6702 if the widget for the event has the same top level as a frame,
6703 return the frame.
6704 (x_menubar_window_to_frame): Detect menu bar even with Gtk+
6705 internal windows, bug #4122.
6706 (x_non_menubar_window_to_frame): Remove.
6707
6708 2009-09-02 Glenn Morris <rgm@gnu.org>
6709
6710 * buffer.c (default-major-mode): Move most of the doc from here...
6711 (major-mode): ... to here.
6712
6713 2009-08-30 Nick Roberts <nickrob@snap.net.nz>
6714
6715 * process.c (wait_reading_process_output): Keep the descriptor
6716 when pty is used by a non-child process, e.g., in I/O buffer of
6717 GDB this allows inferior to be restarted.
6718
6719 2009-08-29 Eli Zaretskii <eliz@gnu.org>
6720
6721 * xdisp.c (redisplay_internal): Remove redundant test and collapse
6722 both branches into one.
6723
6724 2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
6725
6726 * emacs.c (USAGE1): Remove --(no-)multibyte, --(no-)unibyte.
6727 (main): Use enable-multibyte-characters rather than
6728 default-enable-multibyte-characters. Output a warning message when
6729 running a unibyte session.
6730
6731 2009-08-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6732
6733 * unexmacosx.c (print_load_command_name) [LC_DYLD_INFO]: Add cases
6734 LC_DYLD_INFO and LC_DYLD_INFO_ONLY.
6735 (copy_data_segment): Also copy __program_vars section.
6736 (copy_dyld_info) [LC_DYLD_INFO]: New function.
6737 (dump_it) [LC_DYLD_INFO]: Use it.
6738
6739 * s/darwin.h [temacs]: Undef HAVE_POSIX_MEMALIGN.
6740
6741 2009-08-28 Eli Zaretskii <eliz@gnu.org>
6742
6743 * makefile.w32-in ($(BLD)/doc.$(O)): Depend on buildobj.h, not on
6744 $(SRC)/buildobj.h.
6745 (buildobj.h): Renamed from $(SRC)/buildobj.h.
6746 (make-buildobj-CMD, make-buildobj-SH): Create buildobj.h, not
6747 $(SRC)/buildobj.h.
6748 (clean): Add buildobj.h.
6749
6750 2009-08-28 Teodor Zlatanov <tzz@lifelogs.com>
6751
6752 * print.c (print_object): Set escapeflag to 1 when printing
6753 hashtable keys and values.
6754
6755 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
6756
6757 * lread.c (read_integer): Use doubles (and potentially return a float
6758 number) as we do in string-to-number.
6759 (read1): Use strtol to read integers, signal errors on strtol's
6760 overflow and use floats if strtol's output is too large for
6761 Elisp integers.
6762
6763 2009-08-27 Eli Zaretskii <eliz@gnu.org>
6764
6765 * makefile.w32-in ($(SRC)/buildobj.h, make-buildobj-CMD)
6766 (make-buildobj-SH): Fix last change.
6767 (SRC): Move to before where it's first used.
6768
6769 2009-08-27 Kenichi Handa <handa@m17n.org>
6770
6771 * process.c (send_process): Use encode_coding_object instead of
6772 encode_coding_string to perform eol-conversion even if the string
6773 is unibyte.
6774
6775 * coding.c (encode_coding_utf_16): Fix checking of a Unicode
6776 character.
6777
6778 * cmds.c (Fself_insert_command): Avoid unnecessay
6779 unibyte->multibyte conversion. (Bug#4240) (Bug#4037)
6780
6781 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
6782
6783 * callproc.c (Fcall_process): Remove always true #if.
6784
6785 * lisp.h: Replace #if 0 code for checking with text pointing to
6786 the --enable-checking configure flag.
6787
6788 * emacs.c (main): Mention the --enable-profiling configure flag
6789 instead of using CFLAGS.
6790
6791 2009-08-26 Ken Raeburn <raeburn@raeburn.org>
6792
6793 * Makefile.in (buildobj.h): New target.
6794 (doc.o): Depend on it.
6795 (temacs${EXEEXT}): Don't generate buildobj.lst.
6796 (mostlyclean): Delete buildobj.h, not buildobj.lst.
6797 * makefile.w32-in ($(SRC)/buildobj.h): New target.
6798 ($(BLD)/doc.$(O)): Depend on it.
6799 (make-buildobj-CMD, make-buildobj-SH): New targets. (Syntax help
6800 provided by Eli Zaretskii.)
6801 ($(TEMACS)): Don't generate buildobj.lst.
6802 * doc.c: Include buildobj.h.
6803 (buildobj): New static variable.
6804 (Fsnarf_documentation): Use it, instead of opening and reading
6805 buildobj.lst.
6806
6807 2009-08-25 Michael Albinus <michael.albinus@gmx.de>
6808
6809 * dbusbind.c (Fdbus_call_method)
6810 (Fdbus_call_method_asynchronously): Use English numeric format for
6811 timeout values in doc string.
6812
6813 2009-08-25 Kenichi Handa <handa@m17n.org>
6814
6815 * alloc.c (mark_char_table): New function.
6816 (mark_object): Use mark_char_table for a char-table.
6817
6818 * lisp.h (CHAR_TABLE_REF_ASCII): New macro.
6819 (CHAR_TABLE_REF): Use it.
6820
6821 2009-08-23 Ken Raeburn <raeburn@raeburn.org>
6822
6823 * Makefile.in (emacs${EXEEXT}) [CANNOT_DUMP]: Set EMACSLOADPATH
6824 before invoking the newly build emacs to check for load-path
6825 shadowing.
6826
6827 2009-08-22 Glenn Morris <rgm@gnu.org>
6828
6829 * Makefile.in (bootstrap_exe): New variable.
6830 (.el.elc, ${lispsource}loaddefs.el, bootstrap-emacs${EXEEXT}):
6831 Use ${bootstrap_exe}.
6832
6833 2009-08-22 Eli Zaretskii <eliz@gnu.org>
6834
6835 * coding.h (encode_coding_string): Don't encode unibyte strings.
6836 (Bug#4047)
6837
6838 2009-08-22 Michael Albinus <michael.albinus@gmx.de>
6839
6840 * config.in (HAVE_DBUS_WATCH_GET_UNIX_FD): Add.
6841
6842 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): Remove. It was
6843 intended as hotfix only.
6844 (xd_add_watch, xd_remove_watch): Use HAVE_DBUS_WATCH_GET_UNIX_FD.
6845
6846 2009-08-21 Adrian Robert <Adrian.B.Robert@gmail.com>
6847
6848 * nsterm.m (ns_get_color): Update documentation properly for last
6849 change, and clean up loose ends in the code left by it. Fix
6850 longstanding bug with 16-bit hex parsing, and add support for
6851 yet another X11 format (rgb:r/g/b) for compatibility.
6852 * nsfns.m (EmacsDialogPanel-runDialogAt): Add declaration of
6853 timer_check() to avoid crash on Leopard/PPC. Bug #2154.
6854
6855 2009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
6856
6857 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 500 for js.el.
6858
6859 2009-08-20 Michael Albinus <michael.albinus@gmx.de>
6860
6861 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): New macro.
6862 (xd_add_watch, xd_remove_watch): Use it. Print debug messages.
6863 (xd_initialize, xd_pending_messages): Check, whether
6864 $DBUS_SESSION_BUS_ADDRESS is set.
6865
6866 2009-08-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6867
6868 * nsfns.m (Fxw_color_values): Return 3-element list. Doc fix.
6869
6870 * nsterm.m (ns_get_color): Remove incompatible color formats again.
6871
6872 2009-08-20 Glenn Morris <rgm@gnu.org>
6873
6874 * emacs.c (system-type): Doc fix.
6875
6876 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
6877
6878 * keyboard.c (syms_of_keyboard): Default to 5 buttons, which should be
6879 enough for the most common situations. Avoid SET_SYMBOL_VALUE.
6880
6881 2009-08-18 Michael Albinus <michael.albinus@gmx.de>
6882
6883 * dbusbind.c (xd_add_watch, xd_remove_watch, Fdbus_init_bus):
6884 New functions.
6885 (xd_initialize): Revert change from 2009-08-16.
6886
6887 2009-08-18 Kenichi Handa <handa@m17n.org>
6888
6889 * fontset.c (Ffontset_font): If a nil element is found in a
6890 font-group vector, return nil.
6891
6892 2009-08-17 Chong Yidong <cyd@stupidchicken.com>
6893
6894 * process.c (status_notify): Don't perform redisplay.
6895 (Fdelete_process, list_processes_1, process_send_signal):
6896 Expliticly perform redisplay.
6897 (wait_reading_process_output): Always check process status, but
6898 don't perform redisplay unless DO_DISPLAY is non-zero (Bug#2930).
6899
6900 2009-08-17 Ken Raeburn <raeburn@raeburn.org>
6901
6902 * lisp.h (XFLOAT_DATA): Produce an rvalue by adding 0 to the value.
6903 (XFLOAT_INIT): New macro for storing a float value.
6904 * alloc.c (make_float, make_pure_float): Use XFLOAT_INIT.
6905 * fns.c (sxhash): Copy out the value of a float in order to
6906 examine its bytes.
6907 * dbusbind.c (xd_append_arg): Likewise.
6908
6909 * emacs.c (main): Don't call syms_of_data twice.
6910
6911 2009-08-16 Michael Albinus <michael.albinus@gmx.de>
6912
6913 * dbusbind.c (xd_initialize): Add connection file descriptor to
6914 input_wait_mask, in order to let select() detect, whether a new
6915 message has been arrived.
6916 (Fdbus_call_method_asynchronously): Allow nil HANDLER.
6917
6918 2009-08-15 Michael Albinus <michael.albinus@gmx.de>
6919
6920 * dbusbind.c (xd_get_dispatch_status, xd_pending_messages):
6921 New functions.
6922
6923 * lisp.h (xd_pending_messages): Declare.
6924
6925 * keyboard.c (readable_events): Call xd_pending_messages.
6926
6927 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
6928
6929 * eval.c (Fcalled_interactively_p, Finteractive_p): Doc fix (Bug#3936).
6930
6931 * xdisp.c (pop_it): Don't pop into a display vector (Bug#4131).
6932
6933 * buffer.c (set_buffer_internal_1)
6934 (swap_out_buffer_local_variables): Check for unbound local
6935 variables (Bug#4138).
6936
6937 2009-08-14 Eli Zaretskii <eliz@gnu.org>
6938
6939 * process.c (create_pty): Fix last change.
6940
6941 2009-08-13 Chong Yidong <cyd@stupidchicken.com>
6942
6943 * image.c (xbm_read_bitmap_data): New arg inhibit_image_error.
6944 (xbm_load_image): Caller changed.
6945 (xbm_file_p): Avoid signalling an image_error (Bug#4107).
6946
6947 2009-08-13 Nick Roberts <nickrob@snap.net.nz>
6948
6949 * process.c (create_pty): New function.
6950 (Fstart_process): Use it to allow Emacs to just associate a pty
6951 with the buffer. See associated change in gdb-mi.el.
6952 (list_processes_1): Deal with no program name.
6953 (start_process_unwind): Use pid == -2 to mean no process.
6954
6955 2009-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
6956
6957 * cmds.c (nonundocount): New global variable.
6958 (keys_of_cmds): Initialize it.
6959 (Fself_insert_command): Use it to combine upto 20 sequential chars
6960 into a single undo entry, just like the Qself_insert_command code in
6961 keyboard.c does.
6962 Call frame_make_pointer_invisible, also like the Qself_insert_command
6963 code in keyboard.c does.
6964 * keyboard.c (command_loop_1): Use the new global nonundocount rather
6965 than its own local replacement for it.
6966
6967 2009-08-10 Ken Raeburn <raeburn@raeburn.org>
6968
6969 * fns.c (concat): Don't re-set string length to its current value.
6970
6971 * coding.h (decode_coding_string, encode_coding_string):
6972 Use SBYTES macro.
6973
6974 * doprnt.c (doprnt_lisp): Delete unused function.
6975 (doprnt): Merge with doprnt1, discarding lispstrings code.
6976 * lisp.h (doprnt_lisp): Don't declare.
6977
6978 2009-08-07 Juri Linkov <juri@jurta.org>
6979
6980 * puresize.h (BASE_PURESIZE): Increase to 1270000.
6981
6982 2009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
6983
6984 * print.c (syms_of_print): Undo previous change.
6985
6986 2009-08-05 Teodor Zlatanov <tzz@lifelogs.com>
6987
6988 * lread.c (read1, syms_of_lread): Read hashtables back from the
6989 readable format.
6990
6991 * print.c (print_preprocess, print_object): Print hashtables fully
6992 and readably.
6993 (syms_of_print): Provide 'hashtable-print-readable.
6994
6995 2009-08-02 Adrian Robert <Adrian.B.Robert@gmail.com>
6996
6997 * nsfont.m (ns_descriptor_to_entity): Handle case when descriptor has
6998 no family set.
6999 (nsfont_open): Handle case when entity has no family.
7000
7001 2009-07-29 Adrian Robert <Adrian.B.Robert@gmail.com>
7002
7003 * nsfont.m (ns_findfonts): Fix 2009-07-24 change to return only one
7004 element, not a list, for match case.
7005
7006 2009-07-28 Kenichi Handa <handa@m17n.org>
7007
7008 * font.c (font_parse_xlfd): Check DPI and AVGWIDTH properties more
7009 rigidly.
7010
7011 * xfont.c (xfont_list_pattern): Don't ignore the return value of
7012 font_parse_xlfd. Check font properties more rigidly.
7013
7014 2009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
7015
7016 * s/netbsd.h (SIGNALS_VIA_CHARACTERS): Remove, already defined in
7017 bsd-common.h.
7018
7019 2009-07-27 Kenichi Handa <handa@m17n.org>
7020
7021 * xfaces.c (face_with_height): Call font_clear_prop.
7022
7023 2009-07-26 Chong Yidong <cyd@stupidchicken.com>
7024
7025 * dispnew.c (init_display): Use Qx, Qw32, and Qns.
7026
7027 * xterm.c (x_term_init): Use Qx.
7028
7029 * nsfont.m (nsfont_draw): Revert 2009-07-15 change.
7030
7031 * nsterm.m (ns_maybe_dumpglyphs_background): Revert 2009-07-15 change.
7032 (ns_get_color): Revert 2009-07-16 change.
7033
7034 2009-07-25 Eli Zaretskii <eliz@gnu.org>
7035
7036 * lread.c (syms_of_lread) <force_load_messages>: New variable.
7037 (Fload): Use it to force load messages, even if NOMESSAGES is non-nil.
7038
7039 2009-07-25 Ken Raeburn <raeburn@raeburn.org>
7040
7041 * coding.h (decode_coding_string, encode_coding_string):
7042 Use SCHARS macro.
7043
7044 * lread.c: Rewrite 2009-07-21 changes.
7045 (load_depth): Delete.
7046 (Qload_in_progress): New variable.
7047 (load_unwind): Don't reference load_depth or load_in_progress.
7048 (Fload): Likewise; specbind Qload_in_progress instead.
7049 (init_lread): Don't initialize load_depth.
7050 (syms_of_lread): Initialize and protect Qload_in_progress.
7051
7052 2009-07-24 Adrian Robert <Adrian.B.Robert@gmail.com>
7053
7054 * nsfont.m (ns_findfonts): Correctly return fallback in match case.
7055
7056 2009-07-23 Yavor Doganov <yavor@gnu.org>
7057
7058 * nsfont.m (NSFontDescriptor.h): Explicitly include under GNUstep.
7059
7060 2009-07-23 Adrian Robert <Adrian.B.Robert@gmail.com>
7061
7062 * nsterm.m (EmacsView-keyUp:): Only act when running under Tiger.
7063 Bugs 3792, 3720, 2402.
7064 (ns_lookup_indexed_color): Check for bad index.
7065 (ns_index_color): Init unused slot to 0.
7066 (ns_dumpglyphs_box_or_relief): Replace useless xassert with an if().
7067 Bug 3714, possibly 3082.
7068
7069 2009-07-22 Jason Rumney <jasonr@gnu.org>
7070
7071 * w32fns.c (w32_wnd_proc) [WM_IME_STARTCOMPOSITION]:
7072 Position IME window at cursor (Bug#2570).
7073 (w32_wnd_proc) [WM_IME_CHAR]: Release context when finished.
7074 (globals_of_w32fns): Dynamically load functions required above.
7075
7076 * w32term.c (w32_draw_window_cursor): Send message to reposition
7077 any IME window.
7078
7079 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
7080
7081 * fileio.c: Revert 2009-07-16 changes.
7082 (Vauto_save_include_big_deletions): New variable.
7083 (Fdo_auto_save): Disable auto-save only if
7084 auto-save-include-big-deletions is nil.
7085
7086 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
7087
7088 * xdisp.c (move_it_to): For continued lines ending in a tab, take
7089 the overflowed pixels into account (Bug#3879).
7090
7091 2009-07-21 Ken Raeburn <raeburn@raeburn.org>
7092
7093 * lread.c (load_depth): New variable.
7094 (Fload, load_unwind, init_lread): Set it to the load recursion
7095 depth; set load_in_progress as a simple boolean based on the
7096 current load_depth. (Bug#3892)
7097
7098 2009-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
7099
7100 * nsfont.m (ns_has_attribute): Remove.
7101 (ns_findfonts, nsfont_open): Use ns_attribute_fvalue() instead.
7102
7103 2009-07-18 Juri Linkov <juri@jurta.org>
7104
7105 * process.c (Fset_process_query_on_exit_flag): Mention killing
7106 a buffer in docstring.
7107
7108 2009-07-17 Kenichi Handa <handa@m17n.org>
7109
7110 * casetab.c (shuffle): Fix the logic of setting up the cycle.
7111
7112 2009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7113
7114 * nsfns.m (Fns_set_alpha): Remove function.
7115 (syms_of_nsfns): Don't defsubr it.
7116
7117 * nsterm.m (ns_get_color): Remove incompatible color formats.
7118 (ns_color_to_lisp): Generate #rrggbb color format string.
7119
7120 2009-07-16 Richard Stallman <rms@gnu.org>
7121
7122 * fileio.c (Fwrite_region, Fdo_auto_save): Handle save_length = -2.
7123 (Fset_buffer_auto_saved): Handle save_length = -2.
7124
7125 2009-07-16 Chong Yidong <cyd@stupidchicken.com>
7126
7127 * xterm.c (Qx_gtk_map_stock): New var.
7128
7129 * gtkutil.c (update_frame_tool_bar): Use Qx_gtk_map_stock instead
7130 of calling intern each time.
7131
7132 2009-07-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7133
7134 * nsfont.m (nsfont_draw): Remove code for stippling, which actually
7135 does tiling.
7136
7137 * nsterm.m (ns_maybe_dumpglyphs_background): Likewise.
7138
7139 2009-07-14 Kenichi Handa <handa@m17n.org>
7140
7141 * font.c (font_vconcat_entity_vectors): New function.
7142 (struct font_sort_data): New member font_driver_preference.
7143 (font_compare): Check font_driver_preference.
7144 (font_sort_entities): The format of the first argument changed.
7145 (font_delete_unmatched): Likewise.
7146 (font_list_entities): The return type changed.
7147 (font_select_entity): The format of the second argument changed.
7148 (font_find_for_lface): Adjuste for the above changes.
7149 Don't suppress the checking of C even if the repertory supports it.
7150 (Flist_fonts): Adjust for the above changes.
7151
7152 * ftfont.c (ftfont_spec_pattern): New arg langname. Change caller.
7153 (ftfont_list): Adjust for the change of ftfont_spec_pattern.
7154 Reject a font who has adstyle property that is different from a
7155 langname derived from registry property.
7156 (ftfont_match): Adjust for the change of ftfont_spec_pattern.
7157
7158 2009-07-13 Eli Zaretskii <eliz@gnu.org>
7159
7160 * dired.c (directory_files_internal) [WINDOWSNT]: Don't make a
7161 local copy of dirfilename.
7162
7163 2009-07-13 Kenichi Handa <handa@m17n.org>
7164
7165 * chartab.c (sub_char_table_ref_and_range): Fix the range check
7166 against max_char.
7167
7168 * cmds.c (internal_self_insert): Check sym by SYMBOLP before
7169 calling XSYMBOL (sym).
7170
7171 2009-07-11 Eli Zaretskii <eliz@gnu.org>
7172
7173 * dired.c (directory_files_internal_w32_unwind) [WINDOWSNT]:
7174 New function.
7175 (directory_files_internal) [WINDOWSNT]:
7176 Bind w32-get-true-file-attributes to either t or nil, depending whether
7177 the filesystem of the directory is fast or slow.
7178
7179 * w32.c (logon_network_drive): Don't assume PATH is an absolute
7180 file name.
7181 (is_slow_fs): New function.
7182 (stat): Use it to determine whether to issue more system calls to
7183 get accurate file attributes, when w32-get-true-file-attributes is
7184 `local'.
7185
7186 2009-07-10 Jan Djärv <jan.h.d@swipnet.se>
7187
7188 * xfns.c (Fx_select_font): Remember last font selected in
7189 x_last_font_name and use that the next time. Also try the frame
7190 parameter font-parameter as default to the font dialog.
7191
7192 2009-07-10 Kenichi Handa <handa@m17n.org>
7193
7194 * xftfont.c (xftfont_open): Fix typo: FC_RGBA->FC_HINT_STYLE.
7195
7196 2009-07-09 Eli Zaretskii <eliz@gnu.org>
7197
7198 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
7199
7200 * w32.c (stat): Treat UNC file names as residing on remote
7201 drives. (Bug#3542)
7202
7203 2009-07-09 Kenichi Handa <handa@m17n.org>
7204
7205 * fontset.c (fontset_find_font): Fix previous change.
7206
7207 2009-07-08 Michael Albinus <michael.albinus@gmx.de>
7208
7209 * dbusbind.c (xd_initialize, Fdbus_call_method, xd_read_message)
7210 (Fdbus_register_signal, Fdbus_register_method): Cleanup memory of
7211 error flag.
7212
7213 2009-07-08 Kenichi Handa <handa@m17n.org>
7214
7215 * fontset.c (fontset_find_font): Fix the logic of handling
7216 charset_matched.
7217 (font_for_char): Delete unused var.
7218 (generate_ascii_font_name): Delete it.
7219
7220 * coding.h (JIS_TO_SJIS2): Fix the code range check.
7221
7222 * coding.c (detect_coding_sjis): Handle shift_jis-2004 correctly.
7223 (encode_coding_sjis): Fix the code range check.
7224
7225 2009-07-07 Chong Yidong <cyd@stupidchicken.com>
7226
7227 * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
7228 (Fexpand_file_name): Copy string data properly (Bug#3772).
7229
7230 2009-07-07 Jan Djärv <jan.h.d@swipnet.se>
7231
7232 * xterm.c (handle_one_xevent): Only call x_check_fullscreen on the
7233 first MapNotify.
7234
7235 2009-07-07 Kenichi Handa <handa@m17n.org>
7236
7237 * character.h (unibyte_has_multibyte_table): Delete extern.
7238 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): Delete it.
7239
7240 * charset.c (Fset_charset_priority): Update charset_unibyte.
7241 (syms_of_charset): Initialize charset_unibyte.
7242
7243 * character.c (unibyte_has_multibyte_table): Delete it.
7244 (multibyte_char_to_unibyte): Use CHAR_TO_BYTE8 instead of checking
7245 charset_unibyte.
7246 (multibyte_char_to_unibyte_safe): Likewise.
7247 (Funibyte_char_to_multibyte): Don't check charset_unibyte.
7248
7249 * xdisp.c (get_next_display_element): Decode it->c by charset_unibyte.
7250 (x_produce_glyphs): Likewise.
7251
7252 * .gdbinit (xcharset): Fix the treating $arg0.
7253
7254 2009-07-04 Eli Zaretskii <eliz@gnu.org>
7255
7256 Emulation of `getloadavg' on MS-Windows.
7257 * w32.c: Include float.h.
7258 (g_b_init_get_native_system_info, g_b_init_get_system_times)
7259 (GetNativeSystemInfo_Proc, GetSystemTimes_Proc): Declare.
7260 (get_native_system_info, get_system_times): New functions.
7261 (buf_next, buf_prev, sample_system_load, getavg): New subroutines.
7262 (getloadavg): Rewrite using GetSystemTimes and GetNativeSystemInfo.
7263 (globals_of_w32): Initialize g_b_init_get_native_system_info,
7264 g_b_init_get_system_times, and num_of_processors.
7265
7266 2009-07-03 Jason Rumney <jasonr@gnu.org>
7267
7268 * w32term.c (w32_initialize): Use standard types.
7269
7270 2009-07-03 Eli Zaretskii <eliz@gnu.org>
7271
7272 * dired.c (Ffile_attributes): Decode user and group names by the
7273 locale's encoding. (Bug#3443)
7274
7275 2009-07-03 Dan Nicolaescu <dann@ics.uci.edu>
7276
7277 * sysdep.c (sys_suspend): Remove USG_JOBCTRL #ifdef, unused.
7278 (mkdir): Remove MKDIR_PROTOTYPE #ifdef, unused.
7279
7280 * callproc.c (child_setup): Use #else instead of a separate #ifdef.
7281
7282 * term.c (init_tty): Remove spurious #ifdef.
7283
7284 * m/mips.h: Mention this file is also used for netbsd.
7285 * m/pmax.h: Remove file.
7286
7287 2009-07-03 Jan Djärv <jan.h.d@swipnet.se>
7288
7289 * xterm.h (struct x_display_info): Add invisible_cursor.
7290 (struct x_output): Add current_cursor.
7291
7292 * xterm.c (XTtoggle_invisible_pointer): New function.
7293 (x_define_frame_cursor): Don't define cursor if invisible or the
7294 same as before. Set current_cursor.
7295 (x_create_terminal): Set toggle_invisible_pointer_hook.
7296
7297 * xfns.c (make_invisible_cursor): New function.
7298 (x_set_mouse_color): Call make_invisible_cursor.
7299 Set current_cursor.
7300 (x_window): Set current_cursor.
7301
7302 * termhooks.h (struct terminal): Add toggle_invisible_pointer_hook.
7303
7304 * keyboard.c (command_loop_1): Call frame_make_pointer_invisible after
7305 inserting a character.
7306 (read_avail_input): Call frame_make_pointer_visible.
7307
7308 * frame.c (Vmake_pointer_invisible): New variable.
7309 (frame_make_pointer_invisible, frame_make_pointer_visible):
7310 New functions.
7311 (syms_of_frame): DEFVAR make-pointer-invisible, initialize to Qt.
7312
7313 * frame.h: Declare frame_make_pointer_invisible and
7314 frame_make_pointer_visible.
7315 (struct frame): Add pointer_invisible.
7316
7317 2009-07-02 Jan Djärv <jan.h.d@swipnet.se>
7318
7319 * gtkutil.c (xg_frame_set_char_size): Do set width/height if the
7320 frame isn't visible.
7321 (xg_frame_resized): If width/height is -1, get size of window
7322 from X server.
7323
7324 * xterm.c (handle_one_xevent): Call xg_frame_resized for USE_GTK
7325 for MapNotify.
7326
7327 * gtkutil.c (xg_frame_set_char_size): Do not set pixel width/height
7328 here or call change_frame_size. Just call flush_and_sync.
7329 (flush_and_sync): Reintroduce.
7330
7331 2009-07-01 Jan Djärv <jan.h.d@swipnet.se>
7332
7333 * xterm.h (struct x_display_info): Add Xatom_net_wm_state_sticky.
7334
7335 * xterm.c (x_handle_net_wm_state): Also look for sticky.
7336 (x_term_init): Initialize Xatom_net_wm_state_sticky.
7337
7338 * frame.h: Declare Qsticky.
7339
7340 * w32fns.c (w32_frame_parm_handlers): Set 0 for sticky.
7341
7342 * nsfns.m (ns_frame_parm_handlers): Ditto.
7343
7344 * frame.c: Declare Qsticky.
7345 (frame_parms): Add sticky.
7346
7347 * xfns.c (x_frame_parm_handlers): Let x_set_sticky handle sticky.
7348
7349 * xterm.h: Declare x_set_sticky.
7350
7351 * xterm.c (x_set_sticky): New function.
7352
7353 * gtkutil.c (xg_tool_bar_proxy_help_callback): New function.
7354 (xg_tool_bar_menu_proxy): Attach enter/leave events to
7355 xg_tool_bar_proxy_help_callback.
7356
7357 * emacs.c (USAGE3, standard_args): Add -mm and --maximized.
7358
7359 * frame.c: Qmaximized is new.
7360 (x_set_frame_parameters): Do not handle fullscreen specially.
7361 Only set width and height if explicitly set.
7362 (x_set_fullscreen): Handle Qmaximized.
7363 (x_set_font, x_figure_window_size): Do not handle fullscreen specially.
7364 (syms_of_frame): Initialize Qmaximized.
7365
7366 * frame.h (fullscreen_type): Add FULLSCREEN_MAXIMIZED.
7367 Declare Qfullwidth, Qfullheight, Qfullboth, Qmaximized.
7368
7369 * xterm.c (handle_one_xevent): Remove call to x_check_fullscreen
7370 for Expose event. Add call to x_check_fullscreen for MapNotify event.
7371 Remove all code w.r.t. fullscreen from ConfigureNotify event. Do not
7372 set gravity to NorthWestGravity when USE_GTK.
7373 (set_wm_state): New function.
7374 (do_ewmh_fullscreen): Use set_wm_state. Also handle FULLSCREEN_MAXIMIZED.
7375 (x_handle_net_wm_state): Handle FULLSCREEN_MAXIMIZED.
7376 (x_check_fullscreen): Simplify so we only handle EMWH type of fullscreen
7377 or the case when no window manager is running. That means remove calls
7378 to x_real_positions and x_fullscreen_adjust.
7379
7380 * gtkutil.c (flush_and_sync, x_wm_size_hint_off): Remove.
7381 (xg_frame_set_char_size): Remove calls to x_wm_size_hint_off and
7382 flush_and_sync.
7383 (xg_height_changed): New function.
7384 (xg_create_frame_widgets): Remove call to gtk_widget_set_size_request
7385 and gtk_window_set_policy. Set frame gravity after parsing the
7386 geometry string.
7387 (xg_update_frame_menubar, free_frame_menubar)
7388 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
7389 (update_frame_tool_bar, free_frame_tool_bar): Call xg_height_changed.
7390 Remove calls to xg_frame_set_char_size.
7391
7392 2009-07-01 Kenichi Handa <handa@m17n.org>
7393
7394 * keyboard.c (decode_keyboard_code): New function.
7395 (tty_read_avail_input): Decode the input bytes if necessary.
7396
7397 * coding.c (setup_coding_system):
7398 Initialize coding->carryover_bytes to 0.
7399 (Fset_keyboard_coding_system_internal): If CODING-SYSTEM is nil,
7400 use Qno_conversion.
7401
7402 2009-07-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7403
7404 * Makefile.in (SOME_MACHINE_LISP): Add ../lisp/term/common-win.elc.
7405
7406 2009-06-30 Chong Yidong <cyd@stupidchicken.com>
7407
7408 * xftfont.c (xftfont_open): Avoid passing NULL argument to XftLockFace.
7409
7410 2009-06-30 Jason Rumney <jasonr@gnu.org>
7411
7412 * w32term.c (w32_initialize): Use GetModuleHandle for library that
7413 is already loaded.
7414 Set user model ID if supported (bug#1849).
7415
7416 2009-06-29 Jim Meyering <meyering@redhat.com>
7417
7418 Remove useless if-before-xfree test.
7419 * nsfont.m (nsfont_close): Remove useless test.
7420 * term.c (delete_tty): Likewise.
7421 * w32.c (system_process_attributes): Likewise.
7422 * w32font.c (w32font_close): Likewise.
7423 * xfaces.c (x_free_gc): Likewise.
7424 * xselect.c (buffer): Likewise.
7425
7426 2009-06-28 Andreas Schwab <schwab@linux-m68k.org>
7427
7428 * process.c (send_process): Keep decoded string in a local
7429 variable and protect it from GC. (Bug#3521)
7430
7431 2009-06-28 Eli Zaretskii <eliz@gnu.org>
7432
7433 * term.c (create_tty_output) [MSDOS]: #ifdef away.
7434 (tty_free_frame_resources) [MSDOS]: Add a DOS-specific version.
7435
7436 2009-06-28 Chong Yidong <cyd@stupidchicken.com>
7437
7438 * xdisp.c (start_display, handle_face_prop)
7439 (move_it_vertically_backward, cursor_row_fully_visible_p)
7440 (redisplay_window, try_window_id, produce_image_glyph):
7441 Delete some #ifdef-ed out code chunks that are now obsolete.
7442
7443 * xterm.c (x_update_window_begin, x_new_focus_frame)
7444 (x_scroll_bar_handle_click, handle_one_xevent)
7445 (handle_one_xevent, XTread_socket, x_focus_on_frame)
7446 (x_make_frame_visible, x_make_frame_invisible)
7447 (x_wm_set_icon_pixmap, x_initialize): Delete some #ifdef-ed out
7448 code chunks that are now obsolete.
7449
7450 2009-06-28 Michael Albinus <michael.albinus@gmx.de>
7451
7452 * dbusbind.c (XD_SYMBOL_TO_DBUS_TYPE): Convert macro into function
7453 xd_symbol_to_dbus_type. With Solaris 2.11, it was said to compile
7454 for hours, when optimzation is enabled.
7455 (xd_signature, xd_append_arg, xd_retrieve_arg, xd_initialize)
7456 (xd_read_message): Make them static.
7457
7458 2009-06-27 Chuck Blake <cblake@pdos.csail.mit.edu> (tiny change)
7459
7460 * term.c (turn_on_face): Allow simultaneously bold and dim
7461 terminal faces (Bug#3530).
7462
7463 2009-06-27 Chong Yidong <cyd@stupidchicken.com>
7464
7465 * frame.c (x_get_arg): Check if dpyinfo is non-NULL.
7466
7467 * xdisp.c (mouse_face_from_buffer_pos): Fix detection of
7468 truncation glyphs (Bug#3686).
7469
7470 2009-06-27 Glenn Morris <rgm@gnu.org>
7471
7472 * m/pmax.h: Restore file, with only netbsd portions.
7473
7474 2009-06-26 David Reitter <david.reitter@gmail.com>
7475
7476 * nsterm.m (keydown): Avoid infinite loop.
7477
7478 2009-06-26 Peter Jolly <peter@jollys.org> (tiny change)
7479
7480 * ftfont.c (get_adstyle_property): Call font_intern_prop with 1 as
7481 the arg FORCE_SYMBOL.
7482
7483 2009-06-25 Kenichi Handa <handa@m17n.org>
7484
7485 * fontset.c (fontset_find_font): When a usable rfont_def is found
7486 in a fallback font-group, make it the first element of the group.
7487
7488 2009-06-24 Chong Yidong <cyd@stupidchicken.com>
7489
7490 * emacs-icon.h: Always define gnu_xpm_bits on GTK (bug#3671).
7491
7492 2009-06-24 Kenichi Handa <handa@m17n.org>
7493
7494 * fontset.c (fontset_get_font_group): Return 0 if no font-group is
7495 set for C.
7496 (fontset_font): Record the availability of a font for C both in
7497 the realized fontsets of the current one and the default one.
7498
7499 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
7500
7501 * sysdep.c (child_setup_tty): Remove SIGNALS_VIA_CHARACTERS
7502 conditional, it is always defined on AIX.
7503
7504 2009-06-23 Miles Bader <miles@gnu.org>
7505
7506 * window.c (Vrecenter_redisplay): New variable.
7507 (syms_of_window): Initialize it.
7508 (Qtty): New extern declaration.
7509 (Frecenter): Only do redisplay if Vrecenter_redisplay requests it.
7510
7511 2009-06-23 Jim Meyering <meyering@redhat.com>
7512
7513 * src/ftfont.c (setup_otf_gstring, ftfont_shape_by_flt):
7514 Use xmalloc and xrealloc (not malloc and realloc), so subsequent heap
7515 pointer dereferences are guaranteed to be valid.
7516
7517 2009-06-23 Kenichi Handa <handa@m17n.org>
7518
7519 * emacs.c (main): Call init_font ().
7520
7521 * font.h (Vfont_log): Extern it.
7522 (FONT_ADD_LOG, FONT_DEFERRED_LOG): New macros.
7523
7524 * font.c (font_sort_entities, font_list_entities)
7525 (font_matching_entity, font_open_entity)
7526 (font_close_object): Change font_add_log to FONT_ADD_LOG.
7527 (Vfont_log): Delete static.
7528 (font_log_env_checked): Delete this variable.
7529 (font_add_log): Don't check font_log_env_checked.
7530 (font_deferred_log): Check Vfont_log.
7531 (init_font): New function.
7532
7533 * ftfont.c: Change font_add_log to FONT_ADD_LOG.
7534
7535 * w32font.c: Change font_add_log to FONT_ADD_LOG.
7536
7537 * w32uniscribe.c: Change font_add_log to FONT_ADD_LOG.
7538
7539 * xfont.c: Change font_add_log to FONT_ADD_LOG.
7540
7541 * fontset.c (fontset_font): Call FONT_DEFERRED_LOG.
7542 (face_for_char): Don't call font_deferred_log here.
7543 (font_for_char): Likewise.
7544
7545 2009-06-22 Chong Yidong <cyd@stupidchicken.com>
7546
7547 * w32term.c (x_draw_glyph_string): Use the glyph string's width
7548 rather than its background_width for drawing the overline and
7549 underline (Bug#489).
7550
7551 * xterm.c (x_draw_glyph_string): Use the glyph string's width
7552 rather than its background_width for drawing the overline and
7553 underline (Bug#489).
7554 (xg_default_icon_file): New variable.
7555 (syms_of_xterm): Initialize it to the Emacs SVG icon file.
7556 (x_bitmap_icon): Under GTK, use xg_default_icon_file.
7557
7558 * xdisp.c (Qbefore_string, Qafter_string): Add externs.
7559 (load_overlay_strings): Remove externs.
7560 (fast_find_position): Function deleted.
7561 (mouse_face_from_buffer_pos): New function, based on
7562 fast_find_position. Correctly handle before-strings,
7563 display-strings, and after-strings (Bug#1220).
7564 (note_mouse_highlight): Use mouse_face_from_buffer_pos.
7565
7566 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
7567
7568 * xdisp.c (IT_DISPLAYING_WHITESPACE): Define for !HAVE_WINDOW_SYSTEM.
7569 (move_it_in_display_line_to, move_it_in_display_line_to)
7570 (display_line): Remove #ifdef HAVE_WINDOW_SYSTEM.
7571
7572 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
7573
7574 * Branch for 23.1.
7575
7576 2009-06-21 Jason Rumney <jasonr@gnu.org>
7577
7578 * w32term.c (keyboard_codepage): New static variable.
7579 (w32_read_socket) [WM_INPUTLANGCHANGE]: Update it.
7580 (w32_read_socket) [WM_CHAR]: Use it to decode character
7581 input (bug#3237).
7582 (w32_initialize): Initialize it.
7583 (codepage_for_locale): New function.
7584
7585 2009-06-20 Ken Raeburn <raeburn@raeburn.org>
7586
7587 * process.c (status_message): Pass Faset index argument as a lisp
7588 object, so as to work with USE_LISP_UNION_TYPE.
7589
7590 2009-06-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7591
7592 * coding.c (Ffind_coding_systems_region_internal):
7593 Cache checked characters.
7594
7595 2009-06-18 Kenichi Handa <handa@m17n.org>
7596
7597 * coding.c (decode_coding_iso_2022): Check MSB of bytes more rigidly.
7598
7599 2009-06-18 Andreas Schwab <aschwab@redhat.com>
7600
7601 * xdisp.c (redisplay_internal): Check that the frame is still
7602 live after redisplay of its windows.
7603 (redisplay_windows): Check that the window is still live.
7604
7605 2009-06-17 Andreas Schwab <schwab@linux-m68k.org>
7606
7607 * coding.c (detect_coding_utf_16): Fix previous change.
7608
7609 2009-06-16 Kenichi Handa <handa@m17n.org>
7610
7611 * coding.c (detect_coding_utf_16): Fix the logic of rejecting
7612 UTF-16 by checking the dispersion of Eth and Oth bytes.
7613
7614 2009-06-15 Andreas Schwab <schwab@linux-m68k.org>
7615
7616 * coding.c (detect_coding_utf_16): Fix typo counting odd bytes.
7617
7618 2009-06-15 Kenichi Handa <handa@m17n.org>
7619
7620 * process.c (status_message): Fix previous change. Be sure to
7621 decode a localized string.
7622
7623 2009-06-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7624
7625 * xterm.c (x_delete_terminal): Put previous change in #if 0 and
7626 add comment explaining why.
7627
7628 2009-06-14 Sidney Markowitz <sidney@sidney.com>
7629
7630 * nsmenu.m (EmacsTooltip: setText): Set height of tooltip.
7631
7632 2009-06-14 Adrian Robert <Adrian.B.Robert@gmail.com>
7633
7634 * nsfont.m (ns_attribute_value): Remove.
7635 (ns_attribute_fvalue): Incorporate code from ns_attribute_value.
7636 (ns_has_attribute): Shrink the normal range.
7637 (ns_findfonts): Don't worry about requested spec in determining
7638 need for synthItal.
7639 (ns_get_covering_families): Retain scriptToFamilies.
7640
7641 2009-06-14 Seiji Zenitani <zenitani@mac.com>
7642
7643 * xdisp.c [USE_MAC_TOOLBAR]: Remove obsolete definition for Mac Carbon.
7644
7645 2009-06-11 Kenichi Handa <handa@m17n.org>
7646
7647 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
7648 overhang for the static composition case.
7649
7650 2009-06-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7651
7652 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
7653 overhang for the automatic composition case.
7654
7655 * xterm.c (x_compute_glyph_string_overhangs): Handle the automatic
7656 composition case.
7657
7658 2009-06-10 Chong Yidong <cyd@stupidchicken.com>
7659
7660 * xdisp.c (get_next_display_element): When handling wrap-prefix
7661 and line-prefix, treat \n as a control character (bug#3502).
7662
7663 2009-06-10 Kenichi Handa <handa@m17n.org>
7664
7665 * font.c (font_parse_family_registry): Fix for one-char foundry.
7666 (font_sort_entities): Initialize prefer_prop[FONT_AVGWIDTH_INDEX].
7667
7668 2009-06-09 Dmitry Dzhus <dima@sphinx.net.ru> (tiny change)
7669
7670 * process.c (status_message): Fix handling of multibyte signal
7671 string (Bug#3499).
7672
7673 2009-06-09 Jim Meyering <meyering@redhat.com>
7674
7675 * xfaces.c (Fx_load_color_file): Avoid array bounds error if the
7676 color name is missing.
7677
7678 2009-06-09 Kenichi Handa <handa@m17n.org>
7679
7680 * charset.c (Fmap_charset_chars): In docstring, state clearly that
7681 FROM-CODE and TO-CODE are codepoints of CHARSET.
7682
7683 2009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
7684
7685 * nsterm.m (ns_use_system_highlight_color): Drop, unused.
7686
7687 2009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
7688
7689 Changes to support :script/:lang/:otf in NS font driver.
7690 * nsfont.m (nsfont_escape_name, nsfont_unescape_name)
7691 (nsfont_get_family, nsfont_char_width): Rename to ns_ prefix to
7692 indicate not part of font driver interface, and change callers.
7693 (ns_get_family): Remove pointless null check.
7694 (nsfont_spec_to_traits, nsfont_fmember_to_entity): Replace with
7695 ns_spec_to_descriptor, ns_descriptor_to_entity.
7696 (nsfont_trait_distance, nsfont_make_fontset_for_font): Remove.
7697 (ns_attribute_value, ns_attribute_fvalue, ns_has_attribute)
7698 (ns_spec_to_descriptor, ns_descriptor_to_entity)
7699 (ns_charset_covers, ns_lang_to_script, ns_otf_to_script)
7700 (ns_get_req_script, ns_accumulate_script_ranges)
7701 (ns_script_to_charset, ns_get_covering_families, ns_findfonts):
7702 New functions.
7703 (nsfont_list, nsfont_match): Use ns_findfonts.
7704 (nsfont_open): Use font descriptor instead of traits.
7705 (nsfont_draw): Handle "automatic" (lookup-table) compositions.
7706 (dump_glyphstring): Rename to ns_dump_glyphstring.
7707
7708 * nsterm.h (dump_glyphstring): Rename to ns_dump_glyphstring.
7709
7710 * nsfns.m (Fns_popup_font_panel): Use shared font manager.
7711
7712 * fontset.c (fontset_from_font): Remove NS-specific code.
7713
7714 2009-06-08 Peter Jones <pjones@pmade.com> (tiny change)
7715
7716 * nsterm.m (ns_draw_window_cursor): Respect cursor_type for
7717 nonactive windows.
7718
7719 2009-06-08 Felix Mueller <felix@enqueue.eu> (tiny change)
7720
7721 * nsterm.m (ns_init_paths): Append path separator to INFOPATH variable.
7722
7723 2009-06-08 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
7724
7725 * keyboard.c (kbd_buffer_get_event): Null-check used_mouse_menu.
7726
7727 2009-06-07 Chong Yidong <cyd@stupidchicken.com>
7728
7729 * xdisp.c (move_it_in_display_line_to): On text-only terminals,
7730 account for the overflowing of newlines into the last glyph on the
7731 display line (Bug#3482).
7732
7733 2009-06-05 David Reitter <david.reitter@gmail.com>
7734
7735 * nsselect.m (Fx_own_selection_internal, Fx_selection_exists_p)
7736 (Fx_selection_owner_p): Rename from Fns_own_selection_internal,
7737 Fns_selection_exists_p, Fns_selection_owner_p.
7738
7739 2009-06-03 Jason Rumney <jasonr@gnu.org>
7740
7741 * w32fns.c (x_create_tip_frame): Use the uniscribe font backend if
7742 available. (Bug#3379)
7743
7744 2009-05-29 Kenichi Handa <handa@m17n.org>
7745
7746 * coding.c (get_translation_table):
7747 Check Venable_character_translation.
7748
7749 2009-05-26 David Reitter <david.reitter@gmail.com>
7750
7751 * nsterm.m (ns_raise_frame): Only raise frame if visible.
7752 (x_make_frame_visible): Move frame to front rather than calling
7753 ns_raise_frame().
7754 (keyDown:): Do not swallow events that aren't re-sent if frame
7755 isn't key window.
7756 (drawRect:): Do not set visibility/iconified flags because
7757 drawRect may be called by NSView even if the frame is hidden.
7758
7759 * nsfns.m (Fx_create_frame): Follow other ports in
7760 determining visibility; default to t. Ensure async_visible is set.
7761
7762 2009-05-23 Eli Zaretskii <eliz@gnu.org>
7763
7764 * dired.c (Ffile_attributes): Doc fix.
7765
7766 2009-05-22 Chong Yidong <cyd@stupidchicken.com>
7767
7768 * m/mips.h [GNU_LINUX]: Don't define DATA_START (Bug#2685).
7769
7770 2009-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
7771
7772 * xfont.c (xfont_list_pattern): Don't initialize xfont_scripts_cache
7773 and xfont_scratch_props.
7774 (syms_of_xfont): Do it here instead.
7775 (xfont_find_ccl_program): Delete, unused.
7776 (xfont_open): Delete unused var `i'.
7777
7778 2009-05-21 Kenichi Handa <handa@m17n.org>
7779
7780 * fontset.c (Qlatin): Don't make it static.
7781
7782 * xfont.c (xfont_chars_supported, xfont_supported_scripts):
7783 New functions.
7784 (xfont_scripts_cache, xfont_scratch_props): New variables.
7785 (Qlatin, Vscalable_fonts_allowed): Extern it.
7786 (xfont_list_pattern): Argument changed. Callers changed.
7787 Check Vscalable_fonts_allowed. Check the support of a script.
7788 (xfont_list): Don't reject a font spec with :script property.
7789 (xfont_has_char): Fix setting of encoding.
7790 (syms_of_xfont): Staticpro and initialize xfont_scripts_cache and
7791 xfont_scratch_props.
7792
7793 2009-05-19 Kenichi Handa <handa@m17n.org>
7794
7795 * font.c (font_sort_entities): Rename from font_sort_entites.
7796 Callers changed.
7797
7798 2009-05-18 Kenichi Handa <handa@m17n.org>
7799
7800 * font.c (font_find_for_lface): Copy SPEC's FONT_TYPE too.
7801
7802 2009-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
7803
7804 * frame.c (do_switch_frame) [NS_IMPL_COCOA]: Don't raise any window.
7805 (delete_frame) [NS_IMPL_COCOA]: Instead, do it here.
7806
7807 2009-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7808
7809 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase here.
7810 (x_delete_terminal): Dissociate resource database from display and
7811 then call XrmDestroyDatabase before closing display.
7812
7813 2009-05-18 Adrian Robert <Adrian.B.Robert@gmail.com>
7814
7815 * nsterm.m (ns_read_socket): Remove unused variable.
7816 * frame.c (do_switch_frame): Under NS_IMPL_COCOA section, check
7817 whether selected frame is viable before raising it (based on patch
7818 by David Reitter), and improve commentary.
7819 * nsfont.m (nsfont_make_fontset_for_font): Avoid a compiler warning.
7820
7821 2009-05-15 Kenichi Handa <handa@m17n.org>
7822
7823 * font.c (Ffont_spec): Check arguments.
7824
7825 2009-05-14 Chong Yidong <cyd@stupidchicken.com>
7826
7827 * xfaces.c (tty_supports_face_attributes_p): Recognize unspecified
7828 weight when testing attributes (Bug#3282).
7829
7830 2009-05-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7831
7832 * gtkutil.c (xg_frame_set_char_size): Set frame pixel width/height to
7833 what we expect to get in the next ConfigureNotify event.
7834
7835 * xftfont.c (xftfont_open): Make sure that Xrender extension is added
7836 before Xft one (Bug#1696).
7837
7838 2009-05-07 David Reitter <david.reitter@gmail.com>
7839
7840 * nsfns.m (Fx_display_planes): Compute bitplanes using
7841 NSBitsPerPixelFromDepth (Bug#3207).
7842
7843 2009-05-10 Chong Yidong <cyd@stupidchicken.com>
7844
7845 * editfns.c (Ftranspose_regions): Doc fix (Bug#3248).
7846
7847 2009-05-10 Ulrich Mueller <ulm@gentoo.org>
7848
7849 * s/gnu-linux.h: Make GCPROs and UNGCPRO no-ops also on SuperH.
7850
7851 2009-05-07 David Reitter <david.reitter@gmail.com>
7852
7853 * nsterm.m (ns_dumpglyphs_stretch, ns_dumpglyphs_image):
7854 Respect mouse face background.
7855
7856 2009-05-07 David Reitter <david.reitter@gmail.com>
7857
7858 * nsterm.m (note_mouse_movement, ns_frame_up_to_date):
7859 Mouse movement/highlight: bracket drawing operations
7860 in ns_update_begin and ns_update_end.
7861
7862 2009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
7863
7864 * nsfns.m (ns_get_screen): Rewrite.
7865 Don't presume selected-frame is of type `ns'.
7866
7867 * font.c (font_update_drivers): Sanity fallback to avoid disabling
7868 all drivers.
7869
7870 * nsterm.m (-windowDidResize:): Avoid inf-loop under GNUStep.
7871
7872 2009-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7873
7874 * keyboard.h (add_user_signal): Fix typo in extern.
7875
7876 * lisp.h (add_user_signal): Remove extern.
7877
7878 * unexelf.c (unexec): Consider a section to precede the .bss section
7879 if its addresses overlap that of .bss.
7880 (unexec) [NS_IMPL_GNUSTEP]: Copy ObjC-related data from old file
7881 instead of dumping process.
7882
7883 2009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
7884
7885 * keyboard.c (syms_of_keyboard): Staticpro pending_funcalls.
7886
7887 2009-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
7888
7889 * Makefile.in (ctagsfiles1, ctagsfiles2): Include ObjC files in TAGS.
7890
7891 2009-05-02 Dan Nicolaescu <dann@ics.uci.edu>
7892
7893 * xterm.c (x_handle_net_wm_state): Move declaration of lval before
7894 any statements.
7895
7896 2009-05-02 Andreas Schwab <schwab@linux-m68k.org>
7897
7898 * process.c (read_process_output): Make sure the current buffer is
7899 always restored.
7900
7901 * coding.c (record_conversion_result): Don't modify
7902 Vlast_code_conversion_error for successful result.
7903 (alloc_destination): Don't clobber conversion result. (Bug#1650)
7904
7905 2009-05-01 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
7906
7907 * charset.c (load_charset): Reformat X==Y==Z to (X==Y)==Z.
7908 (load_charset_map): Remove unnecessary code.
7909
7910 2009-04-30 David Reitter <david.reitter@gmail.com>
7911
7912 * nsterm.m (convert_ns_to_X_keysym): Define function keys f16
7913 through f24.
7914
7915 2009-04-30 Chong Yidong <cyd@stupidchicken.com>
7916
7917 * xfaces.c (face_at_buffer_position): New arg base_face_id.
7918
7919 * xdisp.c (handle_face_prop): Pass base_face_id of iterator to
7920 face_at_buffer_position.
7921 (face_before_or_after_it_pos, get_next_display_element)
7922 (note_mouse_highlight): Update face_at_buffer_position call.
7923
7924 * term.c (term_mouse_highlight):
7925 * msdos.c (IT_note_mouse_highlight):
7926 * fontset.c (Finternal_char_font):
7927 * font.c (font_at, font_range): Update face_at_buffer_position call.
7928
7929 * dispextern.h (face_at_buffer_position): Update prototype.
7930
7931 2009-04-30 Kenichi Handa <handa@m17n.org>
7932
7933 * fontset.c (fontset_find_font): Check if rfont_def is Qnil or not.
7934
7935 2009-04-29 Andreas Schwab <schwab@linux-m68k.org>
7936
7937 * callproc.c (Fcall_process): Fix GC protection. Make sure
7938 current buffer is always restored.
7939
7940 2009-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7941
7942 * atimer.c (init_atimer): Also clear stopped_atimers.
7943
7944 * keyboard.c (init_keyboard) [POLL_FOR_INPUT]: Reset poll_timer.
7945
7946 * process.c (create_process): Clean up merger residues of
7947 2008-07-17 change.
7948
7949 2009-04-29 Ulrich Mueller <ulm@gentoo.org>
7950
7951 * lread.c (Vread_circle): New variable.
7952 (read1): Disable recursive read if Vread_circle is nil.
7953
7954 2009-04-29 Kenichi Handa <handa@m17n.org>
7955
7956 * fontset.h (set_default_ascii_font): Delete extern.
7957
7958 * fontset.c (set_default_ascii_font): Delete this unused function.
7959
7960 * frame.c (x_set_font): When ARG is a font-object, check if the
7961 font-object matches with the ASCII font-spec of the frame's
7962 fontset. If not, create a new fontset for the frame. (Bug #3075)
7963
7964 2009-04-28 Andreas Schwab <schwab@linux-m68k.org>
7965
7966 * fns.c (Flocale_info): Protect vector from GC during decoding.
7967
7968 * process.c (Fstart_process): Protect argv strings from GC during
7969 encoding.
7970
7971 2009-04-27 Andreas Schwab <schwab@linux-m68k.org>
7972
7973 * sysdep.c: Include <ctype.h>.
7974
7975 2009-04-27 David Reitter <david.reitter@gmail.com>
7976
7977 * nsfont.m (nsfont_open): Remove unused variable shrink.
7978 Remove commented-out code.
7979
7980 2009-04-26 Johan Bockgård <bojohan@gnu.org>
7981
7982 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
7983
7984 2009-04-25 Jason Rumney <jasonr@gnu.org>
7985
7986 * w32font.c (clear_cached_metrics): Remove, unused since 2008-08-02.
7987
7988 2009-04-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7989
7990 * fringe.c (init_fringe_bitmap) [HAVE_X_WINDOWS && WORDS_BIG_ENDIAN]:
7991 Swap bytes in short integer if fringe bitmap width > 8.
7992
7993 2009-04-23 Kenichi Handa <handa@m17n.org>
7994
7995 * xfaces.c (Fx_list_fonts): If a font size is specified in
7996 PATTERN, set it in returned scalable fonts.
7997
7998 2009-04-22 Chong Yidong <cyd@stupidchicken.com>
7999
8000 * keyboard.c (Fset_input_meta_mode): Doc fix.
8001
8002 * dispnew.c (Fsend_string_to_terminal): Doc fix.
8003
8004 * data.c (Fterminal_local_value, Fset_terminal_local_value): Doc fixes.
8005
8006 * coding.c (Fterminal_coding_system): Doc fix.
8007
8008 * xfns.c (Fx_display_grayscale_p, Fx_display_pixel_width)
8009 (Fx_display_pixel_height, Fx_display_planes)
8010 (Fx_display_color_cells, Fx_server_max_request_size)
8011 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
8012 (Fx_display_mm_height, Fx_display_mm_width)
8013 (Fx_display_backing_store, Fx_display_visual_class)
8014 (Fx_display_save_under, Fx_close_connection, Fx_synchronize):
8015 Doc fixes, replacing "terminal id" with "terminal object".
8016 (check_x_display_info): Handle terminal objects instead of
8017 terminal ids.
8018
8019 * term.c (Ftty_display_color_p, Ftty_display_color_cells)
8020 (Ftty_type, Fcontrolling_tty_p, Ftty_no_underline, Fsuspend_tty)
8021 (Fresume_tty, Vsuspend_tty_functions, Vresume_tty_functions):
8022 Doc fixes, replacing "terminal id" with "terminal object".
8023
8024 2009-04-21 Kenichi Handa <handa@m17n.org>
8025
8026 * font.c (font_load_for_lface): Cancel previous change (bug#2994).
8027 (font_score): Check AVGWIDTH too.
8028
8029 * coding.c (decode_coding_utf_16): Reduce charbuf_end for the
8030 worst case.
8031 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
8032 (decode_coding_emacs_mule, decode_coding_iso_2022): Likewise.
8033
8034 2009-04-19 Jason Rumney <jasonr@gnu.org>
8035
8036 The following changes fix Bug#3005 for wide glyphs on each platform,
8037 without reintroducing Bug#1258 for stretch glyphs.
8038
8039 * xterm.c (x_draw_bar_cursor): Limit cursor width differently for
8040 BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR using
8041 get_phys_cursor_geometry.
8042
8043 * w32term.c (x_draw_bar_cursor): Limit cursor width differently
8044 for BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR
8045 using get_phys_cursor_geometry.
8046
8047 * nsterm.m (ns_draw_window_cursor): HBAR_CURSOR width already
8048 correctly calculated.
8049
8050 2009-04-19 Jan Djärv <jan.h.d@swipnet.se>
8051
8052 * gtkutil.c (xg_tool_bar_menu_proxy, update_frame_tool_bar):
8053 Use G_CALLBACK instead of GTK_SIGNAL_FUNC which is deprecated.
8054 (xg_initialize): Use g_type_class_ref instead of gtk_type_class which
8055 is deprecated.
8056
8057 2009-04-18 Andreas Schwab <schwab@linux-m68k.org>
8058
8059 * font.c (font_put_frame_data): Use xfree instead of free.
8060
8061 2009-04-17 Juanma Barranquero <lekktu@gmail.com>
8062
8063 * w32font.c (Qja, Qko): Remove declarations.
8064 (syms_of_w32font): Don't DEFSYM them.
8065
8066 2009-04-17 Chong Yidong <cyd@stupidchicken.com>
8067
8068 * font.c (Qja, Qko): Move definitions here from ftfont.c.
8069
8070 * font.h (Qja, Qko): Extern them.
8071
8072 * ftfont.c (Qja, Qko): Remove declarations.
8073
8074 * xfont.c (Qja, Qko): Remove declarations.
8075
8076 2009-04-17 Kenichi Handa <handa@m17n.org>
8077
8078 * editfns.c (Ftranslate_region_internal): Use Fconcat to make a
8079 string from a vector to handle Latin-1 characters correctly.
8080
8081 * ftfont.c (ftfont_pattern_entity): Return a newly allocated
8082 entity even if the cache hits.
8083
8084 2009-04-16 Andreas Schwab <schwab@linux-m68k.org>
8085
8086 * search.c (boyer_moore): Use zero as marker value for a possible
8087 match instead of depending on overflow behavior. (Bug#2844)
8088
8089 * search.c: Use EMACS_INT for buffer positions. Add prototypes.
8090 * lisp.h: Adjust prototypes.
8091
8092 2009-04-16 Chong Yidong <cyd@stupidchicken.com>
8093
8094 * keyboard.c (adjust_point_for_property): Disable 2009-02-12
8095 change (Bug#3003).
8096
8097 2009-04-16 Kenichi Handa <handa@m17n.org>
8098
8099 * xfont.c (xfont_has_char): Special handling of `ja' and `ko' adstyle.
8100
8101 * xftfont.c (xftfont_has_char): Special handling of `ja' and `ko'
8102 adstyle.
8103
8104 * ftfont.c (Qja, Qko): Don't make them static.
8105 (enum ftfont_cache_for): New enum.
8106 (fc_charset_table): Undo the previous change.
8107 (ftfont_get_latin1_charset): Delete it.
8108 (ftfont_pattern_entity): Check cache by ftfont_lookup_cache.
8109 Set FONT_SIZE_INDEX of the entity to 0 for a scalable font. For a
8110 non-scarable font, try to get AVERAGE_WIDTH.
8111 (ftfont_lookup_cache): Argument FOR-FACE is changed to CACHE_FOR.
8112 Change ft_face_cache from a list of a hash-table. Don't check
8113 `ja' and `ko' adstyle here.
8114 (ftfont_get_fc_charset): Call ftfont_lookup_cache with
8115 FTFONT_CACHE_FOR_CHARET.
8116 (ftfont_get_charset): Undo the previous change.
8117 (ftfont_open): Call ftfont_lookup_cache with FTFONT_CACHE_FOR_FACE.
8118 (ftfont_close): Likewise.
8119 (ftfont_has_char): Special handling of `ja' and `ko' adstyle.
8120
8121 * font.c (font_sort_entites): Change the meaning of the arg
8122 BEST-ONLY. Don't optimize for VEC of lenght 1.
8123 (font_select_entity): Just return the value of font_sort_entites.
8124
8125 * xfaces.c (merge_face_vectors): Reflect font properties in
8126 to[LFACE_FONT_INDEX] to the other face attributes. Don't call
8127 font_clear_prop if a face attribute doesn't change.
8128
8129 * charset.h (charset_ksc5601): Extern it.
8130
8131 * charset.c (charset_ksc5601): New variable.
8132 (Fdefine_charset_internal): Set charset_ksc5601.
8133 (init_charset_once): Initialize charset_ksc5601 to -1.
8134
8135 2009-04-15 Dan Nicolaescu <dann@ics.uci.edu>
8136
8137 * fileio.c (history_delete_duplicates): Remove unused declaration.
8138
8139 * callint.c (history_delete_duplicates): New declaration.
8140 (Fcall_interactively): Remove command history duplicates when
8141 history_delete_duplicates is true.
8142
8143 2009-04-14 Eli Zaretskii <eliz@gnu.org>
8144
8145 * buffer.c (syms_of_buffer) <line-spacing>: Doc fix.
8146
8147 2009-04-14 Kenichi Handa <handa@m17n.org>
8148
8149 * font.c (Ffont_info): Fix docstring. Fix the second element of
8150 the returned value (bug#2949).
8151
8152 2009-04-14 Chong Yidong <cyd@stupidchicken.com>
8153
8154 * xdisp.c (Vwrap_prefix, Vline_prefix): Reflow docstrings.
8155
8156 2009-04-14 Kenichi Handa <handa@m17n.org>
8157
8158 * xfont.c (xfont_has_char): The font has C if C is ASCII and the
8159 encoding charset is ascii_compatible.
8160
8161 * charset.c (Fdefine_charset_internal): Make charset
8162 ascii-compatible if the method is CHARSET_METHOD_OFFSET, the
8163 code_offset is 0, and covers all ASCII characters.
8164
8165 2009-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
8166
8167 * nsselect.m (symbol_to_nsstring, clean_local_selection_data)
8168 (ns_string_to_pasteboard_internal):
8169 * nsmenu.m (process_dialog):
8170 * nsimage.m (ns_load_image): Use SDATA and ASET where appropriate.
8171 * nsfont.m (nsfont_open): Use XHASH to make it compile with LISP_UNION.
8172 * lisp.h (Fx_load_color_file): Declare.
8173
8174 2009-04-13 Kenichi Handa <handa@m17n.org>
8175
8176 * font.c (font_delete_unmatched): Preserve the order of list elements.
8177 (font_select_entity): Suppress the code to optimize for the same
8178 kind of fonts.
8179 (font_load_for_lface): Get a font that supports at least ASCII
8180 characters.
8181
8182 * ftfont.c (Qja, Qko): New variables.
8183 (fc_charset_table): Delete uniquifier data for iso8859-1.
8184 (ftfont_get_latin1_charset): New function.
8185 (get_adstyle_property): New function.
8186 (ftfont_pattern_entity): Set FONT_ADSTYLE_INDEX of entity for
8187 bitmap fonts.
8188 (ftfont_lookup_cache): Handle the case that KEY is a font-entity.
8189 Delete iso-8859-1 range from the charset of fonts whose adstyle is
8190 `ko' or `ja'.
8191 (ftfont_get_fc_charset): Call ftfont_lookup_cache with ENTITY.
8192 (ftfont_get_charset): For iso8859-1, call ftfont_get_latin1_charset.
8193 (ftfont_list): Don't refuse a font spec with non-nil `adstyle'
8194 property.
8195 (ftfont_open): Call ftfont_lookup_cache with ENTITY.
8196 (syms_of_ftfont): DEFSYM Qja and Qko.
8197
8198 2009-04-09 Kenichi Handa <handa@m17n.org>
8199
8200 * charset.c (map_charset_chars): For a charset of `superset'
8201 method, fix calculation of code range.
8202
8203 * font.c (font_put_extra): If VAL is nil, delete the slot for PROP
8204 from the list of extra properties.
8205 (font_clear_prop): Be sure to delete `:name' font property.
8206
8207 2009-04-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8208
8209 * dispnew.c (redraw_overlapping_rows): Fix detection of
8210 overlapping for topmost and bottommost rows.
8211
8212 * ftfont.c (ftfont_text_extents): Fix calculation of metrics->descent.
8213
8214 2009-04-06 Jason Rumney <jasonr@gnu.org>
8215
8216 * frame.c (x_set_font): Avoid C99 mid-block variable declaration.
8217
8218 2009-04-06 Kenichi Handa <handa@m17n.org>
8219
8220 * ftxfont.c (ftxfont_draw_backgrond): Fix args to XFillRectangle.
8221
8222 * xftfont.c (xftfont_open): Fix setting font->underline_thickness.
8223
8224 2009-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8225
8226 * ftfont.c (ftfont_open): Fix checking of the return value of
8227 FT_Load_Char. Fix setting font->underline_thickness.
8228
8229 2009-04-04 Chong Yidong <cyd@stupidchicken.com>
8230
8231 * terminal.c (Fterminal_name, Fdelete_terminal, Fterminal_name)
8232 (Fterminal_parameters, Fterminal_parameter)
8233 (Fset_terminal_parameter): In doc string, refer to terminal
8234 objects rather than terminal ids.
8235
8236 2009-04-04 Eli Zaretskii <eliz@gnu.org>
8237
8238 * dosfns.c (system_process_attributes) [SYSTEM_MALLOC]: Don't call
8239 ret_lim_data. (Bug#2867)
8240
8241 2009-04-03 Chong Yidong <cyd@stupidchicken.com>
8242
8243 * term.c (produce_stretch_glyph): Reduce width of stretch glyphs
8244 so they don't get wider than the window, matching 2006-01-23
8245 change to the partner function in xdisp.c (Bug#2800).
8246
8247 2009-04-03 Kenichi Handa <handa@m17n.org>
8248
8249 * print.c (print_object): Make each lowest sub_char_table start a
8250 new line (Bug#2866).
8251
8252 2009-04-02 Kenichi Handa <handa@m17n.org>
8253
8254 * fontset.c (fontset_font): Record no-font when a fontset
8255 explicitly tells not to try another font-specs.
8256
8257 2009-03-30 Pierre Poissinger <pierre.poissinger@gmail.com> (tiny change)
8258
8259 * charset.c (map_charset_for_dump): Add missing UNGCPRO.
8260
8261 2009-03-30 Kenichi Handa <handa@m17n.org>
8262
8263 * fontset.c (fontset_from_font): Specify only registry in a
8264 font-spec for all characters supported by that registry.
8265
8266 * ftfont.c: Fix previous change. Define ftfont_variation_glyphs
8267 even if HAVE_M17N_FLT is not defined.
8268
8269 2009-03-29 Sebastian Rose <sebastian_rose@gmx.de> (tiny change)
8270
8271 * ftfont.c: Conditionalize prototyping and use of
8272 ftfont_variation_glyphs.
8273
8274 2009-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
8275
8276 * frame.c (delete_frame): Work around compiler bug.
8277
8278 * editfns.c (general_insert_function): Adjust to insdel.c changes.
8279 * insdel.c (prepare_to_modify_buffer, signal_before_change):
8280 Some more EMACS_INT.
8281 * lisp.h (copy_text, count_size_as_multibyte): Fix last change.
8282
8283 * xdisp.c (dump_glyph): Fix typo.
8284
8285 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
8286 (adjust_markers_gap_motion, adjust_markers_for_delete)
8287 (adjust_markers_for_insert, adjust_point)
8288 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
8289 (make_gap, copy_text, count_size_as_multibyte, insert)
8290 (insert_and_inherit, insert_before_markers)
8291 (insert_before_markers_and_inherit, insert_1)
8292 (count_combining_before, count_combining_after, insert_1_both)
8293 (insert_from_string, insert_from_string_before_markers)
8294 (insert_from_string_1, insert_from_gap, insert_from_buffer)
8295 (insert_from_buffer_1, adjust_after_replace)
8296 (adjust_after_replace_noundo, adjust_after_insert, replace_range)
8297 (replace_range_2, del_range, del_range_1, del_range_byte)
8298 (del_range_both, del_range_2, modify_region)
8299 (prepare_to_modify_buffer, signal_before_change)
8300 (signal_after_change, Fcombine_after_change_execute): Use EMACS_INT
8301 for buffer positions and sizes.
8302 * lisp.h: Adjust prototypes accordingly.
8303
8304 * fileio.c (adjust_markers_for_delete): Move declaration to lisp.h.
8305 (non_regular_inserted, non_regular_nbytes, read_non_regular)
8306 (Finsert_file_contents): Use EMACS_INT for buffer positions.
8307
8308 * fileio.c (Finsert_file_contents): Don't limit size to INT_MAX/4.
8309
8310 2009-03-27 Jan Djärv <jan.h.d@swipnet.se>
8311
8312 * frame.c (x_set_font): If the fullscreen property is non-nil, adjust
8313 lines and columns so we keep the same pixel height and width.
8314
8315 * xterm.c (handle_one_xevent): Call x_handle_net_wm_state if
8316 the property _NET_WM_STATE has changed.
8317 (x_handle_net_wm_state): New function to update frame parameter
8318 fullscreen.
8319 (x_term_init): Initialize atoms for _NET_WM_STATE.
8320
8321 * xterm.h (struct x_display_info): Add atoms for _NET_WM_STATE.
8322
8323 2009-03-27 Kevin Ryde <user42@zip.com.au>
8324
8325 * keyboard.c (tty_read_avail_input): Don't treat a -1 return from
8326 Gpm_GetEvent as an error that justifies closing the filedescriptor.
8327 * term.c (close_gpm): Get the filedescriptor as a (new) parameter.
8328 (Fgpm_mouse_stop): Pass that new parameter.
8329 * termhooks.h (close_gpm): Adjust prototype.
8330
8331 2009-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
8332
8333 * lisp.h (Fx_focus_frame): Declare.
8334
8335 * callint.c (Fcall_interactively): For '^' just delegate the work to
8336 handle-shift-selection.
8337 (syms_of_callint): Move declaration of shift-select-mode to simple.el.
8338
8339 2009-03-24 Chong Yidong <cyd@stupidchicken.com>
8340
8341 * editfns.c (Ffloat_time): Doc fix (Bug#2768).
8342
8343 * data.c (Qinteractive_form): New variable.
8344 (Finteractive_form): Use it.
8345
8346 * eval.c (Fcommandp): Use Qinteractive_form.
8347
8348 2009-03-24 Jason Rumney <jasonr@gnu.org>
8349
8350 * fileio.c (Fsubstitute_in_file_name): Always work on a copy.
8351 Calculate total size precisely. Decode environment variables
8352 before substituting. (Bug#38)
8353
8354 2009-03-24 Kenichi Handa <handa@m17n.org>
8355
8356 * font.c (find_font_encoding): Return Qnil for unsupported
8357 encoding (Bug#2722).
8358
8359 2009-03-23 Jan Djärv <jan.h.d@swipnet.se>
8360
8361 * gtkutil.c (xg_display_open): Assign a value to gdpy_def, check
8362 that gdpy is set.
8363
8364 2009-03-22 Alan Mackenzie <acm@muc.de>
8365
8366 * callint.c (Finteractive): Clarify the doc string - even
8367 promptless elements need \n separators.
8368
8369 2009-03-22 Jason Rumney <jasonr@gnu.org>
8370
8371 * w32term.c (syms_of_w32term): Doc fix for
8372 x-use-underline-position-properties.
8373
8374 2009-03-21 Eli Zaretskii <eliz@gnu.org>
8375
8376 * w32.c (getpwuid): Change argument type to unsigned.
8377 (struct w32_id): Change type of `rid' member to unsigned.
8378 (w32_cached_id, w32_add_to_cache, get_name_and_id): Change type of
8379 argument ID to unsigned. All callers changed.
8380 (getuid, geteuid, getgid, getegid): Change return type to unsigned.
8381
8382 2009-03-20 Eli Zaretskii <eliz@gnu.org>
8383
8384 * editfns.c (Fuser_uid, Fuser_real_uid): If UID as EMACS_INT is
8385 negative, produce a float value.
8386
8387 * dired.c (make_uid, make_gid): New functions.
8388 (Ffile_attributes): Use them to avoid negative UID and GID.
8389
8390 2009-03-20 Juanma Barranquero <lekktu@gmail.com>
8391
8392 * keyboard.c (Fcurrent_idle_time): Reflow docstring.
8393 (syms_of_keyboard) <command-hook-internal, input-method-function>:
8394 Fix typos in docstrings.
8395
8396 2009-03-19 Kenichi Handa <handa@m17n.org>
8397
8398 * fontset.c (Fset_fontset_font): When a spec of ASCII font is
8399 changed, use font_load_for_lface to get a new font object.
8400 Call free_realized_fontset after handling ASCII font change.
8401
8402 * frame.c (x_set_font): Handle the case that ARG is a cons.
8403
8404 2009-03-19 Glenn Morris <rgm@gnu.org>
8405
8406 * fileio.c (Fsubstitute_in_file_name): Doc fix.
8407
8408 2009-03-19 Chong Yidong <cyd@stupidchicken.com>
8409
8410 * indent.c (Fvertical_motion): Undo 2005-01-19 change (Bug#2694).
8411
8412 2009-03-19 Kenichi Handa <handa@m17n.org>
8413
8414 * charset.c (load_charset_map_from_file): When a mapfile can't be
8415 loaded, signal an error.
8416
8417 2009-03-18 Eli Zaretskii <eliz@gnu.org>
8418
8419 * dired.c (Ffile_attributes): Make sure UID and GID are always
8420 positive, even if the value is too large for a positive EMACS_INT.
8421 Doc fix.
8422
8423 * editfns.c (Fuser_login_name): Support float arguments. Doc fix.
8424
8425 2009-03-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8426
8427 * xmenu.c (xdialog_show): Move Fredisplay call ...
8428 (Fx_popup_dialog): ... here.
8429
8430 2009-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
8431
8432 * dired.c (file_name_completion): Disable the first optimization just
8433 installed, since it is not implemented correctly.
8434
8435 2009-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
8436
8437 * dired.c (file_name_completion): Check completion-ignored-extensions
8438 only if the entry can affect bestmatch.
8439 Stop the search early, as Ftry_completion already does.
8440
8441 2009-03-17 Chong Yidong <cyd@stupidchicken.com>
8442
8443 * minibuf.c (Vminibuffer_completion_confirm): Doc fix.
8444
8445 2009-03-15 Chong Yidong <cyd@stupidchicken.com>
8446
8447 * keyboard.c (parse_menu_item): Don't display remappings as menu
8448 equivalent bindings (Bug#788).
8449
8450 2009-03-15 Jason Rumney <jasonr@gnu.org>
8451
8452 * w32term.h (WM_EMACS_PAINT): New message.
8453 * w32term.c (w32_read_socket): Use it instead of WM_PAINT.
8454 * w32fns.c (w32_wnd_proc): Change WM_PAINT to WM_EMACS_PAINT
8455 before passing to lisp thread. (Bug#950)
8456
8457 2009-03-14 David Reitter <david.reitter@gmail.com>
8458
8459 * nsterm.m (ns_shutdown_properly, -terminate): Remove global state
8460 variable as it was never reset.
8461 (ns_term_init): Remove initialization of Lisp-settable defaults
8462 and ns_expand_space.
8463 (-setPanelFromDefaultValues): Remove ns_expand_space.
8464 (-showPreferencesWindow): Send new KEY_NS_SHOW_PREFS key.
8465 * nsfont.m (nsfont_open): Remove ns_expand_space, assume -0.5
8466 i.e. no additional spacing, similar to Carbon port.
8467
8468 * nsterm.h: Define KEY_NS_SHOW_PREFS key.
8469 * nsfns.m (ns-popup-prefs-panel): Remove.
8470
8471 2009-03-14 Jan Djärv <jan.h.d@swipnet.se>
8472
8473 * sound.c (alsa_configure): Remove call to deprecated
8474 snd_pcm_sw_params_set_xfer_align.
8475
8476 2009-03-14 Stephen Berman <stephen.berman@gmx.net>
8477
8478 * gtkutil.c (xg_tool_bar_callback): Set focus back to the frame
8479 after clicking in a detached tool bar.
8480 (xg_tool_bar_proxy_callback): Remove call to Fx_focus_frame.
8481
8482 2009-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
8483
8484 * fontset.c (fontset_from_font, Ffontset_info): YAILOM (Yet another
8485 int/Lisp_Object mixup).
8486
8487 2009-03-13 Kenichi Handa <handa@m17n.org>
8488
8489 * fontset.c (Ffontset_info, check_fontset_name): New arg frame.
8490 Handle NAME nil and t correctly. Callers changed.
8491 (font_def_arg, add_arg, from_arg, to_arg): Delete them.
8492 (set_fontset_font): Change ARG to a vector. Handle range_list in
8493 ARG correctly.
8494 (Fset_fontset_font): Fix the case that TARGET is both a script
8495 name and charset name. Adjust the arg to set_fontset_font for
8496 the above change.
8497 (fontset_from_font): Fix previous change.
8498 (Ffontset_info): Adjust for the 2008-07-09 change of fontset
8499 entry. If FONTSET is the default fontset, don't set the extra
8500 slot of the returning char-table.
8501
8502 2009-03-12 Juanma Barranquero <lekktu@gmail.com>
8503
8504 * nsfns.m (Fx_close_connection): Doc fix.
8505 (Fns_do_applescript): Reflow docstring.
8506 (Fns_hide_others, Fns_hide_emacs, Fns_convert_utf8_nfd_to_nfc)
8507 (Fx_display_pixel_width, Fx_display_pixel_height)
8508 (Fns_display_usable_bounds, Fx_display_planes, Fx_show_tip):
8509 Fix typos in docstrings.
8510 (Fns_set_alpha): Fix typos in error messages.
8511
8512 2009-03-12 David Reitter <david.reitter@gmail.com>
8513
8514 * termhooks.h [HAVE_NS]: Define NS_NONKEY_EVENT to be used for
8515 non-key system events on NS. Formerly, NON_ASCII_KEYSTROKE_EVENT
8516 were used for such events.
8517
8518 * nsterm.m (newFrame, openFile, fulfillService, changeFont)
8519 (toggleToolbar, performDragOperation, runHelp): Use it.
8520
8521 * keyboard.c (parse_menu_item) [HAVE_NS]: Treat new event like
8522 NON_ASCII_KEYSTROKE_EVENT, but set used_mouse_menu.
8523
8524 2009-03-11 Kenichi Handa <handa@m17n.org>
8525
8526 * font.h (font_open_by_spec): Extern it.
8527
8528 * font.c (font_open_by_spec): New function.
8529 (font_open_by_name): Use font_open_by_spec.
8530
8531 * frame.c (x_set_font): When ARG is a font-object, don't alter the
8532 fontset of the frame.
8533
8534 * fontset.c (Fset_fontset_font): When a font for ASCII is changed,
8535 modify the default font of frames that use this fontset.
8536 (num_auto_fontsets): New variable.
8537 (fontset_from_font): Use num_auto_fontsets to decide a fontset
8538 name. Be sure to set FONTSET_ASCII to the correct font name.
8539 (update_auto_fontset_alist): New function.
8540
8541 2009-03-11 Juanma Barranquero <lekktu@gmail.com>
8542
8543 * makefile.w32-in: Update dependencies.
8544
8545 2009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
8546
8547 * nsfns.m (syms_of_nsfns): Remove Qbuffered.
8548
8549 2009-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
8550
8551 * buffer.c (Fswitch_to_buffer): Revert part of 2008-10-21's change.
8552
8553 2009-03-10 Chong Yidong <cyd@stupidchicken.com>
8554
8555 * lread.c (Feval_buffer): Doc fix.
8556
8557 2009-03-09 Kenichi Handa <handa@m17n.org>
8558
8559 * charset.c (Qfile_name_handler_alist): Extern it.
8560 (load_charset_map_from_file): Temporarily bind
8561 `file-name-handler-alist' to nil while calling openp. (Bug#2435)
8562
8563 2009-03-06 Aaron Ecay <aaronecay@gmail.com> (tiny change)
8564
8565 * nsterm.m (ns_draw_vertical_window_border): Draw 1 pixel wide,
8566 not two, and use NSRectFill instead of NSDrawGroove. (Bug#2352)
8567
8568 2009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
8569
8570 * nsterm.m: Include <signal.h> for SIGTERM used in ns_term_shutdown.
8571 (x_set_window_size): Change back to calculated method of setting
8572 toolbar height under Cocoa. (Bug#2546)
8573 (EmacsView-windowWillUseStandardFrame:defaultFrame:): New method.
8574 (EmacsView-drawRect:): Completely shortcircuit if ns_in_resize.
8575
8576 * nsfns.m (ns_appkit_version_int): Fix typo in the version macro.
8577
8578 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Don't add
8579 accelerator in parens under GNUstep.
8580
8581 2009-03-06 Kenichi Handa <handa@m17n.org>
8582
8583 These changes are to detect incorrect composition sequence without
8584 looking ahead the source. (Bug#2370)
8585
8586 * coding.h: Include "composite.h".
8587 (enum compisition_state): New enum.
8588 (struct compisition_status): New struct.
8589 (struct iso_2022_spec): New member cmp_status.
8590 (struct emacs_mule_spec): New struct.
8591 (struct coding_system): New members ctext_extended_segment_len and
8592 embedded_utf_8. Change the union member
8593 spec.emacs_mule_full_support to spec.emacs_mule.
8594
8595 * coding.c (CODING_ISO_CMP_STATUS): New macro.
8596 (CODING_ISO_EXTSEGMENT_LEN, CODING_ISO_EMBEDDED_UTF_8): New macros.
8597 (MAX_ANNOTATION_LENGTH): Define to 5.
8598 (ADD_COMPOSITION_DATA): New arg nbytes.
8599 (emacs_mule_char): New arg cmp_status.
8600 (DECODE_EMACS_MULE_COMPOSITION_CHAR): Delete it.
8601 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): New arg c.
8602 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New arg c.
8603 (DECODE_EMACS_MULE_21_COMPOSITION): Delete the arg c.
8604 (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Likewise.
8605 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Likewise.
8606 (DECODE_EMACS_MULE_COMPOSITION_START): New macro.
8607 (EMACS_MULE_COMPOSITION_END): New macro.
8608 (emacs_mule_finish_composition): New function.
8609 (EMACS_MULE_MAYBE_FINISH_COMPOSITION): New macro.
8610 (decode_coding_emacs_mule): Avoid long looking ahead while
8611 handling composition.
8612 (DECODE_COMPOSITION_RULE): Argument changed to rule and nbytes.
8613 (ENCODE_COMPOSITION_RULE): New macro.
8614 (finish_composition): New function.
8615 (MAYBE_FINISH_COMPOSITION): Call finish_composition.
8616 (DECODE_COMPOSITION_START): New implementation.
8617 (DECODE_COMPOSITION_END): Likewise.
8618 (STORE_COMPOSITION_RULE): New macro.
8619 (decode_coding_iso_2022): Avoid long looking ahead while handling
8620 composition, CTEXT extended segment, and embedded UTF-8.
8621 (setup_coding_system): For a coding of type iso-2022, reset
8622 CODING_ISO_EXTSEGMENT_LEN (coding) and
8623 CODING_ISO_EMBEDDED_UTF_8 (coding).
8624 (get_translation): Delete arguments last_block, from_nchars,
8625 to_nchars. Callers changed.
8626 (produce_chars): Don't modify charbuf. Adjusted for the change of
8627 get_translation.
8628 (produce_composition): Adjust for the new annotation sequence.
8629 (handle_composition_annotation): Likewise.
8630 (consume_chars): Adjust for the change of get_translation.
8631
8632 2009-03-05 Adrian Robert <Adrian.B.Robert@gmail.com>
8633
8634 * nsterm.m (ns_select): Shortcircuit if reentrant call. (Bug#2564)
8635
8636 2009-03-05 Kenichi Handa <handa@m17n.org>
8637
8638 * font.c (font_select_entity): New function.
8639 (font_find_for_lface): Use font_select_entity to select a font.
8640
8641 * fontset.c (fontset_find_font): If a font found without
8642 restricting to the characters C doesn't support C, try to find a
8643 font with C restriction.
8644
8645 2009-03-04 Nikolaj Schumacher <me@nschum.de>
8646
8647 * nsfont.m (nsfont_draw): Compare ns_antialias_text against lisp value.
8648
8649 2009-03-04 Jason Rumney <jasonr@gnu.org>
8650
8651 * w32fns.c (w32_wnd_proc): Only ignore IME messages for the
8652 characters that have already been read. (Bug#2569)
8653
8654 * image.c (xbm_read_bitmap_data, png_load, svg_load_image):
8655 Log an error message if check_image_size failed.
8656 (xpm_load_image, pbm_load, jpeg_load, tiff_load, gif_load)
8657 (gs_load): Mention max-image-size in size error message. (Bug#2560)
8658
8659 2009-03-02 Eli Zaretskii <eliz@gnu.org>
8660
8661 * callproc.c (Fcall_process): Bind inhibit-modification-hooks to t
8662 when decoding process output.
8663
8664 2009-03-01 Richard M Stallman <rms@gnu.org>
8665
8666 * m/mips.h (DATA_SEG_BITS, XUINT, XSET): Definitions disabled.
8667
8668 * emacs.c (gdb_data_seg_bits) [USE_LSB_TAG]: Make it 0.
8669
8670 2009-02-28 Eli Zaretskii <eliz@gnu.org>
8671
8672 * coding.c (decode_coding_utf_8, decode_coding_utf_16)
8673 (decode_coding_emacs_mule, decode_coding_iso_2022)
8674 (encode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
8675 (decode_coding_raw_text, decode_coding_charset)
8676 (setup_coding_system, decode_eol, decode_coding, consume_chars):
8677 Honor inhibit-eol-conversion. (Bug #2186)
8678
8679 2009-02-28 Jason Rumney <jasonr@gnu.org>
8680
8681 * coding.c (detect_coding_charset): If not checking latin extra,
8682 fail on characters between 0x80 and 0xA0. (Bug#2354)
8683
8684 2009-02-28 Eli Zaretskii <eliz@gnu.org>
8685
8686 * coding.c (detect_coding_charset): Fix change from 2008-10-21.
8687 Also, check iso-latin-*, not only iso-8859-*. (Bug#2497)
8688
8689 2009-02-27 Glenn Morris <rgm@gnu.org>
8690
8691 * callint.c (Finteractive): Doc fix.
8692
8693 2009-02-27 Kenichi Handa <handa@m17n.org>
8694
8695 * lread.c (read_escape): Signal an error for invalid \UXXXXXXXX.
8696
8697 2009-02-27 Chong Yidong <cyd@stupidchicken.com>
8698
8699 * font.c (font_style_to_value): Set value for unknown symbols to
8700 100 instead of 255.
8701 (weight_table, slant_table, width_table): Treat "unspecified" as
8702 the default value.
8703
8704 2009-02-26 Juanma Barranquero <lekktu@gmail.com>
8705
8706 * fileio.c (Fnext_read_file_uses_dialog_p): Fix typo in docstring.
8707
8708 2009-02-25 Juanma Barranquero <lekktu@gmail.com>
8709
8710 * lread.c (Fload): Stop checking Vloads_in_progress and signal
8711 error as soon as a recursive load is detected.
8712
8713 2009-02-24 Adrian Robert <Adrian.B.Robert@gmail.com>
8714
8715 * nsterm.m (ns_ring_bell): Convert rect to window coordinates
8716 before caching.
8717
8718 2009-02-24 Kenichi Handa <handa@m17n.org>
8719
8720 * fontset.c (fontset_find_font): Fix the condition for checking
8721 unavailable font.
8722
8723 2009-02-24 Glenn Morris <rgm@gnu.org>
8724
8725 * xfaces.c (Finternal_set_font_selection_order): Remove leading
8726 whitespace that confuses documentation.
8727
8728 2009-02-23 Miles Bader <miles@gnu.org>
8729
8730 * process.c (Flist_system_processes, Fprocess_attributes)
8731 (syms_of_process): Rename `system-process-attributes' to
8732 `process-attributes'.
8733
8734 2009-02-22 Andreas Schwab <schwab@linux-m68k.org>
8735
8736 * coding.h (struct coding_system): Make safe_charsets a pointer to
8737 unsigned char.
8738 * coding.c (CODING_ISO_REQUEST): Check for safe_charsets content
8739 being 255.
8740 (SAFE_CHARSET_P): Likewise.
8741 (setup_iso_safe_charsets): Properly setup safe_charsets.
8742 (Fdefine_coding_system_internal): Likewise.
8743 (setup_coding_system): Likewise. Remove unneeded casts.
8744 (detect_coding_iso_2022): Compare Viso_2022_charset_list with
8745 CODING_ATTR_CHARSET_LIST, not CODING_ATTR_SAFE_CHARSETS. Remove
8746 unneeded casts.
8747
8748 * insdel.c (del_range_2): Don't modify gap contents when called
8749 from decode_coding_object. (Bug#1809)
8750
8751 2009-02-21 Chong Yidong <cyd@stupidchicken.com>
8752
8753 * data.c (syms_of_data): Define Qfont_spec, Qfont_entity, and
8754 Qfont_object.
8755 (Ftype_of): Recognize font objects.
8756
8757 * lisp.h: Define Qfont_spec, Qfont_entity, Qfont_object extern.
8758
8759 * font.c (Qfont_spec, Qfont_entity, Qfont_object): Definitions
8760 moved to data.c.
8761
8762 2009-02-20 Adrian Robert <Adrian.B.Robert@gmail.com>
8763
8764 * nsterm.m (x_make_frame_invisible): Unset async_visible,
8765 async_iconified. Based on a patch by Christian Lynbech
8766 <christian.lynbech@tieto.com>.
8767 (EmacsView-windowDidMiniaturize:): Unset async_visible.
8768
8769 2009-02-20 Glenn Morris <rgm@gnu.org>
8770
8771 * syntax.c (Fskip_chars_forward): Fix doc typo.
8772
8773 2009-02-20 Chong Yidong <cyd@stupidchicken.com>
8774
8775 * keymap.c (Fkeymap_parent): Doc fix (Bug#2391).
8776
8777 2009-02-19 Chong Yidong <cyd@stupidchicken.com>
8778
8779 * xfns.c (Fx_create_frame): Give Xft driver a higher priority.
8780
8781 2009-02-19 Kenichi Handa <handa@m17n.org>
8782
8783 * coding.c (detect_coding): Preserve coding->mode.
8784 Don't overflow coding->carryover. (Bug#2370)
8785
8786 2009-02-18 Dan Nicolaescu <dann@ics.uci.edu>
8787
8788 * m/ibmrs6000.h (ADDR_CORRECT): Restore, removed by mistake on 2008-07-23.
8789
8790 2009-02-18 Kenichi Handa <handa@m17n.org>
8791
8792 * font.c (font_check_otf_features): Fix handling of `nil' element.
8793 (Ffont_spec): Describe :lang and :otf in the docstring.
8794
8795 2009-02-16 Andreas Schwab <schwab@suse.de>
8796
8797 * coding.c (Fcheck_coding_systems_region): Fix test for unibyte
8798 string.
8799
8800 2009-02-16 Kenichi Handa <handa@m17n.org>
8801
8802 * coding.c (Fcheck_coding_systems_region): Fix typo; Qt -> Qnil.
8803 (Bug#1723)
8804
8805 2009-02-14 Chong Yidong <cyd@stupidchicken.com>
8806
8807 * dispextern.h (struct iterator_stack_entry): New line_wrap member.
8808
8809 * xdisp.c (push_it, pop_it): Save and restore line_wrap.
8810 (handle_line_prefix): Suppress wrapping of wrap prefixes.
8811
8812 2009-02-14 Eli Zaretskii <eliz@gnu.org>
8813
8814 * msdos.c (MAX_SCREEN_BUF): New macro.
8815 (IT_write_glyphs): Make screen_buf[] always be MAX_SCREEN_BUF-long.
8816 Encode the entire run of glyphs sharing the same face, instead of
8817 doing that one glyph at a time (fixes a bug with displaying
8818 double-size characters).
8819
8820 2009-02-13 Adrian Robert <Adrian.B.Robert@gmail.com>
8821
8822 * nsfns.m (ns-read-file-name): BLOCK_INPUT while showing dialog.
8823
8824 * nsmenu.m (pop_down_menu): Check popup_activated_flag.
8825 (ns_popup_dialog, EmacsDialogPanel-runDialogAt:): Let
8826 pop_down_menu do the cleanup work as it is always called. (Bug#2154)
8827
8828 * nsfont.m (nsfont_make_fontset_for_font): For now, don't try to
8829 set fontset font for "mathematical-" sub-scripts. (Bug #2218)
8830
8831 2009-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
8832
8833 * keyboard.c (adjust_point_for_property): Allow stopping between two
8834 invisible areas.
8835
8836 2009-02-12 Jason Rumney <jasonr@gnu.org>
8837
8838 * w32font.c (check_face_name): Check for fake helv. (Bug#2275)
8839 (add_font_entity_to_list): Call check_face_name even when family
8840 is unspecified.
8841
8842 * w32term.c (x_display_pixel_height, x_display_pixel_width):
8843 Release DC when finished. Use NULL window to refer to desktop.
8844 (w32_term_init): Use NULL window to refer to desktop. (Bug#460)
8845
8846 * w32font.c (add_font_entity_to_list): Fix check for substituted
8847 raster fonts. (Bug#2219)
8848
8849 2009-02-12 Kenichi Handa <handa@m17n.org>
8850
8851 * composite.c (MAX_AUTO_COMPOSITION_LOOKBACK): New macro.
8852 (composition_gstring_width): Fix handling of LGLYPH_YOFF.
8853 (autocmp_chars): Use fast_looking_at. Don't compose more
8854 characters than MAX_COMPOSITION_COMPONENTS.
8855 (find_automatic_composition): While looking forward and backward,
8856 check static composition. Fix where to stop looking forward.
8857 (composition_adjust_point): Fix checking of static composition.
8858 (Fcomposition_get_gstring): Pay attention to
8859 MAX_COMPOSITION_COMPONENTS.
8860
8861 * lisp.h (fast_looking_at): Extern it.
8862
8863 * search.c (fast_looking_at): New function.
8864
8865 * term.c (encode_terminal_code): Adjust for the change of
8866 <struct glyph>.u.cmp.to.
8867 (append_composite_glyph): Likewise.
8868
8869 * xdisp.c (fill_gstring_glyph_string): Adjust for the change of
8870 <struct glyph>.u.cmp.to. Check if the glyph belongs to the same
8871 composition.
8872 (append_composite_glyph): Adjust for the change of
8873 <strcut glyph>.u.cmp.to.
8874
8875 2009-02-11 Juanma Barranquero <lekktu@gmail.com>
8876
8877 * casetab.c (init_casetab_once):
8878 * coding.c (ALLOC_CONVERSION_WORK_AREA):
8879 * font.c (font_update_lface):
8880 * fontset.c (Fnew_fontset):
8881 * ftfont.c (ftfont_drive_otf):
8882 * xfont.c (xfont_open):
8883 * xftfont.c (xftfont_get_xft_draw): Remove spurious semicolons.
8884
8885 2009-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
8886
8887 * fileio.c (Fwrite_region): !NILP -> CONSP.
8888
8889 2009-02-10 Andreas Schwab <schwab@suse.de>
8890
8891 * process.c (send_process): Properly relocate pointer into data
8892 when using encoded data. (Bug#2272)
8893
8894 2009-02-08 ARISAWA Akihiro <ari@mbf.sphere.ne.jp>
8895
8896 * coding.c (detect_coding_charset): Fix previous change.
8897
8898 2009-02-08 Jason Rumney <jasonr@gnu.org>
8899
8900 * w32fns.c (w32_hide_hourglass): Handle case where frame
8901 disappeared while hourglass was displayed. (Bug #2193)
8902
8903 2009-02-07 Andreas Schwab <schwab@suse.de>
8904
8905 * unexelf.c (unexec): Fix error message.
8906
8907 2009-02-07 Adrian Robert <Adrian.B.Robert@gmail.com>
8908
8909 * nsterm.m (EmacsApp-sendEvent:): Defer NSApplicationDefined event
8910 when modal window is active. (Bug #2152)
8911 (applicationShouldTerminate:): Remove now-unneeded while loop
8912 around NSRunAlertPanel.
8913
8914 * nsmenu.m (popupSession): New file-global variable.
8915 (pop_down_menu): End the popupSession before closing dialog.
8916 (ns_popup_dialog): BLOCK_INPUT around dialog presentation.
8917 (EmacsDialogPanel-runDialogAt:): Don't place window (superfluous),
8918 don't query NSApp for events (just sleep instead).
8919
8920 2009-02-07 Eli Zaretskii <eliz@gnu.org>
8921
8922 * coding.c (syms_of_coding) <translation-table-for-input>:
8923 Modify doc string to discourage use for character code unification.
8924
8925 2009-02-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8926
8927 * atimer.c (run_timers): Update pending_atimers.
8928
8929 2009-02-06 Chong Yidong <cyd@stupidchicken.com>
8930
8931 * image.c (svg_load_image): Fix last change.
8932
8933 * xfns.c (Fx_create_frame): Signal an error if no font is
8934 found (Bug#2147).
8935
8936 2009-02-05 Juanma Barranquero <lekktu@gmail.com>
8937
8938 * character.c (syms_of_character) <script-representative-chars>:
8939 Fix typo in docstring.
8940
8941 2009-02-04 Adrian Robert <Adrian.B.Robert@gmail.com>
8942
8943 * nsmenu.m (pop_down_menu): New function.
8944 (ns_popup_dialog): Call it on unwind.
8945 (EmacsDialogPanel-runDialogAt:): Check popup_activated_flag and
8946 call timer_check() (Bug#2154).
8947 (EmacsMenu-menuNeedsUpdate:): Don't call ns_update_menu if
8948 handling_signal is set.
8949 (EmacsMenu-fillWithWidgetValue:): Set submenu title.
8950
8951 * config.in: Get rid of COCOA_EXPERIMENTAL_CTRL_G.
8952
8953 * s/darwin.h: Same and NO_SOCK_SIGIO as well.
8954
8955 * nsterm.m (ns_read_socket): Same and don't set handling_signal.
8956
8957 * keyboard.c (poll_for_input_1, handle_async_input):
8958 Set handling_signal under HAVE_NS.
8959
8960 2009-02-04 Glenn Morris <rgm@gnu.org>
8961
8962 * fileio.c (Fwrite_region): Doc fix (mention annotate-functions).
8963
8964 2009-02-04 Kenichi Handa <handa@m17n.org>
8965
8966 * Makefile.in (composite.o): Depends on frame.h and termhooks.h.
8967
8968 * charset.c (Fchar_charset): New optional arg restriction.
8969
8970 * coding.h (coding_system_charset_list): Extern it.
8971
8972 * coding.c (coding_system_charset_list): New function.
8973
8974 * composite.c: Include coding.h and termhooks.h.
8975 (composition_gstring_p): Fix for the terminal case.
8976 (composition_gstring_width): Likewise.
8977 (fill_gstring_body): Likewise.
8978 (autocmp_chars): For terminal, call Fcomposition_get_gstring with
8979 the frame.
8980 (composition_compute_stop_pos): Adjust cmp_it->stop_pos if point
8981 is within a composition.
8982 (Fcomposition_get_gstring): Fix the terminal case.
8983
8984 * term.c (encode_terminal_code): Fix handling of composition.
8985 (produce_composite_glyph): For static composition, get pixel_width
8986 from struct composition.
8987
8988 2009-02-02 Andreas Schwab <schwab@suse.de>
8989
8990 * unexelf.c (unexec): Handle unaligned bss offset.
8991
8992 2009-02-01 Adrian Robert <Adrian.B.Robert@gmail.com>
8993
8994 * nsterm.m (ns_read_socket): Copy 2009-01-29 and 2009-01-30
8995 XT,w32read_socket changes to ns_read_socket.
8996
8997 * keyboard.c (handle_interrupt): Don't call
8998 quit_throw_to_read_char() under NS.
8999
9000 * blockinput.h: Remove NS-specific code.
9001
9002 2009-01-30 Dan Nicolaescu <dann@ics.uci.edu>
9003
9004 * dispnew.c (window_change_signal): Don't try to get the size of a
9005 suspended tty frame.
9006 * term.c (Fresume_tty): Resize if the size has changed while the
9007 tty was suspended.
9008
9009 * alloc.c (mark_stack): Properly conditionalize previous change.
9010
9011 2009-01-30 Juanma Barranquero <lekktu@gmail.com>
9012
9013 * w32inevt.c (w32_console_read_socket) [SYNC_INPUT]:
9014 * w32term.c (w32_read_socket) [SYNC_INPUT]:
9015 Remove; this code is not used on Windows.
9016
9017 2009-01-30 Eli Zaretskii <eliz@gnu.org>
9018
9019 * coding.c (detect_eol, decode_eol): Handle text with DOS-style
9020 EOLs that also has stray ^M characters.
9021
9022 2009-01-30 Juanma Barranquero <lekktu@gmail.com>
9023
9024 * atimer.c (run_timers, alarm_signal_handler):
9025 * keyboard.c (pending_signals, handle_async_input, init_keyboard):
9026 * w32inevt.c (w32_console_read_socket):
9027 * w32term.c (w32_read_socket):
9028 * xterm.c (XTread_socket): Use "#ifdef SYNC_INPUT" where appropriate.
9029
9030 2009-01-30 Chong Yidong <cyd@stupidchicken.com>
9031
9032 * callproc.c (Vtemp_file_name_pattern): Remove DEFVAR_LISP.
9033 Initialize it as a relative filename pattern.
9034 (init_callproc): Don't initialize Vtemp_file_name_pattern here.
9035 (Fcall_process_region): Simplify temp file creation using
9036 temporary-file-directory.
9037
9038 2009-01-29 Eli Zaretskii <eliz@gnu.org>
9039
9040 * msdos.c: Rename pending_signals to msdos_pending_signals.
9041 (sig_suspender, sigprocmask): Adjust.
9042
9043 2009-01-29 Chong Yidong <cyd@stupidchicken.com>
9044
9045 * keyboard.c (pending_signals): New var.
9046 (poll_for_input, input_available_signal, init_keyboard): Set it.
9047 (process_pending_signals): New function.
9048
9049 * lisp.h (QUIT): Check pending_signals instead of
9050 interrupt_input_pending. Use process_pending_signals.
9051
9052 * atimer.c (run_timers, alarm_signal_handler): Update pending_signals.
9053
9054 * process.c (wait_reading_process_output): Use process_pending_signals.
9055
9056 * sysdep.c (emacs_write): Use process_pending_signals.
9057
9058 * xterm.c (XTread_socket): Update pending_signals.
9059
9060 * w32term.c (w32_read_socket): Update pending_signals.
9061
9062 * w32inevt.c (w32_console_read_socket): Update pending_signals.
9063
9064 2009-01-29 Kenichi Handa <handa@m17n.org>
9065
9066 * xftfont.c (xftfont_has_char): New function.
9067 (syms_of_xftfont): Register xftfont_has_char in xftfont_driver.
9068
9069 2009-01-29 Adrian Robert <Adrian.B.Robert@gmail.com>
9070
9071 * nsterm.h (EmacsPrefsController.cursorBlinkSlider): Only define
9072 under GNUstep.
9073 (ns_query_color): New declaration.
9074
9075 * nsterm.m (ns_confirm_quit): New variable.
9076 (ns_set_default_prefs, syms_of_nsterm, ns_term_init): Initialize it.
9077 (EmacsApp-applicationShouldTerminate:): Use it.
9078 (EmacsPrefsController): Let user set it.
9079 (ns_query_color): New function.
9080 (ns_defined_color): Use it.
9081 (ns_initialize): Drop.
9082 (ns_term_init): Add two lines from ns_initialize(), and set
9083 input_interrupt_mode to nil.
9084
9085 * image.c (svg_load_image): Don't right-shift background RGB when
9086 obtained from FRAME_BACKGROUND_PIXEL. Under HAVE_NS use ns_query_color.
9087
9088 2009-01-28 Kenichi Handa <handa@m17n.org>
9089
9090 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
9091 (fontset_get_font_group): Remember that no font-group is specified
9092 for C.
9093
9094 2009-01-27 Chong Yidong <cyd@stupidchicken.com>
9095
9096 * fns.c (concat): Check for string overflow (bug#1787).
9097
9098 * undo.c (undo_limit, undo_strong_limit, Vundo_outer_limit):
9099 Quadruple undo limits (bug#1501).
9100
9101 2009-01-27 Kenichi Handa <handa@m17n.org>
9102
9103 * ftfont.c (ftfont_has_char): If the arg FONT is a font-object,
9104 directly use GT_Get_Char_index.
9105
9106 * xftfont.c (struct xftfont_info): New member `index'.
9107
9108 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
9109 (Ffontset_font): Adjust for the change of fontset entry.
9110
9111 2009-01-26 Kenichi Handa <handa@m17n.org>
9112
9113 * fontset.c (fontset_find_font): Fix handling of non-cons return
9114 value of fontset_get_font_group.
9115 (fontset_font): Revert last change.
9116
9117 2009-01-26 Jason Rumney <jasonr@gnu.org>
9118
9119 * w32font.c (w32font_list_internal): Return quickly if registry is
9120 unknown. Simplify final return.
9121 (add_font_entity_to_list): Break complex logic down into more
9122 manageable chunks. Move unknown registry check to
9123 w32font_list_internal.
9124
9125 2009-01-25 Adrian Robert <Adrian.B.Robert@gmail.com>
9126
9127 Changes to remove Feval calls from GUI under NS.
9128
9129 * nsterm.h: Move KEY_NS_... definitions here from nsterm.m.
9130 Add NS_TOGGLE_TOOLBAR, NS_PUT_WORKING_TEXT, NS_UNPUT_WORKING_TEXT.
9131 Remove NS_INSERT_WORKING_TEXT, NS_DELETE_WORKING_TEXT.
9132
9133 * nsterm.m: Move KEY_NS_... definitions to nsterm.h.
9134 (EmacsView-toggleToolbar:): Use KEY_NS_TOGGLE_TOOLBAR.
9135 (EmacsView-setMarkedText:,-deleteWorkingText:): Use NS_TEXT_EVENT
9136 instead of NON_ASCII_KEYSTROKE_EVENT.
9137 (EmacsApp-terminate:): Use KEY_NS_POWER_OFF instead of Feval.
9138 (EmacsApp-applicationShouldTerminate:): Query user.
9139 (EmacsPreferencesController-runHelp:): Use KEY_NS_INFO_PREFS
9140 instead of Feval.
9141
9142 * termhooks.h (NS_TEXT_EVENT): New event type under HAVE_NS.
9143
9144 * keyboard.c (kbd_buffer_get_event): Check for it.
9145 (keys_of_keyboard): Define lispy keys for
9146 ns-put/unput-working-text.
9147
9148 * nsmenu.m (ns_popup_dialog): Resync window setting with X and W32
9149 versions.
9150 (EmacsDialog-runDialogAt:): Use NSModalPanelRunLoopMode.
9151
9152 2009-01-25 Chong Yidong <cyd@stupidchicken.com>
9153
9154 * dispnew.c (buffer_posn_from_coords): Use Fset_buffer instead of
9155 setting current_buffer directly. (Bug#2044)
9156
9157 2009-01-24 Chong Yidong <cyd@stupidchicken.com>
9158
9159 * fontset.c (fontset_font): If we know there is no font, don't do
9160 any work. (Bug#1952, bug#1990).
9161
9162 * font.c (font_parse_xlfd): Handle patterns of length < 2. (Bug#1802)
9163
9164 2009-01-23 Adrian Robert <Adrian.B.Robert@gmail.com>
9165
9166 * emacs.c (main): Do fork+exec under --daemon in Cocoa.
9167 (ns_no_defaults): New declaration.
9168 (main): Use it.
9169
9170 * nsterm.h (ns_no_defaults): New declaration.
9171
9172 * nsfns.m (x_get_string_resource): Don't read when ns_no_defaults.
9173
9174 * nsterm.m (ns_no_defaults): New variable.
9175 (ns_initialize): Don't read defaults when ns_no_defaults.
9176 (EmacsView-readSelectionFromPasteboard:)
9177 (writeSelectionToPasteboard:types:): New stubbed-out methods for
9178 NSServicesRequests protocol. (Bug#1435)
9179 (ns_dumpglyphs_stretch): New function.
9180 (ns_draw_glyph_string): Use it, parallel Yamamoto Mitsuharu change
9181 of 2008-11-15 to other terms. (Bug#615)
9182
9183 * nsimage.m (setPixmapData:): Set to ignore image DPI.
9184
9185 2009-01-23 Giorgos Keramidas <keramida@freebsd.org> (tiny change)
9186
9187 * alloc.c (mark_stack): Use "flushw" instead of "ta 3" assembly
9188 call for Sparc64.
9189
9190 2009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
9191
9192 * nsfns.m:
9193 * nsgui.h:
9194 * nsmenu.m:
9195 * nsselect.m:
9196 * nsterm.h:
9197 * nsterm.m: Remove '23' comments that indicated code added during
9198 update from emacs-20 -> emacs-23.
9199
9200 2009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
9201
9202 * nsterm.m (EmavsView-keyDown:): Treat nil as Qnone for
9203 ns_alternate_modifier. (Bug#1217)
9204
9205 * nsmenu.m (EmacsMenu-parseKeyEquiv:, addItemWithWidgetValue:):
9206 Display all shortcuts, including those w/o super modifier.
9207
9208 * nsfns.m (ns-read-file-name): Fix typo in assignment statement.
9209
9210 2009-01-22 Chong Yidong <cyd@stupidchicken.com>
9211
9212 * fileio.c (Vwrite_region_post_annotation_function)
9213 (Vwrite_region_annotation_buffers): New vars.
9214 (build_annotations_unwind): Just reset
9215 Vwrite_region_annotation_buffers.
9216 (Fwrite_region): Initialize Vwrite_region_annotation_buffers.
9217 Call write-region-post-annotation-function.
9218 (build_annotations): Add to Vwrite_region_annotation_buffers if
9219 buffer changes.
9220
9221 2009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
9222
9223 * nsterm.h (EmacsApp-setAppleMenu:): Conditionalize more correctly on
9224 Tiger.
9225 * nsfns.m (ns_do_applescript):
9226 Conditionalize typeUTF16ExternalRepresentation on Tiger.
9227
9228 2009-01-21 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
9229
9230 * nsterm.m (EV_TRAILER): Always use emacsframe for frame_or_window.
9231
9232 2009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
9233
9234 * nsmenu.m (NSMENUPROFILE): Change #if style.
9235
9236 * nsterm.h (EmacsPrefsController): Add -setPanelFromDefaultValues.
9237
9238 * nsterm.m (x_set_frame_alpha): Add prototype.
9239 (ns_fake_keydown, EmacsView-keyUp:): New variable and function to
9240 handle Ctrl-tab. (Bug#1841)
9241 (ns_get_color): Use unsigned long long for scanned hex string value.
9242 (ns_term_shutdown): Abort on non SIGTERM signals.
9243 (EmacsPrefsController-setDefaultFont:,-setColors:): Raise the frame.
9244 (EmacsPrefsController-setPanelFromDefaultValues): New function.
9245 (EmacsPrefsController-resetToDefaults:): Use it. (Bug#1801)
9246 (ns_font_to_xlfd, ns_fontname_to_xlfd): Remove, unused.
9247 (ns_defined_color): Fix settings of the XColor variable fields:
9248 red,green,blue scale to 2-byte, pixel's parts to 1-byte. (Bug#1663)
9249
9250 * nsimage.m (EmacsImage+allocInitFromFile:): Set to ignore image
9251 DPI. (Bug#1316)
9252 (EmacsImage-setPixelAtX:Y:toRed:green:blue:alpha:): Fix color
9253 values in onTiger section.
9254
9255 2009-01-19 Chong Yidong <cyd@stupidchicken.com>
9256
9257 * xfaces.c (Finternal_set_lisp_face_attribute, Fx_list_fonts):
9258 Check return value of font_spec_from_name.
9259 (Fx_list_fonts): Doc fix. (Bug#1951)
9260
9261 * font.c (font_spec_from_name): Return Qnil if font name could not
9262 be parsed.
9263 (font_parse_name): Treat a `?' character as part of an XLFD.
9264
9265 * fns.c (Fsubstring): Doc fix.
9266
9267 2009-01-19 Kenichi Handa <handa@m17n.org>
9268
9269 * ftfont.c (ftfont_lookup_cache): Check the return value of FcFontList.
9270 (ftfont_list): Likewise.
9271
9272 2009-01-18 Juanma Barranquero <lekktu@gmail.com>
9273
9274 * dbusbind.c (Fdbus_register_signal):
9275 * process.c (conv_sockaddr_to_lisp):
9276 * w32fns.c (Fw32_battery_status): Use empty_unibyte_string.
9277
9278 * callproc.c (Fgetenv_internal): Doc fix.
9279
9280 2009-01-16 Chong Yidong <cyd@stupidchicken.com>
9281
9282 * xfns.c (x_make_gc): Don't allocate stipple member for gc_values;
9283 it is not even used.
9284
9285 2009-01-16 Glenn Morris <rgm@gnu.org>
9286
9287 * font.c (Ffont_variation_glyphs): Silence compiler.
9288
9289 2009-01-15 Juanma Barranquero <lekktu@gmail.com>
9290
9291 * sound.c (SOUND_WARNING): Use _snprintf, for MSVC compatibility.
9292 Reported by David Robinow <drobinow@gmail.com>.
9293
9294 2009-01-15 Kenichi Handa <handa@m17n.org>
9295
9296 * coding.c (detect_coding_system): Fix handling of null_byte_found.
9297
9298 2009-01-14 Jason Rumney <jasonr@gnu.org>
9299
9300 * frame.c (x_set_font): Always store a font to the font parameter,
9301 never a fontset. (Bug#1562)
9302
9303 2009-01-14 Kenichi Handa <handa@m17n.org>
9304
9305 * coding.c (TWO_MORE_BYTES): New macro.
9306 (detect_coding_utf_16): Use TWO_MORE_BYTES instead of ONE_MORE_BYTE.
9307
9308 2009-01-13 Chong Yidong <cyd@stupidchicken.com>
9309
9310 * font.c (font_clear_prop): If clearing the family, clear the font
9311 width index too.
9312
9313 * xfaces.c (Finternal_set_lisp_face_attribute): Revert last change.
9314
9315 2009-01-12 Juanma Barranquero <lekktu@gmail.com>
9316
9317 * sound.c [WINDOWSNT] (SOUND_WARNING): New macro.
9318 (do_play_sound): Use it. Don't pass a hardcoded buffer size to mci
9319 functions, use sizeof.
9320
9321 2009-01-12 Martin Rudalics <rudalics@gmx.at>
9322
9323 * keyboard.c (read_char): Fix case where last_nonmenu_event
9324 returned a bad value with submenus. (Bug#447)
9325
9326 2009-01-12 Chong Yidong <cyd@stupidchicken.com>
9327
9328 * xfaces.c (Finternal_set_lisp_face_attribute): If setting the
9329 family, clear the font width index too.
9330
9331 2009-01-11 Jason Rumney <jasonr@gnu.org>
9332
9333 * keyboard.c (cmd_error_internal): Exit when errors occur before
9334 frame creation and not in daemon mode. (Bug#1836)
9335
9336 2009-01-10 Chong Yidong <cyd@stupidchicken.com>
9337
9338 * xdisp.c (pos_visible_p): When iterator stops on the last glyph
9339 of a display vector, backtrack.
9340 (try_window_reusing_current_matrix): Check glyph type before
9341 referencing charpos member.
9342
9343 2009-01-10 Eli Zaretskii <eliz@gnu.org>
9344
9345 Fix Bug #876:
9346
9347 * coding.c (inhibit_null_byte_detection): New variable.
9348 (detect_coding, detect_coding_system): Don't pay attention to null
9349 bytes if inhibit_null_byte_detection is non-zero.
9350 (syms_of_coding) <inhibit-null-byte-detection>: Declare and document.
9351 <inhibit-iso-escape-detection>: Doc fix.
9352
9353 2009-01-09 Jason Rumney <jasonr@gnu.org>
9354
9355 * w32font.c (add_font_entity_to_list): Don't report unknown
9356 Windows charset as any unrecognized registry. (Bug#1548)
9357 Only report Unicode Plane 2 fonts as unicode-sip.
9358
9359 2009-01-09 Chong Yidong <cyd@stupidchicken.com>
9360
9361 * xfaces.c (Fx_font_family_list): Delete function.
9362 Move compatibility version to faces.el.
9363
9364 * font.c (Ffont_family_list): Return a list of strings, not symbols.
9365
9366 2009-01-09 Martin Rudalics <rudalics@gmx.at>
9367
9368 * frame.c (x_set_frame_parameters): Remember requested value for
9369 fullscreen before it's reset by the parameter handler.
9370
9371 2009-01-09 Glenn Morris <rgm@gnu.org>
9372
9373 * keyboard.c (last_command_char): For clarity, rename to...
9374 (last_command_event): ... and update all users.
9375 (last_input_char): For clarity, rename to...
9376 (last_input_event): ... and update all users.
9377 (last-command-char, last-input-char): Move to subr.el as aliases.
9378 * cmds.c, commands.h: Update for last_command_char rename.
9379
9380 2009-01-08 Chong Yidong <cyd@stupidchicken.com>
9381
9382 * font.c (font_open_for_lface): Handle unspecified height attribute.
9383
9384 2009-01-08 Jason Rumney <jasonr@gnu.org>
9385
9386 * w32fns.c (Vx_pointer_shape, Vx_nontext_pointer_shape)
9387 (Vx_mode_pointer_shape, Vx_window_horizontal_drag_shape)
9388 (Vx_hourglass_pointer_shape, Vx_sensitive_text_pointer_shape):
9389 Don't declare.
9390 (syms_of_w32fns): Don't define x-pointer-shape variable. (Bug#1485)
9391 (x_create_tip_frame) [GLYPH_DEBUG]: Enable image debugging code.
9392
9393 2009-01-07 Kenichi Handa <handa@m17n.org>
9394
9395 * fileio.c (Finsert_file_contents): In the case of replace,
9396 remember the coding system used for decoding in
9397 coding_system (Bug#1039).
9398
9399 * coding.c (decode_coding_utf_8): Check byte_after_cr before
9400 breaking the loop. (Bug#870)
9401 (decode_coding_utf_16, decode_coding_emacs_mule)
9402 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
9403 (decode_coding_charset): Likewise.
9404
9405 2009-01-05 Martin Rudalics <rudalics@gmx.at>
9406
9407 * frame.c (x_set_frame_parameters): Make sure height (width) get
9408 applied when fullwidth (fullheight) is set. (Bug#1522)
9409
9410 2009-01-04 Juanma Barranquero <lekktu@gmail.com>
9411
9412 * w32.c: Use 64-bit arithmetic to do FILETIME conversions. (Bug#1766)
9413 (utc_base): Declare as ULONGLONG, not long double.
9414 (convert_time_raw): Delete.
9415 (FILETIME_TO_U64, U64_TO_LISP_TIME): New macros.
9416 (initialize_utc_base): New function.
9417 (convert_time): Use FILETIME_TO_U64, initialize_utc_base.
9418 (convert_from_time_t): Use initialize_utc_base; compute result with
9419 64-bit arithmetic.
9420 (process_times): Use FILETIME_TO_U64, U64_TO_LISP_TIME.
9421
9422 2009-01-03 Eli Zaretskii <eliz@gnu.org>
9423
9424 * process.c (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess)
9425 (Qttname, Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime)
9426 (Qcutime, Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs)
9427 (Quser, Qgroup, Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime)
9428 [!subprocesses]: Define.
9429 (syms_of_process) [!subprocesses]: Intern and staticpro them.
9430 (Flist_system_processes, Fsystem_process_attributes)
9431 [!subprocesses]: Call list_system_processes and
9432 system_process_attributes instead of returning Qnil.
9433
9434 * dosfns.c (system_process_attributes, list_system_processes):
9435 New functions.
9436
9437 * vm-limit.c (ret_lim_data) [MSDOS]: New function.
9438
9439 * sysdep.c (list_system_processes, system_process_attributes) [MSDOS]:
9440 Don't use the default (no-op) implementation.
9441
9442 2009-01-03 Jason Rumney <jasonr@gnu.org>
9443
9444 * keyboard.c (parse_modifiers_uncached): Wheel events are
9445 clicks (bug#687).
9446
9447 * w32term.c (x_query_colors, x_query_color): New functions.
9448
9449 * image.c (x_to_xcolors, png_load): Eliminate W32 specific code.
9450 (svg_load_image): Cast returned pointers from dynamically loaded
9451 functions. Eliminate W32 specific code.
9452
9453 2009-01-02 Dan Nicolaescu <dann@ics.uci.edu>
9454
9455 * nsfns.m (x_set_foreground_color, x_set_background_color)
9456 (x_set_cursor_color, x_set_icon_name, x_explicitly_set_name)
9457 (x_set_title, x_set_icon_type, x_set_cursor_type): Rename to use
9458 x_ prefix instead of ns_. Update references.
9459 (syms_of_nsfns): Add a FIXME comment.
9460
9461 * nsterm.m (x_set_cursor_type): New prototype.
9462 (setValuesFromPanel): Use it instead of the old ns_ prefixed name.
9463
9464 * sysdep.c (system_process_attributes): Provide Qtime and Qctime
9465 for Solaris instead of incorrectly providing Qutime and Qcutime.
9466
9467 2009-01-02 Eli Zaretskii <eliz@gnu.org>
9468
9469 * w32.c (process_times): Compute sum of utime and stime.
9470 (system_process_attributes): Add Qtime to the alist.
9471
9472 * sysdep.c (system_process_attributes): Compute Qtime and Qctime
9473 and add them to the alist.
9474
9475 * process.c (top level) <Qtime, Qctime>: New variables.
9476 (syms_of_process): staticpro them.
9477 (Fsystem_process_attributes): Add their documentation to the doc
9478 string.
9479
9480 * process.h: Declare Qtime and Qctime.
9481
9482 2009-01-02 Jason Rumney <jasonr@gnu.org>
9483
9484 * image.c (Qgobject): New symbol.
9485 (syms_of_image): Initialize it.
9486 (init_svg_functions): Load some functions from gobject library.
9487
9488 2009-01-01 Dan Nicolaescu <dann@ics.uci.edu>
9489
9490 * frame.c (make_terminal_frame): Remove redundant code and useless
9491 block.
9492
9493 2009-01-01 Andreas Schwab <schwab@suse.de>
9494
9495 * process.c (conv_sockaddr_to_lisp): Add workaround for
9496 getsockname bug on BSD.
9497
9498 2009-01-01 Chong Yidong <cyd@stupidchicken.com>
9499
9500 * xfns.c (x_create_tip_frame): Set border width of the X window.
9501
9502 * xfaces.c (Finternal_set_lisp_face_attribute): Improve error message.
9503
9504 2009-01-01 Jason Rumney <jasonr@gnu.org>
9505
9506 * w32term.c (x_new_font): Return font object, not fontset. (Bug#119)
9507 Don't block input, as per earlier xterm.c changes.
9508
9509 2008-12-31 Adrian Robert <Adrian.B.Robert@gmail.com>
9510
9511 * nsfns.m (ns_appkit_version_str): Rename from ns_appkit_version.
9512 (ns_appkit_version_int): New function.
9513 (x-server-version): Use ns_appkit_version_int and follow 21+
9514 convention of returning 3 integers.
9515
9516 2008-12-30 Kenichi Handa <handa@m17n.org>
9517
9518 * character.h (CHAR_VARIATION_SELECTOR_P): New macro.
9519 (CHAR_SURROGATE_PAIR_P): New macro.
9520
9521 * font.h (struct font_driver): New member get_variation_glyphs.
9522
9523 * font.c (font_range): Don't require a font for a variation selector.
9524 (Ffont_variation_glyphs): New function.
9525 (syms_of_font): Defsubr it.
9526
9527 * ftfont.c (ftfont_driver): Set the member get_variation_glyphs to
9528 ftfont_variation_glyphs.
9529 (setup_otf_gstring): New function.
9530 (ftfont_drive_otf): Use it.
9531 (ftfont_shape_by_flt): Handle variation selector.
9532 (ftfont_variation_glyphs): New function.
9533
9534 2008-12-30 Martin Rudalics <rudalics@gmx.at>
9535
9536 * frame.c (Vemacs_iconified): Remove.
9537
9538 2008-12-30 Jason Rumney <jasonr@gnu.org>
9539
9540 * frame.c (store_frame_param, x_get_arg): Enable newer code on
9541 WINDOWSNT too, as related changes have already been synced. (Bug#117)
9542
9543 2008-12-30 Chong Yidong <cyd@stupidchicken.com>
9544
9545 * indent.c (Fvertical_motion): Don't advance iterator if we have
9546 reseated to the desired position.
9547
9548 * xdisp.c (move_it_to): Handle GET_FROM_STRETCH method when
9549 checking for pos match.
9550
9551 2008-12-30 Kenichi Handa <handa@m17n.org>
9552
9553 * insdel.c (copy_text): To convert a non-ASCII char to unibyte,
9554 just get the low 8-bit of the code.
9555
9556 * font.c (font_intern_prop): Validate str as multibyte.
9557
9558 2008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
9559
9560 * dispextern.h (struct face): Move lface and hash from the middle
9561 of bitfields.
9562
9563 * Makefile.in (INTERVALS_H): Rename from INTERVAL_SRC, update all users.
9564
9565 2008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
9566
9567 * Makefile.in (INTERVAL_SRC): Also depend on dispextern.h.
9568 (coding.o, dispnew.o, keymap.o, msdos.o): Depend on INTERVAL_SRC
9569 instead of intervals.h.
9570
9571 2008-12-26 Andreas Schwab <schwab@suse.de>
9572
9573 * keymap.c (map_keymap_char_table_item): Make a copy of KEY if it is a
9574 cons.
9575
9576 2008-12-26 Martin Rudalics <rudalics@gmx.at>
9577
9578 * textprop.c (Qminibuffer_prompt): New variable.
9579 (syms_of_textprop): Initialize it.
9580 * callint.c (Fcall_interactively): For `c', `k', and `K' prompt
9581 in minibuffer-prompt face. (Bug#1662)
9582
9583 2008-12-25 Jason Rumney <jasonr@gnu.org>
9584
9585 * buffer.c (Fbuffer_swap_text): Use POINTER_TYPE.
9586
9587 2008-12-24 Jason Rumney <jasonr@gnu.org>
9588
9589 * ralloc.c (r_alloc_reset_variable): New function.
9590
9591 * buffer.c (Fbuffer_swap_text) [REL_ALLOC]: Reset ralloc's internal
9592 record of what points where. (Bug#716)
9593
9594 2008-12-22 Dan Nicolaescu <dann@ics.uci.edu>
9595
9596 * minibuf.c (read_minibuf): Follow the non-interactive case when
9597 running as a daemon, before detaching.
9598
9599 2008-12-22 Andreas Schwab <schwab@suse.de>
9600
9601 * buffer.c (init_buffer): Use realloc instead of xrealloc.
9602 * gtkutil.c (free_widget_value): Use xfree instead of free.
9603
9604 2008-12-22 Martin Rudalics <rudalics@gmx.at>
9605
9606 * frame.c (delete_frame): New function derived from
9607 Fdelete_frame to handle Qnoelisp value for FORCE argument.
9608 Delete last frame iff FORCE equals Qnoelisp. (Bug#1450)
9609 (Fdelete_frame): Call delete_frame. Remove line from doc-string
9610 saying that FORCE non-nil doesn't run `delete-frame-functions'.
9611 * frame.h: Extern delete_frame.
9612 * window.c (window_loop):
9613 * terminal.c (delete_terminal):
9614 * xterm.c (x_connection_closed):
9615 * xfns.c (Fx_hide_tip):
9616 * w32fns.c (Fx_hide_tip): Call delete_frame instead of Fdelete_frame.
9617
9618 2008-12-21 Jason Rumney <jasonr@gnu.org>
9619
9620 * w32uniscribe.c (uniscribe_encode_char): Return FONT_INVALID_CHAR
9621 when character maps to .notdef character.
9622
9623 2008-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
9624
9625 * keyboard.c (cmd_error_internal): Don't exit in daemon mode, bug#1310.
9626
9627 2008-12-20 Jason Rumney <jasonr@gnu.org>
9628
9629 * frame.c (Fmake_terminal_frame): Raise an error when called from
9630 a graphical frame on Windows. (Bug#1325)
9631
9632 2008-12-20 Jan Djärv <jan.h.d@swipnet.se>
9633
9634 * frame.c (Fdelete_frame): Set f->menu_bar_vector to Qnil.
9635
9636 2008-12-20 Chong Yidong <cyd@stupidchicken.com>
9637
9638 * minibuf.c (Fread_buffer): Doc fix.
9639
9640 2008-12-20 Jason Rumney <jasonr@gnu.org>
9641
9642 * fileio.c (Fexpand_file_name): Do not allow ../ to go beyond the
9643 server name in UNC paths. (Bug#719)
9644
9645 * coding.c (decode_coding): Clear chars_at_source flag when using
9646 charbuf. (Bug#1035)
9647
9648 2008-12-19 Daniel Engeler <engeler@gmail.com>
9649
9650 * sysdep.c (serial_configure): Fix typo.
9651
9652 2008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
9653
9654 * sysdep.c: Include alloca.h.
9655 (system_process_attributes): Add implementation for Solaris.
9656
9657 * s/sol2-10.h (HAVE_PROCFS, _STRUCTURED_PROC): New defines.
9658
9659 2008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
9660
9661 Reorganize implementation of Flist_system_processes and
9662 Fsystem_process_attributes. No functional changes.
9663 * process.c: Don't #include pwd.h, grp.h and limits.h.
9664 (Flist_system_processes): Just call list_system_processes.
9665 (Fsystem_process_attributes): Just call system_process_attributes.
9666 (procfs_list_system_processes, time_from_jiffies)
9667 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
9668 (procfs_get_total_memory, procfs_system_process_attributes): Move ...
9669
9670 * sysdep.c: ... here. Include pwd.h, grp.h and limits.h.
9671 (list_system_processes): Rename from
9672 procfs_list_system_processes. Enclose in #ifdef HAVE_PROCFS.
9673 Provide a do nothing implementation.
9674 (system_process_attributes): Rename from
9675 procfs_list_system_processes.
9676 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
9677 (procfs_get_total_memory): Enclose in #ifdef GNU_LINUX.
9678
9679 * w32.c (list_system_processes): Rename from
9680 w32_list_system_processes.
9681 (system_process_attributes): Rename from
9682 w32_system_process_attributes.
9683
9684 * s/gnu-linux.h (LISTPROC, PROCATTR): Remove.
9685
9686 * process.h (w32_list_system_processes)
9687 (w32_system_process_attributes): Remove.
9688 (list_system_processes, system_process_attributes):
9689 New prototypes.
9690
9691 2008-12-19 Kenichi Handa <handa@m17n.org>
9692
9693 * xfont.c (xfont_decode_coding_xlfd): New function.
9694 (xfont_encode_coding_xlfd): New function.
9695 (xfont_list_pattern): Decode XLFD by iso-8859-1.
9696 (xfont_list): Decode and encode XLFD by iso-8859-1.
9697 (xfont_match): Likewise.
9698 (xfont_list_family): Likewise.
9699 (xfont_open): Likewise.
9700
9701 * ftfont.c (ftfont_open): Generate a multibyte string if given
9702 names are utf-8.
9703
9704 * xftfont.c (xftfont_open): Generate a multibyte string if given
9705 names are utf-8.
9706
9707 2008-12-18 Jan Djärv <jan.h.d@swipnet.se>
9708
9709 * gtkutil.c (xg_frame_resized): Remove check if rows/columns have
9710 changed.
9711 (xg_tool_bar_proxy_callback): Put focus on the frame after we have
9712 clicked on a detached tool bar button.
9713
9714 2008-12-18 Dan Nicolaescu <dann@ics.uci.edu>
9715
9716 * emacs.c (main): Print and error and exit when no data is read
9717 from the pipe.
9718
9719 2008-12-17 Jason Rumney <jasonr@gnu.org>
9720
9721 * w32font.c (w32font_has_char): Always return -1.
9722
9723 2008-12-16 Kenichi Handa <handa@m17n.org>
9724
9725 * font.c (font_open_entity): Fix previous change.
9726
9727 2008-12-16 Dan Nicolaescu <dann@ics.uci.edu>
9728
9729 * process.c: Include <limits.h>.
9730
9731 2008-12-16 Chetan Pandya <pandyacus@sbcglobal.net> (tiny change)
9732
9733 * font.c (font_update_drivers): Fix mistake in reconstructing the
9734 driver list.
9735
9736 2008-12-16 Chong Yidong <cyd@stupidchicken.com>
9737
9738 * font.c (font_clear_cache): Fix format of font cache data.
9739
9740 2008-12-15 Chong Yidong <cyd@stupidchicken.com>
9741
9742 * xftfont.c (xftfont_open): Free Xft font pattern if
9743 XftFontOpenPattern fails.
9744
9745 * xterm.c (x_free_frame_resources): Remove extraneous call to
9746 free_frame_faces.
9747
9748 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
9749
9750 * xterm.c (x_delete_display): Move xim_close_dpy call to
9751 x_delete_terminal.
9752 (x_delete_terminal): Call xim_close_dpy.
9753
9754 2008-12-13 Jason Rumney <jasonr@gnu.org>
9755
9756 * w32font.c (intern_font_name): New function.
9757 (add_font_name_to_list, w32_enumfont_pattern_entity): Use it.
9758 (w32font_open_internal, Fx_select_font): Decode font name.
9759 (fill_in_logfont, list_all_matching_fonts): Encode font name.
9760
9761 * w32font.h (intern_font_name): Declare new function.
9762
9763 * w32uniscribe.c (add_opentype_font_name_to_list):
9764 Use intern_font_name.
9765
9766 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
9767
9768 * frame.c (Fdelete_frame): Call free_font_driver_list.
9769
9770 * font.c (free_font_driver_list): Implement missing function.
9771
9772 * w32term.c (w32_term_init): Don't initialize the image cache
9773 here; it will be done in init_frame_faces.
9774
9775 * xterm.h (struct xim_inst_t): Definition moved from xterm.c.
9776 (struct x_display_info): Remove unused member null_pixel. New
9777 member xim_callback_data.
9778
9779 * xterm.c (struct xim_inst_t): Definition moved to xterm.h.
9780 (xim_initialize): Save pointer to callback function data.
9781 (xim_close_dpy): Free callback function data. Call XCloseIM,
9782 reverting 2008-11-04 change by David Smith.
9783 (x_term_init): Don't initialize the image cache here; it will be
9784 done in init_frame_faces. Remove ancient "null_pixel" cruft.
9785 (x_delete_display): Free x_dnd_atoms member.
9786
9787 2008-12-13 Kenichi Handa <handa@m17n.org>
9788
9789 * font.c (font_rescale_ratio): Moved from xfaces.c.
9790 Argument type changed. Handle a font-spec too.
9791 (font_score): Check Vface_font_rescale_alist.
9792 (font_open_entity): Likewise. (Bug#1547)
9793
9794 * xfaces.c (font_rescale_ratio): Moved to font.c.
9795
9796 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
9797
9798 * xfns.c (Fx_wm_set_size_hint): Check if the frame is an X frame.
9799
9800 2008-12-12 Jason Rumney <jasonr@gnu.org>
9801
9802 * w32fns.c (x_display_info_for_name, Fx_open_connection): Set
9803 Vwindow_system_version to the real w32 major version.
9804
9805 2008-12-12 Dan Nicolaescu <dann@ics.uci.edu>
9806
9807 * term.c (init_tty): Move setting the terminal name before the
9808 potential user: maybe_fatal.
9809
9810 2008-12-11 Chong Yidong <cyd@stupidchicken.com>
9811
9812 * term.c (tty_free_frame_resources): Renamed from delete_tty_output;
9813 all callers changed. Call free_frame_faces to free the face cache.
9814
9815 2008-12-11 Jason Rumney <jasonr@gnu.org>
9816
9817 * w32font.c (fill_in_logfont): Don't assume symbol script means
9818 SYMBOL_CHARSET. (Bug#547)
9819
9820 * w32uniscribe.c (uniscribe_encode_char): Increase glyph buffer
9821 size for surrogates. (Bug#1096, bug#872)
9822
9823 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
9824
9825 * w32proc.c (Fw32_get_locale_info): Decode long form of locale name.
9826
9827 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
9828
9829 * process.c (Fsystem_process_attributes, syms_of_process):
9830 Fix typo in name of Ssystem_process_attributes.
9831 Reported by Ulrich Mueller <ulm@kph.uni-mainz.de>.
9832
9833 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
9834
9835 * syntax.c (Fmodify_syntax_entry): Doc fix.
9836
9837 2008-12-10 Juanma Barranquero <lekktu@gmail.com>
9838
9839 * font.c (Ffont_spec): Move usage to end of docstring.
9840
9841 2008-12-10 Jason Rumney <jasonr@gnu.org>
9842
9843 * w32font.c (Qcham): New symbol.
9844 (font_supported_scripts): Add cham, and comments for other new
9845 scripts in bitfield from OpenType spec.
9846 (add_font_entity_to_list): Limit unicode-sip fonts to those that
9847 contain characters beyond the bmp.
9848
9849 2008-12-10 Kenichi Handa <handa@m17n.org>
9850
9851 * ftfont.c (fc_charset_table): Add "unicode-sip".
9852 (ftfont_spec_pattern): Lookup fc_charset_table for the registry
9853 Qunicode_sip.
9854
9855 2008-12-10 Juanma Barranquero <lekktu@gmail.com>
9856
9857 * coding.c (QCdefault_char): Rename from QCdefalut_char.
9858 (Fcoding_system_put): Use QCdefault_char.
9859 (syms_of_coding): Set QCdefault_char, not QCdefalut_char.
9860
9861 2008-12-09 Chong Yidong <cyd@stupidchicken.com>
9862
9863 * xftfont.c (syms_of_xftfont): Fix typo.
9864
9865 * buffer.c (Fbuffer_swap_text): Signal error if swapping a dead buffer.
9866
9867 2008-12-08 Dan Nicolaescu <dann@ics.uci.edu>
9868
9869 * emacs.c (main): Close daemon_pipe on exec.
9870
9871 2008-12-08 Chong Yidong <cyd@stupidchicken.com>
9872
9873 * termchar.h (struct tty): New members termcap_term_buffer and
9874 termcap_strings_buffer.
9875
9876 * term.c (encode_terminal_code): Free any previous memory blocks
9877 before calling xmalloc for encode_terminal_src or encode_terminal_dst.
9878 (maybe_fatal): Buffer argument deleted. Don't free buffer here.
9879 All callers changed.
9880 (init_tty): Store termcap data and string buffers in new struct
9881 tty members termcap_term_buffer and termcap_strings_buffer.
9882 (delete_tty): Free them.
9883 (syms_of_term): Initialize encode_terminal_src and encode_terminal_dst.
9884
9885 2008-12-07 Seiji Zenitani <zenitani@mac.com>
9886
9887 * nsfns.m (ns_set_background_color): Remove code duplication.
9888 It was a substitute for face-transparency on OS X 10.3.
9889
9890 2008-12-06 Chong Yidong <cyd@stupidchicken.com>
9891
9892 * coding.c (make_conversion_work_buffer): Disable buffer
9893 modification hooks in the work buffer.
9894
9895 2008-12-05 Eli Zaretskii <eliz@gnu.org>
9896
9897 * process.c (procfs_system_process_attributes): If `nread' has a
9898 negative value, assign zero to it.
9899
9900 2008-12-05 Chong Yidong <cyd@stupidchicken.com>
9901
9902 * eval.c (Vdebug_on_error): Doc fix.
9903
9904 2008-12-05 Kenichi Handa <handa@m17n.org>
9905
9906 * ftfont.c (ftfont_shape_by_flt): Use "combining" flt if the
9907 second character is a combining character.
9908
9909 2008-12-05 Eli Zaretskii <eliz@gnu.org>
9910
9911 * process.c (procfs_system_process_attributes): Don't use cmd,
9912 cmdsize, and q without initializing them first.
9913
9914 2008-12-04 Jason Rumney <jasonr@gnu.org>
9915
9916 * w32font.c (w32font_draw): Initialize orig_clip before getting
9917 it, and delete it when finished.
9918
9919 2008-12-04 Dan Nicolaescu <dann@ics.uci.edu>
9920
9921 * keyboard.c (kbd_buffer_get_event): Follow the non-interactive
9922 case when running as a daemon before detaching.
9923
9924 2008-12-03 Juanma Barranquero <lekktu@gmail.com>
9925
9926 * w32.c (init_environment): Don't unload library shell32.dll.
9927
9928 2008-12-03 Kenichi Handa <handa@m17n.org>
9929
9930 * font.c (font_at): Set `multibyte' at first.
9931
9932 * coding.c (decode_coding_charset): Check type of an element of
9933 vector VALIDS.
9934 (encode_coding_emacs_mule): Be sure to set `code'.
9935
9936 * fontset.c (face_for_char): Handle invalid charset property correctly.
9937 (font_for_char): Likewise.
9938
9939 2008-12-03 Chong Yidong <cyd@stupidchicken.com>
9940
9941 * font.c (Fopen_font): Compute pixel size correctly.
9942 (font_update_lface): Handle fonts with corrupted size specs,
9943 i.e. non-int and non-float.
9944
9945 * ftfont.c (ftfont_match): Initialize entity variable.
9946 (ftfont_resolve_generic_family): Avoid using uninitialized var.
9947 (ftfont_list_family): Initialize list var earlier.
9948
9949 * xselect.c (Fx_get_cut_buffer_internal): Fix memory leak.
9950
9951 * xterm.c (x_draw_glyph_string): Fall back on
9952 underline_minimum_offset for underline position.
9953
9954 2008-12-03 Dan Nicolaescu <dann@ics.uci.edu>
9955
9956 * keyboard.c (read_char_help_form_unwind): Specify the type for ARG.
9957
9958 * character.c (c_string_width): Specify the type for LEN.
9959
9960 2008-12-03 Kenichi Handa <handa@m17n.org>
9961
9962 * coding.c (decode_coding_utf_16): Initialize consumed_chars_base to 0.
9963 (decode_coding_utf_8): Likewise.
9964 (detect_coding_system): Initialize utf_16_le_eol to -1, val to Qnil.
9965 (produce_chars): Initialize consumed_chars to 0.
9966
9967 2008-12-02 Chong Yidong <cyd@stupidchicken.com>
9968
9969 * keyboard.c (make_lispy_position): Only use PT if the selected
9970 window is current.
9971
9972 2008-12-02 Andreas Schwab <schwab@suse.de>
9973
9974 * font.c (font_unparse_fcname): Fix use of uninitialized variable.
9975
9976 * doprnt.c (doprnt1): Fix size of charbuf.
9977
9978 2008-12-02 Chong Yidong <cyd@stupidchicken.com>
9979
9980 * keyboard.c (timer_check): Revert last change.
9981
9982 2008-12-02 Juanma Barranquero <lekktu@gmail.com>
9983
9984 * makefile.w32-in ($(BLD)/w32console.$(O)): Fix silly, silly typo.
9985
9986 2008-12-01 Juanma Barranquero <lekktu@gmail.com>
9987
9988 * makefile.w32-in: Update dependencies.
9989 (CONFIG_H): Add $(EMACS_ROOT)/nt/inc/sys/time.h.
9990
9991 2008-12-01 Andreas Schwab <schwab@suse.de>
9992
9993 * font.c (register_font_driver): Use xmalloc.
9994 (font_put_frame_data): Likewise.
9995
9996 2008-12-01 Chong Yidong <cyd@stupidchicken.com>
9997
9998 * xfaces.c (realize_x_face): Make abort condition clearer.
9999
10000 * gtkutil.c (update_frame_tool_bar): Initialize variable.
10001
10002 2008-11-30 Chong Yidong <cyd@stupidchicken.com>
10003
10004 * keyboard.c (timer_check): After a timer runs, ensure that the
10005 selected window's buffer is current.
10006
10007 2008-11-30 Juanma Barranquero <lekktu@gmail.com>
10008
10009 * makefile.w32-in ($(BLD)/abbrev.$(O)): Remove.
10010 It was accidentally restored by the Unicode merge.
10011
10012 * w32proc.c (Fw32_get_locale_info): Fix typo in docstring.
10013
10014 2008-11-29 Juanma Barranquero <lekktu@gmail.com>
10015
10016 * w32proc.c: Include "coding.h".
10017 (Fw32_short_file_name): Encode filename passed to Windows API.
10018 (Fw32_long_file_name): Encode filename passed to Windows API and
10019 decode back the result. (Bug#1433)
10020
10021 2008-11-29 Kenichi Handa <handa@m17n.org>
10022
10023 * charset.h (CHAR_CHARSET_P): Check if the encoder is loaded or
10024 not before accessing it.
10025
10026 * charset.c (Fdefine_charset_internal): After calculating
10027 min_char, max_char, and fastmap, copy the charset structure again.
10028 (encode_char): Fix the previous change.
10029
10030 2008-11-28 Seiji Zenitani <zenitani@mac.com>
10031
10032 * frame.c (x_set_alpha) [NS_IMPL_COCOA]: Call x_set_frame_alpha.
10033
10034 * nsfns.m (ns_frame_parm_handlers): Set alpha handler.
10035
10036 * nsterm.m (x_set_frame_alpha): New function.
10037
10038 2008-11-27 Eli Zaretskii <eliz@gnu.org>
10039
10040 * xfaces.c (Fx_font_family_list, syms_of_xfaces): Fix last change.
10041
10042 2008-11-27 Juanma Barranquero <lekktu@gmail.com>
10043
10044 * w32font.c (add_font_entity_to_list): Pass the right LOGFONT
10045 pointer to check_face_name.
10046
10047 2008-11-27 Kenichi Handa <handa@m17n.org>
10048
10049 * category.h (SET_CATEGORY_SET): Call set_category_set.
10050 (set_category_set): Extern it.
10051
10052 * category.c (hash_get_category_set): New function.
10053 (Fmodify_category_entry): Adjusted for the change of
10054 char_table_ref_and_range. Call hash_get_category_set to get a
10055 category set to store in the table.
10056
10057 * character.h (MAYBE_UNIFY_CHAR): Call maybe_unify_char instead of
10058 Funify_charset.
10059
10060 * charset.h (enum charset_method): Delete CHARSET_METHOD_MAP_DEFERRED.
10061 (DECODE_CHAR): Check if the decoder vector is ready.
10062 (ENCODE_CHAR): Check if the encoder char-table is ready.
10063 (maybe_unify_char): Extern it.
10064
10065 * charset.c (Vchar_unified_charset_table): Delete it.
10066 (inhibit_load_charset_map): New variable.
10067 (temp_charset_work): New variable.
10068 (SET_TEMP_CHARSET_WORK_ENCODER, GET_TEMP_CHARSET_WORK_ENCODER)
10069 (SET_TEMP_CHARSET_WORK_DECODER, GET_TEMP_CHARSET_WORK_DECODER):
10070 New macros.
10071 (load_charset_map): Meaning of control_flag changed. If
10072 inhibit_load_charset_map is nonzero, setup a table in
10073 temp_charset_work.
10074 (load_charset): New argument control_flag.
10075 (map_charset_for_dump): New function.
10076 (map_charset_chars): If inhibit_load_charset_map is nonzero, use
10077 map_charset_for_dump.
10078 (Fdefine_charset_internal): If the charset method is MAP, load
10079 mapping tables by calling load_charset.
10080 (Funify_charset): Don't load a mapping table but directly set
10081 Vchar_unify_table.
10082 (maybe_unify_char): New function.
10083 (decode_char): Don't handle the deleted method MAP_DEFERRED.
10084 Handle the case of inhibit_load_charset_map being nonzero.
10085 (encode_char): Don't handle the deleted method MAP_DEFERRED.
10086 Handle the case of inhibit_load_charset_map being nonzero.
10087 (Fclear_charset_maps): Just free temp_charset_work.
10088 (syms_of_charset): Make `inhibit-load-charset-map' a Lisp
10089 variable.
10090
10091 * chartab.c (sub_char_table_ref_and_range): Adjusted for the
10092 change of char_table_ref_and_range.
10093 (char_table_ref_and_range): Change the meaning of argument FROM
10094 and TO. Now the caller must provide initial values for *FROM
10095 and *TO.
10096
10097 * fontset.c (fontset_add): Adjusted for the change of
10098 char_table_ref_and_range.
10099 (fontset_get_font_group): Likewise.
10100 (Ffontset_info): Likewise.
10101
10102 * keymap.c (describe_vector): Adjusted for the change of
10103 char_table_ref_and_range. For char-table, put boundary between
10104 non-ASCII and 8-bit characters.
10105
10106 * print.c (print_object): For bool-vector, delete unnecessary
10107 check of ASCII_BYTE_P.
10108
10109 2008-11-26 Jason Rumney <jasonr@gnu.org>
10110
10111 * w32font.c (w32font_open_internal): Don't include external
10112 leading in font height. (Bug#879)
10113
10114 2008-11-26 Glenn Morris <rgm@gnu.org>
10115
10116 * xfaces.c (Fx_font_family_list): Replace lisp/term/pc-win.el
10117 redefinition with ifdef. (Bug#1383)
10118
10119 2008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
10120
10121 * nsterm.m (ns_get_color): Handle long hex strings (fixes bug #1044).
10122
10123 2008-11-24 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
10124
10125 * nsterm.m (-otherMouseDown:, -otherMouseUp:, -otherMouseDragged):
10126 New EmacsView methods.
10127 (EV_UDMODIFIERS, EV_BUTTON): Add OtherMouse constants.
10128 Fixes bug #1048,1357,1414.
10129
10130 2008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
10131
10132 Fix bug #1362.
10133 * image.c (x_clear_image_1): Do not free background under HAVE_NS, it
10134 is not an indexed color.
10135 * nsterm.m (free_indexed_color): Add argument checking.
10136 * nsfns.m: Move config.h to before system includes (advised by Dan N.).
10137
10138 2008-11-24 Chong Yidong <cyd@stupidchicken.com>
10139
10140 * minibuf.c (Fcompleting_read, Vminibuffer_completion_confirm):
10141 Document confirm-after-completion value for
10142 minibuffer-completion-confirm.
10143
10144 2008-11-24 Jason Rumney <jasonr@gnu.org>
10145
10146 * w32font.c (check_face_name): Use xstrcasecmp. Avoid compiler
10147 warning.
10148
10149 2008-11-23 Jason Rumney <jasonr@gnu.org>
10150
10151 * w32uniscribe.c (uniscribe_encode_char): Ensure context is
10152 restored before returning.
10153
10154 * w32font.c (check_face_name): New function.
10155 (add_font_entity_to_list): Use it to filter out common substituted
10156 fonts. (Bug#642)
10157
10158 2008-11-22 Martin Rudalics <rudalics@gmx.at>
10159
10160 * buffer.c (Fswitch_to_buffer): Reword and mention new option
10161 confirm-nonexistent-file-or-buffer in doc-string.
10162
10163 2008-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
10164
10165 * buffer.c (Fbuffer_swap_text): Remove redundant marker manipulation.
10166 Fix copy/paste typo. Add checks.
10167
10168 2008-11-21 Kenichi Handa <handa@m17n.org>
10169
10170 * coding.c (detect_coding_iso_2022): Reject invalid composition
10171 sequence.
10172 (DECODE_COMPOSITION_START): If the current source is the last
10173 block, and the current composition doesn't end, regard this
10174 sequence as invalid.
10175 (decode_coding_iso_2022): Handle invalid composition sequence.
10176
10177 2008-11-20 Martin Rudalics <rudalics@gmx.at>
10178
10179 * window.c (coordinates_in_window): Don't return
10180 ON_VERTICAL_BORDER for the rightmost position of a mode/header
10181 line when the window is not the rightmost one. (Bug#1372)
10182
10183 2008-11-16 Ben North <ben@redfrontdoor.org> (tiny change)
10184
10185 * buffer.c (syms_of_buffer): Fix doc-string of cursor-type.
10186
10187 2008-11-15 Eli Zaretskii <eliz@gnu.org>
10188
10189 * msdos.c (run_msdos_command): Don't call dos_ttcooked, dos_ttraw,
10190 and bright_bg if noninteractive is non-zero.
10191
10192 2008-11-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10193
10194 * xterm.c (x_draw_glyph_string): For stretch glyphs, don't call
10195 x_draw_glyph_string_background.
10196
10197 * w32term.c (x_draw_glyph_string): Likewise.
10198
10199 2008-11-15 Chong Yidong <cyd@stupidchicken.com>
10200
10201 * xterm.c (x_draw_glyph_string): Stop drawing the background of
10202 the next glyph string once past the overhang width.
10203
10204 * nsterm.m (ns_draw_glyph_string): Likewise.
10205
10206 * w32term.c (x_draw_glyph_string): Likewise.
10207
10208 2008-11-14 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
10209
10210 * fileio.c (Finsert_file_contents): Decrement specpdl_ptr to avoid
10211 double file close.
10212
10213 2008-11-14 Martin Rudalics <rudalics@gmx.at>
10214
10215 * window.c (window_loop): In DELETE_BUFFER_WINDOWS case, reset
10216 dedicated status of window before attempting to display another
10217 buffer in it.
10218
10219 2008-11-14 Juanma Barranquero <lekktu@gmail.com>
10220
10221 * msdos.c (Fmsdos_long_file_names):
10222 (syms_of_msdos) <dos-unsupported-char-glyph>:
10223 * dosfns.c (Fint86): Fix typos in docstrings.
10224
10225 2008-11-14 Eli Zaretskii <eliz@gnu.org>
10226
10227 * makefile.w32-in (OBJ1, WIN32OBJ): Fix whitespace.
10228
10229 2008-11-14 Katsumi Yamaoka <yamaoka@jpl.org>
10230
10231 * puresize.h (BASE_PURESIZE): Increase to 1260000.
10232
10233 2008-11-12 Michal Nazarewicz <mina86@tlen.pl> (tiny change)
10234
10235 * frame.c (x_set_alpha): Set alpha to -1 if nil given.
10236
10237 * frame.h: Negative alpha means "don't touch".
10238
10239 * w32term.c (x_set_frame_alpha): Do nothing if alpha is negative.
10240
10241 * xterm.c (x_set_frame_alpha): Do nothing if alpha is negative.
10242
10243 2008-11-12 Dan Nicolaescu <dann@ics.uci.edu>
10244
10245 * hftctl.c:
10246 * chpdef.h:
10247 * acldef.h: Remove files used only for systems no longer supported.
10248
10249 * Makefile.in: Fix .o alphabetical ordering.
10250 (hftctl.o): Remove dependency, file removed.
10251 (keymap.o, print.o): Depend on charset.h.
10252
10253 2008-11-10 Kenichi Handa <handa@m17n.org>
10254
10255 * character.c (Fget_byte): Fix and make it faster for unibyte target.
10256
10257 2008-11-08 Chong Yidong <cyd@stupidchicken.com>
10258
10259 * dired.c (file_name_completion): If completion_ignore_case is
10260 enabled, ignore case when checking completion-regexp-list.
10261
10262 2008-11-08 Eli Zaretskii <eliz@gnu.org>
10263
10264 * vm-limit.c (get_lim_data): Fix last change.
10265
10266 2008-11-08 Kenichi Handa <handa@m17n.org>
10267
10268 * character.c (Fget_byte): New function.
10269 (syms_of_character): Defsubr Fget_byte.
10270
10271 2008-11-07 Chong Yidong <cyd@stupidchicken.com>
10272
10273 * xdisp.c (try_window_reusing_current_matrix): Ensure that window
10274 cursor position is valid after scrolling.
10275
10276 2008-11-06 Juanma Barranquero <lekktu@gmail.com>
10277
10278 * fns.c (Frandom): Rename arg N to LIMIT to match the docs; doc fix.
10279
10280 2008-11-06 Glenn Morris <rgm@gnu.org>
10281
10282 * xterm.c (handle_one_xevent): Don't let popup menus cause
10283 mouse-autoselect-window related window switching. (Bug#1261)
10284
10285 2008-11-04 David Smith <davidsmith@acm.org> (tiny change)
10286
10287 * xterm.c (xim_close_dpy): Avoid double-free on X11R6 XIM.
10288
10289 2008-11-04 Andreas Schwab <schwab@suse.de>
10290
10291 * xfns.c (Fx_wm_set_size_hint): Add missing return value.
10292
10293 2008-11-03 Chong Yidong <cyd@stupidchicken.com>
10294
10295 * xfns.c (Fx_wm_set_size_hint): New function.
10296
10297 2008-11-03 Martin Rudalics <rudalics@gmx.at>
10298
10299 * textprop.c (Fprevious_single_char_property_change): Return 0
10300 when there's no change in a string. (Bug#1301)
10301
10302 2008-11-02 Martin Rudalics <rudalics@gmx.at>
10303
10304 * frame.c (do_switch_frame): New argument NORECORD passed to
10305 Fselect_window.
10306 (Fselect_frame): New argument NORECORD passed to
10307 do_switch_frame.
10308 (Fset_frame_selected_window): New argument NORECORD passed to
10309 Fselect_frame.
10310 (Fhandle_switch_frame, Fdelete_frame): Handle NORECORD argument
10311 in call of do_switch_frame.
10312 (Fset_mouse_position, Fset_mouse_pixel_position, Fraise_frame):
10313 Handle NORECORD argument in call of Fselect_frame.
10314 * lisp.h (do_switch_frame, Fselect_frame)
10315 (Fset_frame_selected_window): Adjust declarations.
10316 * window.c (select_frame_norecord): New function.
10317 (run_window_configuration_change_hook): Use it and call
10318 Fselect_frame with NORECORD set.
10319 (Fselect_window): Pass NORECORD to Fselect_frame.
10320 (Fset_window_configuration): Handle NORECORD argument in call of
10321 do_switch_frame.
10322 * minibuf.c (choose_minibuf_frame): Handle NORECORD in call of
10323 Fset_frame_selected_window.
10324 * keyboard.c (command_loop_1): Handle NORECORD in call of
10325 Fselect_frame (currently ifdefd).
10326
10327 2008-11-02 Ulrich Mueller <ulm@kph.uni-mainz.de>
10328
10329 * emacs.c (USAGE2): Untabify.
10330
10331 2008-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
10332
10333 * composite.c (fill_gstring_header): Fix copy/paste typo.
10334
10335 2008-10-31 Martin Rudalics <rudalics@gmx.at>
10336
10337 * window.c (Fnext_window, Fprevious_window): Rewrite doc-string.
10338 (Fother_window): Rename argument and rewrite doc-string.
10339 (select_window_norecord): Fix return value. (Bug#1276)
10340
10341 2008-10-30 Juanma Barranquero <lekktu@gmail.com>
10342
10343 * w32fns.c (x_create_tip_frame): Prevent default foreground color for
10344 new frames overriding foreground for tooltips. Based on similar patch
10345 from Martin Rudalics <rudalics@gmx.at>. (Bug#1032)
10346
10347 2008-10-29 Chong Yidong <cyd@stupidchicken.com>
10348
10349 * emacs.c (Fdaemon_initialized): Initialize nfd.
10350
10351 2008-10-29 Martin Rudalics <rudalics@gmx.at>
10352
10353 * window.c (Fwindow_height, Fdelete_window, set_window_buffer)
10354 (Fwindow_text_height): Clarify doc-strings.
10355 * xdisp.c (syms_of_xdisp): Mention set-window-buffer in
10356 doc-string of window-scroll-functions.
10357
10358 2008-10-28 Reiner Steib <Reiner.Steib@gmx.de>
10359
10360 * category.c (syms_of_category): Fix typo in docstring.
10361
10362 2008-10-28 Juanma Barranquero <lekktu@gmail.com>
10363
10364 * window.c (Fwindowp, Fwindow_live_p, Fwindow_minibuffer_p)
10365 (Fcoordinates_in_window_p, Fscroll_left, Fscroll_right):
10366 Fix typos in docstrings.
10367
10368 2008-10-28 Dan Nicolaescu <dann@ics.uci.edu>
10369
10370 * emacs.c (daemon_pipe): Make non-static.
10371 (IS_DAEMON): Move definition ...
10372 * lisp.h (IS_DAEMON): ... here.
10373 (daemon_pipe): Declare.
10374 (is_daemon): Remove.
10375 * dispnew.c (init_display): Use IS_DAEMON.
10376
10377 2008-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
10378
10379 * xdisp.c (pos_visible_p, redisplay_internal, message3_nolog)
10380 (message2_nolog): Check FRAME_INITIAL_P instead of noninteractively.
10381
10382 * emacs.c (is_daemon): Remove.
10383 (main): Don't set is_daemon.
10384 (IS_DAEMON): New macro.
10385 (Fdaemonp, Fdaemon_initialized): Use it.
10386 (Fdaemon_initialized): Write a char into the pipe to make sure the
10387 parent exits.
10388 (syms_of_emacs): Explicitly initialize daemon_pipe[1].
10389
10390 2008-10-27 Chong Yidong <cyd@stupidchicken.com>
10391
10392 * nsterm.m (ns_draw_window_cursor): When hbar cursor is on
10393 over-sized glyph, draw it with the default glyph width.
10394
10395 * w32term.c (x_draw_bar_cursor): When hbar cursor is on over-sized
10396 glyph, draw it with the default glyph width.
10397
10398 * xterm.c (x_draw_bar_cursor): When hbar cursor is on over-sized
10399 glyph, draw it with the default glyph width.
10400
10401 * xdisp.c (try_scrolling): When computing the distance from the
10402 scroll margin to PT, try moving some distance past the window
10403 bottom before giving up.
10404
10405 2008-10-27 Martin Rudalics <rudalics@gmx.at>
10406
10407 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p)
10408 (Fset_window_buffer): Explain in doc-string that a window can be
10409 "strongly" dedicated to its buffer.
10410
10411 2008-10-27 Dan Nicolaescu <dann@ics.uci.edu>
10412
10413 * emacs.c (daemon_name): New variable.
10414 (main): Deal with --daemon=SERVER_NAME.
10415 (Fdaemonp): Return a name if one was passed to --daemon.
10416
10417 2008-10-26 Romain Francoise <romain@orebokech.com>
10418
10419 * emacs.c (daemon_pipe): New variable.
10420 (main): Create a pipe before forking, make the parent exit only after
10421 the child has closed its end of the pipe. Move closing the
10422 descriptors ...
10423 (Fdaemon_initialized): ... here. New function.
10424
10425 2008-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
10426
10427 * chartab.c (Foptimize_char_table): Make sure `ascii' doesn't point to
10428 the previous unoptimized table.
10429
10430 * window.c (Fset_window_buffer): Undo 2008-10-18 change to re-instate
10431 the distinction between non-nil and non-t value of `dedicated'.
10432
10433 2008-10-25 Chong Yidong <cyd@stupidchicken.com>
10434
10435 * keyboard.c (read_char_minibuf_menu_prompt): Ensure that
10436 read_char_minibuf_menu_text is large enough to hold the menu string.
10437
10438 2008-10-25 Martin Rudalics <rudalics@gmx.at>
10439
10440 * window.c (Fget_buffer_window, Fdelete_windows_on)
10441 (Freplace_buffer_in_windows): Make buffer argument optional and
10442 rename to buffer_or_name.
10443
10444 2008-10-24 Chong Yidong <cyd@stupidchicken.com>
10445
10446 * xdisp.c (handle_single_display_spec, handle_display_prop):
10447 Undo 2005-05-16 change.
10448 (handle_stop): Pop iterator if it's loaded with an empty string.
10449 (get_overlay_strings_1): Don't save iterator if it's loaded with
10450 an empty string (bug#1201).
10451
10452 2008-10-24 Kenichi Handa <handa@m17n.org>
10453
10454 * ftfont.c (ftfont_otf_features): Fix previous change.
10455 (ftfont_otf_capability): Check FeatureList.FeatureCount before
10456 calling ftfont_otf_features.
10457
10458 2008-10-24 Kenichi Handa <handa@m17n.org>
10459
10460 * font.c (font_match_p): Fix for the case that a vector of
10461 characters is in script-representative-chars.
10462
10463 2008-10-24 Michael Albinus <michael.albinus@gmx.de>
10464
10465 * dbusbind.c (xd_in_read_queued_messages): New variable.
10466 (XD_SIGNAL1, XD_SIGNAL2, XD_SIGNAL3): New macros. Throw Qdbus_error.
10467 (xd_read_queued_messages): Catch Qdbus_error from the macros.
10468 (all): Replace xsignal1, xsignal2, xsignal3 by the respective
10469 macro. (Bug#1186)
10470
10471 2008-10-23 Ali Bahrami <ali_gnu@emvision.com> (tiny change)
10472
10473 * s/sol2-10.h: New file.
10474
10475 2008-10-23 Juanma Barranquero <lekktu@gmail.com>
10476
10477 * xdisp.c (fill_glyph_string): Fix typo in source (though the
10478 poor beast has survived 9+ years and the jump from xterm.c!).
10479
10480 2008-10-23 Martin Rudalics <rudalics@gmx.at>
10481
10482 * buffer.c (Fget_buffer_create): Rename arg to buffer_or_name.
10483 Reword doc-string.
10484 (Fbury_buffer): In doc-string say what happens to the buffer's window.
10485
10486 2008-10-23 Juanma Barranquero <lekktu@gmail.com>
10487
10488 * character.c (syms_of_character) <script-representative-chars>:
10489 <unicode-category-table>: Doc fixes.
10490
10491 2008-10-23 Noah Friedman <friedman@splode.com>
10492
10493 * coding.c (make_conversion_work_buffer): Check that
10494 Vcode_conversion_reused_workbuf is a live buffer, otherwise call
10495 Fget_buffer_create.
10496
10497 2008-10-23 Kenichi Handa <handa@m17n.org>
10498
10499 * font.c (font_add_log): Check the values of extra properties.
10500
10501 2008-10-22 Martin Rudalics <rudalics@gmx.at>
10502
10503 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
10504 Reword doc-string.
10505 (Fset_window_parameter): Use NILP.
10506 (Fscroll_up, Fscroll_down, Fminibuffer_selected_window)
10507 (Frecenter): Use "selected" instead of "current" window in doc-strings.
10508
10509 2008-10-22 Juanma Barranquero <lekktu@gmail.com>
10510
10511 * xdisp.c (next_element_from_buffer): Remove bogus xassert condition.
10512
10513 2008-10-22 Adrian Robert <Adrian.B.Robert@gmail.com>
10514
10515 * nsfns.m (ns_appkit_version): New function.
10516 (x-server-version): Use it.
10517 (syms_of_nsfns): Define ns-version-string here, not nsterm.m.
10518 (x-server-vendor): Don't check_ns().
10519
10520 * nsterm.m (syms_of_nsterm): Drop ns-version-string.
10521
10522 2008-10-22 Juanma Barranquero <lekktu@gmail.com>
10523
10524 * w32fns.c (unwind_create_frame) [!GLYPH_DEBUG]: Fix xassert.
10525 Copied from 2005-02-03 change to xfns.c by Kim F. Storm.
10526
10527 2008-10-22 Kenichi Handa <handa@m17n.org>
10528
10529 * syntax.c (scan_words): Call word_boundary_p instead of comparing
10530 scripts.
10531
10532 * category.c (word_boundary_p): Check scripts instead of charset.
10533 Handle nil value in word-separating-categories and
10534 word-combining-categories.
10535 (syms_of_category): Fix docstrings of word-separating-categories
10536 and word-combining-categories.
10537
10538 2008-10-21 Eli Zaretskii <eliz@gnu.org>
10539
10540 * coding.c (Fencode_coding_region, Fdecode_coding_region)
10541 (Fdecode_coding_string, Fencode_coding_string): Doc fix.
10542
10543 2008-10-21 Martin Rudalics <rudalics@gmx.at>
10544
10545 * buffer.c (Fget_buffer, Fbury_buffer, switch_to_buffer_1):
10546 Rename arg "buffer" to "buffer_or_name".
10547 (Fkill_buffer): Rename arg "buffer" to "buffer_or_name" and make
10548 it optional.
10549 (no_switch_window): Remove since the return value is not used.
10550 (Fswitch_to_buffer): Rename arg "buffer" to "buffer_or_name".
10551 Consider window as dedicated when Fwindow_dedicated_p returns a
10552 non-nil value.
10553 * lisp.h: Remove prototype for no_switch_window.
10554
10555 2008-10-21 Jan Djärv <jan.h.d@swipnet.se>
10556
10557 * emacs.c (main): Unconditionally set PER_LINUX32 and exec
10558 temacs when dumping if HAVE_PERSONALITY_LINUX32 is defined.
10559
10560 2008-10-21 Kenichi Handa <handa@m17n.org>
10561
10562 * coding.c (detect_coding_charset): For iso-8859-* coding systems,
10563 check Vlatin_extra_code_table.
10564
10565 2008-10-20 Eli Zaretskii <eliz@gnu.org>
10566
10567 * fileio.c (Fset_file_modes): Doc fix.
10568
10569 2008-10-19 Michael Albinus <michael.albinus@gmx.de>
10570
10571 * dbusbind.c (XD_OBJECT_TO_DBUS_TYPE): Handle simple type symbols
10572 in arrays.
10573
10574 2008-10-19 Martin Rudalics <rudalics@gmx.at>
10575
10576 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
10577 Mention kill-buffer in doc-string.
10578 (Fset_window_buffer): Reinsert tem check removed in last commit.
10579 (Fenlarge_window, Fshrink_window): Have argument names and
10580 doc-string follow Elisp manual more closely.
10581
10582 2008-10-18 Eli Zaretskii <eliz@gnu.org>
10583
10584 * fileio.c (Fset_file_modes): Doc fix.
10585
10586 2008-10-18 Martin Rudalics <rudalics@gmx.at>
10587
10588 * window.c (Fwindow_width, Fset_window_start)
10589 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter)
10590 (Fdelete_windows_on, Freplace_buffer_in_windows):
10591 Make doc-strings follow code and Elisp manual more closely.
10592 (Fwindow_dedicated_p): Make window argument optional.
10593 (Fset_window_dedicated_p): Rename argument "arg" to "flag".
10594 (Fset_window_buffer): Respect any non-nil dedicated value for
10595 window. Rename "buffer" argument to "buffer_or_name".
10596
10597 2008-10-18 Ulrich Mueller <ulm@gentoo.org>
10598
10599 * m/sh3.h: New file, machine description for SuperH.
10600
10601 2008-10-17 Martin Rudalics <rudalics@gmx.at>
10602
10603 * window.c (Fsplit_window): Rename arg horflag to horizontal.
10604
10605 2008-10-17 Kenichi Handa <handa@m17n.org>
10606
10607 * ftfont.c (ftfont_otf_features): Fix indexing
10608 gsub_gpos->FeatureList.Feature. Check the validity of indices.
10609
10610 2008-10-16 Magnus Henoch <mange@freemail.hu>
10611
10612 * dbusbind.c (Fdbus_call_method): Unbreak usage line.
10613 (Fdbus_call_method_asynchronously): Ditto.
10614 This change makes C-h f display the argument list.
10615
10616 2008-10-16 Chong Yidong <cyd@stupidchicken.com>
10617
10618 * fileio.c (Fexpand_file_name): Doc fix.
10619
10620 * xfaces.c (Finternal_set_lisp_face_attribute): Make null values
10621 of :foreground and :background equivalent to unspecified (20.x
10622 compatibility).
10623
10624 2008-10-15 Eli Zaretskii <eliz@gnu.org>
10625
10626 * buffer.c (syms_of_buffer): Doc fix.
10627
10628 2008-10-14 Kenichi Handa <handa@m17n.org>
10629
10630 * font.c (font_clear_prop): When clearing font width, clear the
10631 average width field too.
10632
10633 2008-10-12 Andreas Schwab <schwab@suse.de>
10634
10635 * ftfont.c (ftfont_shape_by_flt): Make static.
10636 * ftfont.h (ftfont_shape_by_flt): Don't declare.
10637
10638 * font.c: Don't include <m17n-flt.h>.
10639
10640 2008-10-10 Eli Zaretskii <eliz@gnu.org>
10641
10642 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Decrease to 10000.
10643
10644 2008-10-09 Eli Zaretskii <eliz@gnu.org>
10645
10646 * frame.c (make_terminal_frame) [MSDOS]: Remove unused #ifdef'ed
10647 away code.
10648
10649 2008-10-09 Chong Yidong <cyd@stupidchicken.com>
10650
10651 * dispnew.c (update_text_area): Avoid looping due to large glyph
10652 overhangs (bug#1070).
10653
10654 2008-10-09 Kenichi Handa <handa@m17n.org>
10655
10656 * fontset.c (face_for_char): If face->fontset is negative, just
10657 return ascii_face.
10658
10659 * font.c (font_delete_unmatched): Fix previous change.
10660 Don't reject an entity if DPI and AVGWIDTH of an entity are 0.
10661
10662 2008-10-09 Martin Rudalics <rudalics@gmx.at>
10663
10664 * frame.c (Fraise_frame): On text-only terminals select frame in
10665 order to make it visible. (Bug#1061)
10666
10667 2008-10-08 Chong Yidong <cyd@stupidchicken.com>
10668
10669 * fontset.c (fontset_find_font): Check frame validity.
10670
10671 2008-10-07 Chong Yidong <cyd@stupidchicken.com>
10672
10673 * gtkutil.c (xg_display_open): Reset default display if none exists.
10674 (xg_display_close): Allow Emacs to close all displays (bug#985).
10675
10676 2008-10-06 Andreas Schwab <schwab@suse.de>
10677
10678 * sysdep.c (sys_signal): Always set SA_RESTART when noninteractively.
10679
10680 2008-10-06 Chong Yidong <cyd@stupidchicken.com>
10681
10682 * emacs.c (Vbefore_init_time, Vafter_init_time): Move from startup.el.
10683
10684 * lisp.h (Vbefore_init_time, Vafter_init_time): Declare.
10685
10686 * gtkutil.c (x_wm_set_size_hint): Return immediately if called
10687 during initialization.
10688
10689 2008-10-04 Eli Zaretskii <eliz@gnu.org>
10690
10691 * xdisp.c (redisplay_internal): If frame switched, redisplay the
10692 whole thing on MSDOS frames as well as on a TTY.
10693
10694 * dispnew.c (update_frame): Flush termscript for MSDOS frames as
10695 well as for TTY.
10696 (Fopen_termscript): Allow opening a termscript on MSDOS frames as
10697 well as on a TTY.
10698
10699 * sysdep.c (init_sys_modes): Set FRAME_GARBAGED_P for MSDOS frames
10700 as well as for TTY.
10701
10702 * systime.h (EMACS_TIME_CMP): Cast EMACS_SECS values to `long'.
10703
10704 * dispnew.c (change_frame_size_1): Set FrameRows and FrameCols for
10705 MSDOS frames as well.
10706
10707 2008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
10708
10709 * image.c (x_clear_image_1): Under NS, call ns_free_indexed_color with
10710 correct arguments.
10711 * menu.c (find_and_return_menu_selection): Add cast.
10712
10713 2008-10-03 Glenn Morris <rgm@gnu.org>
10714
10715 * emacs.c (USAGE1): Add --daemon.
10716
10717 2008-10-02 Eli Zaretskii <eliz@gnu.org>
10718
10719 * process.c (procfs_system_process_attributes): Multiply `pcpu' by
10720 100, so it's in percents as advertised.
10721
10722 2008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
10723
10724 * nsterm.h (ns_cursor_types, ns_output.desired_cursor_color)
10725 (ns_output.current_cursor, ns_output.desired_cursor)
10726 (ns_output.last_inactive, FRAME_CURSOR, FRAME_NEW_CURSOR)
10727 (FRAME_NEW_CURSOR_COLOR): Remove.
10728
10729 * nsfns.m (ns_set_cursor_color): Use FRAME_CURSOR_COLOR.
10730 (ns_lisp_to_cursor_type, ns_cursor_type_to_lisp): Use core Emacs
10731 enumeration (HOLLOW_BOX_CURSOR, etc.).
10732
10733 * nsterm.m (ns_frame_rehighlight): Remove commented code.
10734 (draw_window_cursor): Simplify code.
10735 (EmacsView-windowDidBecomeKey:,-windowDidResignKey:):
10736 Don't change cursor type. In latter, call rehighlight instead of doing
10737 updates manually.
10738 (EmacsPrefsController-setPanelFromValues,-setValuesFromPanel):
10739 Use core Emacs cursor types.
10740
10741 * xdisp.c (draw_glyphs): Don't call notice_overwritten_cursor under NS.
10742
10743 2008-10-02 Martin Rudalics <rudalics@gmx.at>
10744
10745 * process.c (Faccept_process_output): Fix doc-string.
10746
10747 2008-10-02 Dan Nicolaescu <dann@ics.uci.edu>
10748
10749 * gmalloc.c (__sbrk): Also define for uClibc.
10750
10751 * s/gnu-linux.h (GNU_LIBRARY_PENDING_OUTPUT_COUNT): Add definition
10752 for uClibc.
10753
10754 2008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
10755
10756 * nsfont.m (nsfont_spec_to_traits): Use UnXX masks only for non-normal
10757 styles.
10758 (nsfont_open): Reenable the cache.
10759
10760 2008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
10761
10762 * font.c (font_matching_entity): Reflect ATTRS in font selection.
10763 (font_find_for_lface) [HAVE_NS]: Don't ignore case.
10764
10765 2008-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
10766
10767 * dispnew.c (Fsend_string_to_terminal): Don't try to send a string to
10768 a suspended terminal.
10769
10770 2008-09-30 Michael Albinus <michael.albinus@gmx.de>
10771
10772 * dbusbind.c (xd_signature): Use strcat instead of sprintf.
10773
10774 2008-09-30 Eli Zaretskii <eliz@gnu.org>
10775
10776 * Makefile.in (MSDOS_SUPPORT): Remove ccl.elc and codepage.elc.
10777
10778 2008-09-30 Chong Yidong <cyd@stupidchicken.com>
10779
10780 * xdisp.c (move_it_to): Don't advance the iterator if the last tab
10781 in a continued line coincides with a line beginning.
10782
10783 2008-09-29 Adrian Robert <Adrian.B.Robert@gmail.com>
10784
10785 * nsfont.m (nsfont_trait_distance): Fix bug.
10786 (nsfont_list): Return a list rather than a vector (syncs with Handa
10787 changes of 2008-05-14).
10788 (nsfont_open): Improve logging.
10789
10790 2008-09-29 Andreas Schwab <schwab@suse.de>
10791
10792 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
10793
10794 2008-09-28 Martin Rudalics <rudalics@gmx.at>
10795
10796 * character.c (Fchar_resolve_modifiers): Rewrite Elisp function
10797 name as char-resolve-modifiers.
10798 Reported by: Markus Triska <markus.triska@gmx.at>
10799
10800 2008-09-28 Dan Nicolaescu <dann@ics.uci.edu>
10801
10802 * dispnew.c (init_display): Return earlier when running as a daemon.
10803
10804 2008-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
10805
10806 * nsfont.m (nsfont_draw): Fix up composition rendering (cmp_from, ...).
10807
10808 2008-09-27 Eli Zaretskii <eliz@gnu.org>
10809
10810 * composite.c (Fcomposition_get_gstring)
10811 (Fcompose_region_internal, Fcompose_string_internal)
10812 (Ffind_composition_internal): Doc fix.
10813 (syms_of_composite) <compose-chars-after-function>: Doc fix.
10814 (syms_of_composite) <auto-composition-function>: Doc fix.
10815 (syms_of_composite) <composition-function-table>: Doc fix.
10816
10817 2008-09-25 Chong Yidong <cyd@stupidchicken.com>
10818
10819 * search.c (wordify): New argument for lax word-ends.
10820 (Fword_search_forward_lax, Fword_search_backward_lax): New funs.
10821
10822 2008-09-24 Dan Nicolaescu <dann@ics.uci.edu>
10823
10824 * lisp.h (is_daemon): Declare.
10825 * dispnew.c (init_display): Do not try to initialize the terminal
10826 when running as a daemon.
10827
10828 2008-09-22 Chong Yidong <cyd@stupidchicken.com>
10829
10830 * nsfns.m (compute_tip_xy): Use x_display_pixel_width and
10831 x_display_pixel_height.
10832
10833 2008-09-22 Martin Rudalics <rudalics@gmx.at>
10834
10835 * undo.c (record_point): Don't call Fundo_boundary for first
10836 change. (Bug#731)
10837
10838 2008-09-22 Juanma Barranquero <lekktu@gmail.com>
10839
10840 * emacs.c (Fdaemonp): Doc fix.
10841
10842 2008-09-22 Dan Nicolaescu <dann@ics.uci.edu>
10843
10844 * emacs.c (main): Place #ifdef in the proper place.
10845
10846 2008-09-21 Dan Nicolaescu <dann@ics.uci.edu>
10847
10848 * emacs.c (standard_args): Add --daemon.
10849 (main): Disconnect from the terminal when --daemon is passed.
10850 (is_daemon): New variable.
10851 (Fdaemonp): New function.
10852 (syms_of_emacs): Defsubr it.
10853
10854 2008-09-20 Chong Yidong <cyd@stupidchicken.com>
10855
10856 * xdisp.c (get_next_display_element): Handle string display
10857 correctly when checking for the end of a box run.
10858
10859 2008-09-20 Glenn Morris <rgm@gnu.org>
10860
10861 * fileio.c (Qdelete_by_moving_to_trash): New Lisp_Object.
10862 (syms_of_fileio): Add Qdelete_by_moving_to_trash.
10863 (Frename_file): Avoid copying to trash if a rename involves
10864 a delete. (Bug#964).
10865
10866 2008-09-20 Eli Zaretskii <eliz@gnu.org>
10867
10868 * keyboard.c (Fset_quit_char, Fset_input_meta_mode)
10869 (Fset_output_flow_control, Fcurrent_input_mode): Support MSDOS
10870 frames as well as termcap frames.
10871 (handle_interrupt): Remove "#ifndef MSDOS" around the call to
10872 get_named_tty.
10873
10874 2008-09-19 Eli Zaretskii <eliz@gnu.org>
10875
10876 * process.c (procfs_system_process_attributes): Fix cmdline in
10877 case /proc/PID/cmdline is empty.
10878
10879 * xterm.c (x_wm_set_size_hint): Use x_display_pixel_width and
10880 x_display_pixel_height.
10881
10882 2008-09-19 Juanma Barranquero <lekktu@gmail.com>
10883
10884 * frame.c (x_fullscreen_adjust): Declare var as Display_Info.
10885
10886 * w32fns.c (Fx_display_pixel_width, Fx_display_pixel_height)
10887 (compute_tip_xy): Use x_display_pixel_width, x_display_pixel_height.
10888
10889 2008-09-19 Dan Nicolaescu <dann@ics.uci.edu>
10890
10891 * dispextern.h (struct it): Move line_wrap away from the middle of
10892 bitfields. Move voffset in struct iterator_stack_entry after the
10893 bitfields. Move tab_width near after another short.
10894
10895 2008-09-18 Dan Nicolaescu <dann@ics.uci.edu>
10896
10897 * frame.h (struct frame): Move alpha from the middle of bitfields.
10898
10899 * window.h (struct window): Move frozen_window_start_p after the
10900 rest of the bitfields to reduce padding.
10901
10902 2008-09-18 Chong Yidong <cyd@stupidchicken.com>
10903
10904 * xterm.h (x_display_info): Remove `height' and `width' members.
10905
10906 * nsterm.h (ns_display_info): Remove `height' and `width' members.
10907
10908 * w32term.h (w32_display_info): Remove `height', `width',
10909 `height_in', and `width_in' members.
10910
10911 * xterm.c (x_display_pixel_height, x_display_pixel_width):
10912 New functions.
10913 (x_calc_absolute_position): Use them.
10914 (x_term_init): Omit removed `height' and `width' members.
10915
10916 * w32term.c (x_display_pixel_height, x_display_pixel_width):
10917 New functions.
10918 (w32_read_socket, x_calc_absolute_position): Use them.
10919 (w32_initialize_display_info, w32_term_init): Omit removed members
10920 of w32_display_info.
10921
10922 * nsterm.m (x_display_pixel_height, x_display_pixel_width):
10923 New functions.
10924 (ns_initialize_display_info): Omit removed members of ns_display_info.
10925
10926 * xterm.c (x_display_pixel_height, x_display_pixel_width):
10927 New functions.
10928 (x_calc_absolute_position): Use them.
10929 (x_term_init): Omit removed `height' and `width' members.
10930
10931 * xfns.c (Fx_display_pixel_width, Fx_display_pixel_height)
10932 (compute_tip_xy):
10933 * frame.c (x_fullscreen_adjust):
10934 * xmenu.c (menu_position_func): Use x_display_pixel_height and
10935 x_display_pixel_width.
10936
10937 2008-09-18 Kenichi Handa <handa@m17n.org>
10938
10939 * composite.c (fill_gstring_header): Don't check FROM and TO here.
10940 (composition_compute_stop_pos): Fix handling of static composition.
10941 (Fcomposition_get_gstring): Check FROM and TO at first.
10942
10943 2008-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
10944
10945 * composite.c (Fcomposition_get_gstring): Yet another int/Lisp_Object
10946 mixup (YAILOM).
10947
10948 2008-09-17 Chong Yidong <cyd@stupidchicken.com>
10949
10950 * indent.c (Fvertical_motion): Use position reported by iterator
10951 instead of PT for determining screen motion (bug#943).
10952
10953 2008-09-17 Romain Francoise <romain@orebokech.com>
10954
10955 * composite.c (composition_adjust_point): Fix int/EMACS_INT mixup.
10956
10957 2008-09-17 Kenichi Handa <handa@m17n.org>
10958
10959 * ftfont.c (ftfont_shape_by_flt): Downcase family name.
10960
10961 * composite.c (Fcomposition_get_gstring): Make bigger gstring_work
10962 if necessary.
10963
10964 2008-09-16 Kenichi Handa <handa@m17n.org>
10965
10966 * coding.c (make_conversion_work_buffer): Avoid calling
10967 Fget_buffer_create if it is not necessary.
10968
10969 2008-09-15 Martin Rudalics <rudalics@gmx.at>
10970
10971 * window.c (Fselect_window): Don't update window_select_count and
10972 use_time when norecord is not nil.
10973
10974 2008-09-14 Kenichi Handa <handa@m17n.org>
10975
10976 * fileio.c (Finsert_file_contents): Delete incorrect decrement of
10977 specpdl_ptr.
10978
10979 2008-09-12 Kenichi Handa <handa@m17n.org>
10980
10981 * indent.c (scan_for_column): Don't handle automatic composition
10982 if the current buffer is not associated with a window.
10983
10984 * composite.c (composition_reseat_it): If the current buffer is
10985 not associated with a window, ignore the automatic composition.
10986 (find_automatic_composition): Likewise.
10987
10988 2008-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
10989
10990 * term.c (close_gpm): New fun extracted from Fgpm_mouse_stop.
10991 (Fgpm_mouse_stop): Use it.
10992 * termhooks.h (close_gpm): Declare.
10993 * keyboard.c (tty_read_avail_input): Forcefully close the gpm
10994 connection if Gpm_GetEvent fails.
10995
10996 * window.c (set_window_buffer): Always preserve current-buffer.
10997
10998 2008-09-12 Glenn Morris <rgm@gnu.org>
10999
11000 * charset.c (init_charset): Warn if etc/charsets not found. (Bug#909)
11001
11002 2008-09-11 Glenn Morris <rgm@gnu.org>
11003
11004 * charset.c (charset-map-path): Doc fix.
11005
11006 2008-09-10 Kenichi Handa <handa@m17n.org>
11007
11008 * xdisp.c (handle_composition_prop): Set it->cmp_it.ch to -1.
11009
11010 * font.c (Ffont_shape_gstring): Make glyphs of non-nil adjustment
11011 compose a grapheme cluster with the preceding base glyph.
11012
11013 * composite.c (composition_compute_stop_pos): Fix previous change.
11014 Reset cmp_it->id to -1 at first.
11015
11016 2008-09-10 Glenn Morris <rgm@gnu.org>
11017
11018 * Makefile.in (character.o, chartab.o): Fix config.h typo.
11019
11020 2008-09-09 Chong Yidong <cyd@stupidchicken.com>
11021
11022 * keyboard.c (read_key_sequence): Reapply translation maps when
11023 switching keyboards.
11024
11025 2008-09-09 Kenichi Handa <handa@m17n.org>
11026
11027 * ftfont.c (ftfont_shape_by_flt): Use "combining" FLT for ASCII
11028 characters.
11029
11030 * composite.c (FORWARD_CHAR): Fix calculation
11031 of (POSITION).pos_byte.
11032 (composition_compute_stop_pos): Limit the search of composition to
11033 at most 500 characters ahead. If we reach the limit or find a
11034 newline, set cmp_it->ch to -2 and return 0.
11035 (composition_reseat_it): Handle the case that cmp_it->ch is -2.
11036
11037 2008-09-08 Kenichi Handa <handa@m17n.org>
11038
11039 * indent.c (Fvertical_motion): Be sure to set
11040 it_overshoot_expected if it.cmp_it.id is non-negative.
11041
11042 2008-09-07 Andreas Schwab <schwab@suse.de>
11043
11044 * callproc.c (Fcall_process): Don't hold references to string data
11045 across garbage collection. Move initialisation of new_argv down
11046 to avoid compiler bug.
11047
11048 2008-09-07 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
11049
11050 * process.c (Fsystem_process_attributes): Doc fix.
11051
11052 2008-09-07 Chong Yidong <cyd@stupidchicken.com>
11053
11054 * callproc.c (Fcall_process): Canonicalize current directory name.
11055
11056 * xdisp.c (move_it_to): When moving by vpos, ensure that the
11057 iterator advances to the next line if the current line ends in a
11058 continued tab.
11059
11060 2008-09-07 Teodor Zlatanov <tzz@lifelogs.com>
11061
11062 * nsfont.m (nsfont_draw): Fix the references to missing gidx data
11063 member to point to cmp_from.
11064
11065 * xdisp.c: Doc fix for references to gidx data member.
11066
11067 2008-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
11068
11069 * buffer.c (Fbuffer_swap_text): Reset window->point markers.
11070
11071 2008-09-07 Kenichi Handa <handa@m17n.org>
11072
11073 * composite.c (FORWARD_CHAR): Check STOP after
11074 incrementing (POSITION).pos.
11075
11076 2008-09-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
11077
11078 * process.c (Fsystem_process_attributes): Doc fix.
11079
11080 2008-09-06 Chong Yidong <cyd@stupidchicken.com>
11081
11082 * keyboard.c (Ftop_level): Doc fix.
11083
11084 2008-09-06 Eli Zaretskii <eliz@gnu.org>
11085
11086 * xmenu.c (xmenu_show) [!HAVE_X_WINDOWS]: If frame has a
11087 minibuffer, don't let lower part of menu invade the echo area.
11088
11089 * msdos.c (IT_menu_display): Use STRING_CHAR_ADVANCE instead of a
11090 "char *q" to access menu text and advance through it. Revert the
11091 change that displayed ">" instead of ASCII character 0x10.
11092
11093 2008-09-05 Eli Zaretskii <eliz@gnu.org>
11094
11095 * menu.c (single_menu_item) [!HAVE_BOXES]: Enable emulation of
11096 toggle boxes and radio buttons on MS-DOS as well.
11097
11098 2008-09-05 Kenichi Handa <handa@m17n.org>
11099
11100 * composite.c (autocmp_chars): Check lookback count.
11101 (composition_compute_stop_pos): Set cmp_it->lookback.
11102 (composition_reseat_it): Check lookback count.
11103 (struct position_record): New struct.
11104 (FORWARD_CHAR, BACKWARD_CHAR, CHAR_COMPOSABLE_P): New macros.
11105 (find_automatic_composition): New function.
11106 (composition_adjust_point): Use find_automatic_composition.
11107
11108 * dispextern.h (struct composition_it): New member lookback.
11109
11110 2008-09-02 Chong Yidong <cyd@stupidchicken.com>
11111
11112 * indent.c (Fvertical_motion): Don't call move_it_by_lines again
11113 if moving by a single line.
11114
11115 2008-09-02 Andreas Schwab <schwab@suse.de>
11116
11117 * xterm.c (x_delete_display): Fix merge error.
11118
11119 * fileio.c (Fexpand_file_name): Remove unused variables.
11120
11121 2008-09-02 Eli Zaretskii <eliz@gnu.org>
11122
11123 * fileio.c (Fexpand_file_name): Copy argument `name' into local
11124 storage on all platforms, not just on DOS_NT.
11125
11126 2008-09-02 Jason Rumney <jasonr@gnu.org>
11127
11128 * w32menu.c (Fx_popup_menu, Fx_popup_dialog, w32_menu_show):
11129 Ensure mouse is not grabbed after menu is finished.
11130
11131 2008-09-01 Chong Yidong <cyd@stupidchicken.com>
11132
11133 * xfaces.c (Finternal_set_alternative_font_family_alist)
11134 (Finternal_set_alternative_font_registry_alist): Properly copy
11135 entire alist structure.
11136
11137 2008-09-01 Kenichi Handa <handa@m17n.org>
11138
11139 * ftfont.c (ftfont_spec_pattern): Don't create a charset if the
11140 representative chars of the script is a vector.
11141 (ftfont_list): Handle the case where the representative chars of
11142 the script is a vector.
11143
11144 * character.c (syms_of_character): Docstring of
11145 script-representative-chars fixed.
11146
11147 2008-08-31 Eli Zaretskii <eliz@gnu.org>
11148
11149 * msdos.c (BUILD_CHAR_GLYPH): New macro.
11150 (IT_menu_display): Use it instead of SET_CHAR_GLYPH to construct
11151 the menu. Allocate larger buffer for `text', to account for
11152 possible ^C characters.
11153
11154 2008-08-31 Martin Rudalics <rudalics@gmx.at>
11155
11156 * xdisp.c (prepare_menu_bars): Don't call
11157 Vwindow_size_change_functions with arg Qt.
11158
11159 2008-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
11160
11161 * font.h (font_range):
11162 * fileio.c (report_file_error):
11163 * composite.c (composition_update_it): Yet another int/Lisp_Object
11164 mixup (YAILOM).
11165
11166 2008-08-30 Glenn Morris <rgm@gnu.org>
11167
11168 * data.c (Fmake_variable_frame_local): Doc fix.
11169
11170 * frame.c (Fmodify_frame_parameters): Doc fix.
11171
11172 2008-08-30 Eli Zaretskii <eliz@gnu.org>
11173
11174 * w32.c (init_user_info): Allocate buf[] with xmalloc using the size
11175 needed by GetTokenInformation.
11176 (w32_system_process_attributes): Check return values of all system
11177 APIs.
11178
11179 * msdos.c (IT_display_cursor): Write "CURSOR ON/OFF" to termscript
11180 only when the state changes.
11181 (IT_update_begin, IT_update_end): Add termscript trace.
11182
11183 * w16select.c (Fw16_set_clipboard_data): Don't encode text if
11184 clipboard is unavailable. Set dst to NULL if it doesn't point to
11185 malloc'ed data.
11186 (Fw16_get_clipboard_data): Initialize htext to NULL, to avoid
11187 passing random values to xfree.
11188
11189 * dispnew.c (init_display): Set `tty's association in frame's
11190 parameters alist to the name of the terminal device, if that is known.
11191
11192 2008-08-29 Jason Rumney <jasonr@gnu.org>
11193
11194 * w32uniscribe.c (uniscribe_check_otf): Don't fallback on DFLT script.
11195
11196 2008-08-29 Eli Zaretskii <eliz@gnu.org>
11197
11198 * composite.c (fill_gstring_body): Avoid compiler warnings.
11199
11200 * font.c (font_fill_lglyph_metrics): Use EMACS_INT in
11201 LGLYPH_SET_CODE to avoid compiler warnings.
11202
11203 * makefile.w32-in ($(BLD)/w32uniscribe.$(O)): Depend on composite.h.
11204
11205 * composite.h (LGLYPH_SET_CODE): Cast `val' to EMACS_INT.
11206
11207 * w32uniscribe.c (uniscribe_shape): Shut up compiler warning in
11208 LGLYPH_SET_CODE.
11209
11210 2008-08-29 Kenichi Handa <handa@m17n.org>
11211
11212 * fileio.c (report_file_error): Don't downcase the first character
11213 of errstring if it is still unibyte.
11214
11215 2008-08-29 Kenichi Handa <handa@m17n.org>
11216
11217 These changes are to re-implement the automatic composition so
11218 that it doesn't use text properties.
11219
11220 * Makefile.in (ftfont.o): Depend on composite.h.
11221 (composite.o): Depend dispextern.h, font.h, frame, and window.h.
11222
11223 * character.h (Vunicode_category_table): Extern it.
11224
11225 * character.c (Vunicode_category_table): New variable.
11226 (syms_of_character): DEFVAR_LISP Vunicode_category_table.
11227
11228 * chartab.c (optimize_sub_char_table): Perform more greedy
11229 optimization.
11230
11231 * composite.h (enum composition_method):
11232 Delete COMPOSITION_WITH_GLYPH_STRING.
11233 (COMPOSITION_METHOD): Don't check COMPOSITION_WITH_GLYPH_STRING.
11234 (Vcomposition_function_table): Extern it.
11235 (LGSTRING_XXX, LGLYPH_XXX): Macros moved from font.h.
11236 (composition_gstring_put_cache, composition_gstring_from_id)
11237 (composition_gstring_p, composition_gstring_width)
11238 (composition_compute_stop_pos, composition_reseat_it)
11239 (composition_update_it, composition_adjust_point): Extern them.
11240 (Fcomposition_get_gstring): EXFUN it.
11241
11242 * composite.c: Include window.h, frame.h, dispextern.h, font.h.
11243 (Vcomposition_function_table)
11244 (get_composition_id): Don't handle COMPOSITION_WITH_GLYPH_STRING.
11245 (gstring_hash_table, gstring_work, gstring_work_headers):
11246 New variables.
11247 (gstring_lookup_cache, composition_gstring_put_cache)
11248 (composition_gstring_from_id, composition_gstring_p)
11249 (composition_gstring_width, fill_gstring_header)
11250 (fill_gstring_body, autocmp_chars, composition_compute_stop_pos)
11251 (composition_reseat_it, composition_update_it)
11252 (composition_adjust_point, Fcomposition_get_gstring): New functions.
11253 (syms_of_composite): Initialize gstring_hash_table, gstrint_work,
11254 and gstring_work_headers. DEFVAR_LISP composition-function-table.
11255 Defsubr composition_get_gstring.
11256
11257 * dispextern.h (struct glyph): New union u.cmp. Delete the member
11258 cmp_id.
11259 (struct glyph_string): Delete the member gidx. New members
11260 cmp_id, cmp_from, and cmp_to.
11261 (enum it_method): Delete GET_FROM_COMPOSITION.
11262 (struct composition_it): New struct.
11263 (struct it): New member cmp_it, and iterator_stack_entry.cmp_it.
11264 Delete c, len, cmp_id, cmp_len in u.comp.
11265
11266 * font.h (enum lgstring_indices): Delete it.
11267 (LGSTRING_XXX, LGLYPH_XXX): Move these macros to composite.h.
11268 (enum lglyph_indices): Likewise.
11269 (font_range): Adjust extern.
11270 (font_fill_lglyph_metrics): Extern it.
11271
11272 * font.c (QCf): New variable.
11273 (check_gstring): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
11274 (font_prepare_composition): Delete this function.
11275 (font_range): Type and arguments changed.
11276 (Ffont_make_gstring, Ffont_fill_gstring): Delete them.
11277 (font_fill_lglyph_metrics): New function.
11278 (Ffont_shape_text): Rename to Ffont_shape_gstring and change arguments.
11279 (syms_of_font): DEFSYM QCf. Delete defsubr for
11280 Sfont_make_gstring, Sfont_fill_gstring, Sfont_shape_text.
11281 Defsubr Sfont_shape_gstring.
11282
11283 * fontset.h (font_for_char): Extern it.
11284
11285 * fontset.c (font_for_char): New function.
11286
11287 * ftfont.c: Include composite.h.
11288 (ftfont_resolve_generic_family): Add langset "en" to pattern.
11289 (ftfont_shape_by_flt): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
11290
11291 * indent.c: Include composite.h and dispextern.h.
11292 (check_composition): Delete this function.
11293 (scan_for_column): Handle composition by
11294 composition_compute_stop_pos, composition_reseat_it, and
11295 composition_update_it.
11296 (compute_motion): Likewise.
11297 (Fvertical_motion): Fix checking of composition.
11298
11299 * keyboard.c (adjust_point_for_property): Check composition by
11300 composition_adjust_point.
11301
11302 * nsterm.m (ns_draw_glyph_string): Adjust for the change of
11303 struct glyph_string.
11304
11305 * term.c (encode_terminal_code): Adjust for the change of struct glyph.
11306 (append_composite_glyph): Adjust for the change of struct it and
11307 struct glyph.
11308 (produce_composite_glyph): Likewise.
11309
11310 * w32term.c (x_draw_composite_glyph_string_foreground):
11311 Adjust for the change of struct glyph_string.
11312 (x_draw_glyph_string): Likewise.
11313
11314 * w32uniscribe.c (struct uniscribe_font_info): Include composite.h.
11315 (uniscribe_shape): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
11316
11317 * xdisp.c: Include font.h.
11318 (it_props): Delete the entry for Qauto_composed.
11319 (init_iterator): Initialize it->cmp_it.id to -1.
11320 (compute_stop_pos): Call composition_compute_stop_pos.
11321 (face_before_or_after_it_pos): Adjust for the change of struct it.
11322 (handle_auto_composed_prop): Delete it.
11323 (handle_composition_prop): Handle only static composition.
11324 (next_overlay_string): Remove it->method == GET_FROM_COMPOSITION
11325 from xassert. Initialize it->cmp_it.stop_pos.
11326 (push_it): Adjust for the change of struct it.
11327 (pop_it): Likewise.
11328 (get_next_element): Delete next_element_from_composition.
11329 (CHAR_COMPOSED_P): New macro.
11330 (get_next_display_element): For automatic composition, get a face
11331 from the font in the glyph-string.
11332 (set_iterator_to_next): For GET_FROM_BUFFER and GET_FROM_STRING,
11333 check composition by it->cmp_it.id. Delete GET_FROM_COMPOSITION case.
11334 (next_element_from_string): Check if the character at the current
11335 position is composed by CHAR_COMPOSED_P.
11336 (next_element_from_buffer): Likewise.
11337 (next_element_from_composition): Adjust for the change of struct it.
11338 Update it->cmp_it.
11339 (dump_glyph): Adjust for the change of struct glyph.
11340 (fill_composite_glyph_string): Adjust for the change of struct
11341 it and struct glyph. Don't handle automatic composition here.
11342 (fill_gstring_glyph_string): New function.
11343 (x_get_glyph_overhangs): Handle automatic composition.
11344 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the change of struct glyph.
11345 (BUILD_GSTRING_GLYPH_STRING): New macro.
11346 (BUILD_GLYPH_STRINGS): Call BUILD_GSTRING_GLYPH_STRING for
11347 automatic composition.
11348 (append_composite_glyph): Adjust for the change of struct it and
11349 struct glyph.
11350 (x_produce_glyphs): Adjust for the change of struct it.
11351
11352 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
11353 the change of struct glyph_string.
11354 (x_draw_glyph_string): Likewise.
11355
11356 2008-08-29 Glenn Morris <rgm@gnu.org>
11357
11358 * buffer.c (word-wrap): Doc fix.
11359 * xdisp.c (truncate-partial-width-windows): Doc fix.
11360 Increase default to 50.
11361
11362 2008-08-29 Chong Yidong <cyd@stupidchicken.com>
11363
11364 * xdisp.c (update_tool_bar_unwind): New function.
11365 (update_tool_bar): Temporarily set selected frame before building
11366 tool-bar items.
11367
11368 2008-08-28 Michael Albinus <michael.albinus@gmx.de>
11369
11370 * dbusbind.c (XD_ERROR, XD_DEBUG_MESSAGE): Use strncpy and
11371 snprintf, respectively.
11372 (xd_append_arg): Convert strings with Fstring_make_unibyte.
11373
11374 2008-08-28 Chong Yidong <cyd@stupidchicken.com>
11375
11376 * Makefile.in: Revert (undocumented) 2008-08-20 change adding
11377 LDFLAGS to GNUstep CC invocation.
11378
11379 2008-08-27 Chong Yidong <cyd@stupidchicken.com>
11380
11381 * indent.c (Fvertical_motion): Revert last change. Handle the
11382 general case where we are moving forward, and PT spans multiple
11383 screen lines.
11384
11385 * eval.c (find_handler_clause): Temporarily increase
11386 max-lisp-eval-depth while printing the backtrace buffer, to
11387 guarantee that help-mode code can run.
11388
11389 2008-08-27 Eli Zaretskii <eliz@gnu.org>
11390
11391 * msdos.c (Fmsdos_remember_default_colors): Don't reverse frame
11392 colors under -rv.
11393 (IT_set_frame_parameters): Don't swap foreground and background
11394 colors if `(reverse . t)' is present in the frame properties.
11395 (internal_terminal_init): Call init_frame_faces only for the
11396 initial frame.
11397
11398 2008-08-27 Andreas Schwab <schwab@suse.de>
11399
11400 * dired.c (Ffile_attributes): Avoid compiler warning in bitshift.
11401
11402 2008-08-27 Andreas Schwab <schwab@suse.de>
11403
11404 * search.c (search_buffer): Set char_base to zero only at the end.
11405
11406 2008-08-27 Kenichi Handa <handa@m17n.org>
11407
11408 * fileio.c (report_file_error): Fix handling of multibyte error string.
11409
11410 2008-08-27 Andreas Seltenreich <seltenreich@gmx.de>
11411
11412 * xterm.c (x_term_init): Temporarily hide the partially
11413 initialized terminal while calling vendor-specific-keysyms.
11414
11415 2008-08-26 Eli Zaretskii <eliz@gnu.org>
11416
11417 * msdos.c (internal_terminal_init): Most initializations done only
11418 once, especially initial_screen_colors[] and termscript open.
11419
11420 2008-08-26 Chong Yidong <cyd@stupidchicken.com>
11421
11422 * eval.c (Fcondition_case): Doc fix.
11423
11424 * widgetprv.h (EmacsFramePart): Change font member to the new font
11425 struct.
11426
11427 * widget.c: Include character.h and font.h for XSETFONT.
11428 (setup_frame_gcs): Compute X font id from font struct, just once.
11429
11430 2008-08-26 Eli Zaretskii <eliz@gnu.org>
11431
11432 * term.c (get_named_tty): Fix last change.
11433
11434 2008-08-26 Chong Yidong <cyd@stupidchicken.com>
11435
11436 * indent.c (Fvertical_motion): If moving forward starting from a
11437 multi-line string, move the iterator to the last line of that string.
11438
11439 2008-08-25 Eli Zaretskii <eliz@gnu.org>
11440
11441 * frame.c (do_switch_frame): Mark previously displayed frame as
11442 obscured for FRAME_MSDOS_P frames as well.
11443
11444 2008-08-24 Eli Zaretskii <eliz@gnu.org>
11445
11446 * frame.c (make_terminal_frame): Initialize f->terminal,
11447 f->terminal->reference_count, and scroll bars on MS-DOS as well.
11448 Set the top frame to newly created frame.
11449 (Fmake_terminal_frame): Reuse the_only_display_info.
11450
11451 * vm-limit.c (get_lim_data) [MSDOS]: Use alternative methods of
11452 estimating available memory.
11453
11454 2008-08-23 David Reitter <david.reitter@gmail.com>
11455
11456 * nsterm.m (ns_draw_window_cursor): Don't call
11457 NSDisableScreenUpdates and NSEnableScreenUpdates on
11458 non-NS_IMPL_COCOA systems.
11459
11460 2008-08-23 Andreas Schwab <schwab@suse.de>
11461
11462 * process.c (procfs_system_process_attributes): Fix use of
11463 uninitialized variables.
11464
11465 2008-08-23 Eli Zaretskii <eliz@gnu.org>
11466
11467 * emacs.c (main) [MSDOS]: Call syms_of_xmenu.
11468
11469 * dispnew.c (init_display): Remove MS-DOS specific conditions for
11470 calling tty-set-up-initial-frame-faces.
11471
11472 * xmenu.c (Fx_popup_dialog, Fx_popup_menu, xmenu_show):
11473 Allow MSDOS frames along with X frames.
11474
11475 * termhooks.h (TERMINAL_ACTIVE_P): Handle output_msdos_raw in
11476 addition to output_termcap.
11477
11478 * xdisp.c (redisplay_internal) [MSDOS]: Don't call set_tty_color_mode.
11479
11480 * termchar.h (FRAME_TTY): Support output_msdos_raw.
11481 (struct tty_display_info) [MSDOS]: Add fields related to mouse
11482 highlight.
11483
11484 * process.c [!subprocesses]: Define QCname.
11485 (syms_of_process): Intern and staticpro it.
11486
11487 * w16select.c (Fw16_set_clipboard_data, Fw16_get_clipboard_data):
11488 Adjust for changes in encoding/decoding routines.
11489 Use encode_coding_object and decode_coding_object instead of
11490 encode_coding and decode_coding.
11491
11492 * sysdep.c (init_sys_modes): Call dos_ttraw with tty_out as argument.
11493
11494 * dosfns.c: Include frame.h before termhooks.h.
11495 (dos_cleanup): Use CURTTY ()->termscript instead of a global
11496 variable termscript.
11497
11498 * s/msdos.h (USER_FULL_NAME): Define.
11499 (SYSTEM_PURESIZE_EXTRA): Bump up to 100K.
11500
11501 * editfns.c (USER_FULL_NAME): Define to pw->pw_gecos if undefined.
11502 (Fuser_full_name): Use USER_FULL_NAME instead of a literal
11503 pw->pw_gecos.
11504
11505 * keyboard.c (handle_interrupt) [MSDOS]: Call cursor_to with
11506 SELECTED_FRAME as additional (1st) argument.
11507 (tty_read_avail_input): Handle output_msdos_raw in
11508 addition to output_termcap.
11509
11510 * msdos.c: Include frame.h before termhooks.h.
11511 (mouse_on, mouse_off, mouse_moveto, mouse_init)
11512 (msdos_set_cursor_shape, IT_set_face, IT_write_glyphs)
11513 (show_mouse_face, IT_clear_end_of_line, IT_clear_screen)
11514 (IT_clear_to_end, IT_cursor_to, IT_display_cursor, IT_cmgoto)
11515 (IT_set_terminal_modes, IT_reset_terminal_modes)
11516 (IT_set_frame_parameters): Use tty->termscript instead of a global
11517 variable termscript.
11518 (IT_write_glyphs): Use tty->terminal->terminal_coding instead of a
11519 global variable terminal_coding. Don't refer to
11520 Vnonascii_translation_table.
11521 (internal_terminal_init): Set Vwindow_system in current_kboard.
11522 Don't use TTY_CHAR_INS_DEL_OK. Set Vinitial_window_system.
11523 Announce date and time of session start, if termscript is open.
11524 Don't zero out the_only_display_info (it is done in
11525 term.c:init_tty). Open termscript only of not already open.
11526 Log "SCREEN SAVED" here, instead of IT_set_terminal_modes. Init mouse
11527 here instead of dos_ttraw. Don't initialize display if this is an
11528 initial tty. Don't set FRAME_FONT.
11529 (Vwindow_system_version): Bump to 23.
11530 (dos_ttraw): Accept a TTY argument; all callers fixed. If mouse
11531 is available, set up mouse_position_hook.
11532 (dos_ttraw, IT_set_terminal_modes): If called with initial
11533 terminal, do nothing.
11534 (IT_set_frame_parameters): Handle the Qtty_type frame
11535 parameter by calling internal_terminal_init.
11536 (dos_set_window_size, show_mouse_face)
11537 (clear_mouse_face, IT_note_mode_line_highlight)
11538 (IT_note_mouse_highlight, IT_update_begin, IT_frame_up_to_date)
11539 (dos_rawgetc): Use tty_display_info instead of x_display_info.
11540 (initialize_msdos_display): New function.
11541 (IT_cursor_to, IT_clear_to_end, IT_clear_screen)
11542 (IT_clear_end_of_line, IT_insert_glyphs, IT_write_glyphs)
11543 (IT_delete_glyphs, IT_ring_bell, IT_reset_terminal_modes)
11544 (IT_set_terminal_modes, IT_set_terminal_window, IT_update_begin):
11545 Accept additional argument: a pointer to a frame. Update all callers.
11546 (request_sigio, unrequest_sigio): Don't define, now defined on
11547 sysdep.c.
11548 (IT_write_glyphs): Rewrite to use encode_terminal_code.
11549
11550 * term.c [MSDOS]: Include msdos.h.
11551 (init_tty) [MSDOS]: Reuse most of WINDOWSNT branch. Change cpp
11552 conditional to DOS_NT. Allow only one call to this function in a
11553 session. Don't allocate a new struct tty_display_info; instead,
11554 reuse the_only_display_info. Call get_tty_size to get screen
11555 dimensions. Call init_baud_rate to set bad_rate.
11556 (dissociate_if_controlling_tty) [MSDOS]: Ifdef away function body.
11557 (Fsuspend_tty) [MSDOS]: Don't close input and output.
11558 (Fresume_tty) [MSDOS]: Don't reopen the TTY; instead, use stdin/stdout.
11559 (get_tty_terminal, get_named_tty, Ftty_type)
11560 (Fcontrolling_tty_p): Handle output_msdos_raw in addition to
11561 output_termcap.
11562 (Fresume_tty, Fsuspend_tty, init_tty, delete_tty):
11563 Call add_keyboard_wait_descriptor and delete_keyboard_wait_descriptor
11564 only when subprocesses are supported.
11565
11566 * frame.c (make_terminal_frame) [MSDOS]: Adjust initialization of
11567 f->output_data.x.
11568 (Fmake_terminal_frame) [MSDOS]: Don't allow creation of new
11569 terminal devices.
11570
11571 * msdos.h: Remove definition of struct x_display_info and struct
11572 x_output.
11573 (FRAME_FONT): Use output_data.tty.
11574 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL): Don't define.
11575 (struct x_display_info): Rename from display_info. Update all users in
11576 msdos.c.
11577 (struct x_output): Remove background_pixel and foreground_pixel.
11578 (the_only_display_info): Rename from the_only_x_display.
11579 (dos_ttraw): Update prototype.
11580
11581 * Makefile.in (MSDOS_OBJ): Add xmenu.o.
11582 (SOME_MACHINE_LISP): Add ../lisp/term/pc-win.elc.
11583
11584 2008-08-23 Jason Rumney <jasonr@gnu.org>
11585
11586 * image.c (enum tiff_keyword_index, tiff_format): Add :index keyword.
11587 (fn_TIFFSetDirectory): New library function used.
11588 (init_tiff_functions) [HAVE_NTGUI]: Initialize it.
11589 (tiff_load): Use :index to select among multiple images. Set count
11590 property when multiple images exist.
11591 (gif_format): Use :index, not :image.
11592
11593 2008-08-23 Chong Yidong <cyd@stupidchicken.com>
11594
11595 * xdisp.c (try_scrolling): Check INT_MAX instead of
11596 MOST_POSITIVE_FIXNUM for maximum integer value. Include limits.h
11597 to obtain INT_MAX.
11598
11599 2008-08-21 İsmail Dönmez <ismail@namtrac.org> (tiny change)
11600
11601 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase on GTK+.
11602
11603 2008-08-21 Christian Faulhammer <opfer@gentoo.org> (tiny change)
11604
11605 * Makefile.in (temacs${EXEEXT}): On GNUstep, link to appropriate
11606 GNUstep library location.
11607
11608 2008-08-21 Chong Yidong <cyd@stupidchicken.com>
11609
11610 * xfaces.c (x_update_menu_appearance): Check validity of menu font
11611 before using it.
11612
11613 * puresize.h (BASE_PURESIZE): Increase to 1250000.
11614
11615 2008-08-20 Adrian Robert <Adrian.B.Robert@gmail.com>
11616
11617 * nsfns.m (ns-read-file-name): Add casts to avoid warning.
11618 (ns-convert-utf8-nfd-to-nfc): Warn if cannot execute correctly.
11619 * nsfont.m (nsfont_draw): Compare indexed colors to 0, not nil.
11620 * nsterm.h (EmacsView-unlockFocusNeedsFlush:): Add declaration.
11621 (EmacsApp-cursor_blink_handler): Remove declaration.
11622 * nsterm.m (ns_draw_glyph_string): Update first conditional body to
11623 match 01 Feb 2008 changes in xterm.c.
11624 (ns_read_socket): Add cast to avoid warning.
11625 (EmacsApp-application:openFiles:): Don't call replyToOpenOrPrint: on
11626 GNUstep.
11627
11628 2008-08-20 Chong Yidong <cyd@stupidchicken.com>
11629
11630 * xselect.c (x_get_foreign_selection): Return nil if desired
11631 selection could not be obtained, instead of signalling an error.
11632
11633 2008-08-20 David Reitter <david.reitter@gmail.com>
11634
11635 * nsfns.m (ns_lisp_to_cursor_type): Replace with generic xfns.c.
11636 * nsterm.m: Remove ns-specific code for cursor blinking.
11637 (ns_draw_window_cursor): Clear cursor properly rather than
11638 redrawing the area. Respect width of bar cursors.
11639 These changes enable the use of generic blink-cursor-mode and
11640 generic cursor types in NS and support smooth cursor movements (do
11641 not blink off after command).
11642 * xdisp.c (get_phys_cursor_geometry): Redraw wider rectangle on
11643 Nextstep, too.
11644
11645 2008-08-19 Kenichi Handa <handa@m17n.org>
11646
11647 * font.c (Vfont_log_deferred): New variable.
11648 (font_add_log): Check Vfont_log_deferred.
11649 (font_deferred_log): New function.
11650
11651 * font.h (font_deferred_log): Extern it.
11652
11653 * fontset.c (reorder_font_vector): Use encoding charset of fonts
11654 for sorting.
11655 (face_for_char): Use deferred log.
11656
11657 2008-08-18 Kenichi Handa <handa@m17n.org>
11658
11659 * fontset.c (face_for_char): Add font log.
11660
11661 * font.c (font_add_log): Add the font properties :script, :lang,
11662 and :otf in the log.
11663
11664 2008-08-17 Chong Yidong <cyd@stupidchicken.com>
11665
11666 * xdisp.c: Remove dead code.
11667 (handle_invisible_prop, next_overlay_string): Defer call to
11668 setup_for_ellipsis.
11669 (handle_stop, set_iterator_to_next): Call setup_for_ellipsis.
11670
11671 2008-08-15 Chong Yidong <cyd@stupidchicken.com>
11672
11673 * xfaces.c (lookup_derived_face): Properly handle possible zero
11674 return value of get_lface_attributes.
11675 (merge_faces): Don't tell lookup_derived_face to signal an error
11676 if face is not found.
11677
11678 * dired.c (Fdirectory_files): Doc fix.
11679
11680 * process.c (make_process): Initialize kill_without_query struct
11681 member.
11682
11683 2008-08-15 Eli Zaretskii <eliz@gnu.org>
11684
11685 * w32.c (w32_system_process_attributes) [_MSC_VER < 1300]:
11686 Alternative calculation of totphys for Visual Studio 6.
11687
11688 * w32fns.c [_MSC_VER && _MSC_VER < 1300]: Declare HMONITOR.
11689
11690 * w32.c (_MEMORY_STATUS_EX, MEMORY_STATUS_EX, LPMEMORY_STATUS_EX):
11691 Rename from _MEMORYSTATUSEX, MEMORYSTATUSEX, LPMEMORYSTATUSEX.
11692 All users changed.
11693 (stat): Only root directory passed to GetDriveType. Allow RAM
11694 disk as well as local fixed disk when w32-get-true-file-attributes
11695 is set to `local'.
11696 (CopySid_Proc, EqualSid_Proc, GetLengthSid_Proc): New typedefs.
11697 (equal_sid, get_length_sid, copy_sid): New wrapper functions.
11698 (w32_cached_id, w32_add_to_cache): New functions.
11699 (get_name_and_id): Look account names in the cache before calling
11700 lookup_account_sid.
11701 (g_b_init_get_length_sid, g_b_init_equal_sid, g_b_init_copy_sid):
11702 New initialization flags.
11703 (globals_of_w32): Initialize them to zero.
11704 (w32_system_process_attributes): Use w32_cached_id and
11705 w32_add_to_cache.
11706
11707 2008-08-14 Lawrence Mitchell <wence@gmx.li>
11708
11709 * lread.c (Fread_char, Fread_char_exclusive): If no character
11710 event is read before timeout is reached, return nil, rather than
11711 converting to a number.
11712
11713 2008-08-14 Chong Yidong <cyd@stupidchicken.com>
11714
11715 * fns.c (use_dialog_box): Doc fix.
11716
11717 * s/darwin.h: Undefine HAVE_RES_INIT, which appears to be harmful
11718 on OS X.
11719
11720 2008-08-13 Chong Yidong <cyd@stupidchicken.com>
11721
11722 * frame.c (Qns_parse_geometry): New var.
11723 (Fx_parse_geometry): For HAVE_NS, call ns-parse-geometry.
11724
11725 2008-08-11 Chong Yidong <cyd@stupidchicken.com>
11726
11727 * xdisp.c (x_produce_glyphs): Handle the case when font has no
11728 space character in calculating tabs.
11729
11730 2008-08-11 Dan Nicolaescu <dann@ics.uci.edu>
11731
11732 * Makefile.in (bootstrap-emacs): Use ln -f in the CANNOT_DUMP case.
11733
11734 2008-08-10 Glenn Morris <rgm@gnu.org>
11735
11736 * process.c (procfs_system_process_attributes): Use EMACS_INTs to
11737 silence gcc "limited range of data type" warnings in some
11738 make_fixnum_or_float calls.
11739
11740 2008-08-09 Eli Zaretskii <eliz@gnu.org>
11741
11742 * w32.c (w32_system_process_attributes): If the process does not
11743 exist, return nil.
11744
11745 * w32.c: Include thelp32.h, psapi.h and coding.h.
11746 (_MEMORYSTATUSEX, _PROCESS_MEMORY_COUNTERS_EX): New struct
11747 declarations.
11748 (CreateToolhelp32Snapshot_Proc, Process32First_Proc)
11749 (Process32Next_Proc): New typedefs.
11750 (g_b_init_create_toolhelp32_snapshot, g_b_init_process32_first)
11751 (g_b_init_process32_next, g_b_init_open_thread_token)
11752 (g_b_init_impersonate_self, g_b_init_revert_to_self)
11753 (g_b_init_get_process_memory_info, g_b_init_global_memory_status)
11754 (g_b_init_get_process_working_set_size)
11755 (g_b_init_global_memory_status_ex): New static variables.
11756 (globals_of_w32): Initialize them.
11757 (create_toolhelp32_snapshot, process32_first, process32_next)
11758 (open_thread_token, impersonate_self, revert_to_self)
11759 (get_process_memory_info, get_process_working_set_size)
11760 (global_memory_status, global_memory_status_ex): New wrapper
11761 functions.
11762 (w32_list_system_processes, w32_system_process_attributes)
11763 (enable_privilege, restore_privilege, ltime, process_times):
11764 New functions.
11765 (convert_time_raw): New function.
11766 (convert_time): Remove conversion of FILETIME into time in 100
11767 nsec units, call convert_time_raw instead.
11768
11769 * process.h (w32_list_system_processes, w32_system_process_attributes):
11770 Add prototypes.
11771 (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname)
11772 (Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime, Qcutime)
11773 (Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs, Quser, Qgroup)
11774 (Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime): Add extern declarations.
11775
11776 * process.c (Fsystem_process_attributes): Doc fix.
11777
11778 2008-08-08 Chong Yidong <cyd@stupidchicken.com>
11779
11780 * xdisp.c (move_it_to): When stopping at a charpos, check if that's
11781 a continued multi-char glyph; if so, advance to the actual glyph.
11782
11783 2008-08-07 Dan Nicolaescu <dann@ics.uci.edu>
11784
11785 * s/darwin.h (OTHER_FILES): Do not define here, defined in config.in.
11786
11787 * Makefile.in (ALL_OBJC_CFLAGS): New variable.
11788 (.m.o): Use it.
11789 * config.in: Regenerate.
11790
11791 2008-08-07 Chong Yidong <cyd@stupidchicken.com>
11792
11793 * xdisp.c (redisplay_window): Revert last change.
11794 (try_window): Check bottom scroll margin too.
11795
11796 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
11797
11798 * config.in: Regenerate.
11799
11800 * Makefile.in (emacs): Remove ifndef NS conditional for 'emacs
11801 -list-load-path-shadows'.
11802 (nsgui.h): Reduce number of things depending on it.
11803
11804 2008-08-06 Chong Yidong <cyd@stupidchicken.com>
11805
11806 * xdisp.c (try_scrolling): Use iterator to find the scroll margin,
11807 instead of window-end which does the wrong thing at eob.
11808 (try_cursor_movement): Minor optimization.
11809 (redisplay_window): If scroll margin is defined, don't assume
11810 window doesn't need scrolling.
11811
11812 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
11813
11814 * config.in: Regenerate.
11815
11816 * Makefile.in: Move nsXXX.m dependencies into big alphabetical list.
11817 (mostlyclean): Don't delete *.d under NS.
11818
11819 * nsterm.h (NS_HAVE_INTEGER): Change to NS_HAVE_NSINTEGER.
11820
11821 2008-08-06 Kenichi Handa <handa@m17n.org>
11822
11823 * xfont.c (xfont_list_family): Return a list of symbols, not strings.
11824
11825 2008-08-06 Andreas Schwab <schwab@suse.de>
11826
11827 * config.in: Regenerate.
11828
11829 2008-08-05 Chong Yidong <cyd@stupidchicken.com>
11830
11831 * xdisp.c (redisplay_window): Don't enforce scroll-margin when
11832 forcing a window start.
11833
11834 * fileio.c (Vauto_save_list_file_name): Move here from file.el.
11835 (auto_save_1): Update modtime when auto-save-list-file-name is on.
11836
11837 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
11838
11839 * emacs.c (main): Under NS, set working dir to HOME when get a "psn"
11840 argument.
11841
11842 2008-08-05 Juanma Barranquero <lekktu@gmail.com>
11843
11844 * buffer.c (syms_of_buffer) <scroll-up-aggressively>:
11845 <scroll-down-aggressively, before-change-functions>:
11846 <after-change-functions>: Reflow docstrings.
11847
11848 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
11849 Ken Raeburn <raeburn@gnu.org>
11850
11851 Dock menu customization, based on a patch by Ken Raeburn, plus some
11852 other fixes.
11853 * nsmenu.m (dockMenu): New variable.
11854 (EmacsDialog -clicked:): Fix mistake in change of 2008-07-17.
11855
11856 * nsterm.h (dockMenu): Declare.
11857
11858 * nsterm.m (KEY_NS_NEW_FRAME): New definition.
11859 (ns_term_init): Initialize dockMenu.
11860 (EmacsApp -newFrame:, -applicationDockMenu:): New methods.
11861 (EmacsView -windowShouldClose:): Don't behave specially if <= 1 frame
11862 left.
11863
11864 * lisp.h (LSB_TAG): Use on DARWIN_OS, not NS_IMPL_COCOA.
11865
11866 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
11867
11868 * nsterm.h: Test directly for NS_HAVE_INTEGER before defining it.
11869
11870 * config.in: Regenerate.
11871
11872 2008-08-04 Seiji Zenitani <zenitani@mac.com>
11873
11874 * nsfns.m (x-create-frame): Set the frame parameter alpha to nil.
11875
11876 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
11877
11878 * nsterm.h (find_and_call_menu_selection): Fix prototype.
11879
11880 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
11881
11882 * emacs.c (main: unexec_init_emacs_zone): Call if on DARWIN_OS.
11883
11884 * keyboard.h: Comment an #endif.
11885
11886 * lisp.h (have_menus_p): Adjust comment.
11887
11888 * menu.c (find_and_return_menu_selection): Fix comparison with
11889 client_data.
11890
11891 * nsmenu.m (popup_activated_flag): New variable.
11892 (popup_activated): New function.
11893 (menu-or-popup-active-p): New exported lisp definition.
11894 (ns_popup_menu): Set popup_activated_flag. Call discard_menu_items()
11895 when popup done.
11896 (ns_popup_dialog): Set popup_activated_flag.
11897
11898 * nsterm.m (EmacsView -conversationIdentifier): Use NSInteger
11899 version for GNUstep (handled by conditional typedef in nsterm.m).
11900 (ns_get_color): Remove special-casing for "darkblue", "dark blue" (now
11901 in rgb.txt).
11902
11903 * process.c (init_process): Use DARWIN_OS, not DARWIN.
11904
11905 * sysselect.h: Conditionalize init_process undef on DARWIN_OS.
11906
11907 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): Do it also under NS.
11908
11909 * xdisp.c (redisplay_internal, note_mouse_highlight): Under NS,
11910 shortcircuit if popup_activated like GTK and X toolkit.
11911
11912 * m/inter386.h: Change DARWIN to DARWIN_OS.
11913
11914 * s/darwin.h: Add #define DARWIN_OS. Get rid of C_SWITCH_SYSTEM def.
11915 Change LIBS_MACGUI to LIBS_NSGUI. Move temacs-conditionalized defs
11916 closer to C_SWITCH_SYSTEM_TEMACS so usage is understood. Expand
11917 comment on NO_SOCK_SIGIO.
11918
11919 2008-08-03 Chong Yidong <cyd@stupidchicken.com>
11920
11921 * nsterm.m (windowDidResize): Remove stopModal call.
11922
11923 2008-08-03 Andreas Schwab <schwab@suse.de>
11924
11925 * vm-limit.c (get_lim_data) [HAVE_GETRLIMIT && RLIMIT_AS]: Define.
11926 (check_memory_limits): Don't handle HAVE_GETRLIMIT here.
11927
11928 2008-08-02 Chong Yidong <cyd@stupidchicken.com>
11929
11930 * vm-limit.c (check_memory_limits): Don't use getrlimit on cygwin.
11931 Don't use uninitialized pointer variable when using getrlimit.
11932
11933 2008-08-02 Jason Rumney <jasonr@gnu.org>
11934
11935 * w32font.c (compute_metrics): Don't mess with glyph_idx setting here.
11936
11937 2008-08-02 Eli Zaretskii <eliz@gnu.org>
11938
11939 * alloc.c (NSTATICS): Bump to 0x640.
11940
11941 * s/gnu-linux.h (HAVE_PROCFS, LISTPROC, PROCATTR): New defines.
11942
11943 * lisp.h: Add prototype for directory_files_internal.
11944
11945 * process.c (Fsystem_processes_list, Fsystem_process_attributes):
11946 New functions.
11947 (syms_of_process): Defsubr them. Add initializations for various
11948 Q* symbols used in procfs_system_process_attributes.
11949 (procfs_list_system_processes, procfs_system_process_attributes)
11950 [HAVE_PROCFS]: New functions.
11951 (time_from_jiffies, ltime_from_jiffies, get_up_time, procfs_ttyname)
11952 (procfs_get_total_memory): New functions.
11953
11954 2008-08-01 Juanma Barranquero <lekktu@gmail.com>
11955
11956 * xfaces.c (Fx_load_color_file): Fix previous change;
11957 it is #ifdef WINDOWSNT, not WINDOWS_NT.
11958
11959 2008-08-01 Michael Albinus <michael.albinus@gmx.de>
11960
11961 * dbusbind.c (xd_read_message): Handle D-Bus error messages.
11962
11963 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
11964
11965 * nsterm.h (NSInteger, NSUInteger): Add defines for non-Leopard.
11966
11967 2008-08-01 Chong Yidong <cyd@stupidchicken.com>
11968
11969 * nsfns.m (ns_frame_parm_handlers): Add empty entry for x_set_alpha.
11970
11971 * nsterm.m (EmacsApp -application:openFiles:): GNUstep does not
11972 define NSApplicationDelegateReplySuccess.
11973 (EmacsView -converstationIdentifier): Use long instead of
11974 NSInteger for GNUstep, since it doesn't have NSInteger.
11975
11976 * xmenu.c: Revert last change.
11977
11978 * keyboard.h: Fix last change.
11979
11980 2008-08-01 Juanma Barranquero <lekktu@gmail.com>
11981
11982 * xfaces.c (x-load-color-file): Use RGB() instead of manually shifting
11983 on Windows.
11984
11985 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
11986
11987 Warning clearing and clean-up in NS port.
11988 * keyboard.h (xmalloc_widget_value, digest_single_submenu):
11989 Add prototypes.
11990 * nsgui.h (FACE_DEFAULT): Remove, unused.
11991 (XGCValues): Change colors to unsigned long.
11992 * nsterm.h (EmacsApp): Add declaration of all methods implemented in
11993 nsterm.m.
11994 (EmacsMenu -addItemWithWidgetValue:): Change to use NSMenuItem class.
11995 (ns_list_fonts): Remove, unused.
11996 (ns_font_to_xlfd, ns_fontname_to_xlfd): Drop prototypes.
11997 * nsfns.m (interpret_services_menu): Use NSMenuItem class.
11998 * nsfont.m (nsfont_open): Fix cast error in glyphs,metrics alloc.
11999 (nsfont_draw): Compare face colors to 0, not nil.
12000 * nsmenu.m (struct widget_value): Drop unneeded declaration.
12001 (EmacsMenu -addItemWithWidgetValue:, -fillWithWidgetValue:)
12002 (-addSubmenuWithTitle:): Use NSMenuItem class.
12003 (ns_popup_menu): Use NO, not NULL, for enabled setting.
12004 * nsterm.m (ns_draw_glyph_string): Don't compare font to ~0.
12005 (ns_clip_to_row): Make gc arg a BOOL.
12006 (ns_draw_fringe_bitmap, ns_draw_window_cursor): Use YES, NO in
12007 ns_clip_to_row() call.
12008 (ns_draw_glyph_string): Drop face comparison to ~0 (no longer
12009 used). Cast FRAME_FONT assignments.
12010 (ns_read_socket): Cast call to EmacsApp-fulfillService:withArg:.
12011 (ns_string_to_lispmod): Change arg to const char.
12012 (ns_term_init): Use NSMenuItem class.
12013 (EmacsApp -openFile:): Move to different section of file.
12014 (EmacsApp -application:openFiles:): Don't return a value, call
12015 -replyToOpenOrPrint:.
12016 (EmacsView -keyDown:): Fix up cast.
12017 (EmacsView -converstationIdentifier): Use NSInteger instead of long.
12018 (EmacsView -menuDown:): Cast tag in call to
12019 find_and_call_menu_selection().
12020 (ns_list_fonts): Remove, unused.
12021 (ns_font_to_xlfd): Make static. Cast result of UTF8String.
12022 (ns_fontname_to_xlfd): Make static.
12023 * w32menu.c (xmalloc_widget_value, digest_single_submenu):
12024 Remove prototypes (now in keyboard.h).
12025 (next_menubar_widget_id): Remove, unused.
12026 * xmenu.c (xmalloc_widget_value, digest_single_submenu):
12027 Remove prototypes (now in keyboard.h).
12028 * xfaces.c (ns_list_fonts, w32_list_fonts): Remove, unused.
12029
12030 2008-08-01 Dan Nicolaescu <dann@ics.uci.edu>
12031
12032 * Makefile.in (dispnew.o, gtkutil.o, sound.o, atimer.o)
12033 (floatfns.o): Depend on syssignal.h.
12034 (term.o): Depend on syssignal.h, systty.h, and $(INTERVAL_SRC).
12035
12036 * systty.h: Fix previous change that removed BSD_TERMIOS.
12037 Add comments to #ifdefs.
12038
12039 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
12040
12041 * w32fns.c (w32-load-color-file): Remove.
12042 (x-open-connection): Use renamed Fx_load_color_file.
12043 * xfaces.c (x-load-color-file): Add.
12044 * nsterm.m (ns_initialize): Load colors from etc/rgb.txt instead of
12045 Emacs.clr.
12046 (hide_hourglass): BLOCK_INPUT before UNBLOCK.
12047
12048 2008-07-31 Michael Albinus <michael.albinus@gmx.de>
12049
12050 * dbusbind.c (Fdbus_call_method_asynchronously)
12051 (Fdbus_method_error_internal): New defuns.
12052 (xd_read_message): Handle also reply messages.
12053 (Vdbus_registered_functions_table): Extend docstring.
12054
12055 2008-07-31 Juanma Barranquero <lekktu@gmail.com>
12056
12057 * keyboard.c (gobble_input): Fix previous change.
12058
12059 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
12060
12061 * bitmaps/README:
12062 * xfns.c:
12063 * termcap.c:
12064 * term.c:
12065 * syswait.h:
12066 * systty.h:
12067 * systime.h:
12068 * syssignal.h:
12069 * sysdep.c:
12070 * process.h:
12071 * process.c:
12072 * print.c:
12073 * ndir.h:
12074 * lread.c:
12075 * keyboard.c:
12076 * getpagesize.h:
12077 * floatfns.c:
12078 * fileio.c:
12079 * emacs.c:
12080 * doc.c:
12081 * dispnew.c:
12082 * dired.c:
12083 * data.c:
12084 * callproc.c:
12085 * buffer.c:
12086 * README:
12087 * Makefile.in:
12088 * s/template.h:
12089 * s/msdos.h:
12090 * m/vax.h: Remove VMS support.
12091 * s/vms.h:
12092 * vlimit.h:
12093 * uaf.h:
12094 * temacs.opt:
12095 * param.h:
12096 * ioctl.h: Remove file.
12097
12098 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
12099
12100 * s/ms-w32.h (MULTI_KBOARD): Remove.
12101 * xterm.c:
12102 * xselect.c:
12103 * xfns.c:
12104 * window.c:
12105 * w32term.c:
12106 * w32fns.c:
12107 * terminal.c:
12108 * termhooks.h:
12109 * term.c:
12110 * sysdep.c:
12111 * keyboard.h:
12112 * keyboard.c:
12113 * frame.h:
12114 * frame.c:
12115 * frame.c: Remove references to MULTI_KBOARD, it is now the default.
12116 * config.in: Regenerate.
12117
12118 2008-07-30 Jason Rumney <jasonr@gnu.org>
12119
12120 * w32font.h (struct w32font_info): Use unicode version of textmetrics.
12121
12122 * w32font.c (w32font_encode_char): Leave as unicode if in range.
12123 (w32font_open_internal): Get unicode version of textmetrics.
12124 Don't enable or disable glyph indices here.
12125 (w32font_open): Disable use of glyph indices.
12126
12127 * w32uniscribe.c (uniscribe_open): Enable use of glyph indices.
12128
12129 2008-07-30 Chong Yidong <cyd@stupidchicken.com>
12130
12131 * minibuf.c (Vread_buffer_function): Doc fix.
12132
12133 2008-07-30 John Paul Wallington <jpw@pobox.com>
12134
12135 * minibuf.c (read_buffer_completion_ignore_case): New var.
12136 (Fread_buffer): Use it.
12137
12138 2008-07-30 Dan Nicolaescu <dann@ics.uci.edu>
12139
12140 * systty.h (sensemode): Remove empty #if. Remove reference to
12141 BSD_TERMIOS, unused.
12142
12143 * sysdep.c: Remove reference to DGUX.
12144 (closedir): Remove reference to BROKEN_CLOSEDIR, unused.
12145
12146 * config.in: Regenerate.
12147
12148 2008-07-30 Jason Rumney <jasonr@gnu.org>
12149
12150 * w32uniscribe.c (uniscribe_encode_char): Fix glyph buffer size.
12151
12152 2008-07-29 Jason Rumney <jasonr@gnu.org>
12153
12154 * w32uniscribe.c (uniscribe_shape): Avoid using context if cache
12155 is populated.
12156 (uniscribe_encode_char): Always use uniscribe.
12157 Avoid using context if cache is populated.
12158
12159 2008-07-29 Jan Djärv <jan.h.d@swipnet.se>
12160
12161 * xmenu.c (Fx_menu_bar_open_internal): Use activate_item signal to
12162 open menu.
12163
12164 * gtkutil.c (menu_nav_ended): Remove.
12165 (create_menus): Remove signal connect for menu_nav_ended.
12166
12167 2008-07-28 Chong Yidong <cyd@stupidchicken.com>
12168
12169 * xdisp.c (redisplay_window): Check return value of
12170 compute_window_start_on_continuation_line before forcing a window
12171 start.
12172
12173 2008-07-28 Jason Rumney <jasonr@gnu.org>
12174
12175 * w32font.c (w32font_text_extents): Use w32_metric_cache consistently.
12176
12177 * w32term.c (w32_enable_unicode_output, cleartype_active):
12178 Remove obsolete display options.
12179 (x_draw_glyph_string_background): Don't use old cleartype_active
12180 workaround.
12181 (w32_initialize): Remove cleartype_active initialization.
12182 (syms_of_w32term): Remove w32_enable_unicode_output initialization.
12183
12184 2008-07-28 Andreas Schwab <schwab@suse.de>
12185
12186 * lisp.h (init_weak_hash_tables, syms_of_font)
12187 (xd_read_queued_messages, syms_of_dbusbind): Declare.
12188 (remove_hash_entry): Don't declare.
12189 * eval.c (maybe_call_debugger): Make static and move before use.
12190 * gtkutil.c: Include <X11/Xft/Xft.h> if HAVE_XFT.
12191 * xdisp.c: Include "gtkutil.h" if USE_GTK.
12192 * xterm.h (x_set_frame_alpha): Declare.
12193
12194 2008-07-28 Jan Djärv <jan.h.d@swipnet.se>
12195
12196 * gtkutil.c (menu_nav_ended): Revert change from 2008-07-24.
12197 (create_menus): Connect selection-done to menu_nav_ended.
12198
12199 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
12200
12201 * nsfns.m (x-create-frame): Add copy of parms argument to beginning.
12202 Set Vx_resource_name to a fallback. Replace read of 'buffered'
12203 parameter with read of 'alpha' one.
12204 (Qns_frame_parameter): Remove.
12205 * nsselect.m (selection-coding-system)
12206 (next-selection-coding-system, Vselection_coding_system)
12207 (Vnext_selection_coding_system): Drop.
12208
12209 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
12210
12211 * nsfns.m (do-applescript, do_applescript): Rename to
12212 ns-do-applescript, ns_do_applescript, and move within file.
12213
12214 2008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
12215
12216 Remove support for Mac Carbon.
12217 * mactoolbox.c:
12218 * macterm.h:
12219 * macterm.c:
12220 * macselect.c:
12221 * macmenu.c:
12222 * macgui.h:
12223 * macfns.c:
12224 * mac.c: Remove file.
12225 * s/darwin.h:
12226 * m/intel386.h:
12227 * xfaces.c:
12228 * xdisp.c:
12229 * window.c:
12230 * tparam.c:
12231 * termhooks.h:
12232 * termcap.c:
12233 * term.c:
12234 * syssignal.h:
12235 * sysselect.h:
12236 * sysdep.c:
12237 * process.c:
12238 * lread.c:
12239 * lisp.h:
12240 * keyboard.c:
12241 * image.c:
12242 * fringe.c:
12243 * frame.h:
12244 * frame.c:
12245 * fontset.c:
12246 * font.h:
12247 * font.c:
12248 * fns.c:
12249 * fileio.c:
12250 * emacs.c:
12251 * dispnew.c:
12252 * dispextern.h:
12253 * config.in:
12254 * atimer.c:
12255 * Makefile.in: Remove code for Carbon.
12256
12257 2008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12258
12259 * macterm.c (XDrawLine) [USE_MAC_IMAGE_IO]: Remove spurious return.
12260
12261 2008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12262
12263 * macterm.h (kCGBitmapByteOrder32Host): New define for
12264 non-universal SDKs.
12265
12266 * image.c (mac_create_cg_image_from_image, image_load_image_io)
12267 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
12268
12269 * macterm.c (XDrawLine, XCreatePixmapFromBitmapData)
12270 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
12271
12272 2008-07-26 David Robinow <drobinow@gmail.com> (tiny change)
12273
12274 * w32inevt.c: Include dispextern.h.
12275
12276 2008-07-26 Andreas Schwab <schwab@suse.de>
12277
12278 * print.c (print_object): Fix off-by-one in last change.
12279
12280 2008-07-25 Juanma Barranquero <lekktu@gmail.com>
12281
12282 * term.c (syms_of_term): Don't initialize default_orig_pair,
12283 default_set_foreground and default_set_background on Windows.
12284
12285 2008-07-25 Jason Rumney <jasonr@gnu.org>
12286
12287 * w32uniscribe.c (uniscribe_shape): Pass NULL for control arg to
12288 ScriptItemize. Clean up return value checking. Remove unused
12289 variables.
12290 (uniscribe_encode_char): Encode non-BMP characters with uniscribe
12291 shaping engine.
12292
12293 * w32font.c (w32font_has_char): Handle the case where we can't
12294 determine the script for a character.
12295
12296 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
12297
12298 * term.c (syms_of_term): Initialize default_orig_pair,
12299 default_set_foreground, and default_set_background.
12300
12301 * getloadavg.c (nl): Rename to name_list to avoid ncurses.h
12302 clash (bug#86).
12303 (getloadavg): Callers changed.
12304
12305 * image.c (svg_load_image): Fix last change.
12306 (svg_load_image): Use rsvg_handle_get_dimensions to check that
12307 image size is valid. Use g_object_unref instead of deprecated
12308 rsvg_handle_free to free rsvg handle.
12309 (x_from_xcolors): Don't initialize pixmap (silence compiler).
12310
12311 2008-07-25 Jason Rumney <jasonr@gnu.org>
12312
12313 * w32font.c (w32font_encode_char): Encode characters outside BMP as
12314 surrogates before looking up glyph index.
12315 (w32font_text_extents): Encode as surrogates if falling back to
12316 functions that need UTF-16 wide chars.
12317
12318 * w32uniscribe.c (uniscribe_encode_char): Encode characters outside
12319 BMP as surrogates before looking up glyph index.
12320
12321 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
12322
12323 * image.c (svg_load_image): Check for failure in return value of
12324 rsvg_handle_get_pixbuf. Free rsvg handle when done.
12325
12326 2008-07-25 Jason Rumney <jasonr@gnu.org>
12327
12328 * w32font.c (Fx_select_font): Reverse sense of second arg.
12329
12330 2008-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
12331
12332 * syntax.c (struct lisp_parse_state, char_quoted, inc_bytepos)
12333 (dec_bytepos, find_defun_start): Use EMACS_INT for buffer positions.
12334
12335 * puresize.h (PURESIZE_CHECKING_RATIO): New macro.
12336 (PURESIZE): Use it.
12337
12338 2008-07-24 Dan Nicolaescu <dann@ics.uci.edu>
12339
12340 * m/amdx86-64.h (HAVE_LIB64_DIR): Consolidate ifdefs.
12341 * m/alpha.h (TEXT_END):
12342 * m/ibmrs6000.h (TEXT_END):
12343 * m/macppc.h (TEXT_END):
12344 * s/darwin.h (TEXT_END):
12345 * s/msdos.h (TEXT_END): Remove, unused.
12346 * s/gnu-linux.h (BSD_PGRPS): Add a comment.
12347 * s/cygwin.h: Remove comment.
12348
12349 * ecrt0.c (NODOT_GLOBAL_START): Remove code, unused.
12350 (DOT_GLOBAL_START): Remove conditional, redundant for CRT0_DUMMIES.
12351 * m/intel386.h (DOT_GLOBAL_START):
12352 * m/vax.h (DOT_GLOBAL_START): Remove, redundant with CRT0_DUMMIES.
12353 (USG): Remove, file not used on USG platforms.
12354
12355 * Makefile.in (HAVE_X11): Remove empty #else.
12356
12357 2008-07-24 Andreas Schwab <schwab@suse.de>
12358
12359 * fileio.c (Finsert_file_contents): Properly adjust undo list
12360 after format conversion.
12361
12362 2008-07-24 Jan Djärv <jan.h.d@swipnet.se>
12363
12364 * gtkutil.c (xg_get_font_name): Cast w to GTK_FONT_SELECTION_DIALOG.
12365 (menu_nav_ended): Remove.
12366 (create_menus): Remove signal connect for menu_nav_ended.
12367 (xg_update_menubar): Also take deactivate_cb as parameter, pass it to
12368 create_menus.
12369 (xg_modify_menubar_widgets): Pass deactivate_cb to xg_update_menubar.
12370
12371 2008-07-23 Jason Rumney <jasonr@gnu.org>
12372
12373 * w32font.c (w32_enumfont_pattern_entity): Return height consistent
12374 with opened font.
12375 (w32font_open): Set font type to gdi.
12376
12377 * w32uniscribe.c (uniscribe_open): Set font type to uniscribe.
12378
12379 2008-07-23 Dan Nicolaescu <dann@ics.uci.edu>
12380
12381 * s/usg5-4.h (ADDR_CORRECT): Remove, unused.
12382 * unexaix.c (ADDR_CORRECT): Remove conditional, the only user
12383 defines it.
12384 * unexec.c (ADDR_CORRECT): Define unconditionally.
12385
12386 * m/ibmrs6000.h (C_SWITCH_MACHINE): Remove.
12387
12388 * unexec.c: Remove code depending on !COFF and USG, the file is
12389 not used for such systems.
12390
12391 * s/netbsd.h (A_TEXT_OFFSET, A_TEXT_SEEK):
12392 * s/freebsd.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, unused.
12393 (LD_SWITCH_SYSTEM_1): Remove, update users.
12394
12395 * s/darwin.h (DATA_END):
12396 * m/intel386.h (DATA_END):
12397 * m/ibmrs6000.h (DATA_END):
12398 * m/alpha.h (DATA_END): Remove, unused.
12399
12400 * config.in: Regenerate.
12401 * s/ms-w32.h (subprocesses): Define unconditionally.
12402 * s/template.h (subprocesses): Update comment.
12403 * s/vms.h (subprocesses):
12404 * s/usg5-4.h (subprocesses):
12405 * s/hpux10-20.h (subprocesses):
12406 * s/gnu-linux.h (subprocesses):
12407 * s/cygwin.h (subprocesses):
12408 * s/bsd-common.h (subprocesses):
12409 * s/aix4-2.h (subprocesses):
12410 * s/darwin.h (subprocesses): Do not define, defined by default now.
12411
12412 * Makefile.in (C_SWITCH_SITE, LD_SWITCH_SITE): Remove, unused.
12413 Remove all references.
12414 (temacs): Add GNUstep specific ld flags.
12415
12416 * nsterm.m (syms_of_nsterm): Provide ns, not ns-windowing,
12417 similarly to what X does.
12418
12419 2008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
12420
12421 * nsfns.m (x-list-fonts): Remove.
12422 (syms_of_nsfns): Drop the x-list-fonts declaration.
12423 * nsterm.m: Get rid of remaining "//" comments.
12424
12425 2008-07-22 Chong Yidong <cyd@stupidchicken.com>
12426
12427 * xselect.c (Fx_rotate_cut_buffers_internal): Doc fix.
12428
12429 * nsselect.m (Fns_selection_exists_p, Fns_selection_owner_p)
12430 (Fx_get_selection_internal, Fns_rotate_cut_buffers_internal)
12431 (Fns_own_selection_internal, Fx_disown_selection_internal)
12432 (Fns_get_cut_buffer_internal, Fns_store_cut_buffer_internal):
12433
12434 * nsmenu.m (Fns_reset_menu, Fx_popup_menu): Change to use 'doc: /*
12435 ... */' style of docstrings. Doc fixes.
12436
12437 2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
12438
12439 * terminfo.c (UP, BC, PC): Undo previous change.
12440
12441 * nsfns.m: Rename ns prefixed functions/variables to the
12442 corresponding x versions. Update references.
12443
12444 2008-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
12445
12446 * syntax.c (char_quoted): Check "charpos > beg" before decrementing.
12447
12448 2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
12449
12450 * nsfns.m (x_set_menu_bar_lines, x_set_tool_bar_lines):
12451 Remove forwarding functions.
12452 (ns_set_menu_bar_lines): Rename to x_set_menu_bar_lines, make
12453 non-static.
12454 (ns_set_tool_bar_lines): Rename to x_set_tool_bar_lines, make
12455 non-static.
12456 (ns_frame_parm_handlers): Use the new names.
12457 (syms_of_nsfns): Move to the end of file.
12458
12459 * nsterm.m (syms_of_nsterm): Move to the end of file.
12460
12461 * dispnew.c (init_display): Remove code for X10.
12462
12463 2008-07-22 Jason Rumney <jasonr@gnu.org>
12464
12465 * w32proc.c (Fw32_long_file_name): Don't append dir separator to
12466 bare drive.
12467
12468 2008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
12469
12470 * nsterm.m (syms_of_nsterm): Remove debugging println.
12471
12472 2008-07-22 David Reitter <david.reitter@gmail.com>
12473
12474 * nsfns.m (do_applescript, F_do_applescript): NS version of the
12475 Carbon implementation of the same functionality: execute arbitrary
12476 AppleScript code.
12477
12478 2008-07-21 Adrian Robert <Adrian.B.Robert@gmail.com>
12479
12480 * nsfns.m (Fx_create_frame, Fx_read_file_name, Fx_get_resource)
12481 (Fx_set_resource, Fx_set_alpha, Fx_server_max_request_size)
12482 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
12483 (Fx_display_mm_height, Fx_display_mm_width)
12484 (Fx_display_backing_store, Fx_display_visual_class)
12485 (Fx_display_save_under, Fx_open_connection)
12486 (Fx_close_connection, Fx_hide_emacs, Fx_font_name)
12487 (Fx_list_colors, Fx_perform_service, Fx_color_defined_p)
12488 (Fx_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
12489 (Fx_display_pixel_width, Fx_display_pixel_height)
12490 (Fx_display_usable_bounds, Fx_display_planes)
12491 (Fx_display_color_cells, Vns_icon_type_alist): Change to use 'doc: /*
12492 ... */' style of docstrings.
12493
12494 2008-07-21 Dan Nicolaescu <dann@ics.uci.edu>
12495
12496 * m/mips.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Do not define, not used
12497 on this platform.
12498 (mips):
12499 * m/iris4d.h (mips): Do not define.
12500 * sysdep.c (init_sys_modes): Use __mips__ instead of mips.
12501
12502 * m/ibmrs6000.h (LD_SWITCH_SITE): Remove.
12503
12504 * image.c:
12505 * nsfns.m:
12506 * nsselect.m:
12507 * nsterm.h:
12508 * nsterm.m: Rename ns prefixed functions/variables to the
12509 corresponding x versions. Update references.
12510
12511 * m/ibms390x.h (NO_REMAP): Do not undefine.
12512
12513 * m/amdx86-64.h: Use SOLARIS2 instead of sun.
12514
12515 2008-07-21 Chong Yidong <cyd@stupidchicken.com>
12516
12517 * nsfns.m: Change NS to Nextstep in docstrings and error messages.
12518 (Fns_create_frame, Fns_read_file_name, Fns_get_resource)
12519 (Fns_set_resource, Fns_set_alpha, Fns_server_max_request_size)
12520 (Fns_server_vendor, Fns_server_version, Fns_display_screens)
12521 (Fns_display_mm_height, Fns_display_mm_width)
12522 (Fns_display_backing_store, Fns_display_visual_class)
12523 (Fns_display_save_under, Fns_open_connection)
12524 (Fns_close_connection, Fns_hide_emacs, Fns_font_name)
12525 (Fns_list_colors, Fns_perform_service, Fns_color_defined_p)
12526 (Fns_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
12527 (Fns_display_pixel_width, Fns_display_pixel_height)
12528 (Fns_display_usable_bounds, Fx_display_planes)
12529 (Fns_display_color_cells, Vns_icon_type_alist): Doc fixes.
12530
12531 2008-07-21 Ami Fischman <ami@fischman.org> (tiny change)
12532
12533 * print.c (print_object): Check print_depth before searching for
12534 circularities.
12535
12536 2008-07-21 Michael Albinus <michael.albinus@gmx.de>
12537
12538 * dbusbind.c (Fdbus_register_signal): Use sprintf + strcat instead
12539 only sprintf.
12540
12541 2008-07-21 Kenichi Handa <handa@m17n.org>
12542
12543 * ftfont.c (adjust_anchor): Check if DeltaValue is not NULL.
12544
12545 2008-07-20 Andreas Schwab <schwab@suse.de>
12546
12547 * syntax.c (find_start_pos, find_start_value)
12548 (find_start_value_byte, find_start_begv, find_defun_start)
12549 (back_comment, scan_sexps_forward): Use EMACS_INT for buffer positions.
12550
12551 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
12552
12553 * s/sol2-3.h: Insert contents of s/sol2.h.
12554 (LD_SWITCH_SYSTEM): Remove redundant definition.
12555 * s/sol2.h: Remove, unused.
12556
12557 2008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
12558
12559 * nsterm.m (ns_get_color): Recognize HSB,AHSB be synonyms for HSV,AHSV.
12560
12561 2008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
12562
12563 * Makefile.in (ns_appdir): Fix typo in find command.
12564
12565 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
12566
12567 * m/intel386.h (NO_REMAP): Do no define for USG, not used.
12568
12569 * s/usg5-4.h (LIBS_SYSTEM): Remove, system for which this was
12570 added not supported anymore.
12571
12572 * s/usg5-4-2.h (LIBS_SYSTEM):
12573 * s/sol2.h (LIBS_SYSTEM): Do not undefine.
12574
12575 * s/netbsd.h (GETPGRP_NO_ARG, N_TRELOFF):
12576 * s/lynxos.h (GETPGRP_NO_ARG):
12577 * s/hpux10-20.h (NO_SIOCTL_H):
12578 * s/gnu.h (GETPGRP_NO_ARG):
12579 * s/gnu-linux.h (NO_SIOCTL_H):
12580 * s/freebsd.h (GETPGRP_NO_ARG, N_TRELOFF):
12581 * s/cygwin.h (GETPGRP_NO_ARG):
12582 * s/irix6-5.h (LIBS_SYSTEM, GETPGRP_NO_ARG): Remove, unused.
12583 (C_DEBUG_SWITCH): Remove duplicate definition.
12584
12585 * m/ibms390.h: Remove boilerplate comments.
12586
12587 * sysdep.c (closedir): Use SOLARIS2 instead of sun && USG5_4.
12588
12589 * process.c (HAVE_SERIAL): Consolidate ifdefs.
12590 (wait_reading_process_output): Remove code for SunOS, platform not
12591 supported anymore. Use SOLARIS2 instead of sun.
12592
12593 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
12594
12595 * font.c (font_open_by_name): Under NS, default lface height to zero.
12596 (font_open_for_lface): Under NS, set size based on frame fontsize.
12597 * nsterm.m (EmacsView-changeFont:): Remove some commented code.
12598 * frame.c (x_set_frame_parameters): Remove HAVE_NS ifdef.
12599
12600 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
12601
12602 * nsterm.m (ns_antialias_text, ns_use_qd_smoothing)
12603 (ns_use_system_highlight_color): Switch these from DEFVAR_BOOL to
12604 DEFVAR_LISP and change all code accordingly to use Qt/Qnil instead of
12605 YES/NO.
12606 * nsterm.h (prevUseHighlightColor): Make a Lisp_Object.
12607 * nsfont.m (nsfont_draw): Treat ns_use_qd_smoothing as Lisp_Object.
12608 * Makefile.in (clean): Clear out build destination dir.
12609
12610 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
12611
12612 * Makefile.in (nsgui.h-related dependencies): Remove abbrev, xfns,
12613 xterm, xselect.
12614 * lisp.h: Remove declaration of hash_remove.
12615 * nsgui.h: Remove redefinitions of hash_remove.
12616 * fns.c (hash_remove): Rename to hash_remove_from_table.
12617
12618 2008-07-19 Seiji Zenitani <zenitani@mac.com>
12619
12620 * nsfont.m (nsfont_fmember_to_entity, nsfont_make_fontset_for_font):
12621 strdup() the family UTF8String before modifying it.
12622
12623 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
12624
12625 * nsterm.m (ns_maybe_dumpglyphs_background): Compare result from
12626 NS_FACE_BACKGROUND with 0 instead of nil.
12627 * nsfont.m (nsfont_draw): Same.
12628
12629 2008-07-19 Chong Yidong <cyd@stupidchicken.com>
12630
12631 * nsfns.m (ns_set_background_color): Fix crash.
12632
12633 2008-07-18 Chong Yidong <cyd@stupidchicken.com>
12634
12635 * Makefile.in (SOME_MACHINE_LISP): Remove ns-carbon-compat.elc.
12636
12637 2008-07-18 Dan Nicolaescu <dann@ics.uci.edu>
12638
12639 * puresize.h (BASE_PURESIZE): Increase to 1240000.
12640
12641 2008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12642
12643 * gtkutil.c: Include <config.h> instead of "config.h".
12644
12645 * lisp.h (Foverlay_buffer): Add EXFUN.
12646
12647 * process.c (create_process) [!WINDOWSNT && FD_CLOEXEC]: Wait for
12648 child process to complete child_setup. Undo 2005-09-21 change.
12649
12650 * s/darwin.h: Mention setsid after vfork.
12651
12652 2008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12653
12654 * Makefile.in (frame.o, keyboard.o, xdisp.o, xfaces.o):
12655 Depend on macgui.h.
12656
12657 * macfns.c (Fx_server_version): Don't use gestaltSystemVersionMajor,
12658 gestaltSystemVersionMinor, or gestaltSystemVersionBugFix.
12659
12660 * macterm.c (keycode_to_xkeysym_table): Add entries for f17, f18,
12661 and f19.
12662 [MAC_OSX] (fn_keycode_to_keycode_table): Likewise.
12663
12664 * macterm.h (gestaltSystemVersionMajor, gestaltSystemVersionMinor)
12665 (gestaltSystemVersionBugFix) [MAC_OS_X_VERSION_MAX_ALLOWED < 1040]:
12666 Remove enumerators.
12667
12668 * mactoolbox.c [USE_MAC_TSM] (mac_handle_text_input_event):
12669 Check if FACE_FROM_ID returns NULL.
12670
12671 2008-07-17 David Robinow <drobinow@gmail.com> (tiny change)
12672
12673 * w32inevt.c (change_frame_size): Remove extern declaration.
12674 (resize_event, maybe_generate_resize_event): Pass SAFE arg to
12675 change_frame_size.
12676
12677 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
12678
12679 * getloadavg.c: Revert last change (2008-07-15).
12680
12681 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
12682
12683 * Makefile.in: Replace emacsapp, emacsbindir, emacsappsrc variables
12684 set here with ns_appdir, ns_appresdir, ns_appbindir, ns_appsrc set
12685 from configure.
12686
12687 2008-07-17 Dan Nicolaescu <dann@ics.uci.edu>
12688
12689 * s/sol2.h:
12690 * s/sol2-4.h: Reorganize conditionals.
12691
12692 * ecrt0.c: Remove code depending on m68000, not used anymore.
12693
12694 * fns.c (hash_remove): Make static.
12695 * lisp.h (hash_remove): Don't prototype.
12696
12697 * m/ibmrs6000.h:
12698 * m/ibms390x.h:
12699 * m/macppc.h: Remove boilerplate comments.
12700
12701 * m/sparc.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, only used on
12702 Solaris, which does not need them.
12703
12704 * m/vax.h: Remove comments about unsupported systems.
12705
12706 * s/darwin.h: Reorganize ifdefs.
12707
12708 2008-07-17 Andreas Schwab <schwab@suse.de>
12709
12710 * s/cygwin.h (LIB_STANDARD_LIBSRC): Don't define.
12711
12712 2008-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
12713
12714 Use SDATA. Follow coding convention of placing operators at
12715 beginning of next line rather than end of previous line, and placing
12716 spaces around infix operators.
12717
12718 * Makefile.in: Undef LIB_STANDARD before defining it to silence warning
12719 in case it was defined already.
12720 USE @GNUSTEP_MAKEFILES@ rather than envvars.
12721 * nsterm.m (ns_term_init): Pass Qt and Qnil rather than YES/NO to
12722 ns_default.
12723 (applicationShouldTerminate, setValuesFromPanel): Use EQ to compare
12724 Lisp_Objects.
12725 * nsterm.h (Fx_display_grayscale_p, Fx_display_planes)
12726 (ns_defined_color, ns_color_to_lisp): Declare.
12727 * nsselect.m (ns_handle_selection_request, ns_handle_selection_clear)
12728 (Fns_own_selection_internal): Make the big ugly hack more explicit, so
12729 it's accepted even with USE_LISP_UNION_TYPE.
12730 * nsmenu.m (ns_update_menubar): Use EQ to compare Lisp_Objects.
12731 (update_frame_tool_bar): Remove apparently obsolete tests for
12732 non-integerness of f->tool_bar_lines.
12733 (windowShouldClose, addButton, clicked, runDialogAt): Make the big ugly
12734 hack more explicit, so it's accepted even with USE_LISP_UNION_TYPE.
12735 * nsfont.m (nsfont_driver): Use just 0 rather than an invalid cast.
12736 (nsfont_open): Don't confuse NULL for Qnil.
12737 * nsfns.m (ns_implicitly_set_icon_type): Use EQ to compare Lisp_Objects.
12738 * menu.h (find_and_call_menu_selection):
12739 * menu.c (find_and_call_menu_selection): Use just int for vector size.
12740 (find_and_return_menu_selection): Always return something.
12741 * frame.h: Include dispextern.h for Display_Info.
12742 (display_x_get_resource): Declare.
12743
12744 2008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
12745
12746 * syntax.c: Remove stdio.h include accidentally introduced in
12747 Emacs.app commit.
12748 * Makefile.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
12749 NS_IMPL_COCOA.
12750 * keyboard.c (handle_async_input, input_available_signal): Remove
12751 BSD4_1 conditional code, introduced accidentally in Emacs.app commit.
12752
12753 2008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
12754
12755 * nsterm.m (lisp_to_mod): Use parse_solitary_modifier instead.
12756 (ns_lisp_to_color): Don't mess with internal Lisp data fields.
12757 (ns_term_init, ns_term_shutdown, initFrameFromEmacs, ns_list_fonts):
12758 Use SDATA.
12759
12760 * keymap.c: Remove all NS-specific code.
12761 (where_is_preferred_modifier, Vwhere_is_preferred_modifier): New vars.
12762 (preferred_sequence_p): Rename from ascii_sequence_p; pay attention to
12763 where_is_preferred_modifier, return a different value depending on how
12764 preferred is the binding.
12765 (where_is_internal): Adjust accordingly.
12766 (Fwhere_is_internal): Refresh where_is_preferred_modifier.
12767 Adjust to new preferred_sequence_p.
12768 (syms_of_keymap): Declare `where-is-preferred-modifier'.
12769 * keyboard.c (parse_solitary_modifier): Not static any more.
12770 * keyboard.h (parse_solitary_modifier): Declare.
12771
12772 2008-07-16 Andreas Schwab <schwab@suse.de>
12773
12774 * Makefile.in (SOME_MACHINE_LISP): Remove easy-mmode, fix spelling
12775 of easymenu.
12776
12777 2008-07-16 Chong Yidong <cyd@stupidchicken.com>
12778
12779 * xdisp.c (move_it_in_display_line): Account for word wrap, so
12780 that we don't move off the line.
12781
12782 2008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
12783
12784 * keyboard.c (Qsuper): Remove.
12785 (parse_menu_item): Don't call where_is_internal specially for NS.
12786
12787 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
12788
12789 * s/gnu-linux.h: Remove boilerplate comments.
12790
12791 * m/alpha.h (__ELF__): Consolidate conditions.
12792
12793 * m/m68k.h (linux): Use GNU_LINUX instead.
12794 Remove boilerplate comments.
12795
12796 * m/intel386.h: Undo refactoring from previous change.
12797 (LIB_STANDARD): All systems that define USG define LIB_STANDARD
12798 too, remove dead code.
12799 (linux): Use GNU_LINUX instead.
12800
12801 2008-07-16 Jason Rumney <jasonr@gnu.org>
12802
12803 * w32gui.h: Repeat 26 June changes lost by last change.
12804
12805 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
12806
12807 * systty.h: Remove code for Aix on 386, unsupported platform.
12808
12809 * s/ms-w32.h: Remove boilerplate comments.
12810 (fcloseall, fgetchar, flushall, fputchar, getw, putw): Remove, unused.
12811
12812 * s/gnu-linux.h (TERM): Remove support.
12813 (HAVE_SYSVIPC): Remove, unused.
12814 (A_TEXT_OFFSET, A_TEXT_SEEK, ADJUST_EXEC_HEADER): Remove, not used
12815 for this system.
12816
12817 * process.c: Remove support for IRIS, unused.
12818 Remove support for TERM, not relevant anymore.
12819
12820 * unexalpha.c (DEFAULT_ENTRY_ADDRESS): Remove, replace the only
12821 used with the definition.
12822
12823 * s/aix4-2.h (static): Do not undef.
12824
12825 * m/ibmrs6000.h: Remove code depending on USG5_4, this file is
12826 only used on Aix.
12827 (HAVE_SYSVIPC): Remove, unused.
12828
12829 * m/hp800.h (CANNOT_DUMP): Do not undef.
12830
12831 * m/alpha.h: Fix comment.
12832
12833 * s/usg5-4.h (HAVE_SYSVIPC): Remove, unused.
12834 (USG_SHARED_LIBRARIES): Remove, only used in unexec.c which is not
12835 used by this configuration.
12836 * emacs.c: Remove code depending on USG_SHARED_LIBRARIES.
12837 * unexec.c: Remove code depending on HPUX and
12838 USG_SHARED_LIBRARIES, not used with this file. Remove code
12839 depending on IRIS, unused. Remove if 0-ed code.
12840
12841 * s/template.h: Remove comments about static.
12842
12843 * sysdep.c: Remove code depending on NEED_PTEM_H, unused.
12844 Remove if 0-ed code.
12845 (baud_convert): Don't depend on BAUD_CONVERT, all definitions the
12846 were the same as the default.
12847 * s/vms.h (BAUD_CONVERT): Remove, same as the default.
12848 Remove boilerplate comments.
12849 * s/hpux10-20.h (BAUD_CONVERT): Remove, same as the default.
12850 (HAVE_SYSVIPC): Remove, unused.
12851 (LD_SWITCH_SYSTEM_TEMACS): Simplify, hp9000s700 not supported anymore.
12852
12853 * m/ia64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
12854 Remove boilerplate comments.
12855 * m/amdx86-64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
12856 Remove boilerplate comments.
12857 * m/ibms390x.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
12858 Remove boilerplate comments.
12859 * lisp.h (PNTR_COMPARISON_TYPE): Define it unconditionally.
12860
12861 * m/intel386.h (DATA_SEG_BITS): Remove definitions, only used on
12862 USG systems which do not use DATA_SEG_BITS.
12863 Refactor code. Remove boilerplate comments.
12864
12865 * m/ibms390.h:
12866 * m/m68k.h:
12867 * s/bsd-common.h:
12868 * s/cygwin.h:
12869 * s/darwin.h:
12870 * s/freebsd.h:
12871 * s/gnu.h:
12872 * s/msdos.h: Remove boilerplate comments.
12873
12874 * m/iris4d.h: Remove boilerplate comments and code for systems that
12875 do not use this file.
12876 (IRIS_4D): Remove, unused.
12877
12878 * m/mips.h: Remove boilerplate comments and code for systems that
12879 do not use this file.
12880 (SIGN_EXTEND_CHAR):
12881 * m/arm.h (SIGN_EXTEND_CHAR): Remove, unused.
12882 * unexmips.c: Remove file, unused.
12883
12884 * editfns.c (Fuser_full_name): Replace the only use of
12885 USER_FULL_NAME with its value.
12886 * config.in: Regenerate.
12887
12888 2008-07-16 David Reitter <david.reitter@gmail.com>
12889
12890 * Makefile.in: Add ns-win, ns-carbon-compat, easy-mmode and
12891 easy-menu to SOME_MACHINE_LISP for the new NeXTstep port.
12892
12893 2008-07-16 Glenn Morris <rgm@gnu.org>
12894
12895 * emacs.c (system-type): Doc fix.
12896
12897 2008-07-15 Stefan Monnier <monnier@iro.umontreal.ca>
12898
12899 * keyboard.c (parse_menu_item): Don't use cachelist, even under NS.
12900 If the cache doesn't work, let's fix it, rather than work around it.
12901
12902 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
12903
12904 * Makefile.in: Correct additions for nsfont.o in last commit.
12905 * nsfont.m: New file (forgot last commit).
12906
12907 2008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
12908
12909 * callproc.c (set_initial_environment): Initialize
12910 Vprocess_environment under CANNOT_DUMP (fixes crash when
12911 batch-compiling for bootstrap).
12912
12913 2008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
12914 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12915
12916 * frame.c (make_initial_frame): Call init_frame_faces(f) in
12917 CANNOT_DUMP case -- fix crash due to different init order.
12918
12919 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
12920
12921 Changes and additions for NeXTstep windowing system (Cocoa and
12922 GNUstep) support.
12923
12924 * Makefile.in:
12925 * config.in: Support defines and build commands for NS port.
12926 * blockinput.h (BLOCK_INPUT, UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT)
12927 (UNBLOCK_INPUT_TO): Don't use under NS unless EXPERIMENTAL_CONTROL_G.
12928 * dispextern.h: Include nsgui.h and add needed typedefs under NS
12929 windowing.
12930 (struct face): Add synth_ital field.
12931 * dispnew.c: Include nsterm.h when compiling under NS windowing.
12932 (init_display): Initialize Vinitial_window_system to "ns" when so
12933 compiled.
12934 * emacs.c: Include GSConfig.h when compiling under GNUstep.
12935 (display_arg): Use under NS.
12936 (main): Under NS, allocate autorelease pool and handle command line
12937 args. Move syms_of_xmenu() call under #ifdef HAVE_X_WINDOWS.
12938 (standard_args): Add NS-specific args.
12939 (shut_down_emacs): Shut down NS terminal if compiled under NS.
12940 * font.c (DEFAULT_ENCODING): New variable.
12941 (font_find_for_lface): Use it.
12942 (syms_of_font): Load syms_of_nsfont under NS.
12943 * font.h: Declare nsfont_driver when compiled under NS.
12944 * fontset.c: When compiling under NS, include nsterm.h.
12945 (fontset_from_font): Autoconstruct fontset under NS.
12946 * frame.c (various): Under NS, include nsterm.h, add Qns window system
12947 symbol, document and use it.
12948 (do_switch_frame): When for_deletion under Cocoa, add
12949 Fraise_frame(Qnil).
12950 (x_set_frame_parameters): Ensure font attribute changes are picked up.
12951 (x_get_arg): Allow "yes" and "no" as boolean values.
12952 (syms_of_frame): Declare Qns. Init Vdefault_frame_scroll_bars to
12953 Qright under Cocoa.
12954 (focus-follows-mouse): Default to 0 under NS.
12955 * frame.h (enum output_method): Add output_ns.
12956 (external_tool_bar, external_menu_bar, FRAME_EXTERNAL_TOOLBAR)
12957 (FRAME_EXTERNAL_MENU_BAR): Use under NS.
12958 (FRAME_WINDOW_P): NS-specific definition.
12959 * fringe.c (max_used_fringe_bitmap): Make public.
12960 * getloadavg.c (mach/mach.h): Include it under NeXT descendant OS's.
12961 (getloadavg): Use NeXT code under descendant OS's.
12962 * image.c (includes and header section, x_create_bitmap_from_data)
12963 (x_create_bitmap_from_file, free_bitmap_record, image_background)
12964 (image_background_transparent, x_clear_image_1)
12965 (x_create_x_image_and_pixmap, x_destroy_x_image, x_put_x_image)
12966 (Create_Pixmap_From_Bitmap_Data, xpm_load_image, lookup_rgb_color)
12967 (x_to_xcolors, x_from_xcolors, x_disable_image)
12968 (x_build_heuristic_mask, syms_of_image): Add NS support parallel to
12969 other GUIs, including XPM support using code originally written for
12970 Carbon GUI.
12971 (png_load, jpeg_load, tiff_load, gif_load): Add implementations
12972 using NS API.
12973 (image_ascent): Use font metrics macros instead of direct struct field
12974 access.
12975 * keyboard.c (includes): Add nsterm.h when compiling under NS.
12976 (kbd_buffer_get_event): Handle NS as other GUI windowing systems.
12977 Also, handle NS as GTK for menu bar purposes.
12978 (make_lispy_event): Handle NS as other GUI windowing systems, and as X
12979 toolkit where they differ.
12980 (parse_menu_item): Prefer keybindings using 'super' modifier. Also,
12981 use cachelist, still needed under NS.
12982 * keyboard.h (ENCODE_MENU_STRING, XtPointer, Boolean): Handle as NTGUI.
12983 (struct widget_value): Define it here for menu.c.
12984 * keymap.c (includes): Include modifier internals.
12985 (lisp_to_mod, modifier_sequence_p): New functions, compiled only under
12986 NS.
12987 (where_is_internal, Fwhere_is_internal): When compiled under NS, add
12988 support for preferring sequences using certain modifiers, specified by
12989 the FIRSTONLY argument.
12990 * lisp.h (hash_remove): Rename to avoid name clash when compiling
12991 under NS GNUstep implementation.
12992 (USE_LSB_TAG): Use it under Cocoa when compiling under NS.
12993 * lread.c (init_lread): Treat NS as HAVE_CARBON for turn_off_warning.
12994 * menu.c: Include nsterm.h under NS.
12995 (single_menu_item, parse_single_submenu, xmalloc_widget_value)
12996 (free_menubar_widget_tree_value, update_submenu_strings)
12997 (find_and_call_menu_selection): Treat NS as X and NT.
12998 (find_and_return_menu_selection): New function, used for popup menus.
12999 * nsgui.h:
13000 * nsterm.h:
13001 * nsfns.m:
13002 * nsimage.m:
13003 * nsmenu.m:
13004 * nsselect.m:
13005 * nsterm.m: New files.
13006 * process.c (wait_reading_process_output): Under NS, call ns_select()
13007 instead of plain select().
13008 * syntax.c (char_quoted): Under NS, avoid a crash when called near
13009 beginning of buffer.
13010 * sysselect.h (init_process): Rename when compiling under Cocoa to
13011 avoid name conflict.
13012 * termhooks.h (display_info): Add ns_display_info to union.
13013 * terminal.c (Fterminal_live_p): Add ns to terminal types.
13014 * terminfo.c (UP, BC, PC): Don't declare when compiling under NS in
13015 COCOA environment.
13016 * unexnext.c: Update to work with mach API on Mac OS X, and to use new
13017 unexec() signature. (Note, this will dump, but the resulting file
13018 crashes; unexosx is used instead; keeping around for reference and
13019 possible aid in getting dump working under GNUstep.)
13020 * w32gui.h (button_type, widget_value): Remove definitions (now in
13021 keyboard.h).
13022 * window.c: Include nsterm.h when compiling under NS.
13023 * xdisp.c (includes): Include nsterm.h when compiling under NS.
13024 (set_frame_menubar, update_menu_bar, display_menu_bar): Handle NS as
13025 other GUI windowing systems.
13026 (update_tool_bar, redisplay_tool_bar, redisplay_window): Handle NS as
13027 GTK.
13028 (x_consider_frame_title): Under NS, set icon type and frame
13029 modified-state indicator; use ns_set_name_as_filename() when using
13030 formatted title.
13031 (update_window_cursor): Make public when compiling under NS.
13032 (display_hourglass_p, syms_of_xdisp, hourglass_shown_p)
13033 (hourglass_atimer, Vhourglass_delay
13034 * xfaces.c (header section, init_frame_faces, clear_font_table)
13035 (defined_color, unload_color, x_face_list_fonts)
13036 (prepare_face_for_display): Add NS support parallel to other GUIs.
13037 Emulate GCs like other non-X GUIs.
13038 (split_font_name): Don't lowercase font name under NS.
13039 (merge_face_ref, Finternal_set_lisp_face_attribute): Support stippling
13040 under NS.
13041 * s/darwin.h: Add support for compilation under NS.
13042
13043 2008-07-15 Jason Rumney <jasonr@gnu.org>
13044
13045 * w32fns.c (Fx_create_frame): Remove duplicate unwind_protect.
13046 (w32_show_hourglass): Rename from show_hourglass.
13047 (w32_hide_hourglass): Rename from hide_hourglass.
13048 (DEFAULT_HOURGLASS_DELAY): Revert from last change.
13049 (Vhourglass_delay): Declare extern.
13050 (hourglass_started): Remove.
13051
13052 * xdisp.c (Vhourglass_delay): Remove static.
13053 (hourglass_started, start_hourglass, cancel_hourglass):
13054 Don't include these versions on WINDOWSNT.
13055
13056 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
13057
13058 * dispextern.h (hourglass_shown_p, hourglass_atimer): New extern
13059 variables (formerly in xfns.c).
13060 (show_hourglass, hide_hourglass): New prototypes (same).
13061 * xdisp.c (display_hourglass_p, hourglass_shown_p, hourglass_atimer)
13062 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY): New variables (formerly
13063 in xfns.c).
13064 (syms_of_xdisp): Declare/initialize display-hourglass,
13065 hourglass-delay. Initialize hourglass_atimer, hourglass_shown_p.
13066 (hourglass_started, start_hourglass, cancel_hourglass): New functions,
13067 formerly in xfns.c.
13068 * xfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
13069 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
13070 (start_hourglass, cancel_hourglass): Remove.
13071 (show_hourglass, hide_hourglass): Remove prototypes and static
13072 modifiers.
13073 (syms_of_xfns): Remove display-hourglass, hourglass-delay,
13074 hourglass_atimer, hourglass_shown_p declaration/initialization.
13075 * macfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
13076 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
13077 (start_hourglass, cancel_hourglass): Remove.
13078 (show_hourglass, hide_hourglass): Remove prototypes and static
13079 modifiers.
13080 (syms_of_macfns): Remove display-hourglass, hourglass-delay,
13081 hourglass_atimer, hourglass_shown_p declaration/initialization.
13082 * w32fns.c (display_hourglass_p, Vhourglass_delay)
13083 (DEFAULT_HOURGLASS_DELAY): Remove.
13084 (syms_of_w32fns): Remove display-hourglass, hourglass-delay,
13085 hourglass_shown_p declaration/initialization.
13086
13087 2008-07-14 Jason Rumney <jasonr@gnu.org>
13088
13089 * w32fns.c (w32_get_arg): Remove wrapper function.
13090 (w32_createwindow, x_icon, x_create_tip_frame): Use x_get_arg
13091 directly.
13092 (Fx_create_frame): Sync with xfns.c. Use x_get_arg directly.
13093
13094 2008-07-14 Kenichi Handa <handa@m17n.org>
13095
13096 * xfont.c (xfont_open): Add workaround for X's bug.
13097
13098 2008-07-14 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
13099
13100 * fontset.c: Include <stdio.h> unconditionally.
13101
13102 2008-07-13 Michael Albinus <michael.albinus@gmx.de>
13103
13104 * dbusbind.c (Fdbus_register_signal): Allow also signal arguments
13105 for filtering.
13106
13107 2008-07-13 Dan Nicolaescu <dann@ics.uci.edu>
13108
13109 * s/vms.h: Use __GNUC__ instead of _GNUC_.
13110
13111 * m/macppc.h:
13112 * m/alpha.h: Use GNU_LINUX instead of LINUX. Reorganize conditionals.
13113
13114 * m/ibms390x.h (XINT, XUINT): Don't define, same as the default.
13115 (SPECIAL_EMACS_INT):
13116 * m/ia64.h (SPECIAL_EMACS_INT):
13117 * m/amdx86-64.h (SPECIAL_EMACS_INT):
13118 * s/gnu.h (NLIST_STRUCT):
13119 * s/aix4-2.h (X11R5_INHIBIT_I18N):
13120 * s/gnu-linux.h (LINUX):
13121 * s/msdos.h (HAVE_FACES):
13122 * s/ms-w32.h (HAVE_FACES): Don't define, unused.
13123
13124 * systty.h:
13125 * sysdep.c (setup_pty): Don't depend on SYSV_PTYS, it is not used
13126 anymore.
13127
13128 2008-07-12 Dan Nicolaescu <dann@ics.uci.edu>
13129
13130 * syswait.h: Remove old if 0 code. Do not define WAITTYPE, it was
13131 always defined as int.
13132
13133 * s/netbsd.h (HAVE_UNION_WAIT, HAVE_WAIT_HEADER, WAIT_USE_INT):
13134 * s/gnu.h (HAVE_WAIT_HEADER, WAIT_USE_INT, HAVE_UNION_WAIT):
13135 * s/gnu-linux.h (HAVE_WAIT_HEADER):
13136 * s/freebsd.h (HAVE_WAIT_HEADER):
13137 * s/bsd-common.h (HAVE_UNION_WAIT):
13138 * s/aix4-2.h (HAVE_WAIT_HEADER):
13139 * m/mips.h (HAVE_UNION_WAIT):
13140 * s/usg5-4.h (HAVE_WAIT_HEADER, WAITTYPE): Do not define, not used.
13141 (COFF, static): Do not define, they are undefined later in the file.
13142
13143 * process.c (update_status): Don't use a union.
13144 (status_convert):
13145 (sigchld_handler): Use int instead of WAITTYPE.
13146
13147 2008-07-12 Chong Yidong <cyd@stupidchicken.com>
13148
13149 * indent.c (Fvertical_motion): Restore hscroll before moving to
13150 goal column.
13151
13152 2008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
13153
13154 * lisp.h: Remove left over code.
13155
13156 2008-07-11 Andreas Schwab <schwab@suse.de>
13157
13158 * lisp.h: Fix logic in last change.
13159
13160 * menu.h: New file.
13161 * menu.c: Include it.
13162 * xmenu.c: Likewise.
13163 * Makefile.in: Update dependencies.
13164
13165 2008-07-11 Kenichi Handa <handa@m17n.org>
13166
13167 * fontset.c (fontset_from_font): Cancel the previous change.
13168
13169 2008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
13170
13171 * lisp.h:
13172 * w32heap.c:
13173 * emacs.c:
13174 * alloc.c: Replace all references of NO_UNION_TYPE with
13175 USE_LISP_UNION_TYPE.
13176
13177 * m/xtensa.h (NO_UNION_TYPE):
13178 * m/vax.h (NO_UNION_TYPE):
13179 * m/template.h (NO_UNION_TYPE):
13180 * m/sparc.h (NO_UNION_TYPE):
13181 * m/mips.h (NO_UNION_TYPE):
13182 * m/macppc.h (NO_UNION_TYPE):
13183 * m/m68k.h (NO_UNION_TYPE):
13184 * m/iris4d.h (NO_UNION_TYPE):
13185 * m/intel386.h (NO_UNION_TYPE):
13186 * m/ibms390x.h (NO_UNION_TYPE):
13187 * m/ibms390.h (NO_UNION_TYPE):
13188 * m/ibmrs6000.h (NO_UNION_TYPE):
13189 * m/ia64.h (NO_UNION_TYPE):
13190 * m/hp800.h (NO_UNION_TYPE):
13191 * m/arm.h (NO_UNION_TYPE):
13192 * m/amdx86-64.h (NO_UNION_TYPE):
13193 * m/alpha.h (NO_UNION_TYPE): Remove definition, all platform were
13194 defining it the same.
13195
13196 2008-07-10 Chong Yidong <cyd@stupidchicken.com>
13197
13198 * xdisp.c (move_it_to): Backtrack if past the edge of a wrapped line.
13199
13200 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
13201
13202 * fileio.c:
13203 * sysdep.c:
13204 * systty.h:
13205 * m/ibmrs6000.h:
13206 * m/iris4d.h:
13207 * s/aix4-2.h:
13208 * s/freebsd.h:
13209 * s/gnu-linux.h:
13210 * s/hpux10-20.h:
13211 * s/hpux11.h:
13212 * s/netbsd.h:
13213 * s/sol2-3.h:
13214 * s/sol2-4.h:
13215 * s/sol2.h:
13216 * s/usg5-4.h:
13217 * s/vms.h: Remove references to unused variables.
13218
13219 2008-07-10 Andreas Schwab <schwab@suse.de>
13220
13221 * ftfont.c (ftfont_resolve_generic_family): Remove foundry from
13222 pattern before matching the generic family.
13223
13224 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
13225
13226 * unexec.c:
13227 * s/vms.h:
13228 * s/usg5-4-2.h:
13229 * s/sol2-5.h:
13230 * s/freebsd.h:
13231 * s/darwin.h: Remove dead code.
13232
13233 * m/template.h:
13234 * m/sparc.h:
13235 * m/mips.h:
13236 * m/m68k.h:
13237 * m/iris4d.h:
13238 * m/intel386.h:
13239 * m/ibms390x.h:
13240 * m/ibms390.h:
13241 * m/ia64.h:
13242 * m/hp800.h:
13243 * m/arm.h:
13244 * m/amdx86-64.h: Remove dead code and references to unused
13245 and compiler defined symbols.
13246
13247 * unexmips.c:
13248 * unexelf.c: Remove references to desupported systems.
13249
13250 * m/powermac.h: Remove file, it is now identical to m/macppc.h.
13251
13252 * m/powermac.h: Remove boilerplate comments.
13253 (NO_REMAP): Remove unused definition.
13254
13255 * m/macppc.h (UNEXEC, NO_TERMIO): Don't define, the s/ files
13256 define them.
13257
13258 2008-07-10 Kenichi Handa <handa@m17n.org>
13259
13260 * xfont.c (xfont_open): Log the reason of failure.
13261
13262 2008-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
13263
13264 * fontset.c (fontset_get_font_group):
13265 * font.c (font_check_otf): Specify argument types.
13266
13267 2008-07-09 Kenichi Handa <handa@m17n.org>
13268
13269 * coding.c (detect_coding_utf_8): Set detect_info->found only when
13270 non-ASCII char is found.
13271
13272 * fontset.c (fontset_compare_rfontdef): Fix plus/minus.
13273 (reorder_font_vector): Change the arg preferred_family to font.
13274 Prefer the spec matching with font.
13275 (fontset_get_font_group): New function.
13276 (fontset_find_font): Change the format of an element of a realized
13277 fontset. Use fontset_get_font_group.
13278 (fontset_font): Try the current fontset, the default fontset, the
13279 fallbacks of the current fontset, and the fallbacks of the default
13280 fontset in this order.
13281 (face_for_char): Delete the shortcut to use the current font.
13282 (fontset_from_font): Don't set fonts for Latin in the fontset.
13283
13284 * font.h (font_make_object, font_match_p): Adjust prototypes.
13285
13286 * ftfont.h [FT_BDF_H]: Include FT_BDF_H.
13287
13288 * font.c (font_make_object): New arg entity and pixelsize.
13289 (font_check_otf_features, font_check_otf): New functions.
13290 (font_match_p): Check :lang, :script, and :otf properties.
13291
13292 * xfont.c (xfont_open): Adjust it for the change of
13293 font_make_object.
13294 (xfont_text_extents): Fix initial setting of metrics.
13295
13296 * ftfont.c (struct ftfont_info): New member index, delete member
13297 fc_charset_idx. Make the member order compatible with struct
13298 xftfont_info.
13299 (fc_charset_table): Change charset names to registry names.
13300 (ftfont_pattern_entity): Delete the args registry and
13301 fc_charset_idx. Change the value of :font-entity property
13302 to (FONTNAME . INDEX). Always set :registry property to
13303 `iso10646-1'.
13304 (struct ftfont_cache_data): New struct.
13305 (ftfont_lookup_cache): New arg for_face.
13306 (ftfont_get_fc_charset, ftfont_get_otf): New functions.
13307 (ftfont_driver): Set the member otf_capability.
13308 (ftfont_get_charset): Adjust it for the change of
13309 fc_charset_table.
13310 (OTF_TAG_SYM): New macro.
13311 (ftfont_spec_pattern): Delete the arg fc_charset_idx. Adjust it
13312 for the change of fc_charset_table.
13313 (ftfont_list): Adjust it for the change of ftfont_spec_pattern and
13314 ftfont_pattern_entity. Add FC_INDEX to objset.
13315 (ftfont_match): Adjust it for the change of ftfont_spec_pattern
13316 and ftfont_pattern_entity.
13317 (ftfont_open): Adjust it for the change of ftfont_lookup_cache,
13318 font_make_object, struct ftfont_info.
13319 (ftfont_has_char): Use ftfont_get_fc_charset.
13320 (ftfont_otf_features, ftfont_otf_capability): New functions.
13321 (ftfont_shape): Use ftfont_get_otf.
13322 (ftfont_text_extents): Fix initial setting of metrics.
13323
13324 * xftfont.c (struct xftfont_info): New member ft_size. Make the
13325 member order compatible with struct ftfont_info.
13326 (xftfont_open): Add FC_CHARSET to the pattern. Set
13327 xftfont_info->ft_size. Don't unlock the face. Check BDF
13328 properties if appropriate.
13329 (xftfont_close): Unlock the face.
13330 (xftfont_anchor_point, xftfont_shape): Deleted.
13331 (syms_of_xftfont): Don't set members anchor_point and shape of
13332 xftfont_driver.
13333
13334 * w32uniscribe.c (uniscribe_open): Adjust it for the change of
13335 font_make_object.
13336
13337 * w32font.c (w32font_open): Adjust it for the change of
13338 font_make_object.
13339 (w32font_open_internal): Don't set properties of font_object here.
13340
13341 2008-07-08 Chong Yidong <cyd@stupidchicken.com>
13342
13343 * macfns.c (x_create_tip_frame):
13344 * w32fns.c (x_create_tip_frame):
13345 * xfns.c (x_create_tip_frame): Pass parameter argument to
13346 face-set-after-frame-default.
13347
13348 * xfaces.c (Finternal_merge_in_global_face): Save merged
13349 attributes for the default face back into the face vector.
13350
13351 2008-07-08 Andreas Schwab <schwab@suse.de>
13352
13353 * fontset.h: Declare fontset_from_font. Don't declare
13354 new_fontset_from_font and fontset_from_font_name.
13355 * xterm.c: Include "fontset.h".
13356 * Makefile.in (xterm.o): Update dependencies.
13357
13358 2008-07-08 Glenn Morris <rgm@gnu.org>
13359
13360 * m/sparc.h: Define __sparc__ rather than sparc. (Bug#507.)
13361 * alloc.c, ecrt0.c: Use __sparc__ rather than sparc.
13362
13363 2008-07-07 Chong Yidong <cyd@stupidchicken.com>
13364
13365 * frame.c (Qinhibit_face_set_after_frame_default): Var deleted.
13366 (x_set_frame_parameters): Don't bind it.
13367
13368 2008-07-07 Juanma Barranquero <lekktu@gmail.com>
13369
13370 * w32fns.c (map_w32_filename): Declare extern.
13371
13372 2008-07-07 Jason Rumney <jasonr@gnu.org>
13373
13374 * w32term.c (WS_EX_LAYERED): Define if not already.
13375
13376 2008-07-06 Chong Yidong <cyd@stupidchicken.com>
13377
13378 * xfaces.c (set_font_frame_param): Don't try to set the font
13379 parameter if it is still unspecified in the lface.
13380
13381 2008-07-05 Chong Yidong <cyd@stupidchicken.com>
13382
13383 * xfaces.c (Finternal_merge_in_global_face): Don't realize default
13384 face if it didn't already exist.
13385
13386 * xdisp.c (try_window_id): Give up if word-wrapping is on.
13387
13388 2008-07-05 Andreas Schwab <schwab@suse.de>
13389
13390 * xdisp.c (get_it_property): Move out of HAVE_WINDOW_SYSTEM section.
13391
13392 2008-07-05 Chong Yidong <cyd@stupidchicken.com>
13393
13394 * xdisp.c (IT_OVERFLOW_NEWLINE_INTO_FRINGE): Turn it off if
13395 word-wrapping.
13396 (IT_DISPLAYING_WHITESPACE): New macro.
13397 (move_it_in_display_line_to): Handle MOVE_TO_X requests properly
13398 when word-wrapping. Simplify word-wrapping logic. Use correct
13399 pixel positions when saving copies of the iterator.
13400 (display_line): Use proper wrap point if the last character on a
13401 line was preceded by whitespace.
13402
13403 2008-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
13404
13405 * Makefile.in (${etc}DOC): Depend on ${lisp} rather than ${shortlisp}.
13406
13407 2008-07-04 Kenichi Handa <handa@m17n.org>
13408
13409 * fns.c (Fstring_to_unibyte): Delete the arg ACCEPT-LATIN-1.
13410
13411 * lisp.h: EXFUN adjusted for the change of Fstring_to_unibyte.
13412
13413 2008-07-02 Jason Rumney <jasonr@gnu.org>
13414
13415 * xfns.c (syms_of_xfns): Only define x-select-font when both
13416 HAVE_FREETYPE and USE_GTK.
13417
13418 * xdisp.c (next_element_from_display_vector): Move assignment out
13419 of if statement.
13420
13421 2008-07-02 Toru Tsuneyoshi <t_tuneyosi@hotmail.com>
13422
13423 * lisp.h (Qdelete_file, Qdelete_directory): Declare extern.
13424
13425 * fileio.c (delete_by_moving_to_trash, Qmove_file_to_trash): New vars.
13426 (syms_of_fileio): Initialize and export them.
13427 (Fdelete_directory, Fdelete_file): Optionally delete via trash.
13428
13429 * w32fns.c (FOF_NO_CONNECTED_ELEMENTS): Define if not already.
13430 (Fsystem_move_file_to_trash): New function.
13431 (syms_of_w32fns): Export it to lisp.
13432
13433 2008-07-01 Jason Rumney <jasonr@gnu.org>
13434
13435 * w32font.c (w32font_text_extents): Don't count overhang as part
13436 of width.
13437
13438 2008-06-30 Miles Bader <miles@gnu.org>
13439
13440 * dispextern.h (struct glyph, struct it, struct iterator_stack_entry):
13441 Add `avoid_cursor_p' field.
13442
13443 * xdisp.c (push_it, pop_it): Save/restore avoid_cursor_p field.
13444 (set_cursor_from_row): Skip glyphs with avoid_cursor_p set.
13445 (append_glyph, append_composite_glyph, produce_image_glyph)
13446 (append_stretch_glyph): Initialize avoid_cursor_p.
13447 (get_it_property): Rename from `get_line_height_property'.
13448 (x_produce_glyphs): Use get_it_property.
13449 (handle_line_prefix, push_display_prop): New functions.
13450 (display_line, move_it_in_display_line_to): Handle line/wrap prefixes.
13451 (Vwrap_prefix, Qwrap_prefix, Vline_prefix, Qline_prefix):
13452 New variables.
13453 (syms_of_xdisp): Initialize them.
13454
13455 2008-06-30 Kenichi Handa <handa@m17n.org>
13456
13457 * xftfont.c (xftfont_open): Don't call FcConfigSubstitute and
13458 XftDefaultSubstitute (they are called in XftFontMatch).
13459 (xftfont_open): Fix args to ftfont_font_format.
13460
13461 * ftfont.c (fc_charset_table): New member lang.
13462 (ftfont_resolve_generic_family): New arg pattern.
13463 (ftfont_spec_pattern): Check fc_charset_table[]->lang.
13464 (ftfont_list): Call ftfont_resolve_generic_family with `pattern'.
13465 (ftfont_open): Fix args to ftfont_font_format.
13466 (ftfont_font_format): New arg filename.
13467
13468 2008-06-30 Chong Yidong <cyd@stupidchicken.com>
13469
13470 * xfaces.c (Finternal_merge_in_global_face): If default face was
13471 modified, realize it again. Update the font face attribute.
13472
13473 2008-06-29 Jason Rumney <jasonr@gnu.org>
13474
13475 * w32term.c (x_set_frame_alpha): Fix logic.
13476
13477 2008-06-29 Kenichi Handa <handa@m17n.org>
13478
13479 * fontset.c (Finternal_char_font): Return font-object instead of
13480 font-name.
13481
13482 * composite.c (get_composition_id): Fix the width calculation for TAB.
13483
13484 2008-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
13485
13486 * indent.c (Fvertical_motion): Properly handle float column arg.
13487
13488 2008-06-28 Jason Rumney <jasonr@gnu.org>
13489
13490 * w32term.c (pfnGetFontUnicodeRanges): Remove unused function pointer.
13491 (pfnSetLayeredWindowAttributes): New function pointer.
13492 (w32_initialize): Initialize it when supported.
13493 (x_set_frame_alpha): New function.
13494
13495 * w32fns.c (Fx_create_frame): Initialize frame parameter `alpha'.
13496 (w32_frame_parm_handlers): Set alpha handler.
13497
13498 * frame.c (x_set_alpha) [HAVE_NTGUI]: Call x_set_frame_alpha.
13499
13500 2008-06-27 Jason Rumney <jasonr@gnu.org>
13501
13502 * w32fns.c (x_to_w32_font, w32_to_x_font, x_to_w32_weight)
13503 (w32_to_x_weight, w32_to_all_x_charsets): Remove obsolete functions.
13504 (w32_to_x_charset, x_to_w32_charset)
13505 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
13506 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
13507 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
13508 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
13509 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
13510 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
13511 (Qw32_charset_mac, Vw32_charset_info_alist): Move to w32font.c.
13512 (Qw32_charset_unicode): Remove.
13513 (syms_of_w32fns): Update for above changes.
13514
13515 * w32font.c (w32_to_x_charset, x_to_w32_charset)
13516 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
13517 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
13518 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
13519 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
13520 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
13521 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
13522 (Qw32_charset_mac, Vw32_charset_info_alist): Move from w32fns.c.
13523 (syms_of_w32font): Update for above changes.
13524
13525 2008-06-27 Dan Nicolaescu <dann@ics.uci.edu>
13526
13527 * s/usg5-4.h: Fix previous change: keep the correct branch of a
13528 removed #if.
13529 (USG_SHARED_LIBRARIES): Remove duplicate definition.
13530
13531 2008-06-26 Juanma Barranquero <lekktu@gmail.com>
13532 Eli Zaretskii <eliz@gnu.org>
13533
13534 * makefile.w32-in (LOCAL_FLAGS):
13535 Don't include WINDOWSNT, DOS_NT and _UCHAR_T.
13536
13537 * sysdep.c (_spawnlp, _getpid):
13538 Declare with explicit _cdecl instead of _CRTAPI1.
13539
13540 * editfns.c (Fget_internal_run_time):
13541 Check for WINDOWSNT with #ifdef, not #if.
13542
13543 2008-06-26 Jason Rumney <jasonr@gnu.org>
13544
13545 * w32font.h (FONT_HANDLE, FONT_TEXTMETRIC): New macros.
13546
13547 * w32term.c (x_draw_glyph_string_foreground)
13548 (x_draw_composite_glyph_string_foreground): Sync with xterm.c.
13549 Use FONT_HANDLE macro.
13550 (x_draw_glyph_string): Use FONT_TEXTMETRIC macro.
13551
13552 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
13553 (uniscribe_encode_char): Use FONT_HANDLE macro.
13554
13555 * w32font.c (Fx_select_font): Use FONT_HANDLE macro.
13556 (w32font_text_extents): Use precast w32_font.
13557 (w32font_close): Free cached metrics.
13558 (w32font_open_internal): Allocate space for name on stack.
13559
13560 2008-06-26 Chong Yidong <cyd@stupidchicken.com>
13561
13562 * xdisp.c (extend_face_to_end_of_line): Fix last change.
13563
13564 2008-06-26 Jason Rumney <jasonr@gnu.org>
13565
13566 * w32term.h (FONT_AVG_WIDTH): Remove obsolete macro.
13567 (CP_8BIT, CP_UNICODE, CP_UNKNOWN): Remove obsolete constants.
13568
13569 2008-06-26 Juanma Barranquero <lekktu@gmail.com>
13570
13571 * Makefile.in (SOME_MACHINE_OBJECTS): Remove w32bdf.o.
13572
13573 2008-06-26 Jason Rumney <jasonr@gnu.org>
13574
13575 * w32bdf.c, w32bdf.h: Remove obsolete files.
13576
13577 * makefile.w32-in: Remove refs to w32bdf.h and w32bdf.c.
13578
13579 * w32gui.h: Don't include w32bdf.h.
13580 (XCharStruct, enum w32_char_font_type, W32FontStruct):
13581 Remove obsolete font support.
13582
13583 * w32font.h (struct w32font_info): Remove compat_w32_font.
13584 Add hfont member.
13585 (FONT_COMPAT): Remove obsolete macro.
13586
13587 * w32font.c (w32font_close): Remove compat code. Delete hfont member.
13588 (w32font_encode_char, w32font_text_extents): Use new hfont member.
13589 (w32font_open_internal): Remove compat code. Set new hfont member.
13590 (Fx_select_font): Use new hfont member.
13591
13592 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
13593 (uniscribe_encode_char): Use new hfont member.
13594
13595 * w32term.c (x_draw_glyph_string_foreground)
13596 (x_draw_composite_glyph_string_foreground): Use new hfont member.
13597 (x_draw_glyph_string): Use metrics in w32font_info.
13598
13599 2008-06-26 Kenichi Handa <handa@m17n.org>
13600
13601 * xdisp.c (handle_auto_composed_prop): Fix for the terminal case.
13602
13603 2008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
13604
13605 * unexnext.c:
13606 * m/ews4800.h:
13607 * m/hp9000s300.h:
13608 * m/ibm370aix.h:
13609 * m/mips-siemens.h:
13610 * m/ncr386.h:
13611 * m/next.h:
13612 * m/pmax.h:
13613 * m/powerpcle.h:
13614 * m/tandem-s2.h:
13615 * s/386bsd.h:
13616 * s/bsd386.h:
13617 * s/bsd4-1.h:
13618 * s/bsd4-2.h:
13619 * s/bsdos2-1.h:
13620 * s/bsdos2.h:
13621 * s/bsdos3.h:
13622 * s/bsdos4.h:
13623 * s/nextstep.h:
13624 * s/ultrix4-3.h:
13625 * s/usg5-0.h:
13626 * s/usg5-2-2.h:
13627 * s/usg5-2.h:
13628 * s/usg5-4-3.h:
13629 * s/ux4800.h:
13630 * s/uxpds.h:
13631 * s/uxpv.h: Remove support for obsolete systems.
13632 * s/hpux.h, s/hpux10.h, s/hpux8.h, s/hpux9.h, s/hpux9shr.h:
13633 Remove, insert contents in s/hpux10-20.h.
13634 * s/aix3-1.h, s/aix3-2-5.h, s/aix3-2.h, s/aix4-1.h, s/aix4.h:
13635 Remove, insert contents in s/aix4-2.h.
13636 * s/usg5-3.h: Remove, insert contents in s/usg5-4.h.
13637 * s/bsd4-3.h: Rename to ...
13638 * s/bsd-common.h: ... this.
13639 * data.c:
13640 * doc.c:
13641 * ecrt0.c:
13642 * emacs.c:
13643 * fileio.c:
13644 * floatfns.c:
13645 * keyboard.c:
13646 * mem-limits.h:
13647 * print.c:
13648 * process.c:
13649 * sysdep.c:
13650 * syssignal.h:
13651 * systty.h:
13652 * syswait.h:
13653 * term.c:
13654 * unexec.c:
13655 * unexelf.c:
13656 * unexhp9k800.c:
13657 * m/hp800.h:
13658 * m/ibmrs6000.h:
13659 * m/mips.h:
13660 * m/vax.h:
13661 * s/darwin.h:
13662 * s/freebsd.h:
13663 * s/gnu.h:
13664 * s/ms-w32.h:
13665 * s/msdos.h:
13666 * s/netbsd.h:
13667 * s/template.h: Remove references to obsolete variables.
13668
13669 * Makefile.in: Add dependencies for all unexec files.
13670 (admindir): Remove unused variable.
13671 (UNEXEC_SRC): Remove references.
13672
13673 2008-06-25 Chong Yidong <cyd@stupidchicken.com>
13674
13675 * xfns.c (x_default_font_parameter): If Xft is available, first
13676 try Monospace-12 for the default font.
13677
13678 2008-06-25 Jason Rumney <jasonr@gnu.org>
13679
13680 * xdisp.c (get_glyph_face_and_encoding): Encode invalid glyphs as 0.
13681
13682 2008-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
13683
13684 * bytecode.c (Fbyte_code): Disable debugging code that doesn't compile.
13685
13686 * buffer.c (syms_of_buffer): Remove default-word-wrap.
13687
13688 2008-06-25 Juanma Barranquero <lekktu@gmail.com>
13689
13690 * xdisp.c (syms_of_xdisp) <truncate-partial-width-windows>: Doc fix.
13691 <scroll-conservatively>: Fix typo in docstring.
13692
13693 * xselect.c (Fx_send_client_event): Doc fix.
13694
13695 2008-06-25 Kenichi Handa <handa@m17n.org>
13696
13697 * xfaces.c (Fx_list_fonts): Call Flist_fonts with the arg PREFER.
13698
13699 * font.c (font_parse_fcname): Remove unused variables.
13700 (font_sort_entites): Delete the arg SPEC. Caller changed.
13701 Fix for the case of ! best_only.
13702 (font_delete_unmatched): Check DPI and AVGWIDTH too.
13703
13704 * lisp.h (Fstring_to_unibyte): EXFUN it.
13705
13706 * character.h (str_to_unibyte): Extern it.
13707
13708 * character.c (str_to_unibyte): New function.
13709
13710 * fns.c (Fstring_to_unibyte): New function.
13711 (syms_of_fns): Defsubr it.
13712
13713 2008-06-24 Kenichi Handa <handa@m17n.org>
13714
13715 * font.c (font_score): Even if the PIXEL_SIZE is the same, check
13716 DPI too.
13717 (font_sort_entites): Setup prefer_prop[FONT_DPI_INDEX] too.
13718
13719 2008-06-24 Andreas Schwab <schwab@suse.de>
13720
13721 * Makefile.in (${lispsource}loaddefs.el): Rename from
13722 ../lisp/loaddefs.el.
13723 (bootstrap-clean): Do what distclean does but don't remove
13724 Makefile.
13725 (distclean): Depend on bootstrap-clean and remove Makefile.
13726
13727 2008-06-24 Chong Yidong <cyd@stupidchicken.com>
13728
13729 * buffer.h (struct buffer): New member word_wrap.
13730
13731 * buffer.c (syms_of_buffer): New variables default-word-wrap and
13732 word-wrap.
13733 (init_buffer_once): Initialize them.
13734
13735 * dispextern.h (struct it): Replace bool truncate_lines_p with a
13736 line_wrap enum possessing three possible values.
13737
13738 * termopts.h: Replace truncate_partial_width_windows with
13739 Vtruncate_partial_width_windows.
13740
13741 * dispnew.c (direct_output_for_insert): Avoid direct output when
13742 inserting a space with word wrap on.
13743
13744 * indent.c (compute_motion): Obey integer values of
13745 truncate-partial-width-windows.
13746
13747 * xdisp.c (Vtruncate_partial_width_windows): New Lisp_Object,
13748 replacing truncate_partial_width_windows.
13749 (init_iterator): If Vtruncate_partial_width_windows is an integer,
13750 truncate only if the window width is below that integer.
13751 (start_display, resize_mini_window, produce_stretch_glyph)
13752 (display_string, move_it_in_display_line_to): Use line_wrap.
13753 (back_to_previous_visible_line_start, reseat_1): Reset
13754 string_from_display_prop_p.
13755 (display_line): Extend default face to end of line when wrapping.
13756
13757 2008-06-24 Kim F. Storm <storm@cua.dk>
13758
13759 * xdisp.c (display_line, move_it_in_display_line_to): Add ability
13760 to wrap continued lines at word boundaries.
13761
13762 2008-06-24 Jason Rumney <jasonr@gnu.org>
13763
13764 * font.c (Ffont_face_attributes): Multiply pixel size before point
13765 conversion to avoid multiplying rounding error.
13766
13767 2008-06-23 Jason Rumney <jasonr@gnu.org>
13768
13769 * w32term.c (x_draw_glyph_string_background)
13770 (x_draw_glyph_string): Remove old bdf font code.
13771
13772 * w32term.h (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE): Remove.
13773
13774 2008-06-22 Kenichi Handa <handa@m17n.org>
13775
13776 * font.c (font_find_for_lface): Try the adstyle specified in
13777 the property of LFACE_FONT of LFACE (if any).
13778
13779 2008-06-21 Seiji Zenitani <zenitani@mac.com>
13780 Ryo Yoshitake <ryo@shiftmode.net>
13781
13782 * xterm.c (x_set_frame_alpha): Add x_catch_errors for bug#437.
13783
13784 2008-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
13785
13786 * Makefile.in (${lisp} ${SOME_MACHINE_LISP}, ../lisp/loaddefs.el):
13787 Use $(BOOTSTRAPEMACS) rather than witness-emacs.
13788 (bootstrap-emacs${EXEEXT}): Merge witness-emacs into it.
13789 (witness-emacs): Remove.
13790 (lisp, shortlisp): Move loaddefs.el earlier.
13791 (mostlyclean): Forget about witness-emacs.
13792
13793 2008-06-22 Glenn Morris <rgm@gnu.org>
13794
13795 * Makefile.in (witness-emacs): Depend on temacs${EXEEXT}.
13796 (.SUFFIXES): Declare .el.elc as a suffix rule, for non-GNU makes.
13797
13798 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
13799
13800 * Makefile.in (PRECOMP): Remove.
13801 (${lisp} ${SOME_MACHINE_LISP}): Remove pseudo dependency on PRECOMP.
13802 (witness-emacs): Run `compile-first'.
13803 (.el.elc): Use the new compile-onefile target.
13804
13805 2008-06-21 Kenichi Handa <handa@m17n.org>
13806
13807 * xftfont.c (xftfont_open): Handle QCembolden only when
13808 FC_EMBOLDEN is defined.
13809
13810 2008-06-21 Andreas Schwab <schwab@suse.de>
13811
13812 * Makefile.in (witness-emacs): Use ../lisp, not $(lispsource).
13813 (.el.elc): Likewise.
13814
13815 2008-06-21 Miles Bader <miles@gnu.org>
13816
13817 * Makefile.in (../lisp/loaddefs.el): Build autoloads in the lisp
13818 build dir, not the lisp source dir.
13819
13820 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
13821
13822 * Makefile.in (emacs${EXEEXT}): Link the new emacs to bootstrap-emacs.
13823 (bootstrapclean): Remove.
13824 (.el.elc): New rule.
13825 (PRECOMP): New var.
13826 (../lisp/subdirs.el): Remove.
13827 (bootstrap-emacs${EXEEXT}): Remove subdirs.el and charpro.el dependency.
13828 (witness-emacs): New target.
13829 (mostlyclean): Remove witness-emacs as well.
13830 (../lisp/loaddefs.el, ${lisp} ${SOME_MACHINE_LISP}):
13831 Add witness-emacs dependency.
13832
13833 2008-06-20 Chong Yidong <cyd@stupidchicken.com>
13834
13835 * font.c (Ffont_face_attributes): Omit key-attribute pairs not
13836 defined by the font.
13837
13838 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
13839
13840 * Makefile.in (emacs${EXEEXT}): Depend on the machine-specific files.
13841 (bootstrap-clean): New target that keeps TAGS around.
13842 (../lisp/subdirs.el, ../lisp/loaddefs.el): New targets.
13843 (bootstrap-emacs${EXEEXT}): Depend on subdirs.el.
13844
13845 2008-06-20 Jason Rumney <jasonr@gnu.org>
13846
13847 * w32fns.c, w32term.c, w32term.h, w32gui.h [OLD_FONT]:
13848 Remove obsolete font code.
13849
13850 * w32font.c (font_matches_spec): Use csb bitfield from font signature
13851 to determine language support.
13852
13853 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
13854
13855 * sysdep.c (cfsetspeed): New fun extracted from the code.
13856 (cfmakeraw): Move before first use.
13857
13858 2008-06-20 Angelo Graziosi <angelo.graziosi@alice.it> (tiny change)
13859
13860 * sysdep.c (cfmakeraw): Provide fallback implementation.
13861 (serial_configure): Provide fallback implementation of cfsetspeed.
13862
13863 2008-06-20 Kenichi Handa <handa@m17n.org>
13864
13865 * xftfont.c (xftfont_open): Add FOUNDRY, SPACING, DPI, SCALABLE to
13866 the pattern.
13867
13868 * fontset.c (fontset_from_font): Copy font_spec before changing
13869 the elements.
13870
13871 * xfns.c (x_default_font_parameter): Try "monospace-12" too.
13872
13873 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
13874
13875 * w32fns.c, xfns.c (x_default_font_parameter): Only set `font-param'
13876 for explicit `font' parameters.
13877
13878 * frame.c (x_set_font): Remove unexplained call to fix inf-recursion.
13879
13880 2008-06-19 Kenichi Handa <handa@m17n.org>
13881
13882 * frame.c: Include <ctype.h>.
13883 (x_set_font_backend): Allow spacing characters in the X resource
13884 for FontBackend.
13885
13886 2008-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
13887
13888 * w32fns.c, xfns.c (Qfont_param): New var.
13889 (syms_of_w32fns): Initialize it.
13890 (x_default_font_parameter): Record explicit `font' into
13891 `font-parameter'.
13892
13893 2008-06-18 Kenichi Handa <handa@m17n.org>
13894
13895 * font.c (font_parse_xlfd): Fix previous change.
13896 (font_parse_fcname): Don't use :fc-unknown-spec.
13897 (FRAME_X_DISPLAY_INFO): Be sure to have at least 1 pixel height.
13898 (Fcopy_font_spec): Preserve the order of elements in FONT_EXTRA.
13899 (font_add_log): Prepend the driver name to the resulting fonts.
13900
13901 * ftfont.c (ftfont_pattern_entity): New arg extra. Caller changed.
13902 (ftfont_spec_pattern): Don't check QCfc_unknown_spec and QCname.
13903 (ftfont_list) [FC_FONTFORMAT]: Include FC_FONTFORMAT in objset.
13904
13905 * xftfont.c (QChinting , QCautohint, QChintstyle, QCrgba)
13906 (QCembolden): New variables.
13907 (syms_of_xftfont): DEFSYM them.
13908 (xftfont_open): Call XftFontMatch. Don't trust the result of
13909 XftTextExtents8 if the pixel_size is less than 5.
13910
13911 2008-06-18 Andreas Schwab <schwab@suse.de>
13912
13913 * font.c (Ffont_face_attributes): Only define if HAVE_WINDOW_SYSTEM.
13914 (syms_of_font): Only defsubr if HAVE_WINDOW_SYSTEM.
13915
13916 2008-06-18 Jason Rumney <jasonr@gnu.org>
13917
13918 * w32font.c (w32font_list, w32font_match): Add logging.
13919
13920 * w32uniscribe.c (uniscribe_list, uniscribe_match): Add logging.
13921
13922 2008-06-17 Chong Yidong <cyd@stupidchicken.com>
13923
13924 * font.c (font_parse_fcname): Store divider characters for
13925 unknown-spec list. For known key symbols, intern using correct
13926 symbol name.
13927
13928 2008-06-17 Kenichi Handa <handa@m17n.org>
13929
13930 * xfaces.c (realize_default_face): If the frame is not on window
13931 system, set the fontset of face to nil.
13932
13933 2008-06-17 Naohiro Aota <nao.aota@gmail.com> (tiny change)
13934
13935 * fontset.c (fontset_pattern_regexp): Escape some reg-expr characters.
13936
13937 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
13938
13939 * dispextern.h (lookup_non_ascii_face, split_font_name_into_vector)
13940 (build_font_name_from_vector): Delete externs.
13941
13942 * xfaces.c (struct font_name): Don't declare.
13943
13944 2008-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
13945
13946 * font.c (font_unparse_gtkname): Use EQ to compare Lisp_Objects.
13947
13948 2008-06-16 Chong Yidong <cyd@stupidchicken.com>
13949
13950 * font.c (font_parse_fcname): Fix handling of unknown-spec string.
13951
13952 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
13953
13954 * font.c (Ffont_spec): Fix usage in docstring.
13955 (Ffont_face_attributes): Doc fix.
13956
13957 2008-06-16 Andreas Schwab <schwab@suse.de>
13958
13959 * font.c (Ffont_face_attributes): Fix definition.
13960
13961 2008-06-16 Jason Rumney <jasonr@gnu.org>
13962
13963 * font.h (font_style_symbolic_from_value): Remove.
13964
13965 * font.c (font_style_symbolic_from_value): Remove.
13966 (font_style_symbolic): Revert to pre 2008-06-13 version.
13967
13968 * w32font.c (w32_to_fc_weight): New function.
13969 (w32font_full_name, logfont_to_fcname): Use it.
13970
13971 2008-06-16 Kenichi Handa <handa@m17n.org>
13972
13973 * font.c (font_check_object): Delete it.
13974 (font_clear_cache): Check if a font-object is alive.
13975 (font_open_entity): Likewise. Set FONT_OBJLST_INDEX of a
13976 font-object to nil.
13977 (font_close_object): Don't check FONT_CLOSE_OBJECT.
13978 (font_at): Don't call font_check_object.
13979 (Ffont_get): Return a symbol for :weight, :slant, and :width.
13980
13981 2008-06-16 Katsumi Yamaoka <yamaoka@jpl.org>
13982
13983 * puresize.h (BASE_PURESIZE): Increase to 1230000.
13984
13985 2008-06-16 Chong Yidong <cyd@stupidchicken.com>
13986
13987 * font.c (font_parse_fcname): Correctly parse KEY=VAL values.
13988
13989 2008-06-15 Chong Yidong <cyd@stupidchicken.com>
13990
13991 * font.c (font_parse_fcname): Only one decimal point.
13992 (font_unparse_fcname): Handle data in family and foundry indices
13993 as symbols, not strings.
13994 (font_unparse_gtkname, Ffont_face_attributes): New functions.
13995
13996 * xfns.c (Fx_select_font): Give GTK font dialog the default font name.
13997
13998 * font.h (font_unparse_gtkname): Add prototype.
13999
14000 2008-06-15 Naohiro Aota <nao.aota@gmail.com> (tiny change)
14001
14002 * fontset.c (fontset_pattern_regexp): Escape `+' characters in pattern.
14003
14004 2008-06-15 Andreas Schwab <schwab@suse.de>
14005
14006 * font.c (font_update_drivers): Fix crash when no drivers match.
14007
14008 2008-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
14009
14010 * xfns.c (Fx_create_frame): internal-border-width default to 0 for Gtk.
14011 * gtkutil.c (xg_create_frame_widgets): Don't set internal_border_width.
14012
14013 2008-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
14014
14015 * xdisp.c (syms_of_xdisp): Default underline-minimum-offset to 1.
14016
14017 2008-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
14018
14019 * process.c (Fserial_process_configure, Fprocess_send_eof):
14020 Use EQ to compare Lisp_Objects.
14021
14022 2008-06-13 Jason Rumney <jasonr@gnu.org>
14023
14024 * w32fns.c (Fw32_select_font): Remove old font API function.
14025
14026 * w32font.c (logfont_to_fcname): New function.
14027 (Fx_select_font): New font dialog function compatible with
14028 GTK/fontconfig version.
14029
14030 * font.c (font_style_symbolic_from_value): New function.
14031 (font_style_symbolic): Use it.
14032
14033 * font.h (font_style_symbolic_from_value): Declare new function.
14034
14035 2008-06-13 Juanma Barranquero <lekktu@gmail.com>
14036
14037 * font.c (syms_of_font) <font-weight-table, font-slant-table>:
14038 <font-width-table>: Fix typos in docstrings.
14039
14040 2008-06-13 Daniel Engeler <engeler@gmail.com>
14041
14042 These changes add serial port access.
14043 * process.c: Add HAVE_SERIAL.
14044 (Fdelete_process, Fprocess_status, Fset_process_buffer)
14045 (Fset_process_filter, Fset_process_sentinel, Fprocess_contact)
14046 (list_processes_1, select_wrapper, Fstop_process)
14047 (Fcontinue_process, Fprocess_send_eof, kill_buffer_processes)
14048 (status_notify): Modify to handle serial processes.
14049 [HAVE_SERIAL] (Fserial_process_configure)
14050 [HAVE_SERIAL] (make_serial_process_unwind, Fmake_serial_process):
14051 New functions.
14052 * process.h (struct Lisp_Process): Add `type'.
14053 * sysdep.c [HAVE_TERMIOS] (serial_open, serial_configure):
14054 New functions.
14055 * w32.c (_sys_read_ahead, sys_read, sys_write): Modify to handle
14056 serial ports.
14057 (serial_open, serial_configure): New functions.
14058 * w32.h: Add FILE_SERIAL.
14059 (struct _child_process): Add ovl_read, ovl_write.
14060
14061 2008-06-13 Kenichi Handa <handa@m17n.org>
14062
14063 * dispextern.h (enum lface_attribute_index): New member
14064 LFACE_FOUNDRY_INDEX.
14065
14066 * font.c (font_score): Delete arg alternate_families. Check only
14067 weight, slant, width, and size. Ignore the difference of alias
14068 style symbols.
14069 (font_sort_entites): Adjust for the above change. Reflect the
14070 order of font-driver to scores.
14071 (font_list_entities): Don't check alternate_familes here.
14072 (font_clear_prop): Handle foundry.
14073 (font_update_lface): Don't parse "foundry-family" form here.
14074 Handle FONT_FOUNDRY_INDEX.
14075 (font_find_for_lface): Likewise. Handle alternate families here.
14076 If registry is nil, try iso8859-1 and ascii-0.
14077 (font_open_for_lface): Pay attention to size in ENTITY.
14078 (font_open_by_name): Simplify by calling font_load_for_lface.
14079 (free_font_driver_list): Delete it.
14080 (font_update_drivers): Preserve the order of backends.
14081 (syms_of_font): Setting of sort_shift_bits adjusted for the change
14082 of font_score and font_sort_entites.
14083 (font_update_sort_order): Likewise.
14084
14085 * xfaces.c (LFACE_FOUNDRY): New macro.
14086 (check_lface_attrs): Check foundry.
14087 (set_lface_from_font): Don't parse "FOUNDRY-FAMILY" form.
14088 (merge_face_vectors): Check foundry.
14089 (merge_face_ref): Likewise.
14090 (Finternal_set_lisp_face_attribute): Likewise.
14091 (x_update_menu_appearance): Likewise.
14092 (Finternal_get_lisp_face_attribute): Likewise.
14093 (lface_hash): Likewise.
14094 (lface_same_font_attributes_p): Likewise.
14095 (x_supports_face_attributes_p): Likewise.
14096 (tty_supports_face_attributes_p): Likewise.
14097 (Finternal_set_alternative_font_family_alist): Intern strings.
14098 (Finternal_set_alternative_font_registry_alist): Downcase strings.
14099 (realize_default_face): Set LFACE_FOUNDRY (lface).
14100
14101 * xfns.c (Fx_create_frame, x_create_tip_frame): Register X
14102 font-driver at first.
14103
14104 * ftfont.c (ftfont_font_format) [! FC_FONTFORMAT]: Declare "int len;".
14105
14106 2008-06-12 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
14107
14108 * lread.c (Fload): Use xfree, not free on saved_doc_string.
14109
14110 2008-06-12 Jim Meyering <meyering@redhat.com>
14111
14112 Make unexec_free handle NULL the same way free does.
14113 * unexmacosx.c (unexec_free): Ignore a NULL argument.
14114
14115 2008-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
14116
14117 * character.h (CHAR_TO_BYTE_SAFE): New macro.
14118 * character.c (Fmultibyte_char_to_unibyte): Obey the docstring.
14119 * regex.c (RE_CHAR_TO_UNIBYTE): Use the new macro.
14120 (WEAK_ALIAS): Simplify.
14121 * syntax.c (skip_chars): Don't mark non-byte chars in the fastmap
14122 when searching a unibyte buffer.
14123
14124 2008-06-12 Chong Yidong <cyd@stupidchicken.com>
14125
14126 * xfns.c (Fx_select_font): Rename from x-font-dialog.
14127
14128 2008-06-12 Juanma Barranquero <lekktu@gmail.com>
14129
14130 * w32font.c: Include ctype.h.
14131
14132 2008-06-11 Jason Rumney <jasonr@gnu.org>
14133
14134 * w32font.c (w32font_encode_char): Detect missing glyphs that are
14135 misreported as space.
14136 (add_font_entity_to_list): Support unicode-bmp and unicode-sip
14137 as aliases for registry iso10646-1.
14138
14139 2008-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
14140
14141 * buffer.c (clone_per_buffer_values): Skip `name'.
14142
14143 2008-06-11 Chong Yidong <cyd@stupidchicken.com>
14144
14145 * font.c (font_parse_fcname): Fix last change; accept decimal
14146 points in font size.
14147
14148 2008-06-10 Jason Rumney <jasonr@gnu.org>
14149
14150 * w32uniscribe.c (add_opentype_font_name_to_list):
14151 Skip non unicode fonts.
14152
14153 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
14154
14155 * xfns.c (Fx_font_dialog): New function.
14156
14157 * gtkutil.c (xg_dialog_response_cb): Rename from
14158 xg_file_response_callback.
14159 (pop_down_dialog): Rename from pop_down_file_dialog.
14160 (xg_get_file_name): Callers changed.
14161 (xg_get_font_name): New function.
14162
14163 * gtkutil.h (xg_get_font_name): Insert prototype.
14164
14165 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
14166
14167 * xdisp.c (underline_minimum_offset): Rename from xterm.c's
14168 x_underline_minimum_display_offset.
14169 (syms_of_xdisp): Declare it here rather than in xterm.c.
14170 * dispextern.h (underline_minimum_offset): Declare it.
14171 * w32term.c (x_draw_glyph_string): Use it.
14172 * xterm.c (x_underline_minimum_display_offset): Move to xdisp.c.
14173 (syms_of_xterm): Don't declare it any more.
14174 (x_draw_glyph_string): Adjust to the new name.
14175
14176 2008-06-10 David De La Harpe Golden <david@harpegolden.net>
14177
14178 * xterm.c (x_underline_minimum_display_offset): New var.
14179 (x_draw_glyph_string): Use it.
14180 (syms_of_xterm): Declare it.
14181
14182 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
14183
14184 * font.c (font_parse_fcname): Accept GTK-style font names too.
14185
14186 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
14187
14188 * dired.c (file_name_completion): Don't return t if the match is exact
14189 but with different capitalization.
14190 * minibuf.c (Ftry_completion): Simplify.
14191
14192 * window.c (Vwindow_point_insertion_type): New var.
14193 (set_window_buffer): Use it.
14194 (syms_of_window): Init and export it to Lisp.
14195
14196 2008-06-10 Kenichi Handa <handa@m17n.org>
14197
14198 * font.h (font_intern_prop): Prototype adjusted.
14199
14200 * font.c (font_intern_prop): New arg force_symbol.
14201 (font_parse_xlfd, font_parse_fcname, font_parse_family_registry):
14202 Adjust for the change of font_intern_prop.
14203
14204 * ftfont.c (ftfont_pattern_entity):
14205 * w32font.c (add_font_name_to_list, w32_enumfont_pattern_entity)
14206 (w32_registry):
14207 * w32uniscribe.c (add_opentype_font_name_to_list): Adjust for
14208 the change of font_intern_prop.
14209
14210 2008-06-09 Juanma Barranquero <lekktu@gmail.com>
14211
14212 * w32menu.c (digest_single_submenu): Declare extern.
14213
14214 2008-06-09 Jason Rumney <jasonr@gnu.org>
14215
14216 * w32term.c (x_make_frame_visible): Use alternate restore flags.
14217
14218 * w32menu.c (Fx_popup_menu): Unwind protect while building menu.
14219 (parse_single_submenu): Remove.
14220 (digest_single_submenu): Remove.
14221 (syms_of_w32menu): Don't initialise variables that have moved
14222 to menu.c.
14223 (set_frame_menubar): Sync with version in xmenu.c.
14224 (w32_menu_show): Sync with xmenu_show in xmenu.c.
14225
14226 * menu.c (single_keymap_panes, push_menu_pane, push_menu_item):
14227 Make static again.
14228
14229 2008-06-09 Jason Rumney <jasonr@gnu.org>
14230
14231 Changes to w32 files related to the move of common menu code
14232 to menu.c on 2008-06-08 by Chong Yidong.
14233
14234 * menu.c [HAVE_NTGUI]: Include w32term.h, move widget related
14235 defs to w32gui.h.
14236 (single_keymap_panes, push_menu_item, push_menu_pane):
14237 Make globally visible.
14238
14239 * w32menu.c (enum button_type, widget_value, local_heap, local_alloc)
14240 (local_free, malloc_widget_value, free_widget_value)
14241 (MENU_ITEMS_ITEM_NAME, MENU_ITEMS_ITEM_ENABLE, MENU_ITEMS_ITEM_VALUE)
14242 (MENU_ITEMS_ITEM_EQUIV_KEY, MENU_ITEMS_ITEM_DEFINITION)
14243 (MENU_ITEMS_ITEM_TYPE, MENU_ITEMS_ITEM_SELECTED, MENU_ITEMS_ITEM_HELP)
14244 (MENU_ITEMS_ITEM_LENGTH, enum menu_item_idx): Remove defs.
14245 (menu_items, menu_items_allocated, menu_items_used)
14246 (menu_items_n_panes, menu_items_submenu_depth): Remove global vars.
14247 (init_menu_items, finish_menu_items, discard_menu_items)
14248 (grow_menu_items, push_submenu_start, push_submenu_end)
14249 (push_left_right_boundary, push_menu_pane, push_menu_item)
14250 (keymap_panes, single_keymap_panes, list_of_panes, list_of_items)
14251 (free_menubar_widget_tree_value, parse_single_submenu)
14252 (update_submenu_strings): Remove functions.
14253 (xmalloc_widget_value): Remove and declare extern.
14254
14255 * makefile.w32-in ($(SRC)/menu.$(O)): New target.
14256 (OBJ1): Build it.
14257
14258 * w32gui.h (widget_value, XtPointer, Boolean, enum button_type)
14259 (local_heap, local_alloc, local_free, malloc_widget_value)
14260 (free_widget_value): Define here.
14261
14262 2008-06-09 Kenichi Handa <handa@m17n.org>
14263
14264 * font.h (Qascii_0): Extern it.
14265
14266 * font.c (Qascii_0): New variable.
14267 (syms_of_font): DEFSYM it.
14268 (font_open_by_name): If the registry "iso8859-1" fails, try also
14269 "ascii-0".
14270
14271 * ftfont.c (ftfont_spec_pattern): Accept the registry `ascii-0'.
14272
14273 2008-06-08 Kenichi Handa <handa@m17n.org>
14274
14275 * .gdbinit (xfont): New command.
14276
14277 2008-06-08 Andreas Schwab <schwab@suse.de>
14278
14279 * menu.c [HAVE_X_WINDOWS]: Include "xterm.h".
14280 * Makefile.in (menu.o): Update dependencies.
14281
14282 * Makefile.in (obj): Always add menu.o.
14283 * emacs.c (main): Always call syms_of_menu.
14284 * keyboard.h: Remove extra #ifdef HAVE_X_WINDOW.
14285
14286 2008-06-08 Chong Yidong <cyd@stupidchicken.com>
14287
14288 * Makefile.in: Compile menu.c.
14289
14290 * lisp.h: Declare syms_of_menu.
14291
14292 * emacs.c (main): Call syms_of_menu.
14293
14294 * keyboard.h: Relocate platform-independent menu definitions from
14295 xmenu.c.
14296
14297 * menu.c: New file. Relocate platform-independent menu
14298 definitions from xmenu.c. Suggested by Adrian Robert.
14299
14300 * xmenu.c: Remove platform-independent menu definitions.
14301 (menu_items, menu_items_inuse, menu_items_allocated)
14302 (menu_items_used, menu_items_n_panes)
14303 (menu_items_submenu_depth): Move to keyboard.h.
14304 (init_menu_items, finish_menu_items, unuse_menu_items)
14305 (discard_menu_items, restore_menu_items, save_menu_items)
14306 (grow_menu_items, push_submenu_start, push_submenu_end)
14307 (push_left_right_boundary, push_menu_pane, push_menu_item)
14308 (keymap_panes, single_keymap_panes, single_menu_item)
14309 (list_of_panes, list_of_items, find_and_call_menu_selection)
14310 (xmalloc_widget_value, free_menubar_widget_value_tree)
14311 (parse_single_submenu, digest_single_submenu)
14312 (update_submenu_strings): Move to menu.c.
14313
14314 2008-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
14315
14316 * dispnew.c (Flast_nonminibuf_frame): Handle the NULL case.
14317
14318 2008-06-06 Miles Bader <miles@gnu.org>
14319
14320 * xdisp.c (x_produce_glyphs): Calculate tab width based on current
14321 face, not frame default.
14322
14323 2008-06-05 Martin Rudalics <rudalics@gmx.at>
14324
14325 * window.c (pop_up_windows, pop_up_frames)
14326 (display_buffer_reuse_frames, Vpop_up_frame_function)
14327 (Vdisplay_buffer_function, Veven_window_heights)
14328 (Vspecial_display_buffer_names, Vspecial_display_regexps)
14329 (Vspecial_display_function, Vsame_window_buffer_names)
14330 (Vsame_window_regexps, split_height_threshold)
14331 (Vsplit_window_preferred_function): Move those vars to window.el.
14332 (display_buffer_1, Fspecial_display_p, Fsame_window_p)
14333 (Fdisplay_buffer): Move those functions to window.el.
14334 (syms_of_window): Remove corresponding declarations.
14335 (display_buffer): New function.
14336 (temp_output_buffer_show, Fother_window_for_scrolling): Use it.
14337 * dispnew.c (Flast_nonminibuf_frame): New function.
14338 * buffer.c (Fpop_to_buffer): Move to window.el.
14339
14340 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
14341
14342 * data.c (set_internal): Fix up call to let_shadows_buffer_binding_p.
14343
14344 2008-06-05 Kenichi Handa <handa@m17n.org>
14345
14346 * coding.c (detect_coding): Fix previous change.
14347 (detect_coding_system): Likewise.
14348
14349 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
14350
14351 * character.h (MAKE_CHAR_MULTIBYTE): Check the arg is a (uni)byte.
14352
14353 * keymap.c (Vminibuffer_local_filename_must_match_map):
14354 Rename from Vminibuffer_local_must_match_filename_map.
14355 (syms_of_keymap):
14356 * minibuf.c (Fcompleting_read): Adjust accordingly.
14357 * commands.h: Rename declaration as well.
14358
14359 2008-06-05 Kenichi Handa <handa@m17n.org>
14360
14361 * font.c (Ffont_spec): Don't use font_parse_family_registry for
14362 family name.
14363 (Ffont_put): Likewise.
14364
14365 * fontset.c (fontset_find_font): Call font_open_for_lface with the
14366 current font-spec.
14367
14368 * xfont.c (xfont_list): Don't set registry to iso8859-1 even if it
14369 is unspecified.
14370
14371 * xfaces.c (realize_x_face): If the font-related face attributes
14372 are the same as those of default face, realize a new fontset from
14373 default->fontset.
14374 (Fx_family_fonts): Use font_parse_family_registry instead of Ffont_put.
14375
14376 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
14377
14378 * xdisp.c (move_it_in_display_line_to): Improve the type of its args.
14379 (move_it_in_display_line): New wrapper.
14380
14381 * window.c (window_scroll_pixel_based_preserve_x)
14382 (window_scroll_preserve_hpos, window_scroll_preserve_vpos): New vars.
14383 (window_scroll_pixel_based, window_scroll_line_based):
14384 Use them to preserve column positions.
14385 (syms_of_window): Initialize them.
14386
14387 * indent.c (Fvertical_motion): Extend first arg to allow passing an
14388 (HPOS . VPOS) pair.
14389
14390 * dispextern.h (move_it_in_display_line): Declare.
14391
14392 2008-06-05 Juanma Barranquero <lekktu@gmail.com>
14393
14394 * window.c (Fwindow_parameter): Return VALUE, not (PARAMETER . VALUE).
14395 (Fwindow_parameters): Return copy of parameter alist. Doc fix.
14396 (Fset_window_parameter): Return VALUE, not parameter alist. Doc fix.
14397
14398 2008-06-04 Juanma Barranquero <lekktu@gmail.com>
14399
14400 * window.c (Fset_window_parameter): Doc fix.
14401 (Fwindow_parameters, Fwindow_parameter): Remove redundant check.
14402
14403 2008-06-04 Joakim Verona <joakim@verona.se>
14404
14405 * window.h (struct window): Add new member window_parameters.
14406
14407 * window.c (Fwindow_parameters, Fwindow_parameter)
14408 (Fset_window_parameter): New defuns.
14409 (syms_of_window): Defsubr the new defuns.
14410 (make_window): Initialize window_parameters to nil.
14411
14412 2008-06-04 John Paul Wallington <jpw@pobox.com>
14413
14414 * eval.c (Fdefmacro): Doc fix.
14415
14416 2008-06-04 Kenichi Handa <handa@m17n.org>
14417
14418 * coding.c (detect_coding): Fix handling of coding->head_ascii.
14419 Be sure to call setup_coding_system when we find a proper coding system.
14420 (detect_coding_system): Fix handling of coding->head_ascii.
14421
14422 2008-06-03 Andreas Schwab <schwab@suse.de>
14423
14424 * font.c (font_prop_validate_spacing): Fix last change.
14425
14426 2008-06-03 Kenichi Handa <handa@m17n.org>
14427
14428 * font.c (font_prop_validate_spacing): Handle uppercase symbols.
14429 (font_parse_fcname): Fix handling of unknown key.
14430
14431 * xfont.c (xfont_list): Try an alias.
14432
14433 * charset.c (char_charset): Return NULL if the arg charset_list is
14434 specified and C doesn't belong to any of them.
14435
14436 2008-06-02 Chip Coldwell <coldwell@redhat.com>
14437
14438 * font.c (font_pixel_size): Don't take cdr of an integer.
14439
14440 2008-06-02 Jim Meyering <meyering@redhat.com>
14441
14442 Make "xfree (NULL)" a no-op; remove useless if-before-xfree.
14443 * alloc.c (xfree): Return right away for a NULL arg.
14444 * lread.c (nosuffix): Remove now-useless if-before-xfree tests.
14445 * gtkutil.c (xg_gtk_scroll_destroy): Likewise.
14446 * mac.c (create_apple_event_from_event_ref): Likewise.
14447 (create_apple_event_from_drag_ref, cfstring_create_normalized):
14448 Likewise.
14449 * doprnt.c (doprnt1): Likewise.
14450 * frame.c (frame): Likewise.
14451 * keyboard.c (wipe_kboard): Likewise.
14452 * macterm.c (x_free_frame_resources, xlfdpat_destroy, XFreePixmap)
14453 (init_font_name_table, mac_unload_font, x_delete_display): Likewise.
14454 * term.c (tty_default_color_capabilities, maybe_fatal)
14455 (delete_tty): Likewise.
14456 * w16select.c (string): Likewise.
14457 * w32.c (w32_get_resource, SET_ENV_BUF_SIZE): Likewise.
14458 * w32bdf.c (w32_free_bdf_font): Likewise.
14459 * w32fns.c (w32_unload_font): Likewise.
14460 * w32font.c (w32font_close): Likewise.
14461 * window.c (size_window): Likewise.
14462 * xselect.c (receive_incremental_selection): Likewise.
14463 * xterm.c (x_free_frame_resources, x_delete_display): Likewise.
14464 * mactoolbox.c (create_apple_event_from_drag_ref): Likewise.
14465 * w32.c (stat): Likewise.
14466
14467 Remove useless if-before-free tests.
14468 * editfns.c (Fset_time_zone_rule): Likewise.
14469 * lread.c (nosuffix): Likewise.
14470 * ralloc.c (get_bloc): Likewise.
14471 * regex.c (reg_free): Likewise.
14472 * xftfont.c (xftfont_open, xftfont_close): Likewise.
14473 * xrdb.c (get_user_app, get_environ_db, x_load_resources): Likewise.
14474 * xsmfns.c (smc_save_yourself_CB): Likewise.
14475
14476 2008-06-02 Kenichi Handa <handa@m17n.org>
14477
14478 * font.c (font_find_for_lface): Handle float font size.
14479 (font_open_for_lface): Likewise.
14480
14481 * xfaces.c (x_supports_face_attributes_p): Check face->font before
14482 comparing the properties.
14483
14484 2008-06-01 Jason Rumney <jasonr@gnu.org>
14485
14486 * w32font.c (w32_enumfont_pattern_entity): Use requested registry.
14487 Treat iso10646-1 and Windows DEFAULT_CHARSET specially.
14488 Duplicate iso8859-1 fonts as iso10646-1 if no registry specified.
14489 Don't add empty script list.
14490 (w32_registry): Only map DEFAULT_CHARSET to iso10646-1 here.
14491
14492 2008-06-01 Dan Nicolaescu <dann@ics.uci.edu>
14493
14494 * Makefile.in (dot, dotdot): Remove, update users.
14495 ".." has been used elsewhere in the file for a long time.
14496 (LIBXT_STATIC): Remove conditional based on unused variable.
14497
14498 2008-06-01 Miles Bader <miles@gnu.org>
14499
14500 * xfaces.c (Vface_remapping_alist): New variable.
14501 (syms_of_xfaces): Initialize it.
14502 (enum named_merge_point_kind): New type.
14503 (struct named_merge_point): Add `named_merge_point_kind' field.
14504 (push_named_merge_point): Make cycle detection respect different
14505 named-merge-point kinds.
14506 (lface_from_face_name_no_resolve): Rename from `lface_from_face_name'.
14507 Remove face-name alias resolution.
14508 (lface_from_face_name): New definition using
14509 `lface_from_face_name_no_resolve'.
14510 (get_lface_attributes_no_remap): Rename from `get_lface_attributes'.
14511 Call lface_from_face_name_no_resolve instead of lface_from_face_name.
14512 (get_lface_attributes): New definition that layers face-remapping on
14513 top of get_lface_attributes_no_remap. New arg `named_merge_points'.
14514 (lookup_basic_face): New function.
14515 (lookup_derived_face): Pass new last arg to `get_lface_attributes'.
14516 (realize_named_face): Call `get_lface_attributes_no_remap' instead of
14517 `get_lface_attributes'.
14518 (face_at_buffer_position): Use `lookup_basic_face' to lookup
14519 DEFAULT_FACE_ID if necessary. When optimizing the default-face case,
14520 return default_face's face-id instead of the constant DEFAULT_FACE_ID.
14521
14522 * xdisp.c (init_iterator): Pass base_face_id through
14523 `lookup_basic_face' when we actually use it as a face-id.
14524 (handle_single_display_prop): Use `lookup_basic_face' to lookup
14525 DEFAULT_FACE_ID.
14526
14527 * fontset.c (Finternal_char_font): Use `lookup_basic_face' to
14528 lookup the initial face-id.
14529
14530 * dispextern.h (lookup_basic_face, Vface_remapping_alist): New decls.
14531
14532 2008-06-01 Juanma Barranquero <lekktu@gmail.com>
14533
14534 * textprop.c (syms_of_textprop) <text-property-default-nonsticky>:
14535 (Fremove_text_properties): Fix typos in docstrings.
14536
14537 2008-05-31 Kenichi Handa <handa@m17n.org>
14538
14539 * font.c (font_list_entities): Fix the car part of data to be
14540 stored in the cache.
14541
14542 * ftfont.c (ftfont_font_format): Don't use strcasestr.
14543
14544 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
14545
14546 * chartab.c (Foptimize_char_table, optimize_sub_char_table):
14547 Add a `test' argument so another predicate than `equal' can be used.
14548 (map_sub_char_table): Use `eq' rather than `equal' to merge ranges.
14549 (map_char_table): Remove unused vars `c' and `i'.
14550 * lisp.h (Foptimize_char_table): Adjust declaration.
14551 * charset.c (Fclear_charset_maps): Adjust call to Foptimize_char_table.
14552
14553 2008-05-30 Kenichi Handa <handa@m17n.org>
14554
14555 * font.c (Ffont_info): Define only if HAVE_WINDOW_SYSTEM is defined.
14556 (syms_of_font): Defsubr Sfont_info only if HAVE_WINDOW_SYSTEM is
14557 defined.
14558
14559 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
14560
14561 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
14562 (Fmake_variable_frame_local): Disallow mixing buffer-local and
14563 frame-local settings for the same variable.
14564
14565 2008-05-30 Kenichi Handa <handa@m17n.org>
14566
14567 * fontset.c (Ffont_info): Move to font.c.
14568 (syms_of_fontset): Delete defsubr of Sfont_info.
14569
14570 * font.c (font_style_to_value, font_score): Delete casting of the
14571 args to xstcasecmp.
14572 (register_font_driver): Increment num_font_drivers only when
14573 registering the driver globally.
14574 (Ffont_info): Move from fontset.c. Handle a font object too.
14575 (syms_of_font): Defsubr Sfont_info.
14576
14577 2008-05-29 Kenichi Handa <handa@m17n.org>
14578
14579 * coding.h (enum define_coding_utf8_arg_index): New enum.
14580 (enum coding_attr_index): Change coding_attr_utf_16_bom to
14581 coding_attr_utf_bom.
14582 (enum utf_bom_type): Rename from utf_16_bom_type.
14583 (struct utf_16_spec): Adjust for the above change.
14584 (struct coding_system): Add utf_8_bom in `spec' union.
14585
14586 * coding.c (CODING_UTF_8_BOM): New macro.
14587 (enum coding_category): Delete coding_category_utf_8, add
14588 coding_category_utf_8_auto, coding_category_utf_8_nosig, and
14589 coding_category_utf_8_sig.
14590 (CATEGORY_MASK_UTF_8): Delete it.
14591 (CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG)
14592 (CATEGORY_MASK_UTF_8_SIG): New macros.
14593 (CATEGORY_MASK_ANY): Delete CATEGORY_MASK_UTF_8, add
14594 CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG, and
14595 CATEGORY_MASK_UTF_8_SIG.
14596 (CATEGORY_MASK_UTF_8): New macro.
14597 (UTF_BOM, UTF_8_BOM_1, UTF_8_BOM_2, UTF_8_BOM_3): New macros.
14598 (detect_coding_utf_8): Check BOM.
14599 (decode_coding_utf_8, encode_coding_utf_8): Handle BOM.
14600 (decode_coding_utf_16): Adjust for the change of enum utf_bom_type.
14601 (encode_coding_utf_16): Likewise.
14602 (setup_coding_system): Likewise. Set CODING_UTF_8_BOM (coding).
14603 (detect_coding, detect_coding_system): Handle utf-8-auto.
14604 (Fdefine_coding_system_internal): Handle `bom' property for utf-8.
14605 (syms_of_coding): Fix setting up of Vcoding_category_table.
14606
14607 2008-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
14608
14609 * process.c (Faccept_process_output): If `millisec' is non-nil,
14610 `seconds' default to 0.
14611 (wait_reading_process_output): Also return non-nil if we read output
14612 from a non-running process.
14613
14614 2008-05-29 Jason Rumney <jasonr@gnu.org>
14615
14616 * w32font.c (w32font_open_internal): Prefer truetype fonts unless
14617 `raster' specified.
14618 (add_font_entity_to_list): Allow non-opentype truetype fonts back
14619 in the uniscribe backend, but disallow any font that has no
14620 unicode subrange support.
14621
14622 2008-05-29 Juanma Barranquero <lekktu@gmail.com>
14623
14624 * xfaces.c (Fx_list_fonts, Finternal_copy_lisp_face):
14625 Fix typos in docstrings.
14626
14627 2008-05-29 Kenichi Handa <handa@m17n.org>
14628
14629 * xfaces.c (Fx_list_fonts): Make it return a list of font names.
14630 (Fx_family_fonts): Set frame correctly.
14631
14632 2008-05-28 Jason Rumney <jasonr@gnu.org>
14633
14634 * w32term.c (x_draw_glyph_string): Use clipmask if specified.
14635
14636 2008-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
14637
14638 * fileio.c (Fwrite_region): Delay the defaulting to beg&z to after
14639 calling build_annotations.
14640
14641 2008-05-28 Juanma Barranquero <lekktu@gmail.com>
14642
14643 * coding.c (Fdecode_coding_region, Fencode_coding_region)
14644 (Fencode_coding_string):
14645 (syms_of_coding) <coding-system-for-read, coding-system-for-write>:
14646 <latin-extra-code-table>: Fix typos in docstrings.
14647 (syms_of_coding) <coding-system-alist>: Doc fix.
14648 (syms_of_coding) <translation-table-for-input>: Reflow docstring.
14649
14650 2008-05-28 Kenichi Handa <handa@m17n.org>
14651
14652 * fontset.c (Ffont_info): Don't call font_close_object.
14653
14654 * font.c (font_parse_family_registry): Use Ffont_put to validate
14655 foundry and family.
14656 (font_delete_unmatched): Don't check spacing.
14657 (font_list_entities): Add spacing to the spec to list fonts.
14658
14659 * ftfont.c (ftfont_spec_pattern): Don't set FC_SPACING to pattern.
14660 (ftfont_list): Check spacing here. Don't include FC_CHARSET in objset.
14661
14662 * coding.c (encode_coding_raw_text): Fix previous change.
14663 (encode_coding_object): When the dst_object is a buffer and is
14664 different from src_object, move gap to PT.
14665
14666 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
14667
14668 * xterm.c (x_draw_glyph_string): If a clipmask is specified, use it.
14669
14670 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
14671
14672 * coding.c (encode_coding_raw_text): Set coding->produced_char for
14673 all branches. Compute it differently.
14674
14675 * xdisp.c [!HAVE_WINDOW_SYSTEM]: Include font.h for --without-x.
14676
14677 2008-05-27 Juanma Barranquero <lekktu@gmail.com>
14678
14679 * w32font.c (compute_metrics): Rewrite an "else { if () ... else ... }"
14680 into "else if () ... else ...".
14681
14682 2008-05-27 Jason Rumney <jasonr@gnu.org>
14683
14684 * w32font.c (w32font_open_internal): Determine if glyph indices
14685 are likely to work here.
14686
14687 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
14688
14689 * xdisp.c (draw_glyphs): If mouse-highlighting is on, attempt to
14690 draw overlap glyphs with appropriate highlighting.
14691
14692 2008-05-27 Kenichi Handa <handa@m17n.org>
14693
14694 * xfont.c (xfont_open): Fix calculation of font->average_width.
14695
14696 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
14697
14698 * casefiddle.c (casify_object): Try to guess better whether the
14699 argument is a byte or a char.
14700
14701 2008-05-26 Andreas Schwab <schwab@suse.de>
14702
14703 * xselect.c (x_reply_selection_request): Properly handle format == 32.
14704 Always send multiples of format size.
14705
14706 * xterm.c (x_set_frame_alpha): Fix type mismatch.
14707
14708 2008-05-26 Jason Rumney <jasonr@gnu.org>
14709
14710 * w32font.c (w32font_text_extents): Zero whole metrics struct first.
14711 (compute_metrics): Don't set failure if we just cleared the cache.
14712 (w32_weight_table): Remove unused variable.
14713 (w32_enumfont_pattern_entity): Use FONT_SPACING_CHARCELL for
14714 backwards compatibility.
14715
14716 2008-05-25 Kenichi Handa <handa@m17n.org>
14717
14718 * w32term.c (x_draw_glyph_string):
14719 * xterm.c (x_draw_glyph_string): Fix calculation of underline position.
14720
14721 * xfaces.c: Delete unused function prototypes.
14722 (xstrlwr, font_frame): Delete them.
14723 (clear_face_cache): Delete unused variable.
14724
14725 * xftfont.c (xftfont_open): Delete unused variable.
14726 If underline_thickness is not 1, adjust underline_position.
14727
14728 * ftxfont.c (ftxfont_open): Delete unused variable.
14729
14730 * fontset.c (face_for_char): Optimize for the case of no charset
14731 property.
14732
14733 * font.c (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE)
14734 (check_gstring, check_otf_features, otf_list, otf_tag_symbol)
14735 (otf_open, font_otf_capability, generate_otf_features)
14736 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
14737 Comment out by surrounding "#if 0" and "#endif" for the moment.
14738 (Ffont_drive_otf, Ffont_otf_alternates): Likewise.
14739 (syms_of_font): Codes for accessing above commented out.
14740
14741 2008-05-24 Eli Zaretskii <eliz@gnu.org>
14742
14743 * w32proc.c: Include dispextern.h.
14744
14745 * w32.c: Include dispextern.h.
14746
14747 2008-05-23 Juanma Barranquero <lekktu@gmail.com>
14748
14749 * charset.c (Fencode_char, Fsplit_char): Doc fixes.
14750 (Fget_unused_iso_final_char, Fdecode_char, Fiso_charset):
14751 Fix typos in docstrings.
14752
14753 2008-05-23 Jason Rumney <jasonr@gnu.org>
14754
14755 * xsmfns.c: Remove includes that are already included by config.h.
14756
14757 2008-05-23 Kenichi Handa <handa@m17n.org>
14758
14759 * charset.c (Qemacs, charset_emacs): New variables.
14760 (char_charset): Fix for non-Unicode characters.
14761 (syms_of_charset): Define charset_emacs.
14762
14763 * w32term.c (x_draw_glyph_string): Be sure to update
14764 s->underline_thickness and s->underline_position. Be sure to draw
14765 underline within the current line area.
14766
14767 * xterm.c (x_draw_glyph_string): Be sure to update
14768 s->underline_thickness and s->underline_position. Be sure to draw
14769 underline within the current line area.
14770
14771 * fontset.c: Delete unused variables and add casting for char *
14772 throughout the file.
14773 (fontset_font): Try the fallback fonts of the current fontset
14774 before consulting the default fontset.
14775
14776 * ftfont.c (ftfont_spec_pattern): Free charset if necessary.
14777
14778 * xfont.c (xfont_list_pattern): Free names returned from XListFonts.
14779
14780 2008-05-22 Jason Rumney <jasonr@gnu.org>
14781
14782 * font.c: Don't include strings.h.
14783
14784 * dispextern.h, xfaces.c (xstrcasecmp): Rename from xstricmp.
14785
14786 * dosfns.c, fileio.c, font.c, fontset.c, image.c, macfns.c:
14787 * macterm.c, process.c, w32.c, w32fns.c, w32proc.c, xfaces.c:
14788 * xfns.c, xfont.c: All callers of stricmp and strcasecmp changed
14789 to call xstrcasecmp.
14790
14791 * xfont.c (xfont_list_pattern, compare_font_names): Use xstrcasecmp.
14792
14793 * fontset.c (fs_query_fontset): Use xstrcasecmp.
14794
14795 * font.c (font_style_to_value, font_score): Use xstrcasecmp.
14796
14797 * dosfns.c (msdos_stdcolor_idx): Use xstrcasecmp.
14798
14799 2008-05-22 Kenichi Handa <handa@m17n.org>
14800
14801 * puresize.h (BASE_PURESIZE): Increase to 1220000.
14802
14803 * font.c (font_prop_validate_style): Adjust for the format
14804 change of font_style_table.
14805
14806 * w32font.c (w32font_open_internal): Call Ffont_xlfd_name with
14807 two args.
14808
14809 * xfaces.c (x_update_menu_appearance): Call Ffont_xlfd_name with
14810 two args.
14811
14812 2008-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
14813
14814 * minibuf.c (keys_of_minibuf): Delete.
14815 * lisp.h (keys_of_minibuf): Delete.
14816 * emacs.c (main): Don't call keys_of_minibuf.
14817
14818 2008-05-22 Kenichi Handa <handa@m17n.org>
14819
14820 * ftfont.c (ftfont_resolve_generic_family): Rename from
14821 ftfont_list_generic_family. Return a single family for each
14822 generic family.
14823 (ftfont_spec_pattern): Add FC_FAMILY to pattern.
14824 (ftfont_list): Adjust for the change of ftfont_resolve_generic_family.
14825 Call font_add_log.
14826 (ftfont_match): Call font_add_log.
14827
14828 * font.h (Ffont_xlfd_name): EXFUN adjusted.
14829 (FONT_DEBUG): Define it.
14830 (font_add_log): Extern it.
14831 (font_assert): Rename from xassert.
14832
14833 * xfont.c (xfont_get_pcm): Change xassert to font_assert.
14834 (xfont_list_family): Call font_add_log.
14835 (xfont_match): Likewise.
14836 (memq_no_quit): Delete.
14837
14838 * fontset.c (fontset_from_font, Ffontset_info): Add the 2nd arg in
14839 call of Ffont_xlfd_name.
14840
14841 * xfaces.c (struct table_entry, slant_table, weight_table)
14842 (swidth_table): Move to font.c.
14843
14844 * font.c: Checking of FONT_DEBUG is moved to font.h. All calls of
14845 xassert are changed to font_assert. Delete many unused variables.
14846 (Vfont_weight_table, Vfont_slant_table, Vfont_width_table):
14847 New variables.
14848 (struct table_entry): Move from xfaces.c and modified.
14849 (weight_table, slant_table, width_table): Move from xfaces.c and
14850 contents adjusted for the change of struct table_entry.
14851 (font_style_to_value, font_style_symbolic): Adjust for the
14852 format change of font_style_table.
14853 (font_parse_family_registry): Don't overwrite existing foundry and
14854 family of font_spec.
14855 (font_score): Fix calculation of diff for sizes.
14856 (font_sort_entites): Call font_add_log.
14857 (font_delete_unmatched): Return a newly created list.
14858 (font_list_entities): Fix previous change. Call font_add_log.
14859 (font_matching_entity, font_open_entity, font_close_entity):
14860 Call font_add_log.
14861 (Ffont_xlfd_name): New arg FOLD-WILDCARDS.
14862 (Finternal_set_font_style_table): Delete.
14863 (BUILD_STYLE_TABLE): New macro.
14864 (build_style_table): New function.
14865 (Vfont_log, font_log_env_checked): New variables.
14866 (font_add_log): New function.
14867 (syms_of_font): Delete defsubr Sinternal_set_font_style_table.
14868 Declare Lisp variables "font-weight-table", "font-slant-table",
14869 "font-width-table", and "font-log". Initialize font_style_table.
14870
14871 2008-05-21 Dan Nicolaescu <dann@ics.uci.edu>
14872
14873 * xterm.c (x_set_frame_alpha): Move declarations before statements.
14874
14875 2008-05-21 Seiji Zenitani <zenitani@mac.com>
14876 Ryo Yoshitake <ryo@shiftmode.net>
14877
14878 * frame.c (Qalpha): Add a new frame parameter `alpha'.
14879 (Vframe_alpha_lower_limit): New variable.
14880 (x_set_alpha): New function.
14881
14882 * frame.h (Qalpha, Vframe_parameter_lower_limit): Export them.
14883
14884 * xfns.c (x-create-frame, Qalpha):
14885 Initialize the frame parameter `alpha'.
14886 * xterm.c (OPAQUE, OPACITY): New.
14887 (x_set_frame_alpha): New function.
14888 (frame_highlight, frame_unhighlight): Call x_set_frame_alpha.
14889
14890 * macfns.c (mac_frame_parm_handlers): A null handler for x_set_alpha.
14891 * w32fns.c (w32_frame_parm_handlers): Likewise.
14892
14893 2008-05-20 Jason Rumney <jasonr@gnu.org>
14894
14895 * w32font.c (add_font_entity_to_list): Don't add non-opentype
14896 truetype fonts to opentype list.
14897
14898 2008-05-20 Juanma Barranquero <lekktu@gmail.com>
14899
14900 * fontset.c (Ffontset_info): Doc fix.
14901 (syms_of_fontset) <font-encoding-charset-alist, use-default-ascent>:
14902 <ignore-relative-composition>: Fix typos in docstrings.
14903
14904 * font.c (syms-of-font) <font-encoding-alist>:
14905 (Ffontp, Ffont_make_gstring): Fix typos in docstrings.
14906 (Flist_fonts, Ffont_family_list, Ffont_fill_gstring, Fquery_font)
14907 (Ffont_otf_alternates): Doc fixes.
14908
14909 2008-05-20 Kenichi Handa <handa@m17n.org>
14910
14911 * Makefile.in (FONTSRC): Delete it. Change all $(FONTSRC) to
14912 font.h through out the file.
14913 (FONT_DRIVERS): Rename from FONTOBJ.
14914 (obj): Change $(FONTOBJ) to $(FONT_DRIVERS). Add font.o.
14915 (SOME_MACHINE_OBJECTS): Change $(FONTOBJ) to $(FONT_DRIVERS).
14916
14917 * emacs.c (main): Call syms_of_font unconditionally.
14918
14919 * font.h (find_font_encoding): Extern it.
14920
14921 * font.c (Vfont_encoding_alist, find_font_encoding): Move from
14922 fontset.c.
14923 (font_pixel_size) [! HAVE_WINDOW_SYSTEM]: Return 1.
14924 (font_open_entity): Update FRAME_X_DISPLAY_INFO (f)->n_fonts,
14925 FRAME_SMALLEST_CHAR_WIDTH (f), and FRAME_SMALLEST_FONT_HEIGHT (f)
14926 only when HAVE_WINDOW_SYSTEM is defined.
14927 (font_close_object): Update FRAME_X_DISPLAY_INFO (f)->n_fonts only
14928 when HAVE_WINDOW_SYSTEM is defined.
14929
14930 * fontset.c (Vfont_encoding_alist, find_font_encoding): Move to font.c.
14931 (syms_of_fontset): Move declaration of font-encoding-alist to font.c.
14932
14933 * xfaces.c: Include font.h unconditionally.
14934 (merge_face_ref, merge_face_vectors)
14935 (Finternal_set_lisp_face_attribute): Cancel the previous change.
14936
14937 2008-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
14938
14939 * xdisp.c (select_frame_for_redisplay): Adjust for last change to
14940 indirect_variable.
14941 * eval.c (lisp_indirect_variable): New fun.
14942 (Fuser_variable_p): Use it.
14943
14944 2008-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
14945
14946 * lisp.h (indirect_variable):
14947 * data.c (indirect_variable, let_shadows_buffer_binding_p):
14948 Use Lisp_Symbol pointers rather than Lisp_Object.
14949 Adjust callers.
14950 * buffer.c (buffer_slot_type_mismatch): Use wrong-type-argument.
14951 To this end, change calling-convention.
14952
14953 * minibuf.c (Finternal_complete_buffer): Only strip out hidden buffers
14954 if some non-hidden buffers are selected by string&pred.
14955
14956 2008-05-19 Chong Yidong <cyd@stupidchicken.com>
14957
14958 * process.c (wait_reading_process_output): Always check status
14959 when in batch mode.
14960
14961 2008-05-19 Kenichi Handa <handa@m17n.org>
14962
14963 * font.c (font_list_entities): Fix handling of cache.
14964 (font_matching_entity): Likewise.
14965
14966 * ftfont.c (cs_iso8859_1): Delete.
14967 (ft_face_cache): New variable.
14968 (struct ftfont_info): New member fc_charset_idx.
14969 (ftfont_build_basic_charsets): Delete.
14970 (fc_charset_table): New variable.
14971 (ftfont_pattern_entity): New arg fc_charset_idx. Store (FILENAME
14972 . FC_CHARSET_IDX) as :font-entity property in the font entity.
14973 Callers changed.
14974 (ftfont_lookup_cache, ftfont_get_charset): New functions.
14975 (ftfont_spec_pattern): New argument fc_charset_idx.
14976 Check registry more rigidly. Change callers.
14977 (ftfont_open, ftfont_close, ftfont_has_char): Adjust for the
14978 change of :font-entity property of the font.
14979
14980 * xftfont.c (xftfont_open): Adjust for the change of :font-entity
14981 property of the font.
14982
14983 2008-05-18 Juanma Barranquero <lekktu@gmail.com>
14984
14985 * coding.c (Fcoding_system_p): Rename argument to match docstring.
14986 (Funencodable_char_position, Fcheck_coding_systems_region)
14987 (Fdecode_coding_string, Fencode_coding_string): Fix typos in docstrings.
14988 (Fdetect_coding_region, Fdetect_coding_string, Fencode_coding_region)
14989 (Ffind_operation_coding_system, Fset_coding_system_priority)
14990 (Fcoding_system_eol_type): Doc fixes.
14991
14992 2008-05-17 Glenn Morris <rgm@gnu.org>
14993
14994 * sysdep.c (child_setup_tty): Handle systems with NLDLY, without FFDLY.
14995
14996 2008-05-16 Eli Zaretskii <eliz@gnu.org>
14997
14998 * dired.c (Ffile_attributes): Shut up GCC warnings about st_uid
14999 and st_gid.
15000
15001 * frame.c (Fdelete_frame): Don't call font_update_drivers if
15002 HAVE_WINDOW_SYSTEM is not defined.
15003
15004 * xfaces.c (merge_face_ref, merge_face_vectors)
15005 (Finternal_set_lisp_face_attribute): Use FONT_*_INDEX only when
15006 HAVE_WINDOW_SYSTEM is defined.
15007 (Fface_font): Fix non-HAVE_WINDOW_SYSTEM case.
15008
15009 2008-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
15010
15011 * keyboard.c (parse_menu_item): Do not cache key shortcut any more.
15012
15013 2008-05-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15014
15015 * macterm.c (x_draw_relief_rect): Remove unused variable `dpy'.
15016
15017 2008-05-15 Kenichi Handa <handa@m17n.org>
15018
15019 * font.c (font_find_for_lface): Reflect LFACE_FONT in the font
15020 preference.
15021
15022 2008-05-15 Glenn Morris <rgm@gnu.org>
15023
15024 * emacs.c (USAGE1, standard_args): Remove -disable-font-backend.
15025
15026 2008-05-15 Chong Yidong <cyd@stupidchicken.com>
15027
15028 * fns.c (init_fns): Don't initialize weak_hash_tables here.
15029 (init_weak_hash_tables): New fun. Initialize weak_hash_tables.
15030
15031 * alloc.c (init_alloc_once): Call init_weak_hash_tables.
15032
15033 2008-05-15 Kenichi Handa <handa@m17n.org>
15034
15035 * ftfont.c (ftfont_list): Downcase family name to check generic
15036 families.
15037
15038 * xfaces.c (Finternal_set_lisp_face_attribute): Be sure to make a
15039 font-spec for QCfont value.
15040
15041 * fontset.c (Fnew_fontset): Call font_unparse_xlfd with 256-byte
15042 buffer. Check the return value of it.
15043
15044 2008-05-14 Jason Rumney <jasonr@gnu.org>
15045
15046 * w32term.c (w32_get_glyph_overhangs): Remove.
15047 (w32_redisplay_interface): Use x_get_glyph_overhangs instead.
15048
15049 2008-05-14 Kenichi Handa <handa@m17n.org>
15050
15051 * font.c (font_prop_validate): Make nil a valid value.
15052 (font_clear_cache): Check if the cached vector of entities is nil
15053 or not.
15054
15055 2008-05-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15056
15057 * emacs.c (main_thread): Conditionalize on
15058 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
15059 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it.
15060
15061 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): New define.
15062 (main_thread, SIGNAL_THREAD_CHECK): Conditionalize on
15063 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
15064
15065 2008-05-14 Kenichi Handa <handa@m17n.org>
15066
15067 * coding.c (detect_coding_iso_2022): Ignore a coding category that
15068 has no corresponding coding system.
15069
15070 2008-05-14 Jason Rumney <jasonr@gnu.org>
15071
15072 * font.h (struct font) [WINDOWSNT]: Remove codepage member.
15073
15074 * w32font.h (w32font_open_internal): Update declaration.
15075
15076 * w32font.c (w32font_open_internal): Change last argument from
15077 w32font_info struct to font object. Fill in font object from
15078 font_entity. Get Outline metrics if possible. Use them to
15079 calculate underline position and thickness. Use xlfd name as name
15080 property. Don't set codepage.
15081 (w32font_open): Pass font_object to w32font_open_internal. Don't
15082 update dpyinfo->smallest_font_height and dpyinfo->smallest_char_width.
15083 (w32font_draw): Use s->font.
15084 (clear_cached_metrics): Don't clear non-existent blocks.
15085
15086 * w32term.c (w32_compute_glyph_string_overhangs): Don't compute if
15087 font was not found.
15088 (x_draw_glyph_string): Use underline position and thickness from font.
15089
15090 * w32uniscribe.c (uniscribe_open): Pass font_object to
15091 w32font_open_internal.
15092
15093 2008-05-14 Kenichi Handa <handa@m17n.org>
15094
15095 These changes are to delete all legacy font-handling codes, and
15096 make Emacs use only font-backends.
15097
15098 * Makefile.in: Delete USE_FONT_BACKEND conditionals.
15099 (frame.o, image.o, print.o): Depend on $(FONTSRC).
15100
15101 * makefile.w32-in (WIN32OBJ): Add w32reg.$(O), remove w32bdf.$(O).
15102
15103 * charset.h (Vcharset_non_preferred_head)
15104 (Vcurrent_iso639_language): Extern them.
15105
15106 * charset.c (Vcharset_non_preferred_head): New variable.
15107 (Vcurrent_iso639_language): New variable.
15108 (syms_of_charset): Declare it as a Lisp variable.
15109 (char_charset): Don't check non preferred charsets. As a last
15110 resort, return charset_unicode.
15111 (Fset_charset_priority): Update Vcharset_non_preferred_head.
15112
15113 * composite.c: Throughout the file, delete all USE_FONT_BACKEND
15114 conditionals. Don't check enable_font_backend. Delete all codes
15115 used only when USE_FONT_BACKEND is not defined.
15116
15117 * dispextern.h (struct glyph_string): Change type of `font' to
15118 `struct font *'.
15119 (struct glyph_string): New member underline_position and
15120 underline_thickness.
15121 (enum lface_attribute_index): Remove LFACE_AVGWIDTH_INDEX.
15122 (struct face): Change type of `font' to `struct font *'. Remove
15123 members `font_name', `font_info_id'.
15124 (per_char_metric, encode_char): Delete externs.
15125 (calc_pixel_width_or_height): Adjust the prototype.
15126
15127 * emacs.c (enable_font_backend): Delete extern.
15128 (main): Don't set enable_font_backend. Don't check the command
15129 line argument "-disable-font-backend".
15130
15131 * font.h (Qfont_spec, Qfont_entity, Qfont_object): Extern them.
15132 (enum font_property_index): New members FONT_DPI_INDEX,
15133 FONT_SPACING_INDEX, FONT_AVGWIDTH_INDEX, FONT_NAME_INDEX,
15134 FONT_FULLNAME_INDEX, FONT_FILE_INDEX, FONT_FORMAT_INDEX,
15135 FONT_OBJECT_MAX. Delete FONT_FRAME_INDEX.
15136 (FONT_WEIGHT_NUMERIC, FONT_SLANT_NUMERIC, FONT_WIDTH_NUMERIC)
15137 (FONT_WEIGHT_SYMBOLIC, FONT_SLANT_SYMBOLIC, FONT_WIDTH_SYMBOLIC)
15138 (FONT_WEIGHT_FOR_FACE, FONT_SLANT_FOR_FACE, FONT_WIDTH_FOR_FACE)
15139 (FONT_WEIGHT_NAME_NUMERIC, FONT_SLANT_NAME_NUMERIC)
15140 (FONT_WIDTH_NAME_NUMERIC, FONT_SET_STYLE): New macros.
15141 (struct font_spec, struct font_entity): New structs.
15142 (FONT_ENCODING_NOT_DECIDED): Moved from fontset.h.
15143 (struct font): Many members from old "struct font_info" moved to
15144 here. Members font and entity deleted.
15145 (FONT_SPEC_P, FONT_ENTITY_P, FONT_OBJECT_P, FONTP): Modified for
15146 the new font-related objects.
15147 (CHECK_FONT_SPEC, CHECK_FONT_ENTITY, CHECK_FONT_OBJECT)
15148 (CHECK_FONT_GET_OBJECT): Likewise.
15149 (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT, XSETFONT): New macros.
15150 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Moved from font.h.
15151 (struct font_driver): New members case_sensitive anc check. Type
15152 of the member list and open changed.
15153 (enable_font_backend, font_symbolic_weight, font_symbolic_slant)
15154 (font_symbolic_width, font_find_object, font_get_spec)
15155 (font_set_lface_from_name): Delete extern.
15156 (Fcopy_font_spec, Fmerge_font_spec, Ffont_family_list): New EXFUNs.
15157
15158 * font.c: Include <strings.h>.
15159 (enable_font_backend): Delete it.
15160 (Qfont_spec, Qfont_entity, Qfont_object): New variables.
15161 (CHECK_VALIDATE_FONT_SPEC): Delete it.
15162 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Moved to font.h.
15163 (null_string): Delete it.
15164 (null_vector): Make it static.
15165 (font_family_alist): Delete it.
15166 (Qnormal): Extern it.
15167 (QCextra, QClanguage): Delete it.
15168 (QClang, QCavgwidth, QCfont_entity, QCfc_unknown_spec): New variables.
15169 (font_make_spec, font_make_entity, font_make_object)
15170 (font_intern_prop): Renamed from intern_downcase. Don't downcase
15171 the string. Callers changed.
15172 (font_pixel_size): Adjusted for the format change of font-related
15173 objects.
15174 (prop_name_to_numeric, prop_numeric_to_name): Delete them.
15175 (font_style_to_value, font_style_symbolic): New function.
15176 (build_font_family_alist): Delete it.
15177 (font_registry_charsets): Use Fassoc_string instead of
15178 assq_no_quit.
15179 (font_prop_validate_symbol): Don't return null_string.
15180 (font_prop_validate_style): Adjusted for the change of
15181 style-related values in a font vector.
15182 (font_property_table): Delete entries for QClanguage and
15183 QCantialias, add entries for QCavgwidth.
15184 (get_font_prop_index): Delete the 2nd argument FROM.
15185 (font_prop_validate): Arguments changed.
15186 (font_put_extra): Adjusted for the change of font-related objects.
15187 (font_expand_wildcards, font_parse_xlfd, font_unparse_xlfd)
15188 (font_parse_fcname, font_unparse_fcname)
15189 (font_prepare_composition): Likewise.
15190 (font_parse_family_registry): Renamed from font_merge_old_spec.
15191 (otf_open): Delete the 1st arg entity.
15192 (font_otf_capability): Adjusted for the above change.
15193 (font_score): New arg alternate_families. Adjusted for the change
15194 of font-related objects.
15195 (font_sort_entites): New arg best_only.
15196 (font_symbolic_weight, font_symbolic_slant, font_symbolic_width):
15197 Delete them.
15198 (font_match_p): Check alternate families.
15199 (font_find_object): Delete it.
15200 (font_check_object): New function.
15201 (font_clear_cache): Adjusted for the change of font-related objects.
15202 (font_delete_unmatched): New arg.
15203 (font_list_entities): Call font_driver->list with a spec that
15204 doesn't specify style-related properties.
15205 (font_matching_entity): Arguments changed. Caller changed.
15206 (font_open_entity): Adjusted for the change of font-related objects.
15207 (font_close_object, font_has_char, font_encode_char)
15208 (font_get_name, font_get_spec): Likewise.
15209 (font_spec_from_name, font_clear_prop, font_update_lface):
15210 New functions.
15211 (font_find_for_lface, font_open_for_lface, font_load_for_lface)
15212 (font_prepare_for_face, font_done_for_face, font_open_by_name)
15213 (font_at): Adjusted for the change of font-related objects.
15214 (font_range): New function.
15215 (Ffontp, Ffont_spec, Ffont_get, Ffont_put, Flist_fonts)
15216 (Ffont_xlfd_name): Adjusted for the change of font-related objects.
15217 (Fcopy_font_spec, Fmerge_font_spec): New function.
15218 (Ffont_family_list): Renamed from list-families.
15219 (Finternal_set_font_style_table): Arguments changed.
15220 (Ffont_fill_gstring, Ffont_shape_text, Fopen_font)
15221 (Ffont_drive_otf, Fquery_font, Ffont_match_p): Adjusted for the
15222 change of font-related objects.
15223 (syms_of_font): Delete "ifdef USE_FONT_BACKEND". DEFSYM new symbols.
15224
15225 * fontset.h (struct font_info): Delete it. Most members go to
15226 struct font.
15227 (FONT_ENCODING_NOT_DECIDED): Moved to font.h.
15228 (enum FONT_SPEC_INDEX): Delete it.
15229 (font_info, list_fonts_func, load_font_func, query_font_func)
15230 (set_frame_fontset_func, find_ccl_program_func)
15231 (get_font_repertory_func, new_fontset_from_font_name): Delete
15232 externs.
15233 (fontset_from_font_name): Extern it.
15234 (FS_LOAD_FONT, FONT_INFO_ID, FONT_INFO_FROM_ID)
15235 (FONT_INFO_FROM_FACE): Deleted.
15236 (face_for_font): Adjust prototype.
15237
15238 * fontset.c: Throughout the file, delete all USE_FONT_BACKEND
15239 conditionals. Don't check enable_font_backend. Delete all codes
15240 used only when USE_FONT_BACKEND is not defined.
15241 (get_font_info_func, list_font_func, load_font_func)
15242 (query_font_func, set_frame_fontset_func, find_ccl_program_func)
15243 (get_font_repertory_func): Delete them.
15244 (FONTSET_SPEC, FONT_DEF_NEW, FONT_DEF_SPEC, FONT_DEF_ENCODING)
15245 (FONT_DEF_REPERTORY, RFONT_DEF_FACE, RFONT_DEF_SET_FACE)
15246 (RFONT_DEF_FONT_DEF, RFONT_DEF_SPEC, RFONT_DEF_REPERTORY)
15247 (RFONT_DEF_OBJECT, RFONT_DEF_SET_OBJECT, RFONT_DEF_SCORE)
15248 (RFONT_DEF_SET_SCORE, RFONT_DEF_NEW): New macros.
15249 (fontset_compare_rfontdef): New function.
15250 (reorder_font_vector): Remove the argument CHARSET-ID. Sort
15251 rfont-defs by qsort. Adjusted for the change of font-group vector.
15252 (load_font_get_repertory): Deleted.
15253 (fontset_find_font): Use new macros to ref/set elements of
15254 font-def and rfont-def.
15255 (fontset_font): Fix the timing of remembering that no font for C.
15256 (free_face_fontset): Do nothing if the face has no fontset.
15257 (face_suitable_for_char_p): Use new macros to ref/set elements of
15258 rfont-def.
15259 (face_for_char): Likewise. Call face_for_char with font_object.
15260 (fs_load_font): Delete. Delete #pragma surrounding it.
15261 (fs_query_fontset): Use strcasecmp instead of strcmp.
15262 (generate_ascii_font_name): Adjusted for the format change of
15263 font-spec.
15264 (Fset_fontset_font): Likewise. Use new macros to set elements of
15265 font-def.
15266 (Fnew_fontset): Use font_unparse_xlfd to generate
15267 FONTSET_ASCII (fontset).
15268 (new_fontset_from_font_name): Deleted.
15269 (fontset_from_font): Renamed from new_fontset_from_font. Check if
15270 a fontset is already created for the font. FIx updating of
15271 Vfontset_alias_alist.
15272 (fontset_ascii_font): Deleted.
15273 (Ffont_info): Adjusted for the format change of font-spec.
15274 (Finternal_char_font): Likewise.
15275 (Ffontset_info): Likewise.
15276 (syms_of_fontset): Don't check load_font_func.
15277
15278 * fns.c (internal_equal): Handle PREV_FONT.
15279
15280 * frame.h: Delete USE_FONT_BACKEND conditional.
15281
15282 * frame.c: Throughout the file, delete all USE_FONT_BACKEND
15283 conditionals. Don't check enable_font_backend. Delete all codes
15284 used only when USE_FONT_BACKEND is not defined.
15285 (x_set_font): Call x_new_font, not x_new_fontset2.
15286 (x_set_font_backend): Use FRAME_FONT macro to check if a font is
15287 already set for the frame.
15288
15289 * ftfont.c (ftfont_pattern_entity): Argument FRAME removed. Make
15290 a font-entity by font_make_entity. Use font_intern_prop instead
15291 of intern_downcase. Use FONT_SET_STYLE to set a style-related
15292 font property. If a font is scalable, set avgwidth property to 0.
15293 Set font-entity property by font_put_extra.
15294 (ftfont_list_generic_family): Argument SPEC and REGISTRY removed.
15295 (ffont_driver): Adjusted for the change of struct font_driver.
15296 (ftfont_spec_pattern): New function.
15297 (ftfont_list): Return a list, not vector.
15298 (ftfont_match): Use ftfont_spec_pattern to get a pattern.
15299 (ftfont_list_family): Don't downcase names.
15300 (ftfont_free_entity): Deleted.
15301 (ftfont_open): Return a font-object. Adjusted for the change of
15302 struct font. Get underline_thickness and underline_position from
15303 font property. Don't update dpyinfo->smallest_font_height and
15304 dpyinfo->smallest_char_width.
15305 (ftfont_close): Don't free `struct font'.
15306 (ftfont_has_char): Adjusted for the format change of font-entity.
15307 (ftfont_encode_char, ftfont_text_extents): Likewise.
15308
15309 * ftxfont.c (ftxfont_list): Return a list, not vector.
15310 (ftxfont_open): Return a font-object. Adjusted for the change of
15311 struct font. Get underline_thickness and underline_position from
15312 font property. Don't update dpyinfo->smallest_font_height and
15313 dpyinfo->smallest_char_width.
15314 (ftxfont_close): Don't decrease FRAME_X_DISPLAY_INFO (f)->n_fonts.
15315 (ftxfont_draw): Adjusted for the change of struct font.
15316
15317 * image.c (image_ascent): Don't include "charset.h". Include
15318 "character.h" and "font.h".
15319
15320 * lisp.h (enum pvec_type): New member PREV_FONT.
15321 (Fassoc_string): EXFUN it.
15322
15323 * print.c: Include font.h.
15324 (print_object): Handle font-related objects.
15325
15326 * xdisp.c: Throughout the file, delete all USE_FONT_BACKEND
15327 conditionals. Don't check enable_font_backend. Delete all codes
15328 used only when USE_FONT_BACKEND is not defined.
15329 (handle_auto_composed_prop): Do nothing if it->f is not on a
15330 window system. Check how many following characters can be
15331 displayed by the same font.
15332 (calc_pixel_width_or_height): Type of the 4th arg is changed to
15333 'struct font *'.
15334 (get_char_face_and_encoding): Assign the whole encoding task to
15335 the `encode-char' method of a font driver.
15336 (fill_composite_glyph_string): Adjusted for the change of `struct
15337 face' and `struct glyph_string'.
15338 (fill_glyph_string): Likewise.
15339 (get_per_char_metric): Arguments changed.
15340 (x_get_glyph_overhangs): Adjusted for the change of `struct face'
15341 and `struct glyph_string'.
15342 (produce_stretch_glyph, calc_line_height_property)
15343 (x_produce_glyphs): Likewise.
15344
15345 * xfaces.c: Throughout the file, delete all USE_FONT_BACKEND
15346 conditionals. Don't check enable_font_backend. Delete all codes
15347 used only when USE_FONT_BACKEND is not defined. Use
15348 FONT_XXX_NAME_NUMERIC instead of face_numeric_xxx.
15349 (QCfoundry, QCadstyle, QCregistry, QCspacing, QCsize, QCavgwidth)
15350 (Qp): Extern them.
15351 (clear_font_table, load_face_font, xlfd_lookup_field_contents):
15352 Deleted.
15353 (struct font_name): Deleted.
15354 (xlfd_numeric_value, xlfd_symbolic_value): Deleted.
15355 (compare_fonts_by_sort_order): New function.
15356 (xlfd_numeric_slant, xlfd_symbolic_slant, xlfd_numeric_weight)
15357 (xlfd_symbolic_weight, xlfd_numeric_swidth, xlfd_symbolic_swidth):
15358 Deleted.
15359 (Fx_family_fonts): Use font_list_entities, and sort fonts by
15360 compare_fonts_by_sort_order.
15361 (Fx_font_family_list): Call Ffont_family_list.
15362 (face_numeric_value, face_numeric_weight, face_numeric_slant)
15363 (face_numeric_swidth, face_symbolic_value, face_symbolic_weight)
15364 (face_symbolic_slant, face_symbolic_swidth)
15365 (split_font_name_into_vector, build_font_name_from_vector)
15366 (xlfd_fixed_p, xlfd_point_size, pixel_point_size)
15367 (font_rescale_ratio, split_font_name, build_font_name)
15368 (free_font_names, sort_fonts, x_face_list_fonts)
15369 (face_font_available_p, sorted_font_list, cmp_font_names)
15370 (font_list_1, concat_font_list, font_list, remove_duplicates):
15371 Deleted.
15372 (Fx_list_fonts): Use Ffont_list.
15373 (LFACE_AVGWIDTH): Deleted.
15374 (check_lface_attrs): Don't check LFACE_AVGWIDTH. Check LFACE_FONT
15375 by FONTP.
15376 (lface_fully_specified_p): Don't check LFACE_AVGWIDTH.
15377 (set_lface_from_font_name): Delete it.
15378 (set_lface_from_font): Renamed from
15379 set_lface_from_font_and_fontset. Caller changed. Don't set
15380 LFACE_AVGWIDTH. Use FONT_XXX_FOR_FACE to get a symbol suitable
15381 for face.
15382 (merge_face_vectors): Copy font-spec if necessary.
15383 Clear properties of the font-spec if necessary.
15384 (merge_face_ref): Clear properties of the font-spec if necessary.
15385 (Finternal_set_lisp_face_attribute): Likewise.
15386 (set_font_frame_param): Use font_load_for_lface to load a
15387 font-object, and call Fmodify_frame_parameters with it.
15388 (x_update_menu_appearance): Don't check LFACE_AVGWIDTH. Get XLFD
15389 font name by Ffont_xlfd_name.
15390 (Finternal_lisp_face_attribute_values): Don't check QCweight,
15391 QCslant, and QCwidth.
15392 (Fface_font): Get a font name from font->props[FONT_NAME_INDEX].
15393 (lface_same_font_attributes_p): Don't check LFACE_AVGWIDTH.
15394 Compare fonts by EQ.
15395 (lookup_non_ascii_face): Deleted.
15396 (face_for_font): The 2nd argument changed.
15397 (x_supports_face_attributes_p): Don't check LFACE_AVGWIDTH.
15398 Check atomic font properties by case insensitive.
15399 (realize_non_ascii_face): Set face->overstrike correctly.
15400 (realize_x_face): Likewise. Check if LFACE_FONT is a font_object.
15401 (dump_realized_face): Get font name from
15402 font->props[FONT_NAME_INDEX]. Don't print font_info_id.
15403
15404 * xfns.c: Throughout the file, delete all USE_FONT_BACKEND
15405 conditionals. Don't check enable_font_backend. Delete all codes
15406 used only when USE_FONT_BACKEND is not defined.
15407 (xic_create_xfontset): Original code deleted and renamed from
15408 xic_create_xfontset2. Use FRAME_FONT, not FRAME_FONT_OBJECT.
15409 (x_make_gc): Don't set GCFont in GCs.
15410 (Fx_create_frame) [USE_LUCID]: Set xlwmenu_default_font to a font
15411 opened by "fixed".
15412 (syms_of_xfns): Don't set get_font_info_func, load_font_func,
15413 find_ccl_program_func, query_font_func, set_frame_fontset_func,
15414 get_font_repertory_func.
15415
15416 * xfont.c: Include <stdlib.h> and "ccl.h".
15417 (struct xfont_info): New structure.
15418 (xfont_query_font): Deleted.
15419 (xfont_find_ccl_program): Renamed from x_find_ccl_program and
15420 moved from xterm.c.
15421 (xfont_driver): Adjusted for the change of struct font_driver.
15422 (compare_font_names): New function.
15423 (xfont_list_pattern): Sort font names case insensitively. Make
15424 font_entity by calling font_make_entity. Avoid auto-scaled fonts.
15425 (xfont_list): Return a list, not vector.
15426 (xfont_match): If the font doesn't have QCname property, generate
15427 a name from the other font properties.
15428 (xfont_open): Return a font-object. Adjusted for the change of
15429 struct font. Get underline_thickness and underline_position from
15430 font property. Don't update dpyinfo->smallest_font_height and
15431 dpyinfo->smallest_char_width.
15432 (xfont_close): Don't free struct font.
15433 (xfont_prepare_face): Adjusted for the change of struct font.
15434 (xfont_done_face): Deleted.
15435 (xfont_has_char): Adjusted for the change of struct font.
15436 (xfont_encode_char, xfont_draw): Likewise.
15437 (xfont_check): New function.
15438
15439 * xftfont.c (xftfont_list): Adjusted for the change of `list'
15440 callback function.
15441 (xftfont_match): Adjusted for the format change of font-entity.
15442 (xftfont_open): Adjusted for the format change of font-entity and
15443 font-object. Adjusted for the change of struct font. Return a
15444 font-object. Don't update dpyinfo->smallest_font_height and
15445 dpyinfo->smallest_char_width.
15446 (xftfont_close): Block input while calling XftFontClose.
15447 (xftfont_prepare_face): Don't block input while calling
15448 xftfont_get_colors. Adjusted for the change of struct font.
15449 (xftfont_shape): Return value of error case fixed.
15450
15451 * xrdb.c (x_load_resources): Don't setup a fontset resource.
15452
15453 * xterm.h: Throughout the file, delete all USE_FONT_BACKEND
15454 conditionals.
15455 (FONT_WIDTH): Return (f)->max_width.
15456 (struct x_display_info): Delete member `font'.
15457 (x_list_fonts, x_get_font_info, x_load_font, x_query_font)
15458 (x_find_ccl_program, x_get_font_repertory): Delete externs.
15459 (struct x_output): Change type of `font' to `struct font *'.
15460
15461 * xterm.c: Throughout the file, delete all USE_FONT_BACKEND
15462 conditionals. Don't check enable_font_backend. Delete all codes
15463 used only when USE_FONT_BACKEND is not defined. Don't include ccl.h.
15464 (x_per_char_metric, x_encode_char): Deleted.
15465 (x_set_cursor_gc, x_set_mouse_face_gc): Don't set GCFont.
15466 (x_compute_glyph_string_overhangs): Adjusted for the change of
15467 `struct face'.
15468 (x_draw_glyph_string_foreground)
15469 (x_draw_composite_glyph_string_foreground): Likewise.
15470 (x_draw_glyph_string): Likewise. Use font->underline_position and
15471 font->underline_thickness.
15472 (x_new_font): Renamed from x_new_fontset2.
15473 (x_new_fontset, x_get_font_info, x_list_fonts): Deleted.
15474 (x_check_font): Call `check' method of a font driver.
15475 (x_font_min_bounds, x_compute_min_glyph_bounds, x_load_font)
15476 (x_query_font, x_get_font_repertory): Deleted.
15477 (x_find_ccl_program): Renamed and moved to xfont.c.
15478 (x_redisplay_interface): Adjusted for the change of `struct
15479 redisplay_interface'.
15480
15481 * w32fns.c: Throughout the file, delete all USE_FONT_BACKEND
15482 conditionals. Don't check enable_font_backend. Delete all codes
15483 used only when USE_FONT_BACKEND is not defined. Surround non-used
15484 code by "#ifdef OLD_FONT" and "endif".
15485 (Fw32_select_font): Use FONT_COMPAT to get old font structure.
15486
15487 * w32font.h (struct w32font_info): New member.
15488 (FONT_COMPAT): New macro.
15489 (w32font_open_internal): Prototype adjusted.
15490
15491 * w32gui.h (XGCValues): Surround `XFontStruct *font' by "if
15492 OLD_FONT" and "endif".
15493
15494 * w32font.c: Throughout the file, delete all USE_FONT_BACKEND
15495 conditionals. Don't check enable_font_backend. Delete all codes
15496 used only when USE_FONT_BACKEND is not defined.
15497 (w32font_open): Return a font-object. Make a font-object by
15498 font_make_object. Adjusted for the change of struct w32font_info.
15499 (w32font_close): Don't free struct font. Adjusted for the change
15500 of struct w32font_info.
15501 (w32font_encode_char, w32font_text_extents, w32font_draw):
15502 Adjusted for the change of struct w32font_info.
15503 (w32font_draw): Likewise.
15504 (w32font_list_internal): Return a list, not vector.
15505 (w32font_open_internal): Change the 4th arg to font-object.
15506 Adjusted for the change of struct w32font_info and font-object format.
15507 (add_font_name_to_list): Don't downcase names.
15508 (w32_enumfont_pattern_entity): Make a font-entity by
15509 font_make_entity. Adjusted for the format change of font-entity.
15510 Use FONT_SET_STYLE to set a style-related font property. If a
15511 font is scalable, set avgwidth property to 0. Set font-entity
15512 property by font_put_extra.
15513 (font_matches_spec): Adjusted for the format change of font-entity.
15514 (w32_weight_table, w32_decode_weight): New variables.
15515 (w32_encode_weight): New function.
15516 (fill_in_logfont): Adjusted for the format change of font-spec.
15517 (w32font_full_name): Use FONT_WEIGHT_SYMBOLIC to get a symbol
15518 weight value.
15519 (w32font_driver): Adjusted for the change of struct font_driver.
15520
15521 * w32term.h: Throughout the file, delete all USE_FONT_BACKEND
15522 conditionals. Don't check enable_font_backend. Surround non-used
15523 code by "#ifdef OLD_FONT" and "endif".
15524 (FONT_WIDTH, FONT_HEIGHT, FONT_BASE, FONT_DESCENT)
15525 (FONT_AVG_WIDTH): Adjusted for the change of struct font.
15526
15527 * w32term.c: Throughout the file, delete all USE_FONT_BACKEND
15528 conditionals. Don't check enable_font_backend. Delete all codes
15529 used only when USE_FONT_BACKEND is not defined. Surround non-used
15530 code by "#ifdef OLD_FONT" and "endif".
15531
15532 * w32uniscribe.c: Delete USE_FONT_BACKEND conditional.
15533 (uniscribe_open): Return value changed to font-object.
15534 Adjusted for the format change of font-object.
15535 (uniscribe_otf_capability): Adjusted for the change of struct font.
15536 (add_opentype_font_name_to_list): Don't downcase names.
15537 (uniscribe_font_driver): Adjusted for the change of struct
15538 font_driver.
15539
15540 2008-05-13 Chong Yidong <cyd@stupidchicken.com>
15541
15542 * dispnew.c (update_frame_1): Check if tty output is still valid
15543 before flushing it.
15544
15545 2008-05-13 Jan Djärv <jan.h.d@swipnet.se>
15546
15547 * xterm.c (handle_one_xevent): Don't pass buttons higher than 3
15548 to Gtk+ menus.
15549
15550 2008-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
15551
15552 * dired.c (file_name_completion): Tweak the code so as to always do it
15553 in a single pass. Tighten the scope of some variables.
15554
15555 * dired.c (Qdefault_directory): New var.
15556 (file_name_completion): Use it instead of Fexpand_file_name.
15557 (syms_of_dired): Initialize it.
15558
15559 2008-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
15560
15561 * fileio.c (double_dollars): Remove dead code.
15562
15563 2008-05-10 Eli Zaretskii <eliz@gnu.org>
15564
15565 * dired.c (Ffile_attributes, Fdirectory_files_and_attributes):
15566 Mention w32-get-true-file-attributes in doc string.
15567
15568 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
15569
15570 2008-05-09 Glenn Morris <rgm@gnu.org>
15571
15572 * fileio.c (Fread_file_name): Remove reference to insdef, deleted
15573 2008-04-23.
15574
15575 2008-05-09 Eli Zaretskii <eliz@gnu.org>
15576
15577 Support for reporting owner and group of each file on MS-Windows:
15578 * dired.c (stat_uname, stat_gname): New functions, with special
15579 implementation for w32.
15580 (Ffile_attributes): Use them instead of getpwuid and getgrgid.
15581
15582 * w32.c: Rename the_passwd_* to dflt_passwd_*.
15583 (dflt_group_name): New static variable.
15584 (dflt_group): Rename from the_group.
15585 (init_user_info): Init dflt_group fields. Get user's group name
15586 from LookupAccountSid.
15587 (g_b_init_get_file_security, g_b_init_get_security_descriptor_owner)
15588 (g_b_init_get_security_descriptor_group, g_b_init_is_valid_sid):
15589 New initialization states.
15590 (globals_of_w32): Initialize them to zero. Initialize the default
15591 group name to "None".
15592 (GetFileSecurity_Name): New global var, the name of the function
15593 to call for GetFileSecurity.
15594 (GetFileSecurity_Proc, GetSecurityDescriptorOwner_Proc)
15595 (GetSecurityDescriptorGroup_Proc, IsValidSid_Proc): New typedefs.
15596 (get_file_security, get_security_descriptor_owner)
15597 (get_security_descriptor_group, is_valid_sid)
15598 (get_file_security_desc, get_rid, get_name_and_id)
15599 (get_file_owner_and_group): New functions.
15600 (stat): Use get_file_security_desc and get_file_owner_and_group to
15601 report the owner and primary group of each file. Don't ignore the
15602 high 32 bits of file's size, now that st_size is 64-bit wide.
15603 Fix test when to get true file attributes.
15604 (init_user_info): Use get_rid instead of equivalent inline code.
15605 (fstat): Don't ignore the high 32 bits of file's size.
15606
15607 2008-05-09 Chong Yidong <cyd@stupidchicken.com>
15608
15609 * image.c (png_load): Use correct bit-depth for setting background
15610 color.
15611
15612 2008-05-08 Eli Zaretskii <eliz@gnu.org>
15613
15614 * Makefile.in (lisp, shortlisp): Rename epa-file-hook.elc to
15615 epa-hook.elc.
15616
15617 2008-05-08 Juanma Barranquero <lekktu@gmail.com>
15618
15619 * font.c (Ffont_match_p): Don't use `iff' in docstring.
15620
15621 2008-05-07 Dan Nicolaescu <dann@ics.uci.edu>
15622
15623 * macfns.c (Fx_create_frame): Make a copy of frame parameters
15624 because the original parameters are in pure storage now.
15625 (mac_window): Remove unused params. Update callers.
15626
15627 2008-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
15628
15629 * lread.c (substitute_object_recurse): Use lower-level primitives.
15630 Don't signal errors when traversing sub-char-tables.
15631 Don't loop over all the possible characters when traversing char-tables.
15632
15633 * print.c (print_preprocess): Add sub-char-tables to the print-table,
15634 just like we do in print.c.
15635
15636 2008-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
15637
15638 * minibuf.c (Ftry_completion): Remove code left over from when we used
15639 scmp instead of Fcompare_strings.
15640
15641 2008-05-04 Juanma Barranquero <lekktu@gmail.com>
15642
15643 * w32fns.c (Fw32_battery_status): Fix computation of %t (h:min) format.
15644
15645 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15646
15647 * image.c [USE_MAC_IMAGE_IO] (image_load_image_io):
15648 Create bitmap context in native byte order.
15649
15650 * macterm.c (XDrawLine)
15651 (XCreatePixmapFromBitmapData) [USE_MAC_IMAGE_IO]: Create bitmap
15652 context in native byte order.
15653
15654 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15655
15656 * config.in: Regenerate.
15657
15658 * image.c (PIX_MASK_DRAW, PIX_MASK_RETAIN) [USE_MAC_IMAGE_IO]:
15659 New definitions for Image I/O support.
15660 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
15661 (mac_create_cg_image_from_image, x_create_x_image_and_pixmap)
15662 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
15663 (mac_data_provider_release_data, image_load_image_io)
15664 [USE_MAC_IMAGE_IO]: New functions.
15665 (CGImageCreateWithPNGDataProviderProcType) [MAC_OSX]: Remove typedef.
15666 (MyCGImageCreateWithPNGDataProvider) [MAC_OSX]: Remove variable.
15667 (init_image_func_pointer) [MAC_OSX]: Remove function.
15668 (image_load_quartz2d) [MAC_OSX]: Check availability of
15669 CGImageCreateWithPNGDataProvider at compile time.
15670 Use lowercase `false' for boolean constant.
15671 (png_load, jpeg_load, tiff_load, gif_load) [USE_MAC_IMAGE_IO]:
15672 Use image_load_image_io.
15673 (png_load) [!USE_MAC_IMAGE_IO && MAC_OSX]:
15674 Don't check MyCGImageCreateWithPNGDataProvider.
15675 (init_image) [MAC_OSX && TARGET_API_MAC_CARBON]:
15676 Don't call init_image_func_pointer.
15677
15678 * macgui.h (Pixmap) [USE_MAC_IMAGE_IO]: New definition for Image I/O.
15679
15680 * macterm.c (mac_cg_color_space_rgb) [USE_CG_DRAWING]:
15681 Make variable non-static.
15682 (XDrawLine, XCreatePixmap, XCreatePixmapFromBitmapData, XFreePixmap)
15683 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
15684
15685 * macterm.h (ARGB_TO_ULONG, ALPHA_FROM_ULONG): New macros.
15686 (RED_FROM_ULONG): Mask off higher bits.
15687 (mac_cg_color_space_rgb) [USE_MAC_IMAGE_IO]: New extern.
15688
15689 * s/darwin.h [HAVE_CARBON && HAVE_AVAILABILITYMACROS_H]:
15690 Include AvailabilityMacros.h.
15691 (USE_MAC_IMAGE_IO, LIBS_IMAGE) [HAVE_CARBON]: New defines.
15692 (LIBS_CARBON) [HAVE_CARBON]: Use LIBS_IMAGE.
15693
15694 2008-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
15695
15696 * chartab.c (Fset_char_table_range): If range is t, really set all
15697 chars to that value.
15698
15699 2008-05-03 Eli Zaretskii <eliz@gnu.org>
15700
15701 * dired.c (Ffile_attributes): Don't allow the device number become
15702 negative.
15703
15704 2008-05-02 Daiki Ueno <ueno@unixuser.org>
15705
15706 * Makefile.in (lisp, shortlisp): Add epa-file-hook.elc.
15707
15708 2008-05-02 Juri Linkov <juri@jurta.org>
15709
15710 * minibuf.c (Fread_from_minibuffer, Fread_string, Fread_command)
15711 (Fread_variable, Fread_buffer, Fcompleting_read): Document the
15712 DEFAULT argument as a list of default values in docstrings.
15713
15714 2008-05-01 Chong Yidong <cyd@stupidchicken.com>
15715
15716 * puresize.h (BASE_PURESIZE): Increase to 1210000.
15717
15718 2008-05-01 Martin Rudalics <rudalics@gmx.at>
15719
15720 * dispnew.c (change_frame_size_1): Preserve small windows when
15721 shrinking frames by calling set_window_height|width with third
15722 arg 2.
15723
15724 * window.h (struct window): Replace field too_small_ok by field
15725 resize_proportionally.
15726
15727 * window.c (make_window): Initialize resize_proportionally.
15728 (enlarge_window): Temporarily set resize_proportionally to make
15729 sure that shrink_windows does scale the window proportionally.
15730 (shrink_windows): When window has resize_proportionally set try
15731 to shrink it proportionally by stealing from other windows.
15732 (struct saved_window, Fset_window_configuration)
15733 (compare_window_configurations): Handle resize_proportionally.
15734 (WINDOW_TOTAL_SIZE): New macro.
15735 (window_min_size, shrink_windows, size_window): Use it.
15736 (check_min_window_sizes): Remove. Invalid values of
15737 window-min-height|width are handled by window_min_size_2 now.
15738 (size_window, Fsplit_window, enlarge_window)
15739 (adjust_window_trailing_edge, grow_mini_window): Don't call
15740 check_min_window_sizes.
15741 (window_min_size_2, window_min_size_1, window_min_size):
15742 New argument safe_p for retrieving "safe" minimum sizes.
15743 (Fdisplay_buffer, Fsplit_window, enlarge_window)
15744 (adjust_window_trailing_edge, grow_mini_window):
15745 Adjust arguments of window_min_size... functions.
15746 (shrink_windows): Argument min_size removed. New argument
15747 safe_p allows shrinking windows to their safe minimum sizes.
15748 Calculate minimum size and decide whether a window shall be
15749 deleted for each window individually.
15750 (size_window): When nodelete_p equals 2, tell shrink_windows to
15751 delete windows only if their new minimum size is no more safe.
15752 (shrink_window_lowest_first): Call window_min_size_1 to make
15753 sure to preserve modeline of bottom-most window when resizing
15754 the minibuffer.
15755 (Fset_window_configuration, Fcurrent_window_configuration)
15756 (compare_window_configurations): Do not handle
15757 window-min-height|width any more.
15758 (syms_of_window): Clarify window-min-height|width doc-strings.
15759
15760 2008-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
15761
15762 * dired.c (file_name_completion): Fix up the encoding/decoding issue
15763 some more. Copy some of the code from Ftry_completions.
15764 Remove special case code that dates back to initial revision when the
15765 slash was only added when necessary and that can't trigger nowadays.
15766
15767 2008-04-27 Kenichi Handa <handa@m17n.org>
15768
15769 * font.c (font_prop_validate): Signal `error' instead of `font'.
15770
15771 2008-04-29 Jason Rumney <jasonr@gnu.org>
15772
15773 * w32fns.c (Fw32_battery_status): New defun.
15774 (syms_of_w32fns): Defsubr it.
15775
15776 2008-04-28 Andreas Schwab <schwab@suse.de>
15777
15778 * dired.c (file_name_completion): Fix another mixing of encoded
15779 and decoded names.
15780
15781 2008-04-28 Juanma Barranquero <lekktu@gmail.com>
15782
15783 * w32fns.c (Fw32_define_rgb_color): Fix typo in docstring.
15784
15785 2008-04-27 Juanma Barranquero <lekktu@gmail.com>
15786
15787 * fringe.c (Fdefine_fringe_bitmap): Doc fix.
15788
15789 2008-04-27 Andreas Schwab <schwab@suse.de>
15790
15791 * dired.c (file_name_completion): Fix inappropriate mixing of
15792 encoded and decoded names.
15793
15794 * xterm.c (XTread_socket): Fix use of uninitialized variable.
15795
15796 * puresize.h (BASE_PURESIZE): Increase to 1200000.
15797
15798 2008-04-26 Eli Zaretskii <eliz@gnu.org>
15799
15800 * dired.c (Ffile_attributes) [WINDOWSNT]: Undo change from
15801 2008-03-31, it's not needed anymore with `struct stat' definition
15802 on nt/inc/sys/stat.h. Undo changes from 2007-01-12 and 2007-01-13
15803 for the same reasons.
15804
15805 2008-04-25 Dennis Gilmore <ausil@fedoraproject.org> (tiny change)
15806
15807 * m/sparc.h: Additional redefinitions for GNU/Linux.
15808
15809 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15810
15811 * macterm.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: New variable.
15812 (syms_of_macterm) [USE_MAC_TSM]: Defvar it.
15813 (Qmouse_drag_overlay) [MAC_OSX]: New variable.
15814 (syms_of_macterm) [MAC_OSX]: Intern and staticpro it.
15815 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
15816 (mac_ax_selected_text_range) [MAC_OSX]: New functions.
15817 (mac_ax_number_of_characters) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
15818 Likewise.
15819
15820 * mactoolbox.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: Add extern.
15821 (fast_find_position, x_y_to_hpos_vpos, mac_ax_selected_text_range)
15822 (mac_ax_number_of_characters): Add externs.
15823 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
15824 [USE_MAC_TSM]: Likewise.
15825 (mac_handle_text_input_event) [MAC_OSX]:
15826 Handle kEventTextInputOffsetToPos for no active input area case.
15827 Handle kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
15828 (mac_handle_document_access_event)
15829 [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: New function.
15830 (install_application_handler) [MAC_OSX]: Register handlers for
15831 kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
15832 (install_application_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
15833 Register mac_handle_document_access_event.
15834
15835 * xdisp.c (x_y_to_hpos_vpos, fast_find_position) [HAVE_CARBON]:
15836 Make functions non-static.
15837
15838 2008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
15839
15840 * fileio.c (Vread_file_name_function, Vread_file_name_predicate)
15841 (read_file_name_completion_ignore_case, insert_default_directory)
15842 (Qdefault_directory): Move to minibuffer.el.
15843 (Fread_file_name): Call the new `read-file-name' instead.
15844
15845 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15846
15847 * mac.c (create_apple_event) [TARGET_API_MAC_CARBON]:
15848 Make function non-static.
15849 (create_apple_event_from_event_ref) [TARGET_API_MAC_CARBON]:
15850 Remove function.
15851 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
15852 Move to mactoolbox.c.
15853 (mac_event_parameters_to_lisp) [TARGET_API_MAC_CARBON]: New function.
15854
15855 * macgui.h (CGFloat) [!CGFLOAT_DEFINED]: New typedef.
15856 (mac_rect_make): New macro.
15857
15858 * macterm.c (mac_draw_image_string_atsui) [MAC_OSX]: Use CGFloat
15859 instead of float.
15860 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
15861 (init_cg_color, mac_draw_line, mac_draw_cg_image, XSetForeground)
15862 (XSetBackground) [USE_CG_DRAWING]: Likewise.
15863 (mac_draw_image_string_atsui) [MAC_OSX]: Use mac_rect_make instead of
15864 CGRectMake.
15865 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
15866 (mac_erase_rectangle, mac_draw_cg_image, mac_fill_rectangle)
15867 (mac_set_clip_rectangles) [USE_CG_DRAWING]: Likewise.
15868 (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
15869 instead of WindowRef in argument type.
15870 (XCreatePixmap) [!MAC_OS8]: Don't call SetPortWindowPort.
15871 (mac_invert_rectangle): Use CGContextSetBlendMode if available.
15872 (mac_set_clip_rectangles, mac_reset_clip_rectangles): Take argument F
15873 instead of DISPLAY. All uses changed.
15874 (mac_handle_size_change): Don't call SET_FRAME_GARBAGED.
15875 (x_calc_absolute_position): Simplify so as not to use
15876 FRAME_PIXEL_WIDTH/FRAME_PIXEL_HEIGHT.
15877
15878 * macterm.h (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
15879 instead of WindowRef in argument type.
15880 (create_apple_event_from_event_ref, create_apple_event_from_drag_ref)
15881 [TARGET_API_MAC_CARBON]: Remove externs.
15882 (create_apple_event, mac_event_parameters_to_lisp)
15883 [TARGET_API_MAC_CARBON]: Add externs.
15884
15885 * mactoolbox.c (Vmac_ts_script_language_on_focus)
15886 (saved_ts_script_language_on_focus) [USE_MAC_TSM]: Remove externs.
15887 (XTread_socket) [USE_MAC_TOOLBAR]: Select window if its structure part
15888 is clicked.
15889 (x_activate_menubar): Remove extern for saved_menu_event_location.
15890 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
15891 Move from mac.c.
15892
15893 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15894
15895 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT] (uninterrupt_malloc)
15896 [HAVE_GTK_AND_PTHREAD && !DOUG_LEA_MALLOC]: Don't use recursive mutex.
15897
15898 2008-04-23 Jason Rumney <jasonr@gnu.org>
15899
15900 * w32.c (stat): When Vw32_get_true_file_attributes is Qlocal, get
15901 attributes only for local files.
15902
15903 * w32proc.c (syms_of_ntproc): Change Vw32_get_true_file attributes
15904 default to Qlocal.
15905
15906 2008-04-22 Juri Linkov <juri@jurta.org>
15907
15908 * buffer.c (Fswitch_to_buffer): Change interactive spec to call
15909 read-buffer-to-switch instead of using the letter "B".
15910
15911 2008-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
15912
15913 * fileio.c (Qdefault_directory): New variable.
15914 (Fread_file_name): Use it to pass `dir' to the completion functions.
15915
15916 2008-04-20 Chong Yidong <cyd@stupidchicken.com>
15917
15918 * xdisp.c (pos_visible_p): Check if iterator stops on a display string.
15919
15920 2008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
15921
15922 * keyboard.c (Vpre_help_message): Remove.
15923 (show_help_echo): Remove default C code.
15924
15925 * dired.c (directory_files_internal, file_name_completion):
15926 Only call ENCODE_FILE if the string is indeed decoded.
15927
15928 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
15929
15930 * Makefile.in (TOOLKIT_DEFINES): Remove.
15931 (LIBW): Use a bit less #if, remove left over OPEN_LOOK stuff.
15932
15933 2008-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15934
15935 * Makefile.in (MAC_OBJ): Add mactoolbox.o.
15936 (mactoolbox.o): New target.
15937
15938 * mac.c [MAC_OSX] (select_and_poll_event, sys_select):
15939 Use mac_run_loop_run_once instead of CFRunLoopRunInMode.
15940
15941 * macfns.c (x_set_background_color, mac_window, x_create_tip_frame):
15942 Use mac_set_frame_window_background instead of XSetWindowBackground.
15943 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]:
15944 Use mac_is_window_toolbar_visible instead of IsWindowToolbarVisible.
15945 (x_set_name_internal) [TARGET_API_MAC_CARBON]: Use mac_set_window_title
15946 instead of SetWindowTitleWithCFString.
15947 (mac_update_proxy_icon) [TARGET_API_MAC_CARBON]: Remove BLOCK_INPUT.
15948 Move function to mactoolbox.c.
15949 (mac_update_title_bar) [TARGET_API_MAC_CARBON]:
15950 Use mac_set_window_modified instead of SetWindowModified.
15951 Add BLOCK_INPUT around mac_set_window_modified/mac_update_proxy_icon.
15952 (mac_window, x_create_tip_frame): Use mac_create_frame_window.
15953 (Fx_focus_frame): Use mac_front_non_floating_window instead of
15954 FrontNonFloatingWindow. Use mac_activate_window instead of
15955 ActivateWindow. Use mac_active_non_floating_window instead of
15956 ActiveNonFloatingWindow.
15957 (show_hourglass, hide_hourglass) [TARGET_API_MAC_CARBON]:
15958 Use mac_show_hourglass and mac_hide_hourglass.
15959 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use mac_get_global_mouse
15960 instead of GetGlobalMouse.
15961 (Fx_show_tip): Use mac_move_window/mac_size_window/mac_show_window
15962 instead of MoveWindow/SizeWindow/ShowWindow, respectively.
15963 Use mac_bring_window_to_front instead of BringToFront.
15964 (Qfile_name_history) [TARGET_API_MAC_CARBON]: Move extern to
15965 mactoolbox.c.
15966 (Fx_file_dialog) [TARGET_API_MAC_CARBON]: Move function body to
15967 mac_file_dialog in mactoolbox.c. Use mac_file_dialog.
15968 (mac_nav_event_callback) [TARGET_API_MAC_CARBON]: Move function to
15969 mactoolbox.c.
15970
15971 * macgui.h [!HAVE_CARBON]: Include Quickdraw.h instead of QuickDraw.h.
15972 (XtPointer): Move typedef from macmenu.c.
15973 (enum button_type): Move enum from macmenu.c.
15974 (widget_value): Move typedef from macmenu.c.
15975 (M_APPLE, I_ABOUT, EXTRA_STACK_ALLOC, ARGV_STRING_LIST_ID)
15976 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
15977 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
15978 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
15979 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
15980 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
15981 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
15982 (DIALOG_ICON_TOP_MARGIN): Move defines from macmenu.c.
15983 (Selection): Move typedef from macselect.c.
15984 (RAM_TOO_LARGE_ALERT_ID, ABOUT_ALERT_ID) [MAC_OS8]: Move defines from
15985 macterm.c.
15986 (mac_set_window_title, mac_set_window_modified, mac_is_window_visible)
15987 (mac_is_window_collapsed, mac_bring_window_to_front)
15988 (mac_send_window_behind, mac_hide_window, mac_show_window)
15989 (mac_collapse_window, mac_front_non_floating_window)
15990 (mac_active_non_floating_window, mac_activate_window)
15991 (mac_move_window_structure, mac_move_window, mac_size_window)
15992 (mac_get_global_mouse, mac_is_window_toolbar_visible): New defines.
15993
15994 * macmenu.c [!TARGET_API_MAC_CARBON]: Move includes to mactoolbox.c.
15995 (enum mac_menu_kind): Move enum to mactoolbox.c.
15996 (min_menu_id): Move variable to mactoolbox.c.
15997 (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]: Likewise.
15998 (DIALOG_WINDOW_RESOURCE): Move define to mactoolbox.c.
15999 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
16000 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
16001 [TARGET_API_MAC_CARBON]: Likewise.
16002 (XtPointer): Move typedef to macgui.h.
16003 (enum button_type): Move enum to macgui.h.
16004 (widget_value): Move typedef to macgui.h.
16005 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
16006 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
16007 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
16008 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
16009 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
16010 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
16011 (DIALOG_ICON_TOP_MARGIN): Move defines to macgui.h.
16012 (popup_activated_flag): Make variable non-static.
16013 (x_activate_menubar, install_menu_quit_handler, pop_down_menu)
16014 (add_menu_item, fill_menu, dispose_menus):
16015 Move functions to mactoolbox.c.
16016 (restore_show_help_function, menu_target_item_handler)
16017 (install_menu_target_item_handler, mac_handle_dialog_event)
16018 (install_dialog_event_handler, pop_down_dialog, create_and_show_dialog)
16019 [TARGET_API_MAC_CARBON]: Likewise.
16020 (menu_quit_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: Likewise.
16021 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
16022 (find_and_call_menu_selection, name_is_separator): Make function
16023 non-static.
16024 (Vshow_help_function, timer_check) [TARGET_API_MAC_CARBON]: Move extern
16025 to mactoolbox.c.
16026 (set_frame_menubar): Don't call install_menu_quit_handler.
16027 (menu_item_selection): New variable.
16028 (mac_menu_show): Use create_and_show_popup_menu.
16029 (create_and_show_dialog) [TARGET_API_MAC_CARBON]: Don't return
16030 selection but set variable menu_item_selection. All uses changed.
16031 (mac_fill_menubar): Rename from fill_menubar. All uses changed.
16032 Call install_menu_quit_handler. Move to mactoolbox.c.
16033
16034 * macselect.c [!TARGET_API_MAC_CARBON]: Don't include Scrap.h.
16035 (Selection): Move typedef to macgui.h.
16036 (Vselection_converter_alist, Qmac_scrap_name, Qmac_ostype)
16037 (Vmac_apple_event_map, Qmac_apple_event_class, Qmac_apple_event_id):
16038 Make variables non-static.
16039 (Vmac_dnd_known_types) [TARGET_API_MAC_CARBON]: Likewise.
16040 (mac_handle_apple_event, cleanup_all_suspended_apple_events):
16041 Make functions non-static.
16042 (Vmac_service_selection) [MAC_OSX]: Likewise.
16043 (mac_get_selection_from_symbol, get_flavor_type_from_symbol)
16044 (mac_valid_selection_target_p, mac_clear_selection)
16045 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
16046 (mac_put_selection_value, mac_selection_has_target_p)
16047 (mac_get_selection_value, mac_get_selection_target_list)
16048 (init_apple_event_handler, install_drag_handler, remove_drag_handler):
16049 Move functions to mactoolbox.c.
16050 (mac_do_track_drag, mac_do_receive_drag) [TARGET_API_MAC_CARBON]:
16051 Likewise.
16052 (copy_scrap_flavor_data, mac_handle_service_event)
16053 (install_service_handler) [MAC_OSX]: Likewise.
16054 (syms_of_macselect) <Vmac_dnd_known_types>:
16055 Use mac_dnd_default_known_types.
16056
16057 * macterm.h (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y):
16058 Move to mactoolbox.c.
16059 (HOURGLASS_WIDTH, HOURGLASS_HEIGHT): Change to 15.
16060 (Fx_selection_owner_p): Add EXFUN.
16061 (install_window_handler, remove_window_handler, XSetWindowBackground):
16062 Remove externs.
16063 (do_apple_menu) [!TARGET_API_MAC_CARBON]: Likewise.
16064 (mac_prepare_for_quickdraw) [USE_CG_DRAWING]: Likewise.
16065 (x_raise_frame, x_lower_frame, mac_alert_sound_play)
16066 (install_application_handler, mac_get_frame_bounds, mac_get_frame_mouse)
16067 (mac_convert_frame_point_to_global, mac_set_frame_window_background)
16068 (mac_update_begin mac_update_end, mac_frame_up_to_date, x_flush)
16069 (mac_create_frame_window, mac_dispose_frame_window, mac_begin_clip)
16070 (mac_end_clip, mac_create_scroll_bar, mac_dispose_scroll_bar)
16071 (mac_set_scroll_bar_bounds, mac_redraw_scroll_bar, mac_fill_menubar)
16072 (create_and_show_popup_menu, mac_get_selection_from_symbol)
16073 (mac_valid_selection_target_p, mac_clear_selection)
16074 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
16075 (mac_put_selection_value, mac_selection_has_target_p)
16076 (mac_get_selection_value, mac_get_selection_target_list): Add externs.
16077 (mac_update_proxy_icon, mac_show_hourglass, mac_hide_hourglass)
16078 (mac_reposition_hourglass, mac_file_dialog, create_and_show_dialog)
16079 (mac_dnd_default_known_types) [TARGET_API_MAC_CARBON]: Likewise.
16080 (mac_run_loop_run_once) [MAC_OSX]: Likewise.
16081 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
16082 (mac_begin_cg_clip, mac_end_cg_clip) [USE_CG_DRAWING]: Likewise.
16083 (x_set_toolkit_scroll_bar_thumb) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
16084 (x_scroll_bar_set_handle) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
16085
16086 * mactoolbox.c: New file.
16087
16088 2008-04-18 Jason Rumney <jasonr@gnu.org>
16089
16090 * dired.c (Ffile_attributes) [WINDOWSNT]: Cast uid and gid to unsigned.
16091
16092 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
16093
16094 * character.c (Fmultibyte_char_to_unibyte):
16095 Return latin1 chars unchanged.
16096
16097 * fileio.c (Fexpand_file_name): Refine last fix so `nm' is only
16098 relocated if it points to `name'.
16099
16100 2008-04-17 Kenichi Handa <handa@m17n.org>
16101
16102 * data.c (Faset): Allow setting a multibyte character in an
16103 ASCII-only unibyte string.
16104
16105 * lisp.h (STRING_SET_MULTIBYTE): New macro.
16106
16107 2008-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
16108
16109 * Makefile.in: Don't use HAVE_GTK and don't -DUSE_GTK since it's now
16110 done in config.h.
16111
16112 2008-04-16 Juanma Barranquero <lekktu@gmail.com>
16113
16114 * character.c (Fchar_bytes, Fchar_width, Fstring_width)
16115 (Fchar_direction): Add usage in the docstring.
16116
16117 2008-04-15 Chong Yidong <cyd@stupidchicken.com>
16118
16119 * keyboard.c (read_key_sequence): Remove always-true checks.
16120
16121 2008-04-14 Jason Rumney <jasonr@gnu.org>
16122
16123 * w32font.c (w32font_open_internal): Set max_bounds.descent in
16124 compatibility struct, for better underline positioning.
16125
16126 2008-04-13 David Hansen <david.hansen@gmx.net>
16127
16128 * dbusbind.c (dbus-get-unique-name): Remove extra copying of name
16129 string.
16130
16131 2008-04-12 Dan Nicolaescu <dann@ics.uci.edu>
16132
16133 * m/hp800.h (XUINT, XSET): Remove.
16134
16135 2008-04-12 Juanma Barranquero <lekktu@gmail.com>
16136
16137 * fileio.c (Fexpand_file_name): Add declaration for `p' missing in
16138 previous change.
16139
16140 2008-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
16141
16142 * fileio.c (Fexpand_file_name): Tighten the scope of `p' and `o' vars.
16143 Relocate `nm' after calling DECODE_FILE, in case the GC was run.
16144
16145 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
16146
16147 * keymap.h (map_keymap_canonical): Declare.
16148 * xmenu.c (single_keymap_panes): Use it.
16149
16150 2008-04-11 Glenn Morris <rgm@gnu.org>
16151
16152 * eval.c (Fdefvaralias): If the alias is bound and the target is not,
16153 set the target's value to that of the alias.
16154
16155 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
16156
16157 * term.c (set_tty_color_mode): Left over typo.
16158
16159 2008-04-10 Michael Albinus <michael.albinus@gmx.de>
16160
16161 * fileio.c (Fmake_symbolic_link): Surround code by #ifdef S_IFLNK
16162 only after check for file name handler functions. Signal, when
16163 native functionality is not supported.
16164 (syms_of_fileio): Declare it unconditionally.
16165
16166 2008-04-10 Jason Rumney <jasonr@gnu.org>
16167
16168 * w32menu.c (is_simple_dialog, simple_dialog_show): New functions.
16169 (Fx_popup_dialog): Handle simple yes/no questions as dialogs.
16170
16171 * w32.c (logon_network_drive): Also logon to remote drives that
16172 are mapped to drive letters.
16173
16174 2008-04-10 Glenn Morris <rgm@gnu.org>
16175
16176 * xdisp.c (truncate-partial-width-windows): Doc fix.
16177
16178 2008-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
16179
16180 * fileio.c (read_file_name_cleanup, Fread_file_name_internal):
16181 Move functions to minibuffer.el.
16182 (syms_of_fileio): Don't declare them.
16183
16184 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
16185
16186 * minibuf.c (Vcompletion_auto_help): Move to minibuffer.el.
16187 (syms_of_minibuf): Remove its initialization.
16188
16189 * minibuf.c (temp_echo_area_glyphs): Remove unused function.
16190
16191 2008-04-09 Juanma Barranquero <lekktu@gmail.com>
16192
16193 * editfns.c (Ffield_string_no_properties): Fix typo in docstring.
16194
16195 2008-04-09 Jason Rumney <jasonr@gnu.org>
16196
16197 * makefile.w32-in (distclean): Delete makefile too.
16198 (maintainer-clean): New target.
16199
16200 * xdisp.c (redisplay_internal) [!WINDOWSNT]: Conditionalize last change.
16201
16202 * w32term.c (w32_compute_glyph_string_overhangs): Compute overhangs
16203 for new font backend and composite cases.
16204
16205 2008-04-09 Jan Djärv <jan.h.d@swipnet.se>
16206
16207 * atimer.c (alarm_signal_handler): Call run_timers if not SYNC_INPUT.
16208 Most of the code moved to run_timers.
16209 (do_pending_atimers): Call run_timers.
16210 (run_timers): New function.
16211
16212 * sysdep.c (emacs_write): If SYNC_INPUT and pending_atimers,
16213 run atimers.
16214
16215 * process.c (wait_reading_process_output): The same as above.
16216
16217 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
16218
16219 * minibuf.c (last_exact_completion): Remove variable.
16220 (Fdelete_minibuffer_contents, do_completion, Fminibuffer_complete)
16221 (complete_and_exit_1, complete_and_exit_2)
16222 (Fminibuffer_complete_and_exit, Fminibuffer_complete_word)
16223 (Fdisplay_completion_list, display_completion_list_1)
16224 (Fminibuffer_completion_help, Fself_insert_and_exit)
16225 (Fexit_minibuffer, Fminibuffer_message): Move functions to
16226 minibuffer.el.
16227 (syms_of_minibuf): Remove corresponding initializations.
16228
16229 * keyboard.c (Qdeactivate_mark): New var.
16230 (command_loop_1): Use it to call `deactivate-mark'.
16231 (syms_of_keyboard): Initialize it.
16232
16233 * xdisp.c (redisplay_internal): Reset tty's color_mode when switching
16234 to another frame.
16235 * frame.c (do_switch_frame): Refine the top_frame/async_visible code.
16236 Don't call set_tty_color_mode.
16237 (store_frame_param): Reset previous_frame rather than call
16238 set_tty_color_mode.
16239 * term.c (set_tty_color_mode): Rewrite.
16240 * dispextern.h (set_tty_color_mode): New type.
16241 * termchar.h (struct tty_display_info): Add `previous_color_mode'.
16242
16243 2008-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
16244
16245 * keymap.c (access_keymap): Remove the value 2 for t_ok which was used
16246 for generic chars, which do not exist any more in emacs-unicode.
16247
16248 2008-04-08 Michael Albinus <michael.albinus@gmx.de>
16249
16250 * coding.c (detect_coding_emacs_mule)
16251 (Ffind_operation_coding_system): Fix typo.
16252
16253 2008-04-08 Jason Rumney <jasonr@gnu.org>
16254
16255 * w32uniscribe.c (SNAME): Extract only symbol name.
16256
16257 * w32font.h (struct w32_metric_cache): New struct.
16258 (w32font_info): Use it.
16259 (W32METRIC_NO_ATTEMPT, W32METRIC_SUCCESS, W32METRIC_FAIL)
16260 (CACHE_BLOCKSIZE): New constants.
16261
16262 * w32font.c (Qja, Qko, Qzh): New symbols.
16263 (syms_of_w32font): Initialise them.
16264 (font_matches_spec): Use them to filter by language.
16265 (recompute_cached_metrics): Remove function.
16266 (compute_metrics, clear_cached_metrics): New functions.
16267 (w32font_encode_char): Use them to manage metric cache.
16268 (w32font_text_extents): Cache metrics for all glyphs on demand.
16269 Delay converting glyph indices to WORD until needed.
16270 (w32font_open_internal): Initialize metric cache to empty.
16271 (registry_to_w32_charset): Charset should always be a symbol.
16272 (fill_in_logfont, list_all_matching_fonts): Family should
16273 always be a symbol.
16274
16275 2008-04-06 Jason Rumney <jasonr@gnu.org>
16276
16277 * w32uniscribe.c (uniscribe_shape): Increase items buffer size.
16278 Give up if glyph indices not supported. Use uniscribe obtained
16279 ABC widths for individual metrics. Map glyph clusters back to
16280 characters using fClusterStart flag. Return number of glyphs
16281 produced, not chars processed.
16282 (uniscribe_shape): Map char at FROM to current glyph.
16283
16284 2008-04-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16285
16286 * macmenu.c (fill_menu) [TARGET_API_MAC_CARBON]:
16287 Use SetMenuItemHierarchicalMenu.
16288
16289 2008-04-05 Jason Rumney <jasonr@gnu.org>
16290
16291 * image.c (pbm_load): Allow color values up to 65535.
16292 Throw an error if max_color_idx is outside the supported range.
16293 Report an error when image size is invalid.
16294 Read two bytes at a time when raw images have max_color_idx above 255.
16295
16296 2008-04-05 Kenichi Handa <handa@ni.aist.go.jp>
16297
16298 * ccl.c (ccl_driver): If ccl->quit_silently is nonzero, don't
16299 append "CCL: Quitted" when the CCL program is quitted.
16300 (setup_ccl_program): Initialize ccl->quit_silently to zero.
16301
16302 * ccl.h (struct ccl_program): New member quit_silently.
16303
16304 2008-04-05 Chong Yidong <cyd@stupidchicken.com>
16305
16306 * search.c (compile_pattern_1): Treat non-nil and non-string of
16307 search-spaces-regexp as nil.
16308
16309 * minibuf.c (Fassoc_string): Tweak docstring.
16310
16311 2008-04-05 Eli Zaretskii <eliz@gnu.org>
16312
16313 * dired.c (Ffile_attributes): Support inode numbers wider than 32
16314 bits. Remove ugly WINDOWSNT-specific kludge introduced on
16315 2008-03-14 to force inode be positive.
16316
16317 * w32.c (sys_chown, stat, fstat): Use S_* constants instead of
16318 _S_* ones, since we now use our own sys/stat.h.
16319 (stat, fstat): Don't mangle the inode number.
16320 (init_user_info): Don't restrict UID and GID to 0-60000 range.
16321
16322 2008-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
16323
16324 * frame.h (struct frame): Give one more bit to `visible' since we use
16325 values larger than 1 to indicate obscured frames on ttys.
16326
16327 * keymap.c (Qkeymap_canonicalize): New var.
16328 (Fmap_keymap_internal): New fun.
16329 (describe_map): Use keymap-canonicalize.
16330
16331 * undo.c (last_boundary_buffer, last_boundary_position): New vars.
16332 (Fundo_boundary): Set them.
16333 (syms_of_undo): Initialize them.
16334 (record_point): Use them instead of last_point_position*.
16335 (last_undo_buffer): Change type.
16336
16337 2008-04-04 Jason Rumney <jasonr@gnu.org>
16338
16339 * w32font.c (w32font_text_extents): Use font's ascent and descent.
16340 (recompute_cached_metrics): Don't set ascent and descent per char.
16341
16342 * w32uniscribe.c (uniscribe_check_otf): Fix last change.
16343 (uniscribe_check_otf): Add GC protection before consing.
16344 Rearrange loop for counting features.
16345
16346 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
16347
16348 * insdel.c (insert_from_buffer_1): Don't compare bytes in destination
16349 buffer with byte-size of source buffer.
16350
16351 2008-04-03 Chong Yidong <cyd@stupidchicken.com>
16352
16353 * callint.c (Fcall_interactively): Handle temporary region even
16354 when shift-select-mode is off.
16355
16356 2008-04-03 Jason Rumney <jasonr@gnu.org>
16357
16358 * w32uniscribe.c (uniscribe_check_otf): Sanity check otf_spec.
16359
16360 2008-04-03 Kenichi Handa <handa@m17n.org>
16361
16362 * coding.c (CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
16363 (CATEGORY_MASK_UTF_16): Likewise.
16364 (detect_coding_utf_16): Add heuristics to reject utf-16 for a
16365 binary file.
16366 (detect_coding): Add null-byte detection for a binary file.
16367 (detect_coding_system): Likewise.
16368
16369 2008-04-03 Jason Rumney <jasonr@gnu.org>
16370
16371 * w32uniscribe.c: New file.
16372
16373 * font.h (uniscribe_font_driver) [WINDOWSNT]: Declare for w32fns.c.
16374
16375 * w32font.h (uniscribe_check_otf): Declare for w32font.c.
16376
16377 * w32font.c (Qbalinese, Qbuginese, Qbuhid, Qcuneiform, Qcypriot)
16378 (Qdeseret, Qglagolitic, Qgothic, Qhanunoo, Qkharoshthi)
16379 (Qlimbu, Qlinear_b, Qold_italic, Qold_persian, Qosmanya)
16380 (Qphags_pa, Qphoenician, Qshavian, Qsyloti_nagri)
16381 (Qtagalog, Qtagbanwa, Qtai_le, Qtifinagh, Qugaritic)
16382 (Qphonetic): New symbols.
16383 (syms_of_w32font): Initialize them.
16384 (font_supported_scripts): Use them.
16385 (w32font_list_family): List all charsets.
16386 (w32font_text_extents, recompute_cached_metrics): Fix metric
16387 calculations.
16388 (w32_enumfont_pattern_entity): Make full_type a DWORD.
16389 Give opentype fonts their own format.
16390 (font_matches_spec): New arguments backend and logfont.
16391 Handle :otf spec for uniscribe backend.
16392 (add_font_entity_to_list): Match truetype fonts in uniscribe backend.
16393 (fill_in_logfont): Use DEFAULT_CHARSET when charset not supplied.
16394
16395 * w32fns.c (Fx_create_frame): Conditionally register uniscribe
16396 font backend.
16397 (globals_of_w32fns): Initialize uniscribe font backend.
16398
16399 * makefile.w32-in (CONFIG_H): New variable. Use it to clean up
16400 dependencies.
16401 (w32uniscribe.$(O)): New file to build.
16402 (FONT_OBJ): Include w32uniscribe.$(O).
16403 (LIBS): Add uniscribe libraries.
16404
16405 * ftfont.c (ftfont_get_open_type_spec): Check spec->script, not val.
16406
16407 2008-04-02 Chong Yidong <cyd@stupidchicken.com>
16408
16409 * callint.c (Vshift_select_mode): New var.
16410 (Finteractive): Document new ^ spec.
16411 (Fcall_interactively): Call handle-shift-selection if the ^ spec
16412 is present.
16413
16414 * keyboard.c (Vthis_command_keys_shift_translated): New var.
16415 (command_loop_1): Avoid running the direct display versions of
16416 forward-char and backward-char if shift-selection may occur.
16417 (read_key_sequence): Set Vthis_command_keys_shift_translated if
16418 shift-translation takes place.
16419
16420 * buffer.c (Vtransient_mark_mode): Move docstring to simple.el to
16421 avoid clobbering by define-minor-mode.
16422
16423 * cmds.c (Fforward_char, Fbackward_char, Fforward_line)
16424 (Fbeginning_of_line, Fend_of_line): Add ^ interactive spec.
16425
16426 * syntax.c (Fforward_word): Add ^ interactive spec.
16427
16428 * window.c (Fscroll_up, Fscroll_down, Fscroll_left)
16429 (Fscroll_right): Add ^ interactive spec.
16430
16431 2008-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
16432
16433 * xdisp.c (try_window_id): Don't forget to reset delta_bytes.
16434
16435 * casefiddle.c (casify_object): Fix up int/EMACS_INT mixup.
16436
16437 * charset.c (Funibyte_charset, Fset_unibyte_charset): Remove.
16438
16439 2008-03-31 Juri Linkov <juri@jurta.org>
16440
16441 * window.c (Fdisplay_buffer): Reinitialize `tem' to nil.
16442
16443 2008-03-30 Jan Djärv <jan.h.d@swipnet.se>
16444
16445 * gtkutil.c (xg_set_geometry): Fix indentation.
16446 (xg_resize_outer_widget): Remove.
16447 (x_wm_size_hint_off): Fix indentation.
16448 (xg_frame_set_char_size): Call flush_and_sync after
16449 gtk_window_resize.
16450 (x_wm_set_size_hint): Pass NULL as geometry window to
16451 gtk_window_set_geometry_hints due to Gtk+ bug nr 68668.
16452 Add menu bar and tool bar height to base height.
16453 (xg_update_frame_menubar, free_frame_menubar)
16454 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
16455 (update_frame_tool_bar, free_frame_tool_bar):
16456 Change xg_resize_outer_widget to xg_frame_set_char_size.
16457
16458 2008-03-30 Michael Albinus <michael.albinus@gmx.de>
16459
16460 * dbusbind.c (QCdbus_timeout): New D-Bus internal symbol.
16461 (Fdbus_call_method): New parameter TIMEOUT.
16462 (dbus-send-signal): Optimize UNGCPRO call.
16463
16464 2008-03-29 Juri Linkov <juri@jurta.org>
16465
16466 * window.c (Fdisplay_buffer): Move call to
16467 Vsplit_window_preferred_function out of conditions that check
16468 if window is eligible for vertical splitting.
16469 When Vsplit_window_preferred_function is non-nil, call it and use
16470 its non-nil return value as window. Otherwise, continue doing
16471 vertical splitting using Fsplit_window with arg horflag=nil.
16472 (syms_of_window) <Vsplit_window_preferred_function>: Change the
16473 default value from `split-window' to nil.
16474
16475 2008-03-29 Juri Linkov <juri@jurta.org>
16476
16477 * callint.c (Fcall_interactively): Revert 2008-03-16 change
16478 for interactive code letters 'b' and 'B'.
16479
16480 2008-03-29 Eli Zaretskii <eliz@gnu.org>
16481
16482 * fileio.c (Fexpand_file_name): Convert the value of $HOME to a
16483 multibyte string.
16484
16485 2008-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
16486
16487 * keyboard.c (pending_funcalls): New var.
16488 (timer_check): Run it.
16489 (syms_of_keyboard): Initialize it.
16490 * terminal.c (Qrun_hook_with_args, Qdelete_terminal_functions)
16491 (Vdelete_terminal_functions): New vars.
16492 (syms_of_terminal): Initialize them.
16493 (Fdelete_terminal): Run delete-terminal-functions.
16494 * xdisp.c (safe_eval): Rewrite.
16495 (safe_call2): New fun.
16496 * frame.c (Qdelete_frame_functions): New var.
16497 (syms_of_frame): Initialize it.
16498 (Fdelete_frame): Use it and use safe_call2 and pending_funcalls.
16499 * lisp.h (safe_call2, pending_funcalls): Declare.
16500
16501 2008-03-28 Andreas Schwab <schwab@suse.de>
16502
16503 * indent.c (Fmove_to_column): Move declaration before statements.
16504
16505 2008-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
16506
16507 * frame.h (enum fullscreen_type): Give it a name. Move it before use.
16508 (struct frame): Use bit fields for boolean vars.
16509
16510 * process.c (server_accept_connection): Simplify naming.
16511 (emacs_get_tty_pgrp): Use SDATA.
16512
16513 * coding.c (decode_coding_object): Fix last change.
16514
16515 2008-03-27 Jason Rumney <jasonr@gnu.org>
16516
16517 * w32fns.c (start_hourglass): Suppress hourglass on tty frames.
16518
16519 2008-03-27 Kenichi Handa <handa@ni.aist.go.jp>
16520
16521 * charset.c (Fdefine_charset_internal): Change the way of
16522 registering charsets in Vcharset_order_list.
16523 (syms_of_charset): Make the charset `eight-bit' supplementary.
16524
16525 2008-03-26 Alexandre Oliva <aoliva@redhat.com> (tiny change)
16526
16527 * regex.c (EXTEND_BUFFER): Change order of pointer addition
16528 operations, to avoid having the difference between pointers
16529 overflow.
16530
16531 2008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
16532
16533 * indent.c (check_display_width): New fun.
16534 (scan_for_column): Use it.
16535
16536 * data.c (syms_of_data): Mark most-positive-fixnum and
16537 most-negative-fixnum as constants.
16538
16539 * xdisp.c (redisplay_internal): Reset selected_frame earlier.
16540
16541 * indent.c (scan_for_column): Extract from current_column_1.
16542 Merge with the same code from Fmove_to_column.
16543 (current_column_1, Fmove_to_column): Use it.
16544
16545 2008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
16546
16547 * keymap.c (map_keymap_internal): New fun.
16548 (map_keymap): Use it.
16549 (Fmap_keymap_internal): New fun.
16550 (Fmap_keymap): Remove left-out test from before make_save_value.
16551
16552 * keymap.c (Fmap_keymap): Use `map-keymap-sorted.
16553
16554 * frame.c (Fmodify_frame_parameters, x_set_frame_parameters):
16555 Use XCAR/XCDR.
16556
16557 * process.h (struct Lisp_Process): Remove filter_multibyte.
16558 * process.c (QCfilter_multibyte): Remove.
16559 (setup_process_coding_systems): Don't use filter_multibyte.
16560 (Fstart_process, Fmake_network_process): Don't set filter_multibyte.
16561 (read_process_output): Don't adjust multibyteness to filter_multibyte.
16562 (Fset_process_filter_multibyte): Change the coding-system to
16563 approximate the previous behavior.
16564 (Fprocess_filter_multibyte_p): Get the multibyteness straight from the
16565 coding-system.
16566
16567 * coding.c (decode_coding_object): When not decoding into a buffer,
16568 obey the coding system's preference of (uni|multi)byte.
16569
16570 2008-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
16571
16572 * casefiddle.c (casify_object): Avoid pathological N^2 worst case if
16573 every char is changed and has a different byte-length.
16574 (Fupcase_word, Fdowncase_word, Fcapitalize_word, operate_on_word):
16575 Fix int -> EMACS_INT.
16576
16577 2008-03-23 David Hansen <david.hansen@gmx.net>
16578
16579 * dbusbind.c (xd_read_message): Remove extra copying of message
16580 strings. Check for NULL `interface' or `member'.
16581
16582 2008-03-22 Eli Zaretskii <eliz@gnu.org>
16583
16584 * w32.c (readdir): If FindFirstFile/FindNextFile return in
16585 cFileName a file name that includes `?' characters, use the 8+3
16586 alias in cAlternateFileName instead.
16587
16588 2008-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
16589
16590 * buffer.c (enlarge_buffer_text): Fix int -> EMACS_INT.
16591
16592 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
16593
16594 * intervals.c (temp_set_point, temp_set_point_both): Use EMACS_INT.
16595 (set_point, set_point_both): Use EMACS_INT. Remove `buffer' arg,
16596 work on current_buffer only instead (that was already the case
16597 for some of the code anyway).
16598 * buffer.h (set_point, set_point_both): Remove buffer arg, use long int.
16599 (temp_set_point, temp_set_point_both): Use EMACS_INT.
16600 (SET_PT, SET_PT_BOTH): Adjust.
16601 * intervals.h (set_point, temp_set_point, set_point_both)
16602 (temp_set_point_both): Remove redundant declarations.
16603
16604 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
16605
16606 * fileio.c (Finsert_file_contents):
16607 * lread.c (Feval_buffer): Use BUF_TEMP_SET_PT.
16608 * buffer.h (BUF_SET_PT): Remove. set_point_both doesn't work right
16609 when buffer != current_buffer anyway.
16610
16611 2008-03-20 Andreas Schwab <schwab@suse.de>
16612
16613 * callint.c (Fcall_interactively) [case 'B']: Use other-buffer
16614 as default.
16615
16616 2008-03-19 Jason Rumney <jasonr@gnu.org>
16617
16618 * w32fns.c (hourglass_timer, hourglass_hwnd): New variables.
16619 (syms_of_w32fns): Initialize them.
16620 (HOURGLASS_ID): New constant.
16621 (x_window_to_frame): Don't check hourglass_window.
16622 (w32_wnd_proc) <WM_TIMER>: Handle hourglass_timer.
16623 (w32_wnd_proc) <WM_EXITMENULOOP>: Set pending hourglass cursor.
16624 (w32_wnd_proc) <WM_SETCURSOR>: Set the hourglass or current cursor.
16625 (w32_wnd_proc) <WM_EMACS_SETCURSOR>: Set frame's current_cursor.
16626 Only change the cursor if hourglass is not active.
16627 (Fx_create_frame): Initialize frame's current_cursor.
16628 (hourglass_atimer): Remove.
16629 (hourglass_started): New function.
16630 (start_hourglass, cancel_hourglass, hide_hourglass): Adapt to w32.
16631 (show_hourglass): Adapt to w32, changing argument to frame.
16632
16633 * w32term.h (struct w32_output): Remove hourglass_window.
16634 Add current_cursor.
16635
16636 * eval.c (call_debugger, Fsignal):
16637 * keyboard.c (recursive_edit_1, cmd_error, Ftop_level)
16638 (command_loop_1, Fread_key_sequence, Fread_key_sequence_vector)
16639 (Fexecute_extended_command, cancel_hourglass_unwind):
16640 * minibuf.c (read_minibuf):
16641 * fns.c (Fy_or_n_p): Enable hourglass when HAVE_WINDOW_SYSTEM.
16642
16643 2008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
16644
16645 * window.c (run_funs): New fun.
16646 (run_window_configuration_change_hook): Use it to run the buffer-local
16647 and the global part of the hook.
16648
16649 * xdisp.c (format_mode_line_unwind_data): Add window argument.
16650 (unwind_format_mode_line): Restore selected window.
16651 (x_consider_frame_title, Fformat_mode_line): Set selected window.
16652
16653 2008-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
16654
16655 * editfns.c (Fchar_equal): Check they are valid characters.
16656
16657 * buffer.h (Fbuffer_list): Declare (for use in callint.c).
16658
16659 2008-03-17 Andreas Schwab <schwab@suse.de>
16660
16661 * regex.c (re_match_2_internal): Properly match raw 8-bit bytes
16662 against a charset.
16663
16664 * lisp.h (Fbuffer_list): Declare.
16665
16666 2008-03-17 Jan Djärv <jan.h.d@swipnet.se>
16667
16668 * gtkutil.c (free_frame_tool_bar): Only call gtk_container_remove if
16669 handlebox_widget is != 0.
16670
16671 2008-03-16 Juri Linkov <juri@jurta.org>
16672
16673 * callint.c (Fcall_interactively): For interactive code letters
16674 'b' and 'B' put the buffer list into the list of default "future"
16675 values of the minibuffer.
16676
16677 2008-03-16 Andreas Schwab <schwab@suse.de>
16678
16679 * keyboard.c (read_key_sequence): Fix downcasing of letters with
16680 modifiers.
16681
16682 * regex.c (re_match_2_internal): Correct matching of a charset
16683 against latin-1 characters.
16684
16685 2008-03-16 Kenichi Handa <handa@m17n.org>
16686
16687 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY)
16688 (STRING_CHAR_ADVANCE_NO_UNIFY): New macros.
16689 (coding_alloc_by_making_gap): Fix the way to preserve data in the gap.
16690 (alloc_destination): Fix the 2nd arg to coding_alloc_by_making_gap.
16691 (encode_coding_utf_8): Use CHAR_STRING_ADVANCE_NO_UNIFY instead of
16692 CHAR_STRING_ADVANCE.
16693 (produce_chars): Fix for the case that the source and the
16694 destination are the same buffer. Use CHAR_STRING_ADVANCE_NO_UNIFY
16695 instead of CHAR_STRING_ADVANCE.
16696 (consume_chars): Use STRING_CHAR_ADVANCE_NO_UNIFY instead of
16697 STRING_CHAR_ADVANCE.
16698
16699 2008-03-15 Andreas Schwab <schwab@suse.de>
16700
16701 * regex.c (re_match_2_internal): Correct matching of eight bit
16702 characters in unibyte strings.
16703
16704 2008-03-15 Martin Rudalics <rudalics@gmx.at>
16705
16706 * buffer.c (overlays_in, Foverlays_in): Include empty overlays
16707 at end of range when it coincides with the end of the buffer.
16708
16709 2008-03-14 Eli Zaretskii <eliz@gnu.org>
16710
16711 * dired.c (Ffile_attributes) [WINDOWSNT]: Force inode be positive.
16712
16713 * w32fns.c (globals_of_w32fns, Fx_create_frame): Fix last change.
16714
16715 2008-03-14 Jason Rumney <jasonr@gnu.org>
16716
16717 * editfns.c (initial_tz): New variable.
16718 (syms_of_editfns): Initialize it.
16719 (Fset_time_zone_rule): Set it when first called.
16720 Use it when TZSTRING is nil.
16721
16722 * w32fns.c (MONITOR_DEFAULT_TO_NEAREST, struct MONITOR_INFO)
16723 (MonitorFromPoint_Proc, GetMonitorInfo_Proc): New definitions.
16724 (monitor_from_point_fn, get_monitor_info_fn): New globals.
16725 (globals_of_w32fns): Initialize them.
16726 (compute_tip_xy): Use them to position tooltips.
16727
16728 2008-03-14 Glenn Morris <rgm@gnu.org>
16729
16730 * emacs.c (main): Revert previous change.
16731 (standard_args): Revert -internal-script back to -scriptload,
16732 and remove the long-option form.
16733
16734 2008-03-13 Glenn Morris <rgm@gnu.org>
16735
16736 * emacs.c (main, standard_args): Rename -scriptload to -internal-script.
16737 Remove option -enable-font-backend.
16738
16739 2008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
16740
16741 * buffer.c (Fswitch_to_buffer): Fall back on pop-to-buffer.
16742
16743 2008-03-11 Jan Djärv <jan.h.d@swipnet.se>
16744
16745 * xterm.c (x_connection_closed): For GTK: If this is the last
16746 terminal just exit without closing the display.
16747
16748 2008-03-11 Jason Rumney <jasonr@gnu.org>
16749
16750 * w32font.c (w32font_full_name): Use floor to round.
16751
16752 2008-03-10 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
16753
16754 * sound.c (alsa_configure): Declare vol at beginning of block.
16755
16756 * fontset.c (Ffontset_info): Remove extra semicolon.
16757
16758 2008-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
16759
16760 * fileio.c (Fsubstitute_in_file_name): Fix up computation of maximum
16761 size of resulting string.
16762
16763 2008-03-10 Jason Rumney <jasonr@gnu.org>
16764
16765 * dispnew.c (adjust_glyph_matrix): Initialize window_height.
16766
16767 2008-03-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16768
16769 * xdisp.c (handle_single_display_spec): Undo 2007-10-16 changes.
16770 Don't pretend as if characters with display property haven't been
16771 consumed for string-replacing-string case.
16772
16773 2008-03-08 Kim F. Storm <storm@cua.dk>
16774
16775 * xdisp.c (GET_NEXT_DISPLAY_ELEMENT): New macro.
16776 (get_next_display_element, next_element_from_string)
16777 (next_element_from_ellipsis, next_element_from_buffer): Use it.
16778
16779 2008-03-08 Andreas Schwab <schwab@suse.de>
16780
16781 * process.h (struct Lisp_Process): Declare bit fields as unsigned.
16782
16783 2008-03-06 Jason Rumney <jasonr@gnu.org>
16784
16785 * w32font.c (w32_registry): Take font_type argument. Use ANSI
16786 when charset not specified. Only translate ANSI to unicode when
16787 font_type is truetype.
16788 (w32font_coverage_ok): New function.
16789 (add_font_entity_to_list): Use it to filter unsuitable fonts.
16790
16791 2008-03-05 Kenichi Handa <handa@ni.aist.go.jp>
16792
16793 * lread.c (Fread_char): Resolve modifiers.
16794 (Fread_char_exclusive): Likewise.
16795
16796 * character.c (char_resolve_modifier_mask): New function.
16797 (char_string): Use char_resolve_modifier_mask.
16798 (Fchar_resolve_modifiers): New function.
16799 (syms_of_character): Declare Fchar_resolve_modifiers as Lisp
16800 function.
16801
16802 2008-03-04 Jason Rumney <jasonr@gnu.org>
16803
16804 * makefile.w32-in: Always include w32font.c in the build.
16805 * w32font.c: Wrap in USE_FONT_BACKEND conditional.
16806
16807 2008-03-04 Andreas Schwab <schwab@suse.de>
16808
16809 * Makefile.in (clean): Remove emacs-*.*.* instead of emacs-*.
16810 (versionclean): Likewise.
16811
16812 2008-03-04 Juanma Barranquero <lekktu@gmail.com>
16813
16814 * .cvsignore: Add oo.
16815
16816 2008-03-03 Andreas Schwab <schwab@suse.de>
16817
16818 * coding.c (decode_coding_object): Inhibit gap shrinking while
16819 decoding in place.
16820
16821 2008-03-03 Dan Nicolaescu <dann@ics.uci.edu>
16822
16823 * w32term.c: Remove unused include "gnu.h".
16824 * makefile.w32-in (w32term.o): Don't depend on gnu.h.
16825
16826 * gnu.h: Rename to ...
16827 * emacs-icon.h: ... this.
16828 * xterm.c: Use emacs-icon.h instead of gnu.h.
16829 * Makefile (xterm.o): Depend on emacs-icon.h, not gnu.h.
16830
16831 2008-03-03 Juanma Barranquero <lekktu@gmail.com>
16832
16833 * w32font.c: Include math.h.
16834
16835 2008-03-03 Jason Rumney <jasonr@gnu.org>
16836
16837 * w32font.c (recompute_cached_metrics): Change font arg to w32font_info.
16838 Compute options separately.
16839 (w32font_open_internal): Set glyph_idx before caching metrics.
16840
16841 * w32font.h (NTM_PS_OPENTYPE, NTM_TT_OPENTYPE, NTM_TYPE1):
16842 Define if system headers don't.
16843 (struct w32font_info): Enlarge ascii_metrics. Add glyph_idx.
16844 (w32font_encode_char): Don't declare here.
16845
16846 * w32font.c (Quniscribe, QCformat): New symbols.
16847 (syms_of_w32font): Define them.
16848 (w32font_has_char): Indicate uncertainty.
16849 (w32font_encode_char): Encode as glyph point. Make static.
16850 (recompute_cached_metrics): New function.
16851 (w32font_open_internal): Use it. Set font to use glyph points
16852 initially. Set format based on type of font.
16853 (w32font_text_extents, w32font_draw): Optionally use glyph points.
16854 (w32_enumfont_pattern_entity): Accept backend arg. Set type based
16855 on it. Set format based on information available here.
16856 (add_font_entity_to_list): Identify backend based on opentype_only.
16857
16858 2008-03-02 Andreas Schwab <schwab@suse.de>
16859
16860 * ftfont.c (ftfont_pattern_entity): Fix aliasing violations.
16861
16862 * coding.c (decode_coding_big5, produce_chars):
16863 Fix typos in last change.
16864
16865 2008-03-02 Kentaro Ohkouchi <nanasess@fsm.ne.jp>
16866
16867 * gnu.h: New icon.
16868
16869 2008-03-02 Kenichi Handa <handa@m17n.org>
16870
16871 * coding.c (decode_coding_utf_8): When eol-type of CODING is
16872 `dos', don't decode '\r' if that is the last in the source.
16873 (decode_coding_utf_16, decode_coding_emacs_mule)
16874 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
16875 (decode_coding_raw_text, decode_coding_charset): Likewise.
16876 (produce_chars): Don't decode EOL here. Use EMACS_INT.
16877
16878 2008-03-01 Jason Rumney <jasonr@gnu.org>
16879
16880 * w32font.c (w32font_full_name): Report point size for scalable fonts.
16881
16882 2008-03-01 Kim F. Storm <storm@cua.dk>
16883
16884 * dispextern.h (CHAR_GLYPH_SPACE_P): Check for default face.
16885
16886 2008-03-01 Jason Rumney <jasonr@gnu.org>
16887
16888 * w32font.c (w32font_full_name): New function.
16889 (w32font_open_internal): Use it.
16890
16891 2008-03-01 Kim F. Storm <storm@cua.dk>
16892
16893 * dispnew.c (line_draw_cost): Fix invalid glyph check.
16894
16895 2008-03-01 Jason Rumney <jasonr@gnu.org>
16896
16897 * font.c (font_unparse_fcname): Increase len when style is a symbol.
16898
16899 2008-03-01 Jan Djärv <jan.h.d@swipnet.se>
16900
16901 * xterm.c (handle_one_xevent): For Gtk+ and ConfigureNotify, call
16902 xg_frame_resized when the event is for the edit widget.
16903
16904 * gtkutil.h (xg_frame_resized): Renamed from xg_resize_widgets.
16905
16906 * gtkutil.c (xg_resize_outer_widget): Only do one of set_geometry or
16907 set_char_size.
16908 (xg_frame_resized): Renamed from xg_resize_widgets. Remove all
16909 operations on widgets here. Just set frame size if needed.
16910 (flush_and_sync, x_wm_size_hint_off, xg_pack_tool_bar): New functions.
16911 (xg_frame_set_char_size): Call x_wm_size_hint_off before resizing.
16912 (x_wm_set_size_hint): Set size hints on the edit widget only, not
16913 the whole frame.
16914 (xg_create_tool_bar): Move attachment of the tool bar to
16915 xg_pack_tool_bar. Do not attach the tool bar if there are no items.
16916 (free_frame_tool_bar): Remove call to SET_FRAME_GARBAGED.
16917
16918 2008-03-01 Jason Rumney <jasonr@gnu.org>
16919
16920 * w32fns.c (w32_msg_pump): Disable debug code.
16921
16922 2008-03-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16923
16924 * m/intel386.h [MAC_OSX || DARWIN]: Define NO_ARG_ARRAY if _LP64.
16925
16926 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
16927
16928 * xdisp.c (next_overlay_string): Don't set
16929 overlay_strings_at_end_processed_p if we're currently reading from
16930 a display string.
16931
16932 2008-02-29 Stefan Monnier <monnier@iro.umontreal.ca>
16933
16934 * xdisp.c (get_overlay_strings_1): Fix typo.
16935
16936 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
16937
16938 * xdisp.c (get_overlay_strings_1): Add missing argument type.
16939
16940 2008-02-28 Kenichi Handa <handa@ni.aist.go.jp>
16941
16942 * ftfont.c (ftfont_match): Explicitly set pixelsize in pattern.
16943
16944 * xdisp.c (display_mode_element): Cancel the previous change.
16945 (decode_mode_spec): Likewise.
16946 (handle_auto_composed_prop): Don't make composition if it->string
16947 is a string.
16948
16949 2008-02-27 Kim F. Storm <storm@cua.dk>
16950
16951 * lisp.h (GLYPH): Change type from int to struct with separate char
16952 and face_id members.
16953 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Delete macros.
16954 (GLYPH_CHAR, GLYPH_FACE): Remove slow versions with frame arg.
16955 (FAST_GLYPH_CHAR, FAST_GLYPH_FACE): Rename macros to ...
16956 (GLYPH_CHAR, GLYPH_FACE): ... these. Change users.
16957 (FAST_MAKE_GLYPH, MAKE_GLYPH): Remove. Rewrite users to use ...
16958 (SET_GLYPH, SET_GLYPH_CHAR, SET_GLYPH_FACE): ... these macros instead.
16959 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE, GLYPH_CODE_P)
16960 (GLYPH_CODE_CHAR_VALID_P, SET_GLYPH_FROM_GLYPH_CODE): New macros to
16961 handle new Lisp glyph code encoding, either an integer or a cons.
16962
16963 * disptab.h (GLYPH_SIMPLE_P): Rewrite.
16964 (GLYPH_ALIAS): Delete.
16965 (GLYPH_ALIAS_P, GLYPH_FOLLOW_ALIASES): Rewrite.
16966 (GLYPH_LENGTH, GLYPH_STRING): Use GLYPH_CHAR.
16967 (GLYPH_FROM_CHAR): Replace macro by ...
16968 (SET_GLYPH_FROM_CHAR): ... this macro. Change users.
16969
16970 * dispextern.h (CHAR_GLYPH_SPACE_P): Simplify.
16971 (GLYPH_FROM_CHAR_GLYPH): Replace macro by ...
16972 (SET_GLYPH_FROM_CHAR_GLYPH): ... this macro. Change users.
16973 (GLYPH_INVALID_P): New macro.
16974 (spec_glyph_lookup_face): Update prototype.
16975
16976 * dispnew.c (line_draw_cost): Adapt to new glyph type.
16977 (build_frame_matrix_from_leaf_window): Adapt to new glyph type and
16978 new glyph code encoding.
16979 (spec_glyph_lookup_face): No return value; update passed glyph instead.
16980 (init_display): Use SET_CHAR_GLYPH to initialize space_glyph.
16981
16982 * xdisp.c (get_next_display_element, next_element_from_display_vector):
16983 Adapt to new glyph type and new glyph code encoding.
16984
16985 * term.c (encode_terminal_code, produce_special_glyphs): Likewise.
16986
16987 * indent.c (current_column, current_column_1, Fmove_to_column)
16988 (compute_motion): Adapt to new glyph code encoding.
16989
16990 * msdos.c (IT_write_glyphs): Adapt to new glyph type.
16991
16992 2008-02-27 Chong Yidong <cyd@stupidchicken.com>
16993
16994 * process.c (wait_reading_process_output): Check for window
16995 changes caused by timers.
16996 Suggested by Johan Bockgård.
16997
16998 2008-02-27 Glenn Morris <rgm@gnu.org>
16999
17000 * emacs.c (USAGE1): Add `--disable-font-backend'.
17001
17002 2008-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
17003
17004 * fileio.c (Finsert_file_contents): Don't reset undo_list if no change
17005 is made to the buffer.
17006
17007 2008-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
17008
17009 * dispextern.h (face_at_buffer_position, face_for_overlay_string)
17010 (face_at_string_position):
17011 * xfaces.c (face_at_buffer_position, face_for_overlay_string)
17012 (face_at_string_position):
17013 * xdisp.c (display_string, next_overlay_change):
17014 * buffer.h (overlays_at):
17015 * buffer.c (overlays_at): Use EMACS_INT for buffer positions.
17016 Update callers.
17017
17018 2008-02-26 Chong Yidong <cyd@stupidchicken.com>
17019
17020 * editfns.c (Fformat): Doc fix.
17021
17022 2008-02-26 Juanma Barranquero <lekktu@gmail.com>
17023
17024 * font.c (Ffont_spec, Ffont_at): Fix typos in docstrings.
17025 (Ffont_put, Flist_families, Ffont_fill_gstring, Ffont_drive_otf)
17026 (Ffont_otf_alternates, Fquery_font): Doc fixes.
17027
17028 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
17029
17030 * buffer.c (Fbuffer_swap_text): New function.
17031 (syms_of_buffer): Defsubr it.
17032
17033 2008-02-25 Chong Yidong <cyd@stupidchicken.com>
17034
17035 * keyboard.c (command_loop_1): Revert 2006-10-09 change.
17036
17037 2008-02-25 Jason Rumney <jasonr@gnu.org>
17038
17039 * w32font.c (w32font_draw): Draw one character at a time when padding.
17040
17041 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
17042
17043 * window.c (Fdelete_window, Fadjust_window_trailing_edge):
17044 Handle a nil arg. Use run_window_configuration_change_hook.
17045 (delete_window, adjust_window_trailing_edge): Don't handle nil any more.
17046 (Fenlarge_window, Fshrink_window, Fset_window_configuration):
17047 Use run_window_configuration_change_hook.
17048
17049 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
17050
17051 * xdisp.c (x_produce_glyphs): For a visible glyph, assure at least
17052 1-pixel width.
17053
17054 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
17055
17056 * xdisp.c (fill_glyph_string): Pay attention to glyph->padding_p.
17057 (append_glyph): Set glyph->pixel_width and glyph->padding_p to 1
17058 if the glyph in the font is zero pixel with.
17059
17060 * dispextern.h (struct glyph_string): New member padding_p.
17061
17062 * w32font.c (w32font_draw): Pay attention to s->padding_p.
17063
17064 * ftxfont.c (ftxfont_draw): Pay attention to s->padding_p.
17065
17066 * xfont.c (xfont_draw): Pay attention to s->padding_p.
17067
17068 * xftfont.c (xftfont_draw): Pay attention to s->padding_p.
17069
17070 * font.c: If the font driver doesn't have `shape' function, return Qnil.
17071
17072 2008-02-25 Jason Rumney <jasonr@gnu.org>
17073
17074 * w32fns.c (enum_font_cb2): Don't use raster fonts for Unicode.
17075
17076 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
17077
17078 Allow fine-grained image-cache flushing.
17079 * dispextern.h (struct image): Add `dependencies' field.
17080 (clear_image_caches): Change arg to Lisp_Object.
17081 * image.c (make_image): Initialize `dependencies' field.
17082 (clear_image_cache): Change arg to allow fine-grained flushing.
17083 Perform the flush even if image-cache-eviction-delay is nil.
17084 (clear_image_caches): Change arg to Lisp_Object.
17085 (Fclear_image_cache): Expand meaning of the argument.
17086 (mark_image): Mark `dependencies' field.
17087 * xfaces.c (clear_face_cache): Adapt arg to call to clear_image_caches.
17088 (lface_hash): Use XHASH rather than XFASTINT.
17089 (face_at_buffer_position): Fix int -> EMACS_INT position.
17090 * xdisp.c (next_overlay_change): Fix int -> EMACS_INT position.
17091 (select_frame_for_redisplay): Remove code duplication.
17092 (redisplay_internal): Adapt arg to call to clear_image_caches.
17093
17094 2008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
17095
17096 * s/vms4-0.h:
17097 * s/vms4-2.h:
17098 * s/vms4-4.h:
17099 * s/vms5-5.h: Remove, unused.
17100
17101 * s/irix5-2.h:
17102 * s/irix6-0.h:
17103 * s/riscos5.h:
17104 * s/mach-bsd4-3.h:
17105 * m/mips4.h: Remove files for obsolete systems.
17106
17107 * Makefile.in:
17108 * filelock.c:
17109 * unexmips.c:
17110 * m/hp9000s300.h:
17111 * m/iris4d.h:
17112 * s/aix3-1.h:
17113 * s/hpux.h:
17114 * s/msdos.h:
17115 * s/usg5-0.h:
17116 * s/usg5-2-2.h:
17117 * s/usg5-2.h:
17118 * s/usg5-3.h: Remove references to obsolete variables.
17119
17120 * s/irix5-0.h: Remove, move all the contents ...
17121 * s/irix6-5.h: ... here. Simplify.
17122 * config.in: Regenerate.
17123
17124 2008-02-24 Jason Rumney <jasonr@gnu.org>
17125
17126 * w32term.c (x_draw_glyph_string_background): Clear the background
17127 manually when cleartype is in use.
17128 (x_draw_glyph_string_foreground): Draw text transparently when
17129 cleartype is in use.
17130
17131 * w32font.c (w32font_text_extents): Avoid getting HDC and selecting
17132 a font into it unless we have to.
17133
17134 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
17135
17136 * intervals.h (INT_LISPLIKE): Remove. It may misfire.
17137 (NULL_INTERVAL_P, SET_INTERVAL_PARENT): Don't use it.
17138
17139 2008-02-18 Jason Rumney <jasonr@gnu.org>
17140
17141 * w32fns.c (Fw32_shell_execute): Encode parameters.
17142
17143 2008-02-09 Eli Zaretskii <eliz@gnu.org>
17144
17145 * fileio.c (syms_of_fileio) <insert-default-directory>: Doc fix.
17146
17147 2008-02-05 Juanma Barranquero <lekktu@gmail.com>
17148
17149 * unexhp9k800.c (read_header): Replace `legal' with `valid'.
17150
17151 2008-02-24 Ulrich Neumerkel <ulrich@complang.tuwien.ac.at> (tiny change)
17152
17153 * xterm.c (x_set_offset): Don't change the gravity if
17154 CHANGE_GRAVITY is -1.
17155
17156 2008-02-23 Chong Yidong <cyd@stupidchicken.com>
17157
17158 * fileio.c (auto_save_error_occurred): New var.
17159 (auto_save_error): Set it.
17160 (Fdo_auto_save): Don't overwrite the error message if an auto-save
17161 error occurred.
17162
17163 2008-02-23 Eli Zaretskii <eliz@gnu.org>
17164
17165 * w32.c (globals_of_w32): Add initializations for
17166 g_b_init_get_sid_sub_authority and
17167 g_b_init_get_sid_sub_authority_count.
17168
17169 2008-02-22 Stefan Monnier <monnier@iro.umontreal.ca>
17170
17171 * font.c (font_match_xlfd, font_check_xlfd_parse): New funs.
17172 (font_parse_xlfd): Use them for sanity check.
17173 (Finternal_set_font_style_table): Make sure the table is bijective.
17174
17175 Consolidate the image_cache to the terminal struct.
17176 * termhooks.h (P_): Remove redundant def.
17177 (struct terminal): New field `image_cache'.
17178 * frame.h (FRAME_IMAGE_CACHE): New macro. Use it everywhere in place
17179 of FRAME_X_IMAGE_CACHE.
17180 * xterm.h (struct x_display_info): Remove image_cache field.
17181 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
17182 * w32term.h (struct w32_display_info): Remove image_cache field.
17183 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
17184 * macterm.h (struct mac_display_info): Remove image_cache field.
17185 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
17186 * xterm.c (x_term_init):
17187 * w32term.c (w32_term_init):
17188 * macterm.c (mac_term_init): Set the image_cache in the terminal.
17189 * dispextern.h (clear_image_cache, forall_images_in_image_cache):
17190 Remove declarations.
17191 (clear_image_caches, mark_image_cache): New declarations.
17192 * xfaces.c (clear_face_cache):
17193 * xdisp.c (redisplay_internal): Use clear_image_caches.
17194 * image.c (clear_image_cache): Don't check that a frame is on
17195 a window-system before checking if it shares the same cache.
17196 (clear_image_caches): New function.
17197 (Fclear_image_cache): Use it.
17198 (mark_image): Move from allo.c.
17199 (mark_image_cache): Move from alloc.c and forall_images_in_image_cache.
17200 * alloc.c (mark_image, mark_image_cache): Move to image.c.
17201 (mark_object): Don't call mark_image_cache for frames.
17202 (mark_terminals): Call mark_image_cache.
17203
17204 * lisp.h (Fdelete_terminal): Declare.
17205
17206 * charset.h (CHECK_CHARSET, CHECK_CHARSET_GET_ID)
17207 (CHECK_CHARSET_GET_ATTR): Don't use the inexistent return value of
17208 wrong_type_argument.
17209
17210 2008-02-22 Kenichi Handa <handa@ni.aist.go.jp>
17211
17212 * Makefile.in (lisp): Remove devanagari.el, kannada.el,
17213 malayalam.el, and tamil.el. Add sinhala.el.
17214
17215 2008-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
17216
17217 * xterm.c (x_connection_closed): Consolidate identical tests.
17218 (x_delete_terminal): Don't crash if called via x_connection_closed.
17219
17220 2008-02-21 Kenichi Handa <handa@ni.aist.go.jp>
17221
17222 * xdisp.c (decode_mode_spec): New arg string.
17223 (display_mode_element): Adjust for the above change.
17224
17225 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
17226
17227 * callint.c (Fcall_interactively): Use AREF.
17228
17229 2008-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
17230
17231 * font.c (font_unparse_xlfd): Don't ignore integer pixel size specs.
17232
17233 2008-02-18 Jan Djärv <jan.h.d@swipnet.se>
17234
17235 * xfns.c (Fx_show_tip): Set string to " " if empty.
17236
17237 2008-02-17 Dan Nicolaescu <dann@ics.uci.edu>
17238
17239 * callint.c (syms_of_callint): Initialize Vmark_even_if_inactive
17240 with Qt.
17241
17242 2008-02-17 Kenichi Handa <handa@m17n.org>
17243
17244 * ftfont.c (ftfont_shape): Return Lispy number.
17245
17246 * xfaces.c (prepare_face_for_display): Use display_info->font->fid
17247 for GCs.
17248 (Finternal_set_font_selection_order): Call font_update_sort_order
17249 only when enable_font_backend is set.
17250 (realize_x_face): Set face->font_info to that of default face only
17251 when enable_font_backend is set.
17252
17253 * xdisp.c (handle_composition_prop): Set it->c to the fist
17254 character of the composed region.
17255 (fill_composite_glyph_string): Set base_face->font_info to
17256 s->font_info. Get a face for ascii from base_face->ascii_face.
17257 (BUILD_COMPOSITE_GLYPH_STRING): Call fill_composite_glyph_string
17258 with a face already decided.
17259 (x_produce_glyphs): Be sure to set it->ascent and it->descent to
17260 non-negative.
17261 (x_produce_glyphs): If the composition method is ..._WITH_GLYPH_STRING,
17262 call font_prepare_composition unconditionally.
17263
17264 * xfns.c (x_make_gc): Use the default font id of the frame for GCs.
17265
17266 * xterm.h (struct x_display_info): New member font.
17267
17268 * xterm.c (x_set_cursor_gc): Use display_info->font->fid for GCs.
17269 (x_set_mouse_face_gc, x_new_font): Likewise.
17270 (x_term_init): Setup display_info->font.
17271 (x_delete_terminal): Free display_info->font.
17272
17273 * xfont.c (xfont_draw): Use BLOCK_INPUT and UNBLOCK_INPUT.
17274
17275 * ftxfont.c (ftxfont_default_fid): Delete it.
17276 (ftxfont_open): Set xfont->fid to 0.
17277 (ftxfont_end_for_frame): Clear data specific to the frame and the
17278 font-driver.
17279
17280 * xftfont.c (xftfont_default_fid): Delete it.
17281 (xftfont_open): Set xfont->fid to 0.
17282
17283 * fontset.c (FONTSET_OBJLIST): New macro.
17284 (fontset_find_font): Update font-object list of the fontset.
17285 (free_realized_fontset): New function.
17286 (free_face_fontset): Call free_realized_fontset.
17287 (Ffont_info): Call font_close_object only when enable_font_backend
17288 is set.
17289
17290 * font.c [HAVE_X_WINDOWS]: Include xterm.h.
17291 [HAVE_NTGUI]: Include w32term.h.
17292 [MAC_OS]: Include macterm.ch.
17293 (font_otf_ValueRecord): Use make_number.
17294 (font_finish_cache): Fix handling of reference count.
17295 (font_clear_cache): Update num_fonts.
17296 (font_open_entity): Update smallest_char_width and
17297 smallest_font_height of the frame.
17298 (font_close_object): Update num_fonts.
17299 (Fclear_font_cache): Fix finding the target cache data.
17300
17301 2008-02-16 Glenn Morris <rgm@gnu.org>
17302
17303 * fontset.c (Finternal_char_font): Fix compilation warning.
17304
17305 2008-02-16 Eli Zaretskii <eliz@gnu.org>
17306
17307 * w32.c (init_user_info): Use TOKEN_USER and TOKEN_PRIMARY_GROUP
17308 instead of char arrays. Enlarge the size of array passed to
17309 get_token_information.
17310
17311 * font.c (Ffont_fill_gstring, Fget_font_glyphs): Fix compilation
17312 warnings.
17313
17314 2008-02-15 Dan Nicolaescu <dann@ics.uci.edu>
17315
17316 * .gdbinit: Don't set `args', it breaks gdb --args.
17317
17318 2008-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
17319
17320 * fileio.c (Finsert_file_contents): Adjust offsets when replacing
17321 within a narrowed buffer.
17322
17323 2008-02-14 Kenichi Handa <handa@ni.aist.go.jp>
17324
17325 * coding.c (decode_coding_object, encode_coding_object):
17326 Preserve Vdeactivate_mark. Delete unnecessary call of Fcurrent_buffer.
17327
17328 2008-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
17329
17330 * coding.c (coding_set_destination): Use BEG_BYTE rather than
17331 hardcoding 1.
17332 (detect_coding_system):
17333 * lisp.h (detect_coding_system, chars_in_text, multibyte_chars_in_text)
17334 (string_char_to_byte, string_byte_to_char, insert_from_gap):
17335 * insdel.c (insert_from_gap):
17336 * fns.c (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
17337 (string_char_to_byte, string_byte_to_char, string_make_multibyte)
17338 (string_to_multibyte):
17339 * character.c (chars_in_text, multibyte_chars_in_text):
17340 * fileio.c (Finsert_file_contents): Use EMACS_INT for buffer positions.
17341
17342 * character.h (FETCH_STRING_CHAR_ADVANCE)
17343 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
17344 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SDATA and SREF.
17345 (DEC_POS, BUF_DEC_POS): Use BEG_BYTE rather than hardcoding 1.
17346
17347 * casefiddle.c (casify_region): Only call after-change and composition
17348 functions on the part of the region that was changed.
17349
17350 * keyboard.c (read_avail_input):
17351 * frame.c (Fdelete_frame): Call Fdelete_terminal.
17352
17353 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
17354
17355 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
17356 (Fbuffer_local_value, Fbuffer_local_variables): Don't forget undo_list.
17357
17358 2008-02-11 Juanma Barranquero <lekktu@gmail.com>
17359
17360 * w32menu.c (push_submenu_start, push_submenu_end)
17361 (push_left_right_boundary, push_menu_pane, push_menu_item):
17362 * keyboard.c (read_key_sequence): Don't pass args with side effects
17363 to AREF, it fails when compiling with -DENABLE_CHECKING.
17364
17365 2008-02-11 Kenichi Handa <handa@ni.aist.go.jp>
17366
17367 * Makefile.in (${lispsource}international/charprop.el):
17368 Delete this target.
17369
17370 * search.c (boyer_moore): Fix incorrect synching of the trunk and
17371 emacs-unicode-2.
17372
17373 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
17374
17375 * terminal.c (Fdelete_terminal): Clean up the `force' path.
17376
17377 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
17378
17379 * frame.c (Qnoelisp): New symbol.
17380 (syms_of_frame): Initialize it.
17381 (Fdelete_frame): Use it to distinguish a mere `force' passed from some
17382 harmless Elisp code, from a strong `force' from x_connection_closed.
17383 * frame.h (Qnoelisp): Declare.
17384 * xterm.c (x_connection_closed): Pass `noelisp'.
17385
17386 * lisp.h (struct Lisp_Misc_Any, struct Lisp_Marker)
17387 (struct Lisp_Overlay, struct Lisp_Kboard_Objfwd)
17388 (struct Lisp_Save_Value, struct Lisp_Free): Use enum Lisp_Misc_Type
17389 rather than `int' for the type of `type'.
17390
17391 2008-02-10 Dan Nicolaescu <dann@ics.uci.edu>
17392
17393 * s/gnu-linux.h: Remove support for non-ELF and linux-1.x.
17394
17395 * Makefile.in (GNUC): Remove support for gcc-1.x.
17396
17397 2008-02-10 Richard Stallman <rms@gnu.org>
17398
17399 * lisp.h (ASET): Use AREF, not ASLOT.
17400
17401 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
17402
17403 * lisp.h (ASET): Check bounds.
17404
17405 2008-02-10 Glenn Morris <rgm@gnu.org>
17406
17407 * buffer.c (mode-name): Doc fix.
17408
17409 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
17410
17411 * Makefile.in:
17412 * emacs.c:
17413 * gmalloc.c:
17414 * keyboard.c:
17415 * lisp.h:
17416 * m/ibm370aix.h:
17417 * process.c:
17418 * regex.c:
17419 * s/hpux.h:
17420 * sysdep.c:
17421 * sysselect.h:
17422 * systty.h:
17423 * unexec.c:
17424 * w32term.c:
17425 * xsmfns.c:
17426 * xterm.c: Remove code that deals with obsolete variables.
17427
17428 * s/msdos.h (DONT_NEED_ENVIRON): Don't define.
17429
17430 * ecrt0.c: Replace the DONT_NEED_ENVIRON test with MSDOS test,
17431 nothing else needs it anymore.
17432
17433 2008-02-09 Eli Zaretskii <eliz@gnu.org>
17434
17435 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use unibyte_to_multibyte_table
17436 instead of unibyte_char_to_multibyte.
17437
17438 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
17439
17440 * s/gnu-linux.h: Remove commented out code.
17441
17442 * unexec.c: Remove references to obsolete variable COFF_ENCAPSULATE.
17443
17444 * Makefile.in: Update what RMS says about using autoconf.
17445 (C_COMPILER, COFF_ENCAPSULATE, MAKE_PARALLEL): Remove obsolete variable.
17446 (C_SWITCH_MACHINE_1, C_SWITCH_SYSTEM_1, C_SWITCH_SITE_1)
17447 (C_SWITCH_X_SITE_1, C_SWITCH_X_MACHINE_1)
17448 (C_SWITCH_X_SYSTEM_1): Move invariant code outside conditional.
17449
17450 2008-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
17451
17452 * keymap.c (Fkey_description): Move side effect outside of macro call.
17453
17454 * xfaces.c (Finternal_make_lisp_face):
17455 * keyboard.c (add_command_key, parse_menu_item): Use ASET.
17456
17457 * fontset.c (free_face_fontset): Use FONTSET_FROM_ID.
17458 (syms_of_fontset): Use ASET.
17459
17460 * fns.c (concat): Move side effect outside of macro call.
17461 (hash_clear): Use ASET.
17462
17463 2008-02-08 Richard Stallman <rms@gnu.org>
17464
17465 * frame.c (Fdelete_frame): If FORCE, don't call hooks.
17466 If FORCE, and frame has a surrogate minibuffer for another frame,
17467 delete the other frame first.
17468
17469 2008-02-07 Timo Savola <timo.savola@iki.fi>
17470
17471 * xterm.c (x_detect_focus_change): Handle embed client message.
17472 (handle_one_xevent): Ditto.
17473 (handle_one_xevent): If embedded and we get a button press/release,
17474 request focus.
17475 (xembed_set_info, xembed_send_message): New functions.
17476 (x_make_frame_visible): Call xembed_set_info if embedded.
17477 (x_make_frame_invisible): Call xembed_set_info if embedded.
17478 (x_term_init): Initialize Xatom_XEMBED.
17479 (x_make_frame_visible): Check for FRAME_X_EMBEDDED_P also.
17480 (x_iconify_frame): Ditto.
17481
17482 * xterm.h (struct x_display_info): Add AtomXatom_XEMBED.
17483 (enum xembed_info, enum xembed_message, enum xembed_focus)
17484 (enum xembed_modifier, enum xembed_accelerator): New.
17485 (xembed_set_info, xembed_send_message): Declare.
17486 (FRAME_X_EMBEDDED_P): New.
17487
17488 * gtkutil.c (xg_create_frame_widgets): If frame is embedded, call
17489 gtk_plug_new.
17490
17491 * xfns.c (Fx_create_frame): Do not override the explicitly set parent
17492 window ID of a frame.
17493 (x_window): Reparent frame if embedded.
17494 (Fx_create_frame): Don't set border width if embedded.
17495
17496 * emacs.c (USAGE3): Add --parent-id.
17497 (standard_args): Ditto.
17498
17499 2008-02-07 Jan Djärv <jan.h.d@swipnet.se>
17500
17501 * coding.c (DECODE_EMACS_MULE_COMPOSITION_CHAR): Use "do...while (0)".
17502
17503 2008-02-07 Jim Meyering <meyering@redhat.com>
17504
17505 Use "do...while (0)", not "if (1)...else" in macro definitions.
17506 The latter provokes a warning from gcc about the empty else, when
17507 followed by ";". Also, without that trailing semicolon, it would
17508 silently swallow up any following statement.
17509 * syntax.h (SETUP_SYNTAX_TABLE)
17510 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Likewise.
17511 * buffer.h (DECODE_POSITION): Likewise.
17512 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
17513 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): Likewise.
17514 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Likewise.
17515 (FETCH_CHAR_ADVANCE): Likewise.
17516 (FETCH_CHAR_ADVANCE_NO_CHECK): Likewise.
17517
17518 2008-02-07 Jim Meyering <meyering@redhat.com>
17519
17520 * lread.c [lint]: Don't include <sys/inode.h>.
17521
17522 2008-02-07 Stefan Monnier <monnier@iro.umontreal.ca>
17523
17524 * xselect.c (x_handle_dnd_message):
17525 * xmenu.c (digest_single_submenu, xmenu_show):
17526 * xdisp.c (with_echo_area_buffer_unwind_data)
17527 (format_mode_line_unwind_data, unwind_format_mode_line)
17528 (display_menu_bar):
17529 * eval.c (Ffetch_bytecode):
17530 * doc.c (store_function_docstring):
17531 * ccl.c (resolve_symbol_ccl_program, ccl_get_compiled_code)
17532 (Fccl_execute, Fccl_execute_on_string, Fregister_code_conversion_map):
17533 * buffer.c (add_overlay_mod_hooklist): Use ASET.
17534
17535 2008-02-07 Kenichi Handa <handa@m17n.org>
17536
17537 * ftxfont.c (ftxfont_open): Don't set
17538 dpyinfo->smallest_font_height and dpyinfo->smallest_char_width to 0.
17539
17540 * ftfont.c (ftfont_open): Fix previous change.
17541
17542 2008-02-06 Jason Rumney <jasonr@gnu.org>
17543
17544 * w32font.c (w32font_text_extents): Fill in lbearing metric.
17545 Use cached metrics for ASCII characters.
17546 (w32font_open_internal): Don't set font's owning_frame.
17547 Cache metrics for ASCII characters.
17548
17549 * w32font.h (struct w32font_info): Add ascii_metrics.
17550 Remove owning_frame.
17551
17552 2008-02-06 Kenichi Handa <handa@ni.aist.go.jp>
17553
17554 * xdisp.c (x_produce_glyphs): Don't set it->ascent and it->descent
17555 to negative value.
17556
17557 * ftxfont.c (ftxfont_draw): Use s->font_info, not face->font_info.
17558
17559 * ftfont.c (ftfont_open): Fix calculation of font->font.average_width.
17560
17561 * charset.c (syms_of_charset): Set QCtest and Qeq.
17562
17563 2008-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
17564
17565 * process.c (Fstart_process):
17566 * callproc.c (Fcall_process): Handle the case where
17567 Funhandled_file_name_directory returns nil.
17568
17569 * font.h (enum lgstring_indices, enum lglyph_indices): New enums.
17570 (LGSTRING_SLOT, LGSTRING_SET_SLOT): New macros.
17571 * font.c (check_gstring): Use them and AREF to access the vector before
17572 we know it's really a gstring.
17573 (Ffont_shape_text): Fix typo.
17574 (Ffont_shape_text, Ffont_otf_alternates): Fix up int/Lisp_Object mixups.
17575
17576 * composite.h (Fcompose_region_internal, Fcompose_string_internal):
17577 Declare.
17578
17579 * chartab.c (make_sub_char_table): Remove noop-yet-incorrect statement.
17580
17581 2008-02-05 Jason Rumney <jasonr@gnu.org>
17582
17583 * w32font.c (w32font_open_internal): Fill min_width with tmAveCharWidth.
17584 Set smallest_font_height and smallest_char_width in display info.
17585
17586 2008-02-05 Kenichi Handa <handa@ni.aist.go.jp>
17587
17588 * coding.c (decode_eol): Pay attention to coding->dst_multibyte.
17589
17590 2008-02-05 Miles Bader <miles@gnu.org>
17591
17592 * xfaces.c (get_lface_attributes, merge_named_face)
17593 (lookup_named_face, lookup_derived_face, realize_named_face):
17594 Revert 2008-02-01 change by cyd@stupidchicken.com.
17595
17596 2008-02-04 Kenichi Handa <handa@ni.aist.go.jp>
17597
17598 * fontset.c (Ffontset_info): Handle the case of inhibitting the
17599 fallback fonts.
17600 (Ffontset_info) [USE_FONT_BACKEND]: Fix getting of opened font names.
17601
17602 2008-02-04 Jason Rumney <jasonr@gnu.org>
17603
17604 * w32font.c (w32font_open_internal): Use font_unparse_fcname to
17605 set full_name.
17606 (w32font_open_internal): Use xmalloc, xrealloc, xfree.
17607
17608 2008-02-03 Jason Rumney <jasonr@gnu.org>
17609
17610 * makefile.w32-in (OBJ1): Include font.o here.
17611 (FONTOBJ) [USE_FONTBACKEND]: Instead of here.
17612
17613 2008-02-02 Jason Rumney <jasonr@gnu.org>
17614
17615 * makefile.w32-in (temacs): Bump EMHEAP to 21.
17616
17617 2008-02-01 Jason Rumney <jasonr@gnu.org>
17618
17619 * s/cygwin.h: Define VIRT_ADDR_VARIES.
17620
17621 * puresize.h [VIRT_ADDR_VARIES]: Don't include CYGWIN in condition.
17622
17623 2008-02-01 Andreas Schwab <schwab@suse.de>
17624
17625 * Makefile.in (shortlisp, lisp): Update for rename of
17626 ../lisp/language/myanmar.el.
17627
17628 2008-02-01 Chong Yidong <cyd@stupidchicken.com>
17629
17630 * xfaces.c (get_lface_attributes): Delete function.
17631 (merge_named_face, lookup_named_face, lookup_derived_face)
17632 (realize_named_face): Call lface_from_face_name directly, and use
17633 the fact that merge_face_vectors does not alter its FROM argument.
17634
17635 2008-02-01 Jason Rumney <jasonr@gnu.org>
17636
17637 * w32term.c (w32_read_socket) <WM_CHAR>: Decode non-Unicode
17638 input in the default locale. Handle non-Unicode multibyte input.
17639
17640 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
17641
17642 * fontset.c (reorder_font_vector): Exclude nil elements from the
17643 font group. Don't try multiple fonts.
17644 (fontset_font): Adjust for the above change.
17645 (Finternal_char_font): Return nil if the found font doesn't
17646 contain the character ch.
17647
17648 * Makefile.in (lisp, shortlisp): Add cham.el.
17649
17650 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
17651
17652 * font.h (FONTP): Make it return 1 also for a font-object.
17653
17654 * .gdbinit (xfontset): New function.
17655
17656 * font.c (font_find_for_lface): Check if the character C is
17657 supported or not only for the first font.
17658
17659 * fontset.c (reorder_font_vector): Fix typo.
17660 (fontset_find_font): Don't add a font-spec specifying a script.
17661 Use 0 (not Qt) for the indication of empty font-group. Change the
17662 format of RFONT-DEF. Return Qt if no font in the font-group
17663 support the character.
17664 (fontset_font): Adjust for the above change. If no font was
17665 found the character, remember that.
17666 (face_for_char): Adjust for the change of RFONT-DEF.
17667 (Fset_fontset_font): Allow nil for FONT-SPEC to explicitly specify
17668 no font for the target.
17669 (Finternal_char_font): Adjust for the change of RFONT-DEF.
17670
17671 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
17672
17673 * font.c (font_load_for_face): Handle the case that the font in
17674 face->lface is a string.
17675
17676 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
17677
17678 * xfaces.c (set_lface_from_font_and_fontset): Set the fontname in lface.
17679
17680 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
17681
17682 * xfaces.c (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]:
17683 Fix previous change. If the frame is not on a window system,
17684 signal an error.
17685
17686 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
17687
17688 * coding.c (decode_coding_object, encode_coding_object): Adjust
17689 marker positions after conversion.
17690
17691 * lisp.h (struct Lisp_Marker): New member need_adjustment.
17692
17693 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
17694
17695 * font.c (font_find_for_lface): Fix the handling of the return
17696 value of font_has_char.
17697 (Ffont_shape_text): Fix previous change.
17698
17699 * fontset.c (FONTSET_REF_AND_RANGE): Delete it.
17700 (fontset_ref_and_range): Delete it.
17701 (fontset_find_font): Call char_table_ref_and_range instead of
17702 FONTSET_REF_AND_RANGE.
17703 (make_fontset): Don't setup font groups of Latin here.
17704 (Fset_fontset_font): Don't overwrite the setting of FONTSET_ASCII.
17705 (new_fontset_from_font): Make the specified font the default for
17706 all Latin characters.
17707
17708 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
17709
17710 * xfaces.c (Finternal_set_lisp_face_attribute): Check if the frame
17711 is on a window system before accessing the fontset of the frame.
17712
17713 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
17714
17715 * Makefile.in (lisp, shortlisp): Add kherm.el and myanmar.el.
17716
17717 * ftfont.c (ftfont_driver): Set ftfont_shape in ftfont_driver only
17718 when both HAVE_M17N_FLT and HAVE_LIBOTF are defined.
17719
17720 * font.c (Ffont_shape_text): If the font driver doesn't have a
17721 shaper function, make zero-width glyphs to have at least one-pixel
17722 width. Fix setting of `to' field of glyphs.
17723
17724 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
17725
17726 * ftfont.c (ftfont_drive_otf): Fix setting of FROM and TO slots of
17727 glyphs.
17728
17729 * font.h (struct font_driver): Improve docstring of member `shape'.
17730
17731 2008-02-01 Kenichi Handa <handa@m17n.org>
17732
17733 * composite.c (syms_of_composite): Fix docstring of
17734 auto-composition-function.
17735
17736 * font.h (LGLYPH_SIZE): New macro.
17737
17738 * font.c (Ffont_fill_gstring): Stop filling when a character not
17739 supported by the font is found.
17740 (Ffont_shape_text): When a shape callback function returns nil,
17741 try at most two more times with larger gstring.
17742 (Ffont_at): Fix getting of w. Call font_at with correct 5th argument.
17743
17744 * xdisp.c (handle_auto_composed_prop): Change the argument to
17745 auto-composition-function.
17746
17747 * ftfont.c (ftfont_encode_char): Use the macro FONT_INVALID_CODE.
17748 (ftfont_shape_by_flt): If an element of lgstring is nil, make a
17749 Lispy glyph and store it in the lgstring.
17750
17751 * xfont.c (xfont_encode_char): Use the macro FONT_INVALID_CODE.
17752
17753 * xftfont.c (xftfont_encode_char): Use the macro FONT_INVALID_CODE.
17754
17755 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
17756
17757 * font.c (Ffont_shape_text): Avoid unnecessary composition.
17758
17759 * fontset.c (Vfont_encoding_charset_alist): New variable.
17760 (syms_of_fontset): DEFVAR it.
17761 (reorder_font_vector, fontset_find_font): Optimize for the case of
17762 no need of reordering.
17763 (face_for_char): Map the charset property by
17764 Vfont_encoding_charset_alist.
17765
17766 2008-02-01 Jason Rumney <jasonr@gnu.org>
17767
17768 * w32font.c (logfonts_match): Don't check adstyle here.
17769 (font_matches_spec): Check here against physical font instead.
17770 (add_font_entity_to_list): Avoid some substitutions.
17771
17772 * font.c (font_parse_fcname): Default weight and slant to normal.
17773 (font_score): Prefer normal fonts if weight or slant unspecified.
17774 (font_score) [WINDOWSNT]: Scale weight difference down to closer
17775 match freetype scores.
17776
17777 2008-02-01 Jason Rumney <jasonr@gnu.org>
17778
17779 * w32font.c (w32font_text_extents): Don't use the frame stored in the
17780 font, as it may have been deleted.
17781 (w32_enumfont_pattern_entity): Map generic family to adstyle using
17782 most common hyphenless variation.
17783 (logfonts_match): Check generic family.
17784 (font_matches_spec): Don't check generic family here.
17785 (fill_in_logfont): Set generic family based on adstyle.
17786
17787 * w32font.h (w32font_get_cache): Update declaration.
17788
17789 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
17790
17791 * ftfont.c (ftfont_get_cache): Adjust the argument type.
17792
17793 * frame.c (x_set_font_backend): Don't call Fclear_font_cache.
17794 If none of the new drivers are available, call font_update_drivers
17795 with the old drivers.
17796
17797 * w32font.c (w32font_get_cache): Adjust the argument type.
17798
17799 * xfont.c (xfont_get_cache): Adjust the argument type.
17800
17801 * font.h (struct font_driver): Change argument type of get_cache.
17802
17803 * xftfont.c (xftfont_start_for_frame): Delete prototype.
17804
17805 * font.c (Ffont_get): Fix arguments to Fassoc.
17806 (font_prepare_cache, font_finish_cache, font_get_cache): New functions.
17807 (font_clear_cache): New function.
17808 (font_list_entities, font_matching_entity): Use font_get_cache.
17809 (font_update_drivers): Call font_clear_cache when finishing a driver.
17810
17811 * fontset.c (fontset_find_font): Fix previous change.
17812
17813 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
17814
17815 * xterm.c (x_check_font) [USE_FONT_BACKEND]: Don't access
17816 dpyinfo->font_table.
17817 (x_delete_display) [USE_FONT_BACKEND]: Likewise.
17818 (x_delete_terminal) [USE_FONT_BACKEND]: Likewise.
17819
17820 * font.c (font_at): Handle the case that the arg C is negative.
17821 Handle the unibyte case.
17822 (Ffont_at): Call font_at with the arg C -1.
17823
17824 * xdisp.c (handle_auto_composed_prop): Don't get a character at
17825 the position here, and call font_at with the arg C -1.
17826 Don't check the range of the existing composition at the point.
17827
17828 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
17829
17830 * fontset.c (fontset_add): New args charset_id and family.
17831 Change caller.
17832 (load_font_get_repertory, fontset_find_font): Assume that
17833 font_spec is always a font-spec object.
17834 (Fset_fontset_font): Always store a font-spec object in a fontset.
17835
17836 * xdisp.c (handle_auto_composed_prop): Use Fget_text_property
17837 instead of get_property_and_range.
17838
17839 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
17840
17841 * xftfont.c (struct xftfont_info): Delete the member ft_face.
17842 (xftfont_open): Don't keep locking face.
17843 (xftfont_close): Don't unlock face.
17844 (xftfont_anchor_point, xftfont_shape): Lock and unlock face.
17845
17846 * fontset.c (fontset_find_font): Don't prefer a font of
17847 supplementary charset.
17848
17849 2008-02-01 Kenichi Handa <handa@m17n.org>
17850
17851 * ftfont.c (struct OpenTypeSpec): Rename members script_tag to
17852 script, langsys_tag to langsys, new member script.
17853 (OTF_TAG_STR): Terminate by '\0'.
17854 (ftfont_get_open_type_spec): If :otf prop is spec, limit the
17855 listing to the script specified in that property. Fix arg to
17856 OTF_check_features.
17857
17858 2008-02-01 Jason Rumney <jasonr@gnu.org>
17859
17860 * w32font.h: New file.
17861
17862 * w32font.c: Include it.
17863 (struct w32font_info): Add owning_frame field. Move to w32font.h.
17864 (w32font_open): Set owning_frame.
17865 (w32font_text_extents): Use owning_frame.
17866 (struct font_callback_data): Add opentype_only field.
17867 (add_font_entity_to_list): Use it to filter fonts.
17868 Don't check against full name.
17869 (w32font_list_internal): New function.
17870 (w32font_list): Use it.
17871 (w32font_match_internal): New function.
17872 (w32font_match): Use it.
17873 (w32font_open_internal): New function.
17874 (w32font_open): Use it.
17875 (w32font_get_cache, w32font_close, w32font_has_char)
17876 (w32font_encode_char, w32font_text_extents, w32font_draw):
17877 Make non-static.
17878
17879 * makefile.w32-in (w32font.o): Depend on w32font.h.
17880
17881 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
17882
17883 * charset.c (Fdefine_charset_internal): Record a supplementary
17884 charset at the tail of Vcharset_order_list.
17885
17886 * font.c (Ffont_shape_text): Fix the return value.
17887
17888 * ftfont.c (OTF_SYM_TAG, OTF_TAG_STR): Fix argument names.
17889
17890 * xdisp.c (handle_auto_composed_prop): Fix previous change.
17891
17892 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
17893
17894 * ftfont.c (struct OpenTypeSpec): New struct.
17895 (OTF_SYM_TAG, OTF_TAG_STR): New macros.
17896 (ftfont_get_open_type_spec): New function.
17897 (ftfont_list) [HAVE_LIBOTF]: Check otf-spec property.
17898
17899 * lread.c (read1): Redo the previous change with checking Vpurify_flag.
17900
17901 2008-02-01 Jason Rumney <jasonr@gnu.org>
17902
17903 * w32font.c (add_font_entity_to_list): Compare only the beginning
17904 of full name.
17905
17906 2008-02-01 Kenichi Handa <handa@m17n.org>
17907
17908 * xdisp.c (handle_auto_composed_prop): Simplify the code.
17909 Never return HANDLED_RECOMPUTE_PROPS.
17910
17911 2008-02-01 Kenichi Handa <handa@m17n.org>
17912
17913 * font.c (font_gstring_produce): Delete it.
17914
17915 * composite.h (COMPOSITION_METHOD):
17916 Handle COMPOSITION_WITH_GLYPH_STRING.
17917
17918 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
17919
17920 * xfont.c (Qx): Delete.
17921 (syms_of_xfont): Don't initialize Qx.
17922
17923 * composite.h (enum composition_method):
17924 Define COMPOSITION_WITH_GLYPH_STRING unconditionally.
17925
17926 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
17927
17928 * xfaces.c [HAVE_WINDOW_SYSTEM]: Include "font.h" unconditionally.
17929 (choose_face_font): Accept new form of font-spec.
17930
17931 * frame.h (font_driver_list): Declare it unconditionally.
17932 (struct frame): Define members font_driver_list and font_data_list
17933 unconditionally.
17934
17935 * fontset.c: Include "font.h" unconditionally.
17936 (generate_ascii_font_name): Use font_parse_xlfd and font_unparse_xlfd.
17937 (Fset_fontset_font): Accept a font-spec object.
17938
17939 * font.c (font_unparse_xlfd): If pixel_size is zero, make the
17940 PIXEL_SIZE part a wild card.
17941
17942 * dispextern.h (struct glyph_string): Define members clip and
17943 num_clips unconditionally.
17944 (struct face): Define members font_info and extra unconditionally.
17945
17946 * ftfont.c (ftfont_open): Set members maybe_otf and otf of
17947 ftfont_info only when HAVE_LIBOTF is defined.
17948
17949 2008-02-01 Andreas Schwab <schwab@suse.de>
17950
17951 * xdisp.c (back_to_previous_visible_line_start): Fix type of beg
17952 and end.
17953
17954 2008-02-01 Jason Rumney <jasonr@gnu.org>
17955
17956 * w32font.c (w32font_driver): Add new fields.
17957
17958 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
17959
17960 * Makefile.in (ALL_CFLAGS): Add @M17N_FLT_CFLAGS@.
17961 (FONTSRC, FONTOBJ) [HAVE_WINDOW_SYSTEM]: Set them unconditionally.
17962 (LIBES): Add @M17N_FLT_CFLAGS@.
17963
17964 * composite.c (compose_text): Don't treat the new style
17965 composition specially.
17966
17967 * emacs.c (main): Call syms_of_font unconditionally.
17968
17969 * font.h (FONT_ENTITY_NOT_LOADABLE)
17970 (FONT_ENTITY_SET_NOT_LOADABLE): New macros.
17971 (LGSTRING_XXXX, LGLYPH_XXX): Adjust for the change of lispy gstring.
17972 (struct font_driver): New member shape.
17973 (font_registry_charsets): Extern it.
17974 (font_find_for_lface, font_prepare_composition): Adjust prototype.
17975 (font_otf_capability, font_drive_otf): Delete their externs.
17976
17977 * font.c [HAVE_M17N_FLT]: Include <m17n-flt.h>.
17978 (font_charset_alist, font_registry_charsets): Move from xfont.c
17979 and rename.
17980 (font_prop_validate_otf): New function.
17981 (font_property_table): Register it for QCotf.
17982 (DEVICE_DELTA, adjust_anchor, REPLACEMENT_CHARACTER)
17983 (font_drive_otf): Delete.
17984 (font_prepare_composition): New arg F. Adjust for the change of
17985 lispy gstring.
17986 (font_find_for_lface): New arg C.
17987 (font_load_for_face): Adjust for the change of font_find_for_lface.
17988 (Ffont_make_gstring, Ffont_fill_gstring): Adjust for the change of
17989 lispy gstring.
17990 (Ffont_shape_text): New function.
17991 (Fopen_font): If the font size is not given, use 12-pixel.
17992 (Ffont_at): New arg STRING.
17993 (syms_of_font): Initalize font_charset_alist.
17994 Declare Ffont_shape_text as a Lisp function. Call syms_of_XXfont
17995 conditionally.
17996
17997 * fontset.c (fontset_find_font) [USE_FONT_BACKEND]: Try multiple
17998 fonts of the same font-spec. Change the format of RFONT-DEF.
17999 (face_for_char, make_fontset_for_ascii_face, Finternal_char_font):
18000 Adjust for the change of RFONT-DEF.
18001 (Fset_fontset_font) [USE_FONT_BACKEND]: Handle new format of font-spec.
18002
18003 * ftfont.h: New file.
18004
18005 * ftfont.c: Don't include Freetype headers. Include "ftfont.h".
18006 (struct ftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
18007 (ftfont_open) [HAVE_LIBOTF]: Initialize the above members.
18008 (ftfont_driver) [HAVE_LIBOTF, HAVE_M17N_FLT]: Don't set
18009 font_otf_capability and font_drive_otf, set ftfont_shape.
18010 (ftfont_list): Adjust for the change of :otf property value.
18011 (struct MFLTFontFT) [HAVE_LIBOTF, HAVE_M17N_FLT]: New struct.
18012 (ftfont_get_glyph_id, ftfont_get_metrics, ftfont_check_otf)
18013 (adjust_anchor, ftfont_drive_otf, ftfont_shape_by_flt)
18014 (ftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
18015 (DEVICE_DELTA) [HAVE_LIBOTF, HAVE_M17N_FLT]: New macro.
18016 (otf_gstring, gstring, m17n_flt_initialized): New variables.
18017
18018 * w32term.c (x_draw_composite_glyph_string_foreground):
18019 Adjust for the change of lispy gstring.
18020
18021 * xdisp.c (handle_composition_prop): Adjust for the change of
18022 lispy gstring. Call a function for auto-composition with the
18023 third arg it->window.
18024 (fill_composite_glyph_string): Adjust for the change of lispy string.
18025 (x_produce_glyphs): Adjust for the change of font_prepare_compositionl.
18026
18027 * xfaces.c (set_font_frame_param): Adjust for the change of
18028 font_find_for_lface.
18029
18030 * xfont.c (x_font_charset_alist): Move to font.c and rename.
18031 (xfont_registry_charsets): Likewise. Change caller.
18032 (syms_of_xfont): Don't handle x_font_charset_alist.
18033
18034 * xftfont.c: Include "ftfont.h".
18035 (struct xftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
18036 (xftfont_open) [HAVE_LIBOTF]: Initialize the above members.
18037 (xftfont_close) [HAVE_LIBOTF]: Close otf.
18038 (xftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
18039 (syms_of_xftfont) [HAVE_LIBOTF, HAVE_M17N_FLT]:
18040 Set xftfont_driver.shape to xftfont_shape.
18041
18042 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
18043 the change of lispy gstring.
18044
18045 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
18046
18047 * ftxfont.c (ftxfont_end_for_frame): Fix array indexing error.
18048
18049 2008-02-01 Jason Rumney <jasonr@gnu.org>
18050
18051 * w32font.c (w32font_draw): Fill background manually.
18052
18053 2008-02-01 Jason Rumney <jasonr@gnu.org>
18054
18055 * font.c (Qfontp): Remove unused symbol.
18056 (QCantialias): New symbol.
18057 (syms_of_font): Define it.
18058 (font_property_table): Set a validator for QCantialias.
18059
18060 * w32font.c (CLEARTYPE_QUALITY, CLEARTYPE_NATURAL_QUALITY):
18061 Define if not already.
18062 (QCfamily): Share with xfaces.c.
18063 (Qstandard, Qsubpixel, Qnatural): New symbols.
18064 (syms_of_w32font): Define them. Don't define QCfamily here.
18065 (w32_antialias_type, lispy_antialias_type): New functions.
18066 (w32_enumfont_pattern_entity): New arg requested_font.
18067 Set antialias parameter if non-default was requested.
18068 (fill_in_logfont): Fill in lfQuality if :antialias specified.
18069
18070 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
18071
18072 * lread.c (read1): Undo the previous change.
18073
18074 2008-02-01 CHENG Gao <chenggao@gmail.com> (tiny change)
18075
18076 * frame.c (Fdelete_frame): Call font_update_drivers only when
18077 USE_FONT_BACKEND is defined.
18078
18079 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
18080
18081 * font.h (struct font_bitmap): New member bits_per_pixel.
18082 (struct font_driver): New members start_for_frame and end_for_frame.
18083 (struct font_data_list): New struct.
18084 (font_put_frame_data, font_get_frame_data): Extern them.
18085
18086 * frame.h (struct frame): New member font_data_list.
18087
18088 * font.c (font_update_drivers): Call driver->start_for_frame and
18089 driver->end_for_frame at proper timings.
18090 (font_put_frame_data, font_get_frame_data): New functions.
18091 (Ffont_spec): Add usage in the docstring.
18092
18093 * frame.c (make_frame): Initialize f->font_data_list to NULL.
18094 (Fdelete_frame): Call font_update_drivers.
18095
18096 * xftfont.c (struct xftface_info): Delete the member xft_draw.
18097 (xftfont_prepare_face, xftfont_done_face): Adjust for the above change.
18098 (xftfont_get_xft_draw): New function.
18099 (xftfont_draw): Get XftDraw by xftfont_get_xft_draw.
18100 (xftfont_end_for_frame): New function.
18101 (syms_of_xftfont): Set xftfont_driver.end_for_frame.
18102
18103 * ftxfont.c (ftxfont_get_gcs): Rename from ftxfont_create_gcs.
18104 Change argument. Cache GCs in the per-frame data.
18105 (struct ftxfont_frame_data): New struct.
18106 (ftxfont_draw_bitmap): New arg gc_fore and flush.
18107 (ftxfont_prepare_face, ftxfont_done_face): Delete them.
18108 (ftxfont_draw): Get GCs by ftxfont_get_gcs. Reflect s->clip in GCs.
18109 (ftxfont_end_for_frame): New function.
18110 (syms_of_ftxfont): Set ftxfont_driver.end_for_frame.
18111
18112 * ftfont.c (ftfont_get_bitmap): Set bitmap->bits_per_pixel.
18113
18114 2008-02-01 Kenichi Handa <handa@m17n.org>
18115
18116 * xselect.c (Vselection_coding_system)
18117 (Vnext_selection_coding_system): Delete them.
18118 (syms_of_xselect): Don't declare selection-coding-system and
18119 next-selection-coding-system. They are declared in select.el.
18120
18121 2008-02-01 Jason Rumney <jasonr@gnu.org>
18122
18123 * w32term.h (WM_UNICHAR, UNICODE_NOCHAR): Define if not already.
18124
18125 * w32fns.c: Include imm.h.
18126 (get_composition_string_fn, get_ime_context_fn): New optional
18127 system functions.
18128 (globals_of_w32fns): Load them from imm32.dll.
18129 (ignore_ime_char): New flag.
18130 (w32_wnd_proc): Handle WM_UNICHAR, WM_IME_CHAR and
18131 WM_IME_ENDCOMPOSITION messages.
18132
18133 * w32term.c (w32_read_socket) [WM_UNICHAR]: Handle as
18134 MULTIBYTE_CHAR_KEYSTROKE_EVENT.
18135
18136 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
18137
18138 * lread.c (READCHAR): Call readchar with the 2nd arg NULL.
18139 (READCHAR_REPORT_MULTIBYTE): New macro.
18140 (readchar): New 2nd arg MULTIBYTE.
18141 (read1): Use READCHAR_REPORT_MULTIBYTE for the first read.
18142 Make symbol's name multibyte according to the multibyteness of the
18143 source.
18144
18145 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
18146
18147 * xfaces.c (face_for_overlay_string): Call lookup_face with
18148 correct arguments (fix of synching with the trunk).
18149
18150 2008-02-01 Kenichi Handa <handa@m17n.org>
18151
18152 * font.c (font_prop_validate_symbol, font_prop_validate_style)
18153 (font_prop_validate_non_neg, font_prop_validate_spacing):
18154 Delete argument prop_index.
18155 (font_property_table): Change arguments to validater. Change Callers.
18156 (font_lispy_object): Delete.
18157 (font_at): Use font_find_object instead fo font_lispy_object.
18158
18159 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
18160
18161 * fileio.c (Fexpand_file_name): Adjust multibyteness of directory
18162 and file names.
18163
18164 2008-02-01 Jason Rumney <jasonr@gnu.org>
18165
18166 * w32font.c (add_font_name_to_list): Avoid vertical fonts.
18167 (font_matches_spec): Remove debug output.
18168 (add_font_entity_to_list): Avoid using substituted fonts.
18169
18170 2008-02-01 Jason Rumney <jasonr@gnu.org>
18171
18172 * doc.c (Fsnarf_documentation):
18173 * Makefile.in (temacs${EXEEXT}, mostlyclean): Undo last change.
18174
18175 2008-02-01 Miles Bader <miles@gnu.org>
18176
18177 * dispextern.h (struct glyph_row): Only define "clip" field if
18178 HAVE_WINDOW_SYSTEM is defined.
18179
18180 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
18181
18182 Fix up multi-tty merge.
18183
18184 * xterm.c (handle_one_xevent): Remove duplicate code and fix up nesting
18185 and indentation.
18186
18187 * xfaces.c (free_realized_face, clear_face_gcs):
18188 Include font_done_for_face in the input_blocked section, just in case.
18189
18190 * xdisp.c (decode_mode_spec): Use terminal-local coding systems.
18191 (get_char_face_and_encoding): Undo last change and remove the *other*
18192 duplicate definition (i.e. keep the one that's better scoped and that
18193 includes code for the font-backend).
18194
18195 * terminal.c (create_terminal): Default keyboard_coding to
18196 `no-conversion' and terminal_coding to `undecided'.
18197
18198 * lread.c (read1): Use XSETPVECTYPE to set a pseudovector's tag.
18199
18200 * fontset.c (free_realized_fontsets): Check that the table entry does
18201 contain a fontset before trying to compare it to `base'.
18202
18203 * emacs.c (main): Move syms_of_data, syms_of_fileio, syms_of_alloc,
18204 syms_of_charset, and syms_of_coding earlier because init_window_once
18205 now needs Vcoding_system_hash_table to be setup.
18206
18207 * coding.h (default_buffer_file_coding): Remove.
18208
18209 * coding.c (default_buffer_file_coding): Remove.
18210 (Fterminal_coding_system, Fkeyboard_coding_system): Use ->id rather
18211 than ->symbol, and use the terminal-local coding system.
18212 (syms_of_coding): Don't setup the coding-systems that are not
18213 terminal-local.
18214 (Fdefine_coding_system_internal): Use XCAR/XCDR.
18215
18216 * chartab.c (Fmake_char_table, make_sub_char_table, copy_char_table):
18217 Use XSETPVECTYPE now that XSETCHAR_TABLE doesn't set the tag anymore.
18218
18219 * alloc.c (Fmake_char_table, make_sub_char_table): Remove. They're now
18220 in chartab.c and were re-added here by mistake.
18221 (Fpurecopy): Use XSETPVECTYPE after copying a COMPILED pseudovector.
18222
18223 * doc.c (Fsnarf_documentation):
18224 * Makefile.in (temacs${EXEEXT}, mostlyclean): Move buildobj.lst from
18225 src to etc.
18226
18227 * ChangeLog.10: Add mistakenly removed entry.
18228
18229 2008-02-01 Dan Nicolaescu <dann@ics.uci.edu>
18230
18231 * Makefile.in (fringe.o, minibuf.o): Fix dependencies.
18232
18233 2008-02-01 Miles Bader <miles@gnu.org>
18234
18235 * xdisp.c (get_char_face_and_encoding): Remove extraneous definition.
18236 Add extra args to FACE_FOR_CHAR.
18237
18238 2008-02-01 Kenichi Handa <handa@m17n.org>
18239
18240 * keymap.c (where_is_internal_1): If key is a cons, store the copy
18241 in sequence.
18242
18243 * chartab.c (map_sub_char_table, map_char_table): If the range
18244 contains just one character, call the function with that character
18245 even if the depth is not 3.
18246
18247 2008-02-01 Jason Rumney <jasonr@gnu.org>
18248
18249 * w32font.c (w32font_text_extents): Calculate metrics for the
18250 whole string.
18251
18252 2008-02-01 Jason Rumney <jasonr@gnu.org>
18253
18254 * w32xfns.c (get_next_msg): Consolidate WM_PAINT messages.
18255
18256 2008-02-01 Jason Rumney <jasonr@gnu.org>
18257
18258 * w32term.c (x_set_glyph_string_clipping): Use
18259 get_glyph_string_clip_rects.
18260 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
18261 Adjust for the change of struct glyph_string.
18262
18263 * w32font.c (w32font_draw): Do clipping here.
18264
18265 2008-02-01 Kenichi Handa <handa@m17n.org>
18266
18267 * xftfont.c (xftfont_draw): Adjust for the change of struct
18268 glyph_string.
18269
18270 * xterm.c (x_set_glyph_string_clipping): Use
18271 get_glyph_string_clip_rects.
18272 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
18273 Adjust for the change of struct glyph_string.
18274
18275 * xdisp.c (get_glyph_string_clip_rects): Reflect s->row->clip to
18276 the resulting clip(s}.
18277 (expose_overlaps): Add arg r. Change callers. Set it to
18278 row->clip temporarily.
18279 (expose_window): Redraw rows overlapping the exposed area.
18280
18281 * dispextern.h (struct glyph_row): New member clip.
18282 (struct glyph_string): Delete members clip_x, clip_y, clip_width,
18283 clip_height, new member clip, and num_clips.
18284
18285 2008-02-01 Kenichi Handa <handa@m17n.org>
18286
18287 * data.c (Fchar_or_string_p): Fix docstring.
18288
18289 2008-02-01 Kenichi Handa <handa@m17n.org>
18290
18291 * xftfont.c (xftfont_draw): If s->font_info != s->face->font_info,
18292 create a temporary XftDraw object.
18293
18294 2008-02-01 Kenichi Handa <handa@m17n.org>
18295
18296 * font.c (Ffontp): Fix docstring.
18297
18298 * coding.c (detect_coding_iso_2022): Don't treat SI/SO codes as a
18299 strong evidence of ISO-2022.
18300
18301 2008-02-01 Kenichi Handa <handa@m17n.org>
18302
18303 * abbrev.c (abbrev_check_chars): Use CHAR_TABLE_REF, not
18304 SYNTAX_ENTRY_FOLLOW_PARENT.
18305
18306 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
18307
18308 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and change
18309 its type.
18310 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
18311 Update to the new type of weak_hash_tables and next_weak.
18312
18313 * lisp.h (struct Lisp_Hash_Table): Change next_weak from Lisp_Object to
18314 a plain C pointer to Lisp_Hash_Table.
18315
18316 * lisp.h (XGCTYPE, GC_HASH_TABLE_P, GC_NILP, GC_NUMBERP, GC_NATNUMP)
18317 (GC_INTEGERP, GC_SYMBOLP, GC_MISCP, GC_VECTORLIKEP, GC_STRINGP)
18318 (GC_CONSP, GC_FLOATP, GC_VECTORP, GC_OVERLAYP, GC_MARKERP)
18319 (GC_INTFWDP, GC_BOOLFWDP, GC_OBJFWDP, GC_BUFFER_OBJFWDP)
18320 (GC_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP)
18321 (GC_KBOARD_OBJFWDP, GC_PSEUDOVECTORP, GC_WINDOW_CONFIGURATIONP)
18322 (GC_PROCESSP, GC_WINDOWP, GC_SUBRP, GC_COMPILEDP, GC_BUFFERP)
18323 (GC_SUB_CHAR_TABLE_P, GC_CHAR_TABLE_P, GC_BOOL_VECTOR_P, GC_FRAMEP)
18324 (GC_EQ): Remove since they've been identical to their non-GC_
18325 alter-egos ever since the markbit was eradicated.
18326
18327 * alloc.c:
18328 * buffer.c:
18329 * buffer.h:
18330 * data.c:
18331 * fileio.c:
18332 * filelock.c:
18333 * fns.c:
18334 * frame.h:
18335 * lisp.h:
18336 * macterm.c:
18337 * print.c:
18338 * process.c:
18339 * w32fns.c:
18340 * w32menu.c:
18341 * w32term.c:
18342 * xfns.c:
18343 * xmenu.c:
18344 * xterm.c: Replace uses of GC_* macros with the non-GC_ versions.
18345
18346 2008-02-01 Kenichi Handa <handa@m17n.org>
18347
18348 * chartab.c (map_sub_char_table): Make it work for the top-level
18349 char-table. Fix handling of parent char-table.
18350 (map_char_table): Adjust for the above change.
18351
18352 2008-02-01 Jason Rumney <jasonr@gnu.org>
18353
18354 * w32font.c (Qgdi): Rename from Qw32.
18355
18356 2008-02-01 Jason Rumney <jasonr@gnu.org>
18357
18358 * w32bdf.c (get_quoted_string): Make function static.
18359
18360 2008-02-01 Kenichi Handa <handa@m17n.org>
18361
18362 * xftfont.c (xftfont_open): If one of font's ASCII glyph has
18363 bigger ascent and descent than those of the font, use them as
18364 font's ascent and descent.
18365
18366 2008-02-01 Kenichi Handa <handa@m17n.org>
18367
18368 * Makefile.in (${lispsource}international/charprop.el): Move this
18369 target within "#ifdef HAVE_UNIDATA" and "#endif".
18370
18371 2008-02-01 Kenichi Handa <handa@m17n.org>
18372
18373 * Makefile.in (lisp): Add ${lispsource}language/tai-viet.el.
18374 (shortlisp): Add ../lisp/language/tai-viet.el.
18375
18376 2008-02-01 Ulrich Mueller <ulm@gentoo.org>
18377
18378 * Makefile.in (${lispsource}international/charprop.el): Depend on
18379 temacs${EXEEXT}.
18380
18381 2008-02-01 Jason Rumney <jasonr@gnu.org>
18382
18383 * w32font.c (w32font_close): Delete the GDI font object.
18384
18385 * w32menu.c: Include character.h.
18386
18387 * w32proc.c: Likewise.
18388
18389 * w32select.c: Likewise.
18390
18391 * makefile.w32-in (w32proc.o): Depend on character.h.
18392
18393 2008-02-01 Jason Rumney <jasonr@gnu.org>
18394
18395 * w32fns.c (syms_of_w32fns): Use DEFSYM macro.
18396
18397 * w32menu.c (syms_of_w32menu): Likewise.
18398
18399 * w32proc.c (syms_of_ntproc): Likewise.
18400
18401 * w32select.c (syms_of_w32select): Likewise.
18402
18403 * w32term.c (syms_of_w32term): Likewise.
18404
18405 2008-02-01 Jason Rumney <jasonr@gnu.org>
18406
18407 * w32font.c (w32font_draw): Delete brush after using it.
18408
18409 2008-02-01 Jason Rumney <jasonr@gnu.org>
18410
18411 * w32font.c (w32font_open): Don't set font_idx.
18412 (w32font_text_extents): Try GetTextExtentPoint32W before defaulting
18413 to font settings.
18414 (w32font_draw): Fill background explicitly.
18415
18416 2008-02-01 Jason Rumney <jasonr@gnu.org>
18417
18418 * w32term.c (w32_initialize): Don't call w32font_initialize.
18419
18420 * w32font.c (w32font_info): Remove subranges.
18421 (QCsubranges, Qmodern, Qswiss, Qroman): Remove.
18422 (QCfamily, Qmonospace, Qsans_serif, Qmono, Qsans, Qsans__serif)
18423 (Qraster, Qoutline, Qlatin, Qgreek, Qcoptic, Qcyrillic, Qarmenian)
18424 (Qhebrew, Qarabic, Qsyriac, Qnko, Qthaana, Qdevanagari, Qbengali)
18425 (Qgurmukhi, Qgujarati, Qoriya, Qtamil, Qtelugu, Qkannada)
18426 (Qmalayalam, Qsinhala, Qthai, Qlao, Qtibetan, Qmyanmar, Qgeorgian)
18427 (Qhangul, Qethiopic, Qcherokee, Qcanadian_aboriginal, Qogham)
18428 (Qrunic, Qkhmer, Qmongolian, Qsymbol, Qbraille, Qhan)
18429 (Qideographic_description, Qcjk_misc, Qkana, Qbopomofo, Qkanbun)
18430 (Qyi, Qbyzantine_musical_symbol, Qmusical_symbol, Qmathematical):
18431 New symbols.
18432 (font_callback_data): New struct.
18433 (w32font_list, w32font_match): Use it.
18434 (w32font_open): Don't populate subranges.
18435 (w32font_has_char): Use script Lisp symbols, not subrange bitmask.
18436 (w32font_encode_char): Always return unicode code-point as-is.
18437 (w32font_text_extents): Supply a transformation matrix to
18438 GetGlyphOutline. Never look up by glyph index. Avoid looping
18439 twice. Use unicode version of GetTexExtentPoint32 instead of
18440 glyph index version.
18441 (set_fonts_frame): Remove.
18442 (w32_enumfont_pattern_entity): Add frame parameter, use it to
18443 set frame parameter. Use backward compatible fake foundries.
18444 Save generic family in extra slot under QCfamily. Make width slot
18445 constant. Save QCspacing value. Save list of scripts instead of
18446 binary subranges.
18447 (w32_generic_family, logfonts_match, font_matches_spec): New functions.
18448 (add_font_entity_to_list): Use font_callback_data struct. Filter
18449 unwanted fonts.
18450 (add_one_font_entity_to_list): Use font_callback_data struct.
18451 (w32_registry): Default to iso10646_1.
18452 (fill_in_logfont): Use dpi from extra slot. Don't bother with
18453 string font registries. Don't fill in font name if it is a generic
18454 family name, fill family instead. Use spacing, family and script
18455 extra info to fill pitch, family and charset fields.
18456 (list_all_matching_fonts): Use font_callback_data struct.
18457 (unicode_range_for_char): Remove.
18458 (font_supported_scripts): New function.
18459 (w32font_initialize): Remove.
18460 (syms_of_w32font): Update which symbols are defined.
18461
18462 2008-02-01 Jason Rumney <jasonr@gnu.org>
18463
18464 * font.c (font_pixel_size): Reverse assq_no_quit args.
18465
18466 * w32term.h (FONT_WIDTH): Report max width, not average.
18467 (FONT_MAX_WIDTH): Remove.
18468 (FONT_AVG_WIDTH): New macro.
18469
18470 * xfaces.c (Fx_list_fonts) [WINDOWSNT]: Remove Windows only
18471 redefinition of FONT_WIDTH.
18472
18473 * w32term.c (x_font_min_bounds): Use FONT_AVG_WIDTH.
18474 (w32_cache_char_metrics): Use FONT_WIDTH.
18475
18476 * w32fns.c (w32_load_system_font, w32_list_fonts): Use FONT_AVG_WIDTH.
18477
18478 2008-02-01 Jason Rumney <jasonr@gnu.org>
18479
18480 * w32font.c (w32font_open): Make lfHeight negative.
18481
18482 * w32fns.c (x_default_font_parameter): Use new style font name.
18483 (Fx_create_frame, x_create_tip_frame): Initialize resx and resy.
18484
18485 2008-02-01 Jason Rumney <jasonr@gnu.org>
18486
18487 * w32font.c (QCsubranges): New symbol.
18488 (w32font_open, w32font_has_char): Get subranges from subproperty
18489 of extra.
18490 (w32_enumfont_pattern_entity): Set subranges as subproperty of extra.
18491 (syms_of_w32font): Define :subranges symbol.
18492
18493 * font.c (font_put_extra): Expose externally.
18494
18495 * font.h (font_put_extra): Move declaration from font.c.
18496
18497 * font.c (Ffont_get): Use font driver to determine otf capability.
18498 (adjust_anchor): Check if driver defines anchor_point before using.
18499
18500 * w32font.c (w32font_open): Handle size, height and pixel_size better.
18501 (w32font_draw): Use options.
18502 (w32_enumfont_pattern_entity): Set size to 0 for scalable fonts.
18503 Fix detection of truetype fonts.
18504 (registry_to_w32_charset): Handle charsets other than iso8859-1
18505 expressed as lisp symbols.
18506 (w32_registry): Express charset as lisp symbol.
18507 (fill_in_logfont): Reverse pixel and point height logic.
18508 Don't set width here. Set quality to default.
18509
18510 * w32fns.c (w32_load_system_font): Fix detecting FIXED_PITCH fonts.
18511 (x_to_w32_font): Fill in lfPitchAndFamily correctly.
18512
18513 * xterm.c (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
18514 Remove redundant loop and allocation.
18515
18516 * makefile.w32-in (font.o, w32font.o): New objects.
18517 (fontset.o, xdisp.o, xfaces.o, w32fns.o, w32term.o): Depend on font.h.
18518 (FONTOBJ): New group of objects conditioned on USE_FONT_BACKEND.
18519
18520 * xdisp.c (fill_composite_glyph_string): Make the first arg to
18521 STORE_XCHARB a valid l-value.
18522
18523 * w32term.c (w32_native_per_char_metric): Swap width and rbearing
18524 calculations for non-Truetype fonts.
18525 (x_draw_glyph_string): Sync with xterm.c.
18526 (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
18527 Remove redundant code.
18528 (w32_initialize) [USE_FONT_BACKEND]: Call w32font_initialize.
18529
18530 * w32term.h (w32_output_data) [USE_FONT_BACKEND]: Add fontp member.
18531 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro from xterm.h.
18532
18533 * w32fns.c [USE_FONT_BACKEND]: Port font backend changes from xfns.c.
18534 (x_to_w32_charset, w32_to_x_charset): Expose externally.
18535
18536 * w32font.c: New file for w32 font backend.
18537
18538 2008-02-01 Kenichi Handa <handa@m17n.org>
18539
18540 * term.c: Don't include "buffer.h" twice.
18541
18542 2008-02-01 Kenichi Handa <handa@m17n.org>
18543
18544 * character.c (Funibyte_string): New function.
18545 (syms_of_character): Defsubr it.
18546
18547 2008-02-01 Jason Rumney <jasonr@gnu.org>
18548
18549 * w32term.c [USE_FONT_BACKEND]:
18550 (x_get_font_repertory, note_mouse_movement, x_set_mouse_face_gc)
18551 (x_set_glyph_string_clipping, x_set_glyph_string_clipping_exactly)
18552 (x_draw_glyph_string, x_draw_glyph_string_foreground)
18553 (x_draw_composite_glyph_string_foreground, x_new_fontset2)
18554 (x_free_frame_resources): Sync with xterm.c.
18555
18556 2008-02-01 Andreas Schwab <schwab@suse.de>
18557
18558 * lread.c (read1): Use CHAR_TABLE_STANDARD_SLOTS to validate
18559 char-table size.
18560
18561 2008-02-01 Kenichi Handa <handa@m17n.org>
18562
18563 * font.c (check_otf_features): Define it regardless of HAVE_LIBOTF.
18564
18565 2008-02-01 Kenichi Handa <handa@m17n.org>
18566
18567 * ftfont.c (ftfont_driver): Delete font_otf_gsub and
18568 font_otf_gpos, add font_drive_otf.
18569
18570 * fontset.c (fontset_find_font): Pay attention to font size
18571 specified for a font.
18572 (reorder_font_vector): Check contents of font_def.
18573
18574 * font.c (struct otf_list): Delete it.
18575 (otf_list): Make it a lisp variable.
18576 (otf_open): Use lispy otf_list.
18577 (generate_otf_features): Rename from parse_gsub_gpos_spec.
18578 (check_otf_features): New function.
18579 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
18580 New functions.
18581 (font_drive_otf): New function merging font_otf_gsub and
18582 font_otf_gpos.
18583 (font_open_for_lface): New arg spec. Change argument order.
18584 (font_load_for_face): Adjust for the change of font_open_for_lface.
18585 (Ffont_drive_otf): New function merging Ffont_otf_gsub and
18586 Ffont_otf_gpos.
18587 (syms_of_font): Staticpro otf_list. Delete defsubr of
18588 Sfont_otf_gsub and Sfont_otf_gpos. Defsubr Sfont_drive_otf.
18589
18590 * xfaces.c (set_font_frame_param): Adjust for the change of
18591 font_open_for_lface.
18592
18593 * font.h (font_open_for_lface): Adjust prototype.
18594 (struct font_driver): Delete members otf_gsub and otf_gpos, add
18595 member otf_drive.
18596 (font_otf_gsub, font_otf_gpos): Delete externs.
18597 (font_drive_otf): Extern it.
18598
18599 2008-02-01 Kenichi Handa <handa@m17n.org>
18600
18601 * font.c (font_at): If the window W is not on a window system,
18602 return Qnil.
18603
18604 * coding.c (produce_chars, encode_coding): Don't call
18605 insert_from_gap if no characters to produce.
18606
18607 2008-02-01 Kenichi Handa <handa@m17n.org>
18608
18609 * fontset.c (free_realized_fontsets): Avoid unnecessary call of
18610 Fclear_face_cache.
18611
18612 * xfaces.c (face_for_font): Check also face->font==font->font.font.
18613
18614 2008-02-01 Miles Bader <miles@gnu.org>
18615
18616 * emacs.c (main): Change default value of `enable_font_backend' to 1.
18617 Parse "--disable-font-backend" option.
18618 (standard_args): Add "--disable-font-backend" option.
18619
18620 2008-02-01 Kenichi Handa <handa@m17n.org>
18621
18622 * fontset.c (fontset_find_font): New function.
18623 (fontset_font): Use fontset_find_font.
18624 (make_fontset_for_ascii_face): Don't set face ID in rfont_def.
18625 Register the specified font for all Latin characters.
18626 (new_fontset_from_font): Register the specified font for all Latin
18627 characters.
18628 (dump_fontset): For a realized fontset, include the base fontset
18629 name in the returned vector.
18630
18631 2008-02-01 Kenichi Handa <handa@m17n.org>
18632
18633 * character.h (CHAR_STRING): Cast C to unsigned on calling
18634 char_string.
18635
18636 * character.c (char_string): Type of arg C changed to unsigned.
18637 Signal an error if C is an invalid character code.
18638
18639 * editfns.c (general_insert_function, Fchar_to_string):
18640 Use CHARACTERP, not INTEGERP.
18641
18642 2008-02-01 Kenichi Handa <handa@m17n.org>
18643
18644 * character.h (MIN_MULTIBYTE_LEADING_CODE)
18645 (MAX_MULTIBYTE_LEADING_CODE): New macros.
18646
18647 * regex.c (analyse_first): Fix for multibyte characters in "case
18648 charset:" and "case categoryspec:".
18649
18650 2008-02-01 Andreas Schwab <schwab@suse.de>
18651
18652 * Makefile.in (LIBES): Move standard libraries to the end.
18653
18654 2008-02-01 Kenichi Handa <handa@m17n.org>
18655
18656 * alloc.c (Fgarbage_collect): If nextb->text->inhibit_shrinking is
18657 nonzero, don't shrink the buffer nextb.
18658
18659 * buffer.h (struct buffer_text): New member inhibit_shrinking.
18660
18661 * coding.c (coding_alloc_by_making_gap): New arg offset.
18662 (alloc_destination): Call coding_alloc_by_making_gap with the arg
18663 offset.
18664 (decode_coding_iso_2022): Update coding->safe_charsets.
18665 (decode_coding_gap): Temporarily set
18666 current_buffer->text->inhibit_shrinking to 1.
18667
18668 2008-02-01 Kenichi Handa <handa@m17n.org>
18669
18670 * xterm.c (x_draw_composite_glyph_string_foreground): Fix
18671 indexing into elements of s->cmp and s->char2b.
18672
18673 2008-02-01 Juanma Barranquero <lekktu@gmail.com>
18674
18675 * regex.c (RE_STRING_CHAR_AND_LENGTH) [! emacs]: Add missing arg `len'.
18676
18677 2008-02-01 Kenichi Handa <handa@m17n.org>
18678
18679 * regex.c (GET_CHAR_BEFORE_2, GET_CHAR_AFTER): Check the variable
18680 target_multibyte instead of multibyte.
18681 (re_match_2_internal): Call bcmp_translate with target_multibyte.
18682 (bcmp_translate): Change the argument name from multibyte to
18683 target_multibyte.
18684
18685 2008-02-01 Kenichi Handa <handa@m17n.org>
18686
18687 These changes are to compile a regexp into a pattern that can be
18688 used both for multibyte and unibyte targets.
18689
18690 * Makefile.in (search.o): Depend on charset.h.
18691
18692 * character.c (multibyte_char_to_unibyte_safe): New function.
18693
18694 * search.c: Include "charset.h".
18695 (compile_pattern_1): Delete argument multibyte. Don't set
18696 cp->buf.target_multibyte here. Set cp->buf.charset_unibyte.
18697 (compile_pattern): Don't compare cp->buf.target_multibyte.
18698 Compare cp->buf.charset_unibyte.
18699 (compile_pattern): Set cp->buf.target_multibyte.
18700
18701 * lisp.h (multibyte_char_to_unibyte_safe): Extern it.
18702
18703 * regex.h (struct re_pattern_buffer): New member charset_unibyte.
18704
18705 * regex.c (RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
18706 multibyte. Change callers.
18707 (RE_CHAR_TO_MULTIBYTE, RE_CHAR_TO_UNIBYTE): New macros.
18708 (MAKE_CHAR_MULTIBYTE, MAKE_CHAR_UNIBYTE): Delete. Change callers
18709 to use RE_CHAR_TO_MULTIBYTE and RE_CHAR_TO_UNIBYTE, respectively.
18710 (SETUP_ASCII_RANGE, SETUP_UNIBYTE_RANGE): New macros.
18711 (SETUP_MULTIBYTE_RANGE): Generate a more compact range_table.
18712 (regex_compile): Make the compiled pattern usable both for
18713 multibyte and unibyte targets.
18714 (analyse_first): Make the fastmap usable both for multibyte and
18715 unibyte targets.
18716 (TRANSLATE_VIA_MULTIBYTE): Delete.
18717 (re_match_2_internal): Pay attention to the case that the
18718 multibyteness of bufp and target may be different.
18719
18720 2008-02-01 Kenichi Handa <handa@m17n.org>
18721
18722 * xdisp.c (x_produce_glyphs): When a font is not found, make the
18723 empty box occupy at least one column width.
18724
18725 2008-02-01 Miles Bader <miles@gnu.org>
18726
18727 * Makefile.in: Remove redundant HAVE_XFT clause.
18728
18729 2008-02-01 Kenichi Handa <handa@m17n.org>
18730
18731 * xrdb.c (x_load_resources): Setup the default fontSet X resource.
18732
18733 2008-02-01 Kenichi Handa <handa@m17n.org>
18734
18735 * fontset.c (Finternal_char_font): Fix for the case of POSITION
18736 being nil.
18737
18738 2008-02-01 Kenichi Handa <handa@m17n.org>
18739
18740 * xftfont.c (xftfont_open): Call FcConfigSubstitute.
18741
18742 2008-02-01 Kenichi Handa <handa@m17n.org>
18743
18744 * xftfont.c (xftfont_open): Don't enable antialias explicitly.
18745
18746 2008-02-01 Kenichi Handa <handa@m17n.org>
18747
18748 * search.c (simple_search): Fix previous change.
18749
18750 2008-02-01 Kenichi Handa <handa@m17n.org>
18751
18752 * xftfont.c (ftfont_font_format): Extern declaration.
18753
18754 * frame.c (x_set_font): Fix the second arg to fs_query_fontset.
18755
18756 * xfont.c (xfont_driver): Initialize ftfont_driver.type by 0.
18757 (xfont_list): Don't directly use Lisp_Object as an operand of &&.
18758
18759 * ftfont.c (ftfont_driver): Initialize ftfont_driver.type by 0.
18760 (ftfont_font_format): Fix previous change.
18761
18762 * font.h (Ffont_xlfd_name): EXFUN it.
18763
18764 * font.c (font_parse_xlfd): Fix the array size of `f'.
18765 (register_font_driver): Use EQ to compare driver->type.
18766
18767 * xfns.c (xic_create_xfontset2) [USE_FONT_BACKEND]: New function.
18768 (create_frame_xic) [USE_FONT_BACKEND]: Call xic_create_xfontset2.
18769 (xic_set_xfontset) [USE_FONT_BACKEND]: Likewise.
18770
18771 2008-02-01 Kenichi Handa <handa@m17n.org>
18772
18773 * ftfont.c (ftfont_pattern_entity, ftfont_list_generic_family)
18774 (ftfont_list, ftfont_font_format): Check if FC_FONTFORMAT is defined.
18775
18776 2008-02-01 Kenichi Handa <handa@m17n.org>
18777
18778 * xfont.c (xfont_open): Set font->format.
18779
18780 * xftfont.c (xftfont_open): Set font->format.
18781
18782 * ftfont.c (ftfont_pattern_entity): Add fontformat in a pattern.
18783 (ftfont_list): Include FC_FONTFORMAT in FcObject.
18784 (ftfont_open): Set font->format.
18785 (ftfont_font_format): New function.
18786
18787 * font.h (struct font): New member format.
18788
18789 * font.c (Qopentype): New variable.
18790 (syms_of_font): Defsym it.
18791 (Fquery_font): Change the format of the last element of the return
18792 value.
18793
18794 2008-02-01 Kenichi Handa <handa@m17n.org>
18795
18796 * xfns.c (xic_create_xfontset): Try the default fontset name as a
18797 last resort.
18798
18799 2008-02-01 Kenichi Handa <handa@m17n.org>
18800
18801 * coding.c (detect_coding_charset): Fix detection of multi-byte
18802 charset.
18803
18804 2008-02-01 Bob Halley <halley@play-bow.org> (tiny change)
18805
18806 * ccl.c (ccl_driver): If DST is NULL, set ccl->produced to 0.
18807
18808 2008-02-01 Kenichi Handa <handa@m17n.org>
18809
18810 * xdisp.c (get_next_display_element): Set it->face_id for the
18811 first component of a composition.
18812 (x_produce_glyphs): Check if the font is changed or not for composition.
18813
18814 2008-02-01 Kenichi Handa <handa@m17n.org>
18815
18816 * fontset.c (Qlatin): New variable.
18817 (syms_of_fontset): Define it as a lisp symbol.
18818 (Fset_fontset_font): If TARGET is `latin', use FONT_SPEC for ASCII.
18819
18820 2008-02-01 Kenichi Handa <handa@m17n.org>
18821
18822 * font.c (font_unparse_fcname): Pay attention to the case that
18823 some of font property is a null string.
18824
18825 2008-02-01 Kenichi Handa <handa@m17n.org>
18826
18827 * term.c: Include "composite.h".
18828 (encode_terminal_code): Output all components of composition.
18829 Check the size of encode_terminal_src.
18830 (produce_glyphs): For composition, call produce_composite_glyph.
18831 (append_composite_glyph, produce_composite_glyph): New functions.
18832
18833 * xdisp.c (x_produce_glyphs): In handling composition, if a font
18834 is not found, get font_info from the current ascii face.
18835
18836 2008-02-01 Kenichi Handa <handa@m17n.org>
18837
18838 * fileio.c (Finsert_file_contents): On replacing, temporarily bind
18839 buffer-file-name to Qnil before calling insert_from_buffer.
18840
18841 * font.c (font_unparse_fcname): Pay attention to the case that
18842 foundry is a null string.
18843
18844 2008-02-01 Kenichi Handa <handa@m17n.org>
18845
18846 * ftfont.c (ftfont_list): Allow registry "unicode-sip".
18847
18848 * font.c (Qunicode_sip): New variable.
18849 (syms_of_font): Declare it as a Lisp symbol.
18850
18851 * font.h (Qunicode_sip): Extern it.
18852
18853 2008-02-01 Kenichi Handa <handa@m17n.org>
18854
18855 * composite.c (get_composition_id): Pay attention to TAB component.
18856
18857 * xterm.c (x_draw_composite_glyph_string_foreground): Don't draw
18858 TAB. Adjust for the change of s->char2b which always points to
18859 the first element of allocated memory.
18860
18861 * xftfont.c (xftfont_text_extents): Fix calculation of descent value.
18862
18863 * xdisp.c (handle_composition_prop): Set it->c to the first
18864 non-TAB component.
18865 (fill_composite_glyph_string): Change argument.
18866 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the above change.
18867 (x_produce_glyphs): Fix handling of left/right padding.
18868
18869 2008-02-01 Kenichi Handa <handa@m17n.org>
18870
18871 * coding.c (detect_coding_system): Fix for handling off
18872 inhibit_iso_escape_detection. Fix for the case that no coding
18873 system is defined for a specific coding category.
18874
18875 2008-02-01 Kenichi Handa <handa@m17n.org>
18876
18877 * font.c (font_matching_entity): Delete unused local var.
18878
18879 * xftfont.c (xftfont_open): Call XftDefaultSubstitute before
18880 opening a font.
18881
18882 * fileio.c (Finsert_file_contents): On recovering a file, assume
18883 Unix-like eol.
18884 (choose_write_coding_system): On auto-saving a file, force
18885 Unix-like eol.
18886
18887 * coding.c (setup_coding_system): Fix setting of
18888 coding->common_flags based on eol_type.
18889 (coding_inherit_eol_type): If PARENT is not nil, be sure to
18890 inherit from it.
18891
18892 2008-02-01 Kenichi Handa <handa@m17n.org>
18893
18894 * alloc.c (NSTATICS): Increas to 0x600.
18895
18896 2008-02-01 Kenichi Handa <handa@m17n.org>
18897
18898 * ftfont.c (ftfont_driver): Set ftfont_driver.match to ftfont_match.
18899 (ftfont_list): Don't check :name property.
18900 (ftfont_match): New function.
18901 (ftfont_pattern_entity): If the pattern doesn't contain
18902 FC_SPACING, don't assume FC_MONO.
18903
18904 * font.h (struct font_driver): New member `match'.
18905 (font_update_drivers): Adjust prototype.
18906
18907 * font.c (font_parse_fcname, font_parse_name): Don't change :name
18908 property of FONT.
18909 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE, check_gstring): Define
18910 them unconditionally.
18911 (font_matching_entity): New function.
18912 (font_open_by_name): Try font_matching_entity if exact match is
18913 not found.
18914 (font_update_drivers): Delete the arg FONT. Return a list of
18915 actually used backends. Don't free faces, font caches here.
18916 Don't store data in frame parameters. Don't call x_set_font.
18917 (Ffont_spec): Store :name property as is.
18918 (Ffont_get): Check HAVE_LIBOTF before calling font_otf_capability.
18919 (Ffont_otf_gsub): Call font->driver->otf_gsub instead of font_otf_gsub.
18920 (Ffont_otf_gpos): Call font->driver->otf_gpos instead of font_otf_gpos.
18921 (Ffont_otf_alternates): Check if the driver has otf_gsub function.
18922 Call font->driver->otf_gsub instead of font_otf_gsub.
18923
18924 * frame.c (x_set_font_backend): Do more works that were done in
18925 font_update_drivers before.
18926
18927 * xfont.c (xfont_match): New function.
18928 (xfont_driver): Set xfont_driver.match to xfont_match.
18929 (xfont_draw): Set font in GC if necessary.
18930
18931 * ftxfont.c (ftxfont_match): New function.
18932 (syms_of_ftxfont): Set ftxfont_driver.match to ftxfont_match.
18933
18934 * xftfont.c (xftfont_match): New function.
18935 (syms_of_xftfont): Set xftfont_driver.match to xftfont_match.
18936
18937 2008-02-01 Kenichi Handa <handa@m17n.org>
18938
18939 * font.h (struct font): New member scalable.
18940 (struct font_driver): New arg ALTERANTE_SUBST to otf_gsub.
18941 (font_otf_gsub): Adjust prototype.
18942
18943 * font.c (font_otf_capability): Fix handling of the default langsys.
18944 (parse_gsub_gpos_spec): Change type to void. New arg nbytes.
18945 Check the contents of SPEC.
18946 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE): New macros.
18947 (check_gstring): New function.
18948 (REPLACEMENT_CHARACTER): New macro.
18949 (font_otf_gsub): New arg alternate_subst. Be sure to set all
18950 glyph codes of GSTRING.
18951 (font_otf_gpos): Be sure to set all glyph codes of GSTRING.
18952 (font_prepare_composition): Set cmp->glyph_len.
18953 (font_open_entity): Set font->scalable.
18954 (Ffont_get): Handle :otf property.
18955 (Ffont_otf_gsub, Ffont_otf_gpos, Ffont_otf_alternates): New
18956 functions.
18957 (Fquery_font): Use font->font.full_name.
18958 (syms_of_font): Defsubr Sfont_otf_gsub, Sfont_otf_gpos, and
18959 Sfont_otf_alternates.
18960
18961 * ftfont.c (ftfont_open): Set font->font.full_name and
18962 font->font.name properly. Fix calculation of font->font.height
18963 and font->min_width.
18964
18965 * ftxfont.c (ftxfont_create_gcs): New function.
18966 (ftxfont_draw_bitmap): Fix arg to ftfont_driver.get_bitmap.
18967 (ftxfont_draw_backgrond): Fix filling region.
18968 (ftxfont_default_fid): New function.
18969 (ftxfont_open): Set xfont->fid to the return value of
18970 ftxfont_default_fid.
18971 (ftxfont_prepare_face): Use ftxfont_create_gcs to create GCs.
18972 (ftxfont_done_face): Free only GCs that are created by
18973 ftxfont_create_gcs.
18974 (ftxfont_draw): If face->gc != s->gc, create proper GCs.
18975
18976 * xterm.c (x_set_glyph_string_clipping_exactly) [USE_FONT_BACKEND]:
18977 Clip to src->width, etc (not src->clip_XXX).
18978
18979 * xfns.c (x_create_tip_frame) [USE_FONT_BACKEND]: Handle
18980 FontBackend frame parameter.
18981
18982 2008-02-01 Kenichi Handa <handa@m17n.org>
18983
18984 * font.h (struct font_driver_list): New member `on'.
18985 (Fclear_font_cache): EXFUN it.
18986 (font_update_drivers): Extern it.
18987
18988 * font.c (font_unparse_fcname): Fix typo (swidth->width).
18989 (font_list_entities): Check driver_list->on.
18990 (register_font_driver): Initalize `on' member to 0.
18991 (font_update_drivers): New function.
18992 (Fclear_font_cache): Check driver_list->on.
18993
18994 * frame.h (Qfont_backend): Extern it.
18995 (x_set_font_backend): Extern it.
18996
18997 * frame.c (Qfont_backend): New variable.
18998 (frame_parms): New element for font-backend.
18999 (x_set_font_backend): New function.
19000
19001 * xfns.c (Fx_create_frame) [USE_FONT_BACKEND]: Handle
19002 FontBackend frame parameter.
19003 (x_frame_parm_handlers) [USE_FONT_BACKEND]: New element
19004 x_set_font_backend.
19005
19006 * xfont.c (xfont_list): Don't try listing by :name property if the
19007 name is not for XLFD.
19008
19009 2008-02-01 Kenichi Handa <handa@m17n.org>
19010
19011 * font.h (LGLYPH_FROM, LGLYPH_TO, LGLYPH_SET_FROM)
19012 (LGLYPH_SET_TO): New macros.
19013 (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WADJUST): Check if adjustment
19014 element of G is vector or not.
19015 (font_at): Extern it.
19016
19017 * font.c: Include window.h.
19018 (font_lispy_object): New function.
19019 (font_prepare_composition): Check LGLYPH_FORM (g) to detect the
19020 end of valid glyph.
19021 (font_close_object): Fix getting (struct font *).
19022 (font_at): New function.
19023 (Ffont_get): If FONT is a font-object, get entity from it.
19024 (Ffont_make_gstring): Initialize elements of glyphs with nil.
19025 (Ffont_fill_gstring): Use macro LGSTRING_XXX and LGLYPH_XXX. Fix
19026 range check.
19027 (Ffont_at): New function.
19028 (syms_of_font): Defsubr Sfont_at.
19029
19030 * xdisp.c (it_props): Move the entry for Qauto_composed to just
19031 before the entry for Qcomposition.
19032 (handle_auto_composed_prop): Call auto-composition-function with 4 args.
19033 (handle_composition_prop) [USE_FONT_BACKEND]: Set it->face_id from
19034 the font in gstring.
19035 (fill_composite_glyph_string) [USE_FONT_BACKEND]: Check
19036 LGLYPH_FORM (g) to detect the end of valid glyph.
19037 (x_produce_glyphs) [USE_FONT_BACKEND]: Don't update it->face_id if
19038 we are composing with gstring.
19039
19040 * xterm.c (x_draw_composite_glyph_string_foreground) [USE_FONT_BACKEND]:
19041 Check if adjustment is vector or not.
19042
19043 * Makefile.in (font.o): Make it depends on window.h.
19044
19045 2008-02-01 Kenichi Handa <handa@m17n.org>
19046
19047 * xterm.c (x_draw_composite_glyph_string_foreground): Check if
19048 adjustment is vector or not.
19049
19050 2008-02-01 Miles Bader <miles@gnu.org>
19051
19052 * character.h (CHECK_CHARACTER): Redefine in terms of CHECK_TYPE.
19053
19054 2008-02-01 Kenichi Handa <handa@m17n.org>
19055
19056 * font.h (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WIDTH, LGLYPH_WADJUST)
19057 (LGLYPH_SET_WIDTH): Adjusted for the change of LGLYPH format.
19058 (LGLYPH_ADJUSTMENT, LGLYPH_SET_ADJUSTMENT): New macros.
19059
19060 * font.c (font_merge_old_spec): Treat '*' in foundry as a wild card.
19061 (DEVICE_DELTA): Fix typo.
19062 (font_otf_gpos, font_prepare_compositio): Adjust for the change of
19063 LGLYPH format.
19064
19065 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
19066 the change of LGLYPH format.
19067
19068 2008-02-01 Kenichi Handa <handa@m17n.org>
19069
19070 * ftfont.c (ftfont_list): Fix typo.
19071 (ftfont_build_basic_charsets): Don't include letters with diacritics.
19072
19073 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
19074
19075 * xfaces.c (realize_non_ascii_face): Set face->extra to NULL.
19076
19077 * xftfont.c (xftfont_done_face): Call XftDrawDestroy only if
19078 xftface_info is non-NULL.
19079
19080 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
19081
19082 * ftfont.c (ftfont_list): Move misplaced #endif.
19083
19084 2008-02-01 Kenichi Handa <handa@m17n.org>
19085
19086 * ftfont.c (ftfont_list): Pay attention to the case that
19087 FC_CAPABILITY is not defined.
19088
19089 2008-02-01 Kenichi Handa <handa@m17n.org>
19090
19091 * xftfont.c (xftfont_open): Set charset related members to -1.
19092
19093 * ftfont.c (ftfont_list): Handle QCotf property. Fix handling of
19094 QCname.
19095 (ftfont_open): Set charset related members to -1.
19096
19097 * fontset.c (Votf_script_alist): New variable.
19098 (syms_of_fontset): Initialize it.
19099 (fontset_font): Delete unused variable.
19100
19101 * fontset.h (Votf_script_alist): Extern it.
19102
19103 * font.c (font_find_for_lface): Optimize code.
19104
19105 * font.h (font_close_object, font_merge_old_spec): Extern them.
19106
19107 2008-02-01 Kenichi Handa <handa@m17n.org>
19108
19109 * font.c (QCscalable, Qc, Qm, Qp, Qd): New variables.
19110 (syms_of_font): Initialize them.
19111 (font_pixel_size): Allow float value in dpi.
19112 (font_prop_validate_type): Delete.
19113 (font_prop_validate_symbol, font_prop_validate_style): Change argument.
19114 Change caller.
19115 (font_prop_validate_non_neg): Rename from font_prop_validate_size.
19116 (font_prop_validate_extra): Delete.
19117 (font_prop_validate_spacing): New function.
19118 (font_property_table): Add elements for all known properties.
19119 (get_font_prop_index): Rename from check_font_prop_name. New
19120 argument FROM. Change caller.
19121 (font_prop_validate): Validate all known properties.
19122 (font_put_extra): Delete argument force. Change caller.
19123 (font_expand_wildcards): Make it static. Fix the way of shrinking
19124 the possible range.
19125 (font_parse_xlfd): Delete argument merge. Fix handling of RESX,
19126 RESY, SPACING, and AVGWIDTH. Don't validate property values here.
19127 Change caller.
19128 (font_unparse_xlfd): Handle dpi, spacing, and scalable properties.
19129 (font_parse_fcname): Delete argument merge. Fix parsing of point
19130 size. Don't validate properties values here. Change caller.
19131 (font_unparse_fcname): Handle dpi, spacing, and scalable properties.
19132 (font_open_by_name): Delete unused variable.
19133 (Ffont_spec): Likewise. Validate property values.
19134 (Ffont_match_p): New function.
19135
19136 * font.h (QCscalable): Extern it.
19137 (font_parse_xlfd, font_parse_fcname): Adjust prototype.
19138
19139 * ftfont.c (ftfont_list): Handle properties dpi, spacing, and scalable.
19140
19141 * xfont.c (xfont_query_font): Adjust for the change of font_parse_xlfd.
19142 (xfont_list_pattern): New function.
19143 (xfont_list): Use xfont_list_pattern.
19144
19145 2008-02-01 Kenichi Handa <handa@m17n.org>
19146
19147 * font.h (Flist_fonts): EXFUN it.
19148
19149 2008-02-01 Jason Rumney <jasonr@gnu.org>
19150
19151 * w32term.c (w32_initialize): Add back smoothing_type and
19152 smoothing_enabled definitions.
19153
19154 2008-02-01 Kenichi Handa <handa@m17n.org>
19155
19156 * xterm.c (x_draw_glyph_string) [USE_FONT_BACKEND]: Check
19157 s->face->font on determining underline position.
19158
19159 2008-02-01 Kenichi Handa <handa@m17n.org>
19160
19161 * font.c (font_parse_xlfd): Fix generating of CHARSET_REGISTRY field.
19162 (font_has_char): Accept font-object too.
19163 (font_find_for_lface): Try at first with a size specified in face.
19164
19165 2008-02-01 Kenichi Handa <handa@m17n.org>
19166
19167 * frame.c (x_set_font) [USE_FONT_BACKEND]: Fix argument to
19168 font_open_by_name.
19169
19170 2008-02-01 Kenichi Handa <handa@m17n.org>
19171
19172 * font.h (QCspacing, QCdpi): Extern them.
19173 (enum font_spacing): New enum.
19174 (FONT_PIXEL_SIZE_QUANTUM): New macro.
19175
19176 * font.c (POINT_TO_PIXEL): Don't divide POINT by 10.
19177 (QCspacing, QCdpi): New variables.
19178 (syms_of_font): Initialize them.
19179 (font_pixel_size): New function.
19180 (font_put_extra): New function.
19181 (font_parse_xlfd): Fix handling of font size. Add QCdpi property
19182 in FONT_EXTRA.
19183 (font_parse_fcname): Handle enumerated values (e.g. bold).
19184 Fix handling font size. Add QCname property that contains only
19185 unknown properties.
19186 (font_score): Change argument. Change caller. Pay attention to
19187 FONT_PIXEL_SIZE_QUANTUM.
19188 (font_sort_entites, font_list_entities, font_find_for_lface)
19189 (font_open_for_lface, font_open_by_name): Fix handling of font size.
19190 (Ffont_spec): Add QCname property that contains only unknown properties.
19191
19192 * ftfont.c (ftfont_list): Use assq_no_quit, not Fassq. Don't
19193 include weight in listing pattern, instead check weight of each
19194 listed font. Don't include scalable in pattern. Pay attention to
19195 FONT_PIXEL_SIZE_QUANTUM.
19196
19197 2008-02-01 Kenichi Handa <handa@m17n.org>
19198
19199 * font.c (font_parse_fcname): Fix parsing of point-size.
19200 (font_unparse_fcname): Produce symbolic names for style properties.
19201 (font_list_entities): Handle float size correctly.
19202 (font_open_by_name): Prefer `normal' property values if the name
19203 doesn't specify them.
19204
19205 * fontset.c (Finternal_char_font): Use font_get_name, not
19206 Ffont_xlfd_name.
19207
19208 * ftfont.c (ftfont_pattern_entity): Use the numeric value 100 for
19209 FC_WEIGHT_REGULAR. Exclude FC_SIZE and FC_PIXEL_SIZE from listing
19210 pattern. Don't force scalable.
19211
19212 * xftfont.c (xftfont_open): For generating a name, start from
19213 96-byte buffer.
19214
19215 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
19216
19217 * frame.h (x_new_fontset2): Fix prototype.
19218
19219 2008-02-01 Kenichi Handa <handa@m17n.org>
19220
19221 * font.h (struct font_driver): Delete member parse_name.
19222 (font_match_p, font_get_spec, font_parse_fcname)
19223 (font_unparse_fcname): Extern them.
19224 (font_get_name): Adjust prototype.
19225
19226 * font.c (XLFD_SMALLNUM_MASK): Delete this macro.
19227 (XLFD_LARGENUM_MASK): Delete XLFD_ENCODING_MASK from it.
19228 (font_expand_wildcards): Fix handling ENCODING field. Avoid
19229 unnecessary checks for weight, slant, and swidth.
19230 (font_parse_fcname): New function.
19231 (font_unparse_fcname): New function.
19232 (font_parse_name): New function.
19233 (font_match_p): New function.
19234 (font_get_name): Change return value to Lisp string.
19235 (font_get_spec): New function.
19236 (Qunspecified, Qignore_defface): Don't extern them.
19237 (font_find_for_lface): Assume that LFACE is fully specified.
19238 (font_load_for_face): If lface[LFACE_FONT_INDEX] is an font
19239 object, use it for FACE.
19240 (font_open_by_name): Call Ffont_spec with QCname prop. Don't call
19241 driver->parse_name.
19242 (Ffont_spec): Call font_parse_name, not font_parse_xlfd.
19243
19244 * fontset.h (new_fontset_from_font) [USE_FONT_BACKEND]: Adjust
19245 prototype.
19246
19247 * fontset.c (new_fontset_from_font) [USE_FONT_BACKEND]: Delete
19248 argument F. Don't call Fnew_fontset. Instead, directly call
19249 make_fontset.
19250
19251 * frame.h (x_new_fontset2) [USE_FONT_BACKEND]: Adjust prototype.
19252
19253 * frame.c (x_set_font) [USE_FONT_BACKEND]: Adjust for the change
19254 of x_new_fontset2.
19255
19256 * ftfont.c (Qmonospace, Qsans_serif, Qserif, Qmono, Qsans)
19257 (Qsans__serif): New variables.
19258 (ftfont_generic_family_list): New variable.
19259 (syms_of_ftfont): Initialize the above variables.
19260 (ftfont_pattern_entity): Delete argument NAME.
19261 (ftfont_list_generic_family): New function.
19262 (ftfont_parse_name): Delete this function.
19263 (ftfont_list): Try generic family only when FcFontList found no font.
19264 (ftfont_list_family): Fix args to FcObjectSetBuild.
19265
19266 * xfaces.c (check_lface_attrs) [USE_FONT_BACKEND]: Accept font
19267 object in attrs[LFACE_FONT_INDEX].
19268 (set_lface_from_font_name): Cancel all changes for font-backend.
19269 (set_lface_from_font_and_fontset) [USE_FONT_BACKEND]: New
19270 function.
19271 (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]: Accept a
19272 font object in QCfont attribute.
19273 (set_font_frame_param) [USE_FONT_BACKEND]: Likewise.
19274 (realize_default_face) [USE_FONT_BACKEND]: Call
19275 set_lface_from_font_and_fontset.
19276
19277 * xfns.c (x_default_font_parameter) [USE_FONT_BACKEND]: Try also
19278 "fixed", and signal error here if no suitable font was found.
19279
19280 * xfont.c (xfont_parse_name): Delete this function.
19281
19282 * xftfont.c (xftfont_open): Change coding style of error
19283 handling. Generate fontconfig's fontname pattern.
19284
19285 * xterm.h (struct x_output) [USE_FONT_BACKEND]: New member fontp.
19286 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro.
19287
19288 * xterm.c (x_new_fontset2) [USE_FONT_BACKEND]: Change arguments.
19289 Both args FONTSET and FONT_OBJECT must be existing ones.
19290
19291 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19292
19293 * macterm.c (mac_set_unicode_keystroke_event): Don't use MAKE_CHAR.
19294
19295 2008-02-01 Kenichi Handa <handa@m17n.org>
19296
19297 * xfont.c (xfont_open, xfont_encode_char): Fix typo.
19298
19299 * font.h (struct font): Fix typo.
19300
19301 * font.c (enum xlfd_field_index): Rename XLFD_XXX_SIZE_INDEX to
19302 XLFD_XXX_INDEX.
19303 (enum xlfd_field_mask): New enum.
19304 (intern_font_field): Changed argument. Change caller. If digits
19305 are followed by non-digits, return a symbol.
19306 (font_expand_wildcards): New function.
19307 (font_parse_xlfd): Fix wildcard handling.
19308 (Ffont_spec): If :name is specified, reflect the info in the other
19309 properties.
19310
19311 * ftfont.c (ftfont_pattern_entity): Fix typo.
19312 (ftfont_list): Enforce FC_LANG in PATTERN to cancel the effect of
19313 locale.
19314
19315 2008-02-01 Kenichi Handa <handa@m17n.org>
19316
19317 * font.h (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Extern them.
19318
19319 * font.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move from ftfont.c.
19320 (font_unparse_xlfd): Fix argument type declaration. Append "*" if
19321 registry doesn't specify encoding part.
19322 (font_find_for_lface): Pay attention to LFACE_FONT_INDEX.
19323 (font_open_by_name): At first try parsing the name.
19324 (syms_of_font): Declare Qiso8859_1, Qiso10646_1, and Qunicode_bmp
19325 as Lisp symbols.
19326
19327 * fontset.c (reorder_font_vector): Pay attention to the case that
19328 the 3rd element of font_def is nil.
19329 (fontset_font): For the default fontset, append one more fontset
19330 elements for a script-based font specification. Don't add script
19331 attribute on finding a font.
19332 (new_fontset_from_font): Unconditionally set FONTSET_ASCII to the
19333 font name.
19334 (fontset_ascii_font): If a font can't be opened, return nil.
19335
19336 * ftfont.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move to font.c.
19337 (ftfont_pattern_entity): New function.
19338 (ftfont_get_cache): Assume that freetype_font_cache is already
19339 initialized.
19340 (ftfont_list): Handle the case that a file is specified in font
19341 name. Use ftfont_pattern_entity to generate entities.
19342 (ftfont_has_char): Check if the pattern contains FC_CHARSET.
19343 (syms_of_ftfont): Initialize freetype_font_cache.
19344
19345 * xftfont.c (xftfont_open): Make the font name fontconfig's
19346 style. Add BLOCK_INPUT and UNBLOCK_INPUT.
19347 (xftfont_close): Free font->font.name if not NULL.
19348
19349 * xfont.c (xfont_list): If script is specified for a font, return
19350 null_vector.
19351 (xfont_list_family): Declare argument type.
19352
19353 * xfaces.c (set_lface_from_font_name): If a font doesn't have a
19354 name, set LFACE_FONT (lface) to nil.
19355
19356 * xterm.c (x_new_fontset2): If an ASCII font couldn't be loaded,
19357 return Qnil.
19358
19359 2008-02-01 Kenichi Handa <handa@m17n.org>
19360
19361 * emacs.c (main): Check -enable-font-backend arg after the check of -nl.
19362 (standard_args): Add "-enable-font-backend".
19363
19364 2008-02-01 Kenichi Handa <handa@m17n.org>
19365
19366 * xftfont.c (xftfont_default_fid): Set fid_known to 1.
19367 (struct xftdraw_list, xftdraw_list): Delete them.
19368 (register_xftdraw, check_xftdraw): Delete them.
19369 (xftfont_prepare_face): Don't call register_xftdraw.
19370 (xftfont_done_face): Don't call check_xftdraw.
19371 (xftfont_draw): Get background color only when with_background is
19372 nonzero.
19373
19374 * xfont.c (xfont_encode_char): Fix calculation of char2b.
19375
19376 2008-02-01 Kenichi Handa <handa@m17n.org>
19377
19378 These changes are for the new font handling codes.
19379
19380 * Makefile.in (ALL_CFLAGS): Add @FREETYPE_CFLAGS@,
19381 @FONTCONFIG_CFLAGS@, and @LIBOTF_CFLAGS@.
19382 (LIB_X11_LIB): If HAVE_XFT is defined, set to @XFT_LIBS@.
19383 (FONTSRC, FONTOBJ): New variables.
19384 (obj): Add $(FONTOBJ).
19385 (SOME_MACHINE_OBJECTS): Lib_X11_Lib.
19386 (LIBES): Add @FREETYPE_LIBS@, @FONTCONFIG_LIBS@, and
19387 @LIBOTF_LIBS@.
19388 (font.o, ftfont.o, xfont.o, xftfont.o, ftxfont.o): New targets.
19389 (fontset.o, xdisp.o, xfaces.o, xfns.o, xterm.o): Depend on $(FONTSRC).
19390
19391 * font.h, font.c, xfont.c, ftfont.c, xftfont.c, ftxfont.c: New files.
19392
19393 * character.h (Vscript_representative_chars): Extern it.
19394
19395 * character.c (Vscript_representative_chars): New variable.
19396 (syms_of_character): Declare it as a Lisp variable.
19397
19398 * composite.c (get_composition_id) [USE_FONT_BACKEND]: If
19399 enable_font_backend is nonzero, accept the composition method
19400 COMPOSITION_WITH_GLYPH_STRING.
19401
19402 * composite.h (enum composition_method) [USE_FONT_BACKEND]: New
19403 enumeration COMPOSITION_WITH_GLYPH_STRING.
19404
19405 * dispextern.h (struct glyph_string) [USE_FONT_BACKEND]: New
19406 members clip_x, clip_y, clip_width, and clip_height.
19407 (struct face) [USE_FONT_BACKEND]: New members font_info and extra.
19408
19409 * emacs.c (main) [USE_FONT_BACKEND]: Handle arg
19410 --enable-font-backend. Call syms_of_font.
19411
19412 * fns.c (assoc_no_quit): New function.
19413
19414 * fontset.h (FONT_INFO_FROM_FACE): New macro.
19415 (face_for_font, new_fontset_from_font)
19416 (fontset_ascii_font) [USE_FONT_BACKEND]: Extern them.
19417
19418 * fontset.c [USE_FONT_BACKEND]: Include "font.h".
19419 (fontset_font, fontset_ascii, face_for_char)
19420 (make_fontset_for_ascii_face, Ffont_info)
19421 (Finternal_char_font) [USE_FONT_BACKEND]: If enable_font_backend
19422 is nonzero, use font-backend mechanism.
19423 (find_font_encoding): Make it non-static.
19424 (new_fontset_from_font, fontset_ascii_font) [USE_FONT_BACKEND]:
19425 New functions.
19426
19427 * frame.h (struct frame): New members resx and resy.
19428 (struct frame) [USE_FONT_BACKEND]: New member font_driver_list.
19429 (x_new_fontset2) [USE_FONT_BACKEND]: Extern it.
19430
19431 * frame.c [USE_FONT_BACKEND]: Include "font.h".
19432 (make_frame, x_set_font) [USE_FONT_BACKEND]: Use font-backend mechanism.
19433
19434 * lisp.h (assoc_no_quit): Extern it.
19435
19436 * xdisp.c: If USE_FONT_BACKEND is defined, include "font.h".
19437 Through out the file, use FONT_INFO_FROM_FACE instead of
19438 FONT_INFO_FROM_ID, use get_per_char_metric instead of
19439 rif->per_char_metric.
19440 (handle_composition_prop) [USE_FONT_BACKEND]: If the composition
19441 method is COMPOSITION_WITH_GLYPH_STRING, just set it->c to ' '.
19442 (get_glyph_face_and_encoding, fill_composite_glyph_string)
19443 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
19444 (x_produce_glyphs) [USE_FONT_BACKEND]: If enable_font_backend is
19445 nonzero, use font-backend mechanism.
19446 (get_per_char_metric): New function.
19447
19448 * xfaces.c [USE_FONT_BACKEND]: Include "font.h".
19449 (set_lface_from_font_name)
19450 (set_font_frame_param, free_realized_face)
19451 (prepare_face_for_display, clear_face_gcs)
19452 (Finternal_set_font_selection_order, realize_x_face)
19453 [USE_FONT_BACKEND]: If enable_font_backend is nonzero, use
19454 font-backend mechanism.
19455 (clear_face_cache) [USE_FONT_BACKEND]: Don't call clear_font_table.
19456 (load_face_font) [USE_FONT_BACKEND]: Abort.
19457 (face_symbolic_value, face_symbolic_weight, face_symbolic_slant)
19458 (face_symbolic_swidth, face_for_font) [USE_FONT_BACKEND]: New functions.
19459
19460 * xfns.c [USE_FONT_BACKEND]: Include "font.h".
19461 (x_default_font_parameter) [USE_FONT_BACKEND]: New function.
19462 (Fx_create_frame) [USE_FONT_BACKEND]: If enable_font_backend is
19463 nonzero, register all available font drivers. Call
19464 x_default_font_parameter for deciding a font.
19465 (x_create_tip_frame) [USE_FONT_BACKEND]: Likewise.
19466
19467 * xterm.c [USE_FONT_BACKEND]: Include "font.h".
19468 (x_set_mouse_face_gc, x_set_glyph_string_clipping)
19469 (x_set_glyph_string_clipping_exactly)
19470 (x_compute_glyph_string_overhangs)
19471 (x_draw_glyph_string_foreground)
19472 (x_draw_composite_glyph_string_foreground, x_draw_glyph_string)
19473 (x_free_frame_resources) [USE_FONT_BACKEND]: If
19474 enable_font_backend is nonzero, use font-backend mechanism.
19475 (x_new_fontset2) [USE_FONT_BACKEND]: New function.
19476
19477 2008-02-01 Kenichi Handa <handa@m17n.org>
19478
19479 * coding.c (coding_inherit_eol_type): If PARENT is nil, inherit from
19480 system_eol_type.
19481 (syms_of_coding): Initialize system_eol_type.
19482
19483 * process.c (Fset_process_coding_system): Inherit system's eol
19484 format if necessary.
19485
19486 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19487
19488 * macgui.h (USE_ATSUI): Don't enable on emacs-unicode-2 branch.
19489
19490 2008-02-01 Kenichi Handa <handa@m17n.org>
19491
19492 * coding.c (decode_eol): Pay attention to buffer relocation in
19493 del_range_2.
19494 (decode_coding): Call decode_eol before restoring undo_list.
19495
19496 2008-02-01 Kenichi Handa <handa@m17n.org>
19497
19498 * charset.c (Fdefine_charset_internal): Fix setting of
19499 emacs_mule_bytes.
19500
19501 2008-02-01 Kenichi Handa <handa@m17n.org>
19502
19503 * keyboard.c (read_char): Check if C is a character or not before
19504 looking up Vkeyboard_translate_table.
19505
19506 2008-02-01 Kenichi Handa <handa@m17n.org>
19507
19508 * coding.c (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Fix
19509 condition to terminate the loop.
19510
19511 2008-02-01 Kenichi Handa <handa@m17n.org>
19512
19513 * coding.c (produce_composition): Compare charbuf[i] instead of
19514 args[i] against 0.
19515 (Fterminal_coding_system): Use EQ to compare Lisp objects.
19516
19517 2008-02-01 Kenichi Handa <handa@m17n.org>
19518
19519 * coding.c (DECODE_COMPOSITION_START): If the source is short, set
19520 coding->result to CODING_RESULT_INSUFFICIENT_SRC.
19521 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK after the call of
19522 detect_coding.
19523 (emacs_mule_char): Handle old style (Emacs 20) component character
19524 of a composition.
19525 (DECODE_EMACS_MULE_COMPOSITION_RULE_20)
19526 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Fix parsing a
19527 composition rule.
19528 (decode_coding_emacs_mule): Handle invalid bytes correctly.
19529
19530 2008-02-01 Kenichi Handa <handa@m17n.org>
19531
19532 * coding.c (encode_coding_ccl): Allocate destination dynamically
19533 when necessary.
19534
19535 2008-02-01 Kenichi Handa <handa@m17n.org>
19536
19537 * ccl.c (Fccl_execute_on_string): Fix the condition of terminating
19538 the loop. When quitted, show a proper error message.
19539
19540 2008-02-01 Kenichi Handa <handa@m17n.org>
19541
19542 * xterm.c (x_set_glyph_string_clipping_exactly): Set
19543 src->clip_head and src->clip_tail temporarily instead of src->hl.
19544
19545 * ccl.c (CCL_WRITE_STRING): Handle a flag bit for multibyte
19546 character sequence.
19547 (Fccl_execute_on_string): Use ASET, not XSET.
19548
19549 2008-02-01 Kenichi Handa <handa@m17n.org>
19550
19551 * search.c (search_buffer): Fix handling of "\\" in a trivial regexp.
19552
19553 2008-02-01 Kenichi Handa <handa@m17n.org>
19554
19555 * coding.c (decode_coding): Fix the condition of terminating the
19556 decoding loop.
19557
19558 2008-02-01 Kenichi Handa <handa@m17n.org>
19559
19560 * data.c (Faset): On setting a character bigger than 255 in a
19561 unibyte string, signal an error instead of make the string multibyte.
19562
19563 2008-02-01 Kenichi Handa <handa@m17n.org>
19564
19565 * charset.c (map_charset_chars): Fix for ascii-compatible charset
19566 made by a mapping table.
19567
19568 2008-02-01 Kenichi Handa <handa@m17n.org>
19569
19570 * xdisp.c (fill_composite_glyph_string): Check s->face is NULL or
19571 not.
19572 (BUILD_COMPOSITE_GLYPH_STRING): If C is TAB, set s->face to NULL.
19573 (x_produce_glyphs): If CH is TAB, set cmp->offsets properly.
19574
19575 * xterm.c (x_draw_composite_glyph_string_foreground): Check
19576 s->face is NULL or not.
19577
19578 2008-02-01 Kenichi Handa <handa@m17n.org>
19579
19580 * xterm.c (x_set_glyph_string_clipping_exactly): New function.
19581 (x_draw_glyph_string): Fix drawing of right_overhang and
19582 left_overhang around/on cursor.
19583
19584 * xdisp.c (draw_glyphs): Fix inclusion of right_overwriting glyphs.
19585
19586 2008-02-01 Kenichi Handa <handa@m17n.org>
19587
19588 * xdisp.c (x_produce_glyphs): Handle composition with TAB.
19589
19590 2008-02-01 Kenichi Handa <handa@m17n.org>
19591
19592 * coding.c (Fdefine_coding_system_internal)
19593 (Fdefine_coding_system_alias): Avoid a duplicated element in
19594 Vcoding_system_alist.
19595
19596 2008-02-01 Kenichi Handa <handa@m17n.org>
19597
19598 * xterm.c (handle_one_xevent): Handle keysyms 0x1000000..0x10000FF.
19599
19600 * coding.c (Qcoding_system_define_form): New variable.
19601 (syms_of_coding): Intern and staticpro it.
19602 (Fcoding_system_p): Check Qcoding_system_define_form.
19603 (Fcheck_coding_system): Try to autoload the definition of CODING-SYSTEM.
19604
19605 * coding.h (CODING_SYSTEM_P): If ID is not available, call
19606 Fcoding_system_p.
19607 (CHECK_CODING_SYSTEM): If ID is not available, call
19608 Fcheck_coding_system.
19609 (CHECK_CODING_SYSTEM_GET_SPEC, CHECK_CODING_SYSTEM_GET_ID):
19610 Try also Fcheck_coding_system.
19611
19612 2008-02-01 Kenichi Handa <handa@m17n.org>
19613
19614 * coding.c (code_conversion_restore): GCPRO arg.
19615
19616 2008-02-01 Kenichi Handa <handa@m17n.org>
19617
19618 * character.c (lisp_string_width): Check multibyteness of STRING.
19619
19620 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19621
19622 * macterm.c (mac_encode_char): Call ccl_driver with the last arg
19623 Qnil. Use JIS_TO_SJIS instead of ENCODE_SJIS.
19624 (decode_mac_font_name): Use decode_coding_c_string instead of
19625 decode_coding.
19626 (x_load_font): Initialize fontp->fontset to -1. Set
19627 fontp->encoding_type.
19628
19629 2008-02-01 Kenichi Handa <handa@m17n.org>
19630
19631 * search.c (search_buffer): Give up BM search on case-fold-search
19632 if one of a target character has a case-equivalence of different
19633 byte length even if that target charcter is an ASCII.
19634 (simple_search): Fix calculation of byte length of matched text.
19635 (boyer_moore): Fix handling of case-equivalent multibyte characters.
19636
19637 2008-02-01 Kenichi Handa <handa@m17n.org>
19638
19639 * coding.c (decode_coding): Fix handling of invalid bytes.
19640
19641 2008-02-01 Kenichi Handa <handa@m17n.org>
19642
19643 * xterm.c (handle_one_xevent): Handle keysyms directly mapped to
19644 Unicode characters.
19645
19646 2008-02-01 Kenichi Handa <handa@m17n.org>
19647
19648 * coding.c (encode_coding_object): If a pre-write-conversion
19649 function makes a new buffer, kill it.
19650
19651 2008-02-01 Kenichi Handa <handa@m17n.org>
19652
19653 * coding.c (QCascii_compatible_p): New variable.
19654 (syms_of_coding): Initialize it.
19655 (ONE_MORE_BYTE, ONE_MORE_BYTE_NO_CHECK): Decrement `src' before
19656 calling string_char.
19657 (record_conversion_result): Add `default:' case.
19658 (coding_charset_list): Delete unused variable `coding_type'.
19659 (Fdefine_coding_system_internal): Add `ascii-compatible-p'
19660 property in the plist of the coding system.
19661 (Fcoding_system_put): Check QCascii_compatible_p.
19662
19663 2008-02-01 Miles Bader <miles@gnu.org>
19664
19665 * xfaces.c (Finternal_lisp_face_equal_p): Restore previously
19666 removed calculation of frame `f', as it's now used.
19667
19668 2008-02-01 Kenichi Handa <handa@m17n.org>
19669
19670 * Makefile.in (RUN_TEMACS): Include "-nl" if HAVE_SHM is defined.
19671 (emacs${EXEEXT}): Run $(RUN_TEMACS) unconditionally.
19672 (UNIDATA): New variable.
19673 (${lispsource}international/charprop.el): Depends on ${UNIDATA}.
19674 (bootstrap-emacs${EXEEXT}): Depends on charprop.el. Run
19675 $(RUN_TEMACS) unconditionally.
19676
19677 2008-02-01 Kenichi Handa <handa@m17n.org>
19678
19679 * Makefile.in (temacs${EXEEXT}): Build charprop.el if necessary.
19680 (admindir): New variable.
19681 ($(lispsource)international/charprop.el): New target.
19682
19683 2008-02-01 Miles Bader <miles@gnu.org>
19684
19685 * character.c (chars-in-region): Remove obsolete function.
19686 (syms_of_character): Remove its initialization.
19687
19688 2008-02-01 Benjamin Riefenstahl <b.riefenstahl@turtle-trading.net>
19689
19690 * w32select.c (validate_coding_system)
19691 (setup_windows_coding_system): New functions.
19692 (convert_to_handle_as_coded, Fw32_get_clipboard_data): Use
19693 setup_windows_coding_system.
19694 (setup_config, Fw32_get_clipboard_data): Use
19695 validate_coding_system.
19696 (Fx_selection_exists): Move call to setup_config to a place
19697 where signals are allowed.
19698
19699 * lisp.h (Fcoding_system_base, Fcoding_system_eol_type)
19700 (Fcheck_coding_system): Add declarations.
19701
19702 2008-02-01 Kenichi Handa <handa@m17n.org>
19703
19704 * charset.c (load_charset_map_from_vector): Fix for the first iteration.
19705
19706 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19707
19708 * macfns.c (Fx_create_frame, x_create_tip_frame): Pass Lisp
19709 string as the second argument for x_new_fontset.
19710
19711 2008-02-01 Kenichi Handa <handa@m17n.org>
19712
19713 * coding.c (decode_coding_object): Use safe_call1 instead of call1.
19714 (encode_coding_object): Use safe_call instead of call2.
19715
19716 2008-02-01 Kenichi Handa <handa@m17n.org>
19717
19718 * fontset.c (Fset_fontset_font): Check family element of a given vector.
19719
19720 * Makefile.in (lisp): Include charprop.el.
19721
19722 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19723
19724 * macfns.c (Fx_create_frame, x_create_tip_frame): Fix crash.
19725 Not sure if it's unnecessary.
19726
19727 2008-02-01 Steven Tamm <steventamm@mac.com>
19728
19729 * macfns.c (Fx_create_frame, x_create_tip_frame): ifdef'd out
19730 some possibly unnecessary fontset checking code that crashed
19731 when creating a new frame.
19732
19733 2008-02-01 Kenichi Handa <handa@m17n.org>
19734
19735 * xfaces.c (merge_faces): Fix argument to lookup_derived_face and
19736 lookup_face.
19737
19738 * xdisp.c (Fformat_mode_line): Fix argument to lookup_named_face.
19739
19740 * fringe.c (draw_fringe_bitmap_1): Fix argument to lookup_named_face.
19741
19742 2008-02-01 Kenichi Handa <handa@m17n.org>
19743
19744 * coding.c: Cancel the change done in HEAD on 2008-02-01.
19745 (coding_charset_list): New function.
19746
19747 * coding.h (coding_charset_list): Extern it.
19748
19749 2008-02-01 Kenichi Handa <handa@m17n.org>
19750
19751 * fontset.c (Fset_fontset_font): Call find_font_encoding with
19752 concatenation of family and registry.
19753
19754 2008-02-01 Kenichi Handa <handa@m17n.org>
19755
19756 * character.h (BYTE8_STRING): Fix typo.
19757
19758 * editfns.c (Ftranslate_region_internal): Don't convert unibyte
19759 string to multibyte (sync to HEAD).
19760
19761 * casefiddle.c (casify_region): Handle changes in byte-length
19762 using replace_range_2 (sync to HEAD).
19763
19764 2008-02-01 Andreas Schwab <schwab@suse.de>
19765
19766 * chartab.c (map_char_table): GCPRO table and arg.
19767
19768 2008-02-01 Kenichi Handa <handa@m17n.org>
19769
19770 * syntax.c (skip_syntaxes): Return lispy 0 (not nil) if point is
19771 already at limit.
19772
19773 2008-02-01 Kenichi Handa <handa@m17n.org>
19774
19775 * fontset.c (fs_load_font): Use fast_string_match_ignore_case
19776 instead of fast_c_string_match_ignore_case.
19777 (find_font_encoding): Change argument to Lisp_Object. Use
19778 fast_string_match_ignore_case instead of
19779 fast_c_string_match_ignore_case. Change caller.
19780
19781 2008-02-01 Kenichi Handa <handa@m17n.org>
19782
19783 * xdisp.c (get_next_display_element): In unibyte case, decide to
19784 display in octal form by checking a character by
19785 UNIBYTE_CHAR_HAS_MULTIBYTE_P.
19786
19787 * charset.c (Fset_unibyte_charset): Setup unibyte_has_multibyte_table.
19788
19789 * character.c (unibyte_has_multibyte_table): New variable.
19790
19791 * character.h (unibyte_has_multibyte_table): Extern it.
19792 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): New macro.
19793
19794 2008-02-01 Kenichi Handa <handa@m17n.org>
19795
19796 * coding.c (encode_coding_iso_2022): Fix handling of charset
19797 annotation.
19798
19799 2008-02-01 Kenichi Handa <handa@m17n.org>
19800
19801 * coding.c (setup_coding_system): If coding_system is nil, use
19802 Qundecided.
19803 (Fterminal_coding_system): Return nil if terminal coding system is
19804 `undecided'.
19805 (syms_of_coding): Define coding-system `undecided' here. Setup
19806 terminal_coding as `undecided'.
19807
19808 2008-02-01 Kenichi Handa <handa@m17n.org>
19809
19810 * xdisp.c (message_dolog, set_message_1): Call
19811 unibyte_char_to_multibyte with arg type int.
19812
19813 * lread.c (read1): Fix reading of a char-table.
19814
19815 * print.c (print_object): Include sub char-table in circularities
19816 detection.
19817
19818 2008-02-01 Kenichi Handa <handa@m17n.org>
19819
19820 * keymap.c (where_is_internal_2): Fix for the case that KEY is a cons.
19821 Append the found sequences in car of ARGS instead of prepending.
19822
19823 2008-02-01 Kenichi Handa <handa@m17n.org>
19824
19825 * fileio.c (report_file_error): Make a unibyte string from
19826 strerror (errorno).
19827 (Fsubstitute_in_file_name): Fix the arg to
19828 unibyte_char_to_multibyte. It is evaluated twice.
19829
19830 2008-02-01 Kenichi Handa <handa@m17n.org>
19831
19832 * charset.h (CHAR_CHARSET): Shortcut for ASCII case.
19833
19834 2008-02-01 Kenichi Handa <handa@m17n.org>
19835
19836 * coding.c (detect_coding_utf_16): Don't set detect_info->found if
19837 BOM is not found.
19838 (detect_coding, detect_coding_system): Optimization for ISO-2022
19839 when no 8-bit data is found.
19840
19841 2008-02-01 Jason Rumney <jasonr@gnu.org>
19842
19843 * w32fns.c (x_to_w32_font): Update to use new coding struct.
19844
19845 2008-02-01 Kenichi Handa <handa@m17n.org>
19846
19847 * charset.c (Fdeclare_equiv_charset, Fiso_charset): Fix handing of
19848 CHARS.
19849
19850 2008-02-01 Steven Tamm <steventamm@mac.com>
19851
19852 * macterm.c (mac_encode_char): Add charset argument and update
19853 to use encoding_type.
19854 (x_new_font, x_new_fontset): Merge in changes from xterm.c;
19855 switch to pure fontset.
19856 (decode_mac_font_name): Temporarily remove decoding.
19857 (x_font_name_to_mac_font_name): Temporarily remove encoding.
19858 (x_load_font): Temporarily remove encoding.
19859
19860 2008-02-01 Kenichi Handa <handa@m17n.org>
19861
19862 * xfaces.c (Fface_font): If frame is not on a window system,
19863 ignore CHARACTER arg. If HAVE_WINDOW_SYSTEM is not defined, don't
19864 refer to face->font.
19865 (split_font_name_into_vector, build_font_name_from_vector)
19866 (lookup_non_ascii_face, realize_non_ascii_face): Define them only
19867 when HAVE_WINDOW_SYSTEM is defined.
19868
19869 2008-02-01 Kenichi Handa <handa@m17n.org>
19870
19871 * xdisp.c (BUILD_GLYPH_STRINGS): Check if s is NULL.
19872 (x_produce_glyphs): Fix setting of members of cmp in case
19873 cmp->glyph_len is zero.
19874
19875 * fontset.c (Fset_fontset_font): Fix docstring.
19876 (Ffontset_info): Make it backward compatible. New arg ALL.
19877
19878 2008-02-01 Kim F. Storm <storm@cua.dk>
19879
19880 * process.c (read_process_output): Grow decoding_buf when needed;
19881 this could cause a crash in allocate_string and compact_small_strings.
19882
19883 2008-02-01 Kenichi Handa <handa@m17n.org>
19884
19885 * fileio.c (WRITE_BUF_SIZE): Delete this macro.
19886
19887 2008-02-01 Kenichi Handa <handa@m17n.org>
19888
19889 * coding.c (setup_coding_system): Set coding->common_flags
19890 correctly for raw-text.
19891 (consume_chars): On encoding unibyte text by raw-text, don't check
19892 multibyte form.
19893 (encode_coding): On encoding by raw-text, never use translation tables.
19894
19895 * fileio.c (e_write): Short cut for the case of no encoding.
19896
19897 2008-02-01 Kenichi Handa <handa@m17n.org>
19898
19899 * coding.c (detect_coding, detect_coding_system): Delete unused
19900 variables.
19901
19902 2008-02-01 Kenichi Handa <handa@m17n.org>
19903
19904 * coding.c (encode_coding_utf_8): Fix handling of raw-byte char.
19905 (consume_chars): Fix handling of 8-bit bytes in unibyte source.
19906
19907 2008-02-01 Kenichi Handa <handa@m17n.org>
19908
19909 * coding.c (Ffind_coding_systems_region_internal): Include
19910 raw-text and no-conversion in the result.
19911
19912 2008-02-01 Kenichi Handa <handa@m17n.org>
19913
19914 * fontset.c (find_font_encoding): Return `ascii' for unknown encoding.
19915 (load_font_get_repertory): Delete unnecessary check of ENCODING of
19916 FONT_DEF.
19917 (font_def_arg, add_arg, from_arg, to_arg): New args.
19918 (set_fontset_font): Change argument.
19919 (Fset_fontset_font): Fix for the case that TARGET is a script
19920 name and charset name.
19921 (new_fontset_from_font_name): Fix argument to Fnew_fontset.
19922
19923 2008-02-01 Kenichi Handa <handa@m17n.org>
19924
19925 * fontset.c (fontset_font): Rename from fontset_face. Change return
19926 value.
19927 (face_suitable_for_char_p, face_for_char): Adjust for the change
19928 of fontset_font.
19929 (make_fontset_for_ascii_face): Fix setting of the fontset element
19930 for ASCII.
19931 (Finternal_char_font): Use fontset_font instead of FACE_FOR_CHAR
19932 to get a font name.
19933 (Ffontset_info): Adjust for the change of fontset_font.
19934
19935 * coding.c (emacs_mule_char): Check invalid code more rigidly.
19936
19937 * character.h (LEADING_CODE_LATIN_1_MIN)
19938 (LEADING_CODE_LATIN_1_MAX): Delete these macros.
19939
19940 2008-02-01 Kenichi Handa <handa@m17n.org>
19941
19942 * editfns.c (check_translation): New function.
19943 (Ftranslate_region_internal): Handle M:N mapping.
19944
19945 2008-02-01 Kenichi Handa <handa@m17n.org>
19946
19947 * xfaces.c (xlfd_point_size): Set font->numeric[XLFD_PIXEL_SIZE].
19948
19949 2008-02-01 Kenichi Handa <handa@m17n.org>
19950
19951 * coding.c (DECODE_DESIGNATION): Set chars_96 to -1 instead of
19952 goto invalid_code.
19953 (decode_coding_iso_2022): Fix handling of invalid designation.
19954
19955 * fileio.c (Finsert_file_contents): Be sure to call unbind_to
19956 after calling code_conversion_save.
19957
19958 2008-02-01 Kenichi Handa <handa@m17n.org>
19959
19960 * xdisp.c (handle_auto_composed_prop): Fix Lisp_Object/int mixup.
19961
19962 * print.c (print_prune_string_charset): Fix Lisp_Object/int mixup.
19963
19964 * fontset.c: Include "intervals.h".
19965 (fontset_face): Fix comparing of Lisp_Objects.
19966 (free_face_fontset, new_fontset_from_font_name): Fix
19967 Lisp_Object/int mixup.
19968
19969 * editfns.c (Ftranslate_region_internal): Fix Lisp_Object/int mixup.
19970
19971 * coding.c: Add many prototypes for static functions.
19972 (get_translation_table): Allow max_lookup to be NULL.
19973 (decode_coding, Ffind_coding_systems_region_internal)
19974 (Funencodable_char_position, Fcheck_coding_systems_region): Call
19975 get_translation_table with max_lookup NULL.
19976
19977 2008-02-01 Kenichi Handa <handa@m17n.org>
19978
19979 * coding.c (get_translation_table): Declare it as Lisp_Object.
19980 (LOOKUP_TRANSLATION_TABLE): New macro.
19981 (produce_chars, consume_chars): Use LOOKUP_TRANSLATION_TABLE
19982 instead of CHAR_TABLE_REF.
19983
19984 2008-02-01 Kenichi Handa <handa@m17n.org>
19985
19986 * coding.c (MAX_ANNOTATION_LENGTH): Adjust for the change of
19987 annotation data format.
19988 (ADD_ANNOTATION_DATA, ADD_COMPOSITION_DATA, ADD_CHARSET_DATA):
19989 Change arguments FROM and TO to single argument NCHARS. Change caller.
19990 (decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule)
19991 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
19992 (decode_coding_ccl, decode_coding_charset): Pay attention to
19993 coding->charbuf_used.
19994 (get_translation): New function.
19995 (produce_chars): New arguments translation_table and last_block.
19996 Translate characters here. Return number of carryover chars.
19997 Change caller.
19998 (produce_composition): New argument pos. Change caller.
19999 Adjust for the change of annotation data format.
20000 (produce_charset, produce_annotation): Likewise.
20001 (decode_coding, encode_coding): Don't call translate_chars.
20002 (consume_chars): New arg translation_table. Change caller.
20003 (translate_chars): Delete.
20004 (syms_of_coding): Make translation-table's number of extra slots 2.
20005
20006 2008-02-01 Kenichi Handa <handa@m17n.org>
20007
20008 * search.c (simple_search): Fix setting this_pos_byte in backward
20009 search.
20010
20011 * coding.c (detect_coding_emacs_mule): Fix counting of encoded
20012 byte sequence.
20013 (detect_coding_ccl): Fix setting of the variable valids.
20014
20015 2008-02-01 Kenichi Handa <handa@m17n.org>
20016
20017 * xterm.c (x_list_fonts): Fix the detection of an auto-scaled font.
20018
20019 * coding.c (decode_coding_utf_16): Fix handling of surrogate pair.
20020
20021 * editfns.c (Ftranslate_region_internal): Rename from
20022 Ftranslate_region. Accept a char-table in TABLE.
20023 (syms_of_editfns): Defsubr Stranslate_region_internal.
20024
20025 * xfaces.c (set_lface_from_font_name): If a font is specified for
20026 a frame, generate a fontset from the font.
20027 (build_scalable_font_name): If the scalable font is requested for
20028 a specific size, don't change that size.
20029 (try_font_list): Try a scalable font also in the case that a
20030 pattern string is specified.
20031
20032 2008-02-01 Kenichi Handa <handa@m17n.org>
20033
20034 * xfaces.c (Fface_font): New optional arg CHARACTER.
20035
20036 2008-02-01 Kenichi Handa <handa@m17n.org>
20037
20038 * charset.h (CHARSET_OFFSET): New macro.
20039
20040 2008-02-01 Kenichi Handa <handa@m17n.org>
20041
20042 * xterm.c (x_get_font_repertory): Fix for non-Unicode-bmp charset.
20043
20044 * fontset.c (fontset_face): Handle the case that repertory is a
20045 char-table.
20046 (find_font_encoding): Return nil for unknown encoding.
20047 (Fset_fontset_font): Ignore a font of unknown encoding.
20048
20049 2008-02-01 Kenichi Handa <handa@m17n.org>
20050
20051 * keymap.c (describe_vector): Handle default value of a char table.
20052
20053 * fontset.c (fontset_face): Handle fallback fonts correctly.
20054 (Ffontset_info): Return infomation about fallback fonts.
20055
20056 2008-02-01 Kenichi Handa <handa@m17n.org>
20057
20058 * fontset.c (FONTSET_DEFAULT): New macro.
20059 (FONTSET_ADD, fontset_add): Handle the case that range is nil.
20060 (Fset_fontset_font): Change the 2nd arg name to TARGET, and handle
20061 the case that it is nil.
20062 (dump_fontset): Call FONTSET_DEFAULT, not FONTSET_FALLBACK.
20063 (syms_of_fontset): Set char-table-extra-slots property of fontset to 9.
20064
20065 * charset.h (CHAR_CHARSET_P): Fix for the case that the method is
20066 subset or superset.
20067
20068 2008-02-01 Kenichi Handa <handa@m17n.org>
20069
20070 * emacs.c (main): Call init_charset after syms_of_XXX.
20071
20072 * charset.c (Vcharset_map_directory): Delete.
20073 (Vcharset_map_path): New variable.
20074 (load_charset_map_from_file): Use Vcharset_map_path instead.
20075 (init_charset): Initialize Vcharset_map_path.
20076 (syms_of_charset): Delete declaration of "charset-map-directory",
20077 add declaration of "charset-map-path".
20078
20079 2008-02-01 Kenichi Handa <handa@m17n.org>
20080
20081 * fns.c (string_char_to_byte, string_byte_to_char): Optimize for
20082 ASCII only string.
20083
20084 * fileio.c (Finsert_file_contents): Avoid detecting a code twice.
20085
20086 * coding.c (detect_coding_iso_2022): Fix handling of SS2 and SS3.
20087 (detect_coding, detect_coding_system): Treat '\0' as normal ASCII byte.
20088
20089 2008-02-01 Kenichi Handa <handa@m17n.org>
20090
20091 * coding.h (SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
20092
20093 * coding.c (QCmnemonic, QCdefalut_char)
20094 (QCdecode_translation_table, QCencode_translation_table)
20095 (QCpost_read_conversion, QCpre_write_conversion): New variables.
20096 (get_translation_table): Return a list of translation tables if
20097 necessary.
20098 (decode_coding): Call get_translation_table with ENCODEP 0.
20099 (char_encodable_p): If translation_table is non-nil, always call
20100 translate_char.
20101 (Fdefine_coding_system_internal): Accept list of translation
20102 tables as :encode-translation-table and :decode-translation-table.
20103 (Fcoding_system_put): New function.
20104 (syms_of_coding): Declare new symbols. Defsubr
20105 Scoding_system_put.
20106 (decode_coding_sjis, encode_coding_sjis): Handle 4th charset,
20107 typically JISX0212.
20108
20109 * charset.c (map_charset_chars): Fix arg to map_charset_chars in
20110 when the charset is superset type.
20111
20112 * character.c (translate_char): Accept list of translation tables.
20113
20114 2008-02-01 Kenichi Handa <handa@m17n.org>
20115
20116 * coding.h (enum coding_attr_index): New member coding_attr_trans_tbl.
20117 (CODING_ATTR_TRANS_TBL): New macro.
20118
20119 * coding.c (get_translation_table): New function.
20120 (translate_chars): Fix the bug of skipping annotation data.
20121 (decode_coding, encode_coding): Utilize get_translation_table.
20122 (char_encodable_p, Funencodable_char_position): Translate char if
20123 necessary.
20124 (Ffind_coding_systems_region_internal)
20125 (Fcheck_coding_systems_region): Setup translation table for encode
20126 in a coding system attribute vector in advance.
20127 (Fdefine_coding_system_internal): Allow a symbol as translation
20128 table. For shift-jis type coding system, allow 4th charset.
20129
20130 2008-02-01 Kenichi Handa <handa@m17n.org>
20131
20132 * coding.c (decode_coding_sjis): Check the first byte rigidly.
20133
20134 * xdisp.c (get_next_display_element): Pass -1 as POS to
20135 FACE_FOR_CHAR if displaying a C-string.
20136
20137 2008-02-01 Kenichi Handa <handa@m17n.org>
20138
20139 * composite.c (get_composition_id): Handle xoff and yoff in a
20140 composition rule.
20141
20142 * composite.h (COMPOSITION_DECODE_RULE): New arg xoff and yoff.
20143 (struct composition): New member lbearing and rbearing.
20144
20145 * xdisp.c (move_it_to): Optimize for the case (op & MOVE_TO_Y).
20146 (x_get_glyph_overhangs): Handle a composition glyph.
20147 (x_produce_glyphs): Setup lbearing and rbreaing for a composition glyph.
20148
20149 * xterm.c (x_compute_glyph_string_overhangs): Handle also a
20150 composition glyph.
20151
20152 2008-02-01 Kenichi Handa <handa@m17n.org>
20153
20154 * print.c: Include charset.h.
20155 (Vprint_charset_text_property): New variable.
20156 (Qdefault): Extern it.
20157 (PRINT_STRING_NON_CHARSET_FOUND)
20158 (PRINT_STRING_UNSAFE_CHARSET_FOUND): New macros.
20159 (print_check_string_result): New variable.
20160 (print_check_string_charset_prop): New function.
20161 (print_prune_charset_plist): New variable.
20162 (print_prune_string_charset): New function.
20163 (print_object): Call print_prune_string_charset if
20164 Vprint_charset_text_property is not t.
20165 (print_interval): Print nothing if interval->plist is nil.
20166 (syms_of_print): Declare Vprint_charset_text_property as a lisp
20167 variable. Init and staticpro print_prune_charset_plist.
20168
20169 2008-02-01 Kenichi Handa <handa@m17n.org>
20170
20171 * fontset.c (new_fontset_from_font_name): Use the specified font
20172 for all characters in the new fontset.
20173
20174 * macterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
20175 OBJECT args.
20176
20177 * xdisp.c (x_produce_glyphs): Call FACE_FOR_CHAR with POS and
20178 OBJECT args for composition too.
20179
20180 * w32term.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
20181 OBJECT args.
20182
20183 2008-02-01 Kenichi Handa <handa@m17n.org>
20184
20185 * dispextern.h (FACE_FOR_CHAR): New args POS and OBJECT.
20186
20187 * fontset.c (reorder_font_vector): Adjust for the change of
20188 FONT_DEF format.
20189 (fontset_face): New arg id. Change caller.
20190 (face_for_char): New args pos and object.
20191 (make_fontset_for_ascii_face): Adjust for the change of FONT_DEF format.
20192 (fs_query_fontset): Check NAME by Fassoc too.
20193 (Fset_fontset_font): Allow non-XLFD font name.
20194 (Ffontset_info): Adjust for the change of FONT_DEF format.
20195
20196 * fontset.h (face_for_char): Adjust prototype.
20197
20198 * xdisp.c (face_before_or_after_it_pos, get_next_display_element)
20199 (append_space, extend_face_to_end_of_line)
20200 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
20201 (x_produce_glyphs): Call FACE_FOR_CHAR with POS and OBJECT args.
20202
20203 * xfaces.c (compute_char_face): Call FACE_FOR_CHAR with
20204 POS and OBJECT args.
20205
20206 * xterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with
20207 POS and OBJECT args.
20208
20209 2008-02-01 Jason Rumney <jasonr@gnu.org>
20210
20211 * w32select.c (Fw32_set_clipboard_data): Avoid potential realloc
20212 of GlobalAlloc'ed memory.
20213
20214 2008-02-01 Kenichi Handa <handa@m17n.org>
20215
20216 * ccl.c (Fccl_execute_on_string): Fix the condition of loop.
20217
20218 * charset.h (charset_table_used): Delete extern.
20219
20220 * charset.c (charset_table_used): Make it static.
20221 (map_charset_chars): Fix args to c_function with.
20222
20223 * chartab.c (map_sub_char_table_for_charset): Fix args to
20224 c_function with.
20225
20226 * coding.h (enum coding_result_code): Delete
20227 CODING_RESULT_INSUFFICIENT_CMP, add CODING_RESULT_INVALID_SRC.
20228
20229 * coding.c (Qinsufficient_source, Qinconsistent_eol)
20230 (Qinvalid_source, Qinterrupted, Qinsufficient_memory): New variables.
20231 (Vlast_code_conversion_error): New variables.
20232 (syms_of_coding): DEFSYM or DEFVAR_LISP them.
20233 (ONE_MORE_BYTE): Record error if any instead of signaling an
20234 error. If non-ASCII multibyte char is found, return the negative
20235 value of the code. All callers changed to check it.
20236 (ONE_MORE_BYTE_NO_CHECK): Likewise.
20237 (record_conversion_result): New function. Change all codes setting
20238 coding->result to call this function.
20239 (detect_coding_utf_8, decode_coding_utf_8)
20240 (detect_coding_emacs_mule, detect_coding_sji, detect_coding_big5):
20241 Don't use the local variable incomplete.
20242 (emacs_mule_char): Change the second arg to `const'.
20243 (decode_coding): Fix of flushing out unprocessed data.
20244 (make_conversion_work_buffer): Fix making of a work buffer.
20245 (decode_coding_object): Return coding->dst_object.
20246
20247 * fontset.c (set_fontset_font): Fix args.
20248
20249 * lisp.h (CHARACTERBITS): Define as 22.
20250
20251 * process.c (send_process): Be sure to set coding->src_multibyte.
20252
20253 * xdisp.c (handle_auto_composed_prop): Fix setting of limit.
20254
20255 2008-02-01 Kenichi Handa <handa@m17n.org>
20256
20257 * xdisp.c (handle_auto_composed_prop): Give limit to
20258 Fnext_single_char_property_change.
20259
20260 2008-02-01 Kenichi Handa <handa@m17n.org>
20261
20262 * composite.c (syms_of_composite): Don't make the composition hash
20263 table weak.
20264
20265 * fontset.c (Fset_fontset_font): Fix docstring.
20266
20267 * lisp.h (detect_coding_system): Adjust prototype.
20268
20269 * fileio.c (kill_workbuf_unwind): Delete this function.
20270 (Finsert_file_contents): Adjust the call of detect_coding_system.
20271 Get conversion_buffer by code_conversion_save. Use the macro
20272 CODING_MAY_REQUIRE_DECODING. After decoding, update
20273 coding_system.
20274
20275 * coding.h (make_conversion_work_buffer): Delete extern.
20276 (code_conversion_save): Extern it.
20277
20278 * coding.c (enum iso_code_class_type): Delete ISO_carriage_return.
20279 (CODING_GET_INFO): Delete argument eol_type. Change callers.
20280 (decode_coding_utf_8): Don't do eol converion.
20281 (detect_coding_utf_16): Check coding->src_chars, not
20282 coding->src_bytes. Add heuristics for those that have no signature.
20283 (decode_coding_emacs_mule, decode_coding_iso_2022)
20284 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
20285 Don't do eol converion.
20286 (adjust_coding_eol_type): Return a new coding system.
20287 (detect_coding): Don't detect eol. Fix for utf-16 detection.
20288 (decode_eol): In case of CRLF->LF conversion, use del_range_2 on
20289 each change.
20290 (decode_coding): Pay attention to undo_list. Do eol conversion for
20291 all types of coding-systems (if necessary).
20292 (Vcode_conversion_work_buf_list): Delete it.
20293 (Vcode_conversion_reused_workbuf): Rename from
20294 Vcode_conversion_reused_work_buf.
20295 (Vcode_conversion_workbuf_name): New variable.
20296 (reused_workbuf_in_use): New variable.
20297 (make_conversion_work_buffer): Delete the arg DEPTH.
20298 (code_conversion_restore): Change argument to cons.
20299 (code_conversion_save): Delete the argument BUFFER. Change callers.
20300 (detect_coding_system): New argument src_chars. Change callers.
20301 Fix for utf-16 detection.
20302 (init_coding_once): Don't use ISO_carriage_return.
20303 (syms_of_coding): Initialize Vcode_conversion_workbuf_name and
20304 reused_workbuf_in_use.
20305
20306 2008-02-01 Kenichi Handa <handa@m17n.org>
20307
20308 * keymap.c (store_in_keymap): Pay attention to the case that idx
20309 is a cons specifying a character range.
20310
20311 2008-02-01 Kenichi Handa <handa@m17n.org>
20312
20313 * xdisp.c (handle_auto_composed_prop): Fix the case of returning
20314 HANDLED_RECOMPUTE_PROPS.
20315
20316 * coding.c (Fdefine_coding_system_internal): Fix checking of
20317 ascii compatibility.
20318
20319 2008-02-01 Kenichi Handa <handa@m17n.org>
20320
20321 * charset.c (find_charsets_in_text): Delete unused locale variable.
20322 (Fset_charset_priority): Update Vemacs_mule_charset_list too.
20323
20324 * coding.c (encode_coding_emacs_mule): Emit bytes with MSB.
20325 Resync charset_list to Vemacs_mule_charset_list.
20326
20327 * keymap.c (store_in_keymap): Pay attention to the case that idx
20328 is a cons specifying a character range.
20329
20330 2008-02-01 Kenichi Handa <handa@m17n.org>
20331
20332 * composite.c (update_compositions): Bind inhibit-read-only, etc
20333 to t before calling remove-list-of-text-properties.
20334
20335 * print.c (print_object): Always print ASCII chars as is.
20336
20337 2008-02-01 Kenichi Handa <handa@m17n.org>
20338
20339 * keymap.c (Fdefine_key): Fix handling of Lucid style event type list.
20340
20341 * fns.c (Fmapconcat, Fmapcar, Fmapc): Signal an error if SEQUENCE
20342 is a char table.
20343
20344 2008-02-01 Kenichi Handa <handa@m17n.org>
20345
20346 * syntax.c (skip_chars): Be sure to alloca char_ranges when necessary.
20347
20348 2008-02-01 Kenichi Handa <handa@m17n.org>
20349
20350 * xfaces.c (set_lface_from_font_name): Fix for the case that
20351 FONTNAME is not fontset name.
20352
20353 2008-02-01 Kenichi Handa <handa@m17n.org>
20354
20355 * fns.c (base64_encode_1): Fix previous change.
20356
20357 2008-02-01 Kenichi Handa <handa@m17n.org>
20358
20359 * fontset.c (set_fontset_font): New function.
20360 (Fset_fontset_font): If a font is specified for a charset, use
20361 map_charset_chars to store the font spec in a fontset.
20362
20363 2008-02-01 Kenichi Handa <handa@m17n.org>
20364
20365 * fontset.c (fontset_face): Create a fallback fontset on demand.
20366 (make_fontset): Don't create a fallback fontset here.
20367 (free_face_fontset): Free a fallback fontset (if any) too.
20368 (n_auto_fontsets): Delete this variable.
20369 (auto_fontset_alist): New variable.
20370 (new_fontset_from_font_name): Check auto_fontset_alist.
20371 (dump_fontset) [FONTSET_DEBUG]: Fully re-written.
20372 (Ffontset_list_all) [FONTSET_DEBUG]: New function.
20373 (syms_of_fontset): Initialize and staticpro auto_fontset_alist.
20374 Defsubr Sfontset_list_all.
20375
20376 2008-02-01 Kenichi Handa <handa@m17n.org>
20377
20378 * xterm.c (x_list_fonts): Fix excluding of auto-scaled fonts.
20379
20380 2008-02-01 Kenichi Handa <handa@m17n.org>
20381
20382 * fontset.c (Fnew_fontset): Check NAME more rigidly.
20383
20384 2008-02-01 Kenichi Handa <handa@m17n.org>
20385
20386 * editfns.c (Fgoto_char): Fix docstring.
20387
20388 2008-02-01 Kenichi Handa <handa@m17n.org>
20389
20390 * insdel.c (insert_from_gap): Adjust intervals correctly.
20391
20392 2008-02-01 Jason Rumney <jasonr@gnu.org>
20393
20394 * w32term.c (GLYPHSET, WCRANGE): Define if system headers don't.
20395 (pfnGetFontUnicodeRanges): New dynamically loaded function.
20396 (w32_initialize): Try to load it.
20397 (x_get_font_repertory): Use it if available.
20398 (w32_encode_char): Add shortcut for unicode output.
20399
20400 * w32fns.c (w32_load_system_font): Default charset to -1.
20401 (x_to_w32_charset): Match all fonts for unicode.
20402 (w32_to_x_charset): New parameter matching. Don't return partial
20403 or wildcard charsets.
20404 (w32_to_all_x_charsets): Don't return partial or wildcard charsets.
20405 (w32_codepage_for_font): Return CP_UNICODE for unicode.
20406 (w32_to_x_font): Match charset to real charset.
20407 (enum_font_cb2): Always list unicode versions.
20408
20409 * makefile.w32-in (temacs): Increase EMHEAP.
20410
20411 2008-02-01 Jason Rumney <jasonr@gnu.org>
20412
20413 * w32term.c (w32_encode_char): New charset parameter.
20414 font_info.encoding becomes encoding_type.
20415 (x_get_font_repertory): New function. Warning: stub only!
20416 (x_new_font): Return quickly if font already set.
20417 (x_new_fontset): fontsetname parameter is Lisp_Object.
20418 Use new fs_query_fontset. Try new_fontset_from_font_name.
20419 Use fontset_name for return value.
20420
20421 * w32term.h: Declare x_get_font_repertory.
20422
20423 * w32select.c (Fw32_set_clipboard_data): Use string_x_string_p in
20424 place of find_charset_in_text. Use encode_coding_object in place
20425 of encode_coding.
20426 (Fw32_get_clipboard_data): Use decode_coding_c_string in place of
20427 decode_coding.
20428
20429 * w32fns.c (Fx_create_frame, x_create_tip_frame): Use new version
20430 of x_new_fontset.
20431 (w32_load_system_font): Initialize charset as unicode.
20432 font_info.encoding becomes encoding_type.
20433 (w32_to_x_font): Use decode_coding_c_string in place of decode_coding.
20434 (x_to_w32_font): Use encode_coding_object in place of encode_coding.
20435 (syms_of_w32fns): Set get_font_repertory_func.
20436
20437 * w32console.c: Include character.h. Use terminal_encode_buffer
20438 from term.c.
20439 (write_glyphs): Use new version of encode_terminal_code. Use
20440 encode_coding_object in place of encode_coding.
20441
20442 * w32bdf.c (w32_load_bdf_font): Clear font_info before filling.
20443 encoding becomes encoding_type.
20444
20445 * term.c (terminal_encode_buffer): Make externally visible.
20446
20447 * makefile.w32-in: Add character.h dependancies.
20448 (character.o, chartab.o): New targets.
20449
20450 2008-02-01 Kenichi Handa <handa@m17n.org>
20451
20452 * fileio.c (Finsert_file_contents) [DOS_NT]: Use the macro
20453 CODING_ID_EOL_TYPE.
20454
20455 2008-02-01 Andreas Schwab <schwab@suse.de>
20456
20457 * coding.c (produce_chars): Revert last change.
20458
20459 2008-02-01 Kenichi Handa <handa@m17n.org>
20460
20461 * charset.h (charset_unicode): Extern it.
20462
20463 * charset.c (string_xstring_p): Check by (C >= 0x100).
20464 (find_charsets_in_text): Change format of the arc CHARSETS. New
20465 arg MULTIBYTE.
20466 (Ffind_charset_region, Ffind_charset_string): Adjust for the
20467 change of find_charsets_in_text.
20468 (Fsplit_char): Fix doc. Never return unknown.
20469
20470 * chartab.c (char_table_translate): Use CHARACTERP, not INTEGERP.
20471
20472 * coding.c (Fdefine_coding_system_alias): Update
20473 Vcoding_system_list.
20474
20475 * fontset.c (load_font_get_repertory): Pay attention to the case
20476 that ENCODING of a font is specified by a char-table.
20477
20478 * xterm.c (x_get_font_repertory): Handle the case that the
20479 encoding of font is other than Unicode.
20480
20481 2008-02-01 Kenichi Handa <handa@m17n.org>
20482
20483 * term.c (encode_terminal_code): Don't handle glyph-table. Check
20484 if a character is encodable by the terminal coding system. If
20485 not, produces proper number of `?'s. Update
20486 terminal_encode_buffer and terminal_encode_buf_size if necessary.
20487 (produce_glyphs): Check by CHAR_BYTE8_P, not SINGLE_BYTE_CHAR_P.
20488
20489 2008-02-01 Kenichi Handa <handa@m17n.org>
20490
20491 * term.c (terminal_encode_buffer, terminal_encode_buf_size): New
20492 variables.
20493 (encode_terminal_code): Change argument. Encode multiple
20494 characters at once. Store the result of encoding in
20495 terminal_encode_buffer.
20496 (write_glyphs, insert_glyphs): Adjust for the change of
20497 encode_terminal_code.
20498 (term_init): Initialize terminal_encode_buffer and
20499 terminal_encode_buf_size.
20500
20501 * coding.c (consume_chars): If coding->src_object is nil, don't
20502 check annotation.
20503
20504 2008-02-01 Kenichi Handa <handa@m17n.org>
20505
20506 * character.c (char_string): Use ASCII_CHAR_P instead of
20507 SINGLE_BYTE_CHAR_P.
20508
20509 2008-02-01 Kenichi Handa <handa@m17n.org>
20510
20511 * xdisp.c (handle_auto_composed_prop): Check if the last
20512 characters of auto-composed region is newly composed with the
20513 following characters.
20514 (handle_composition_prop): Fix checking of point being inside
20515 composition.
20516
20517 2008-02-01 Kenichi Handa <handa@m17n.org>
20518
20519 * fns.c (concat): Don't change multibyteness of the result by
20520 concatenating an 8-bit character.
20521
20522 * data.c (Faset): Check newelt by CHECK_CHARACTER. Don't change
20523 multibyteness of the result when newelt is an 8-bit character.
20524
20525 2008-02-01 Dave Love <fx@gnu.org>
20526
20527 * xmenu.c (find_and_call_menu_selection): Make menu_bar_items_used
20528 EMACS_INT.
20529
20530 * xfns.c (DefaultDepthOfScreen, x_encode_text): Remove unused vars.
20531
20532 * xfaces.c (face_numeric_value): Declare dim size_t.
20533 (Finternal_lisp_face_equal_p): Remove unused f.
20534
20535 * xdisp.c (BUILD_CHAR_GLYPH_STRINGS, display_and_set_cursor)
20536 (MATRIX_ROW): Remove unused vars.
20537 (draw_glyphs, x_insert_glyphs, fast_find_position)
20538 (fast_find_position, fast_find_string_pos): Use EMACS_INT for
20539 byte/char counts.
20540
20541 * regex.c (regex_compile): Remove unused var.
20542
20543 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
20544
20545 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap)
20546 (Faccessible_keymaps, where_is_internal): Remove unused vars.
20547
20548 * keyboard.c (cancel_hourglass_unwind): Return Qnil.
20549
20550 * frame.c (frame_name_fnn_p): Make len EMACS_INT.
20551
20552 * fileio.c (Fwrite_region): Remove unused var.
20553
20554 * dispnew.c (adjust_frame_glyphs_for_frame_redisplay)
20555 (adjust_frame_glyphs_for_window_redisplay): Remove unused ch_dim.
20556
20557 * composite.c (Fremove_list_of_text_properties): Declare.
20558
20559 * coding.c (inhibit_pre_post_conversion): Remove (unused).
20560 (alloc_destination, produce_chars): Use EMACS_INT for byte/char counts.
20561 (coding_inherit_eol_type): Remove unused attrs.
20562 (detect_coding): Cast arg of detect_eol.
20563
20564 * charset.c (syms_of_charset): Remove unused var p.
20565 (find_charsets_in_text, Ffind_charset_region): Use EMACS_INT for
20566 byte/char counts.
20567
20568 * casetab.c (set_case_table): Remove unused var.
20569
20570 * window.c (Fdisplay_buffer, Fframe_selected_window): Remove
20571 unused vars.
20572
20573 2008-02-01 Dave Love <fx@gnu.org>
20574
20575 * xterm.c (x_bitmap_mask): Declare.
20576
20577 2008-02-01 Dave Love <fx@gnu.org>
20578
20579 * xterm.c (x_term_init): Fix type error.
20580
20581 * lisp.h: Add Funibyte_char_to_multibyte.
20582
20583 * coding.c (Fread_coding_system): Fix arg of XSETSTRING.
20584 (Fset_coding_system_priority): Doc fix.
20585
20586 * ccl.c (ccl_driver): Fix arg of CHARACTERP.
20587
20588 * indent.c (check_composition): Make start and end EMACS_INT.
20589
20590 * character.c (lisp_string_width): Make ignore and end EMACS_INT.
20591
20592 * xdisp.c (handle_composition_prop, check_point_in_composition):
20593 Make buffer positions EMACS_INT.
20594
20595 * composite.c (find_composition, run_composition_function)
20596 (update_compositions, Ffind_composition_internal): Make buffer
20597 positions EMACS_INT.
20598
20599 * composite.h (find_composition, update_compositions): Make
20600 position args EMACS_INT.
20601
20602 * keyboard.c (adjust_point_for_property): Make beg and end EMACS_INT.
20603
20604 * intervals.c (get_property_and_range):
20605 * intervals.h (get_property_and_range): Make start and end EMACS_INT.
20606
20607 * unexalpha.c: Don't include varargs.h.
20608
20609 2008-02-01 Dave Love <fx@gnu.org>
20610
20611 * coding.h (ENCODE_UTF_8): New.
20612
20613 * Makefile.in (gtkutil.o): Depend on coding.h.
20614
20615 * coding.c (Fset_coding_system_priority): Doc fix.
20616
20617 2008-02-01 Kenichi Handa <handa@m17n.org>
20618
20619 * fileio.c (Finsert_file_contents): Call setup_coding_system in
20620 the case of auto saving.
20621
20622 2008-02-01 Andreas Schwab <schwab@suse.de>
20623
20624 * chartab.c (map_char_table, map_char_table_for_charset): Protect
20625 `range' from GC.
20626
20627 2008-02-01 Kenichi Handa <handa@m17n.org>
20628
20629 * coding.c (decode_coding_sjis): Check bytes more rigidly.
20630
20631 2008-02-01 Kenichi Handa <handa@m17n.org>
20632
20633 * fileio.c (choose_write_coding_system): Return a decided coding system.
20634 (Fwrite_region): Set Vlast_coding_system_used to the return value
20635 of choose_write_coding_system.
20636
20637 2008-02-01 Kenichi Handa <handa@m17n.org>
20638
20639 * charset.c (Fset_charset_priority): Pay attention to duplicated
20640 arguments.
20641
20642 * coding.c (QCcategory): New variable.
20643 (syms_of_coding): Defsym it. Set all elements of
20644 Vcoding_category_table and their symbol values.
20645 (Fset_coding_system_priority): Doc fix. Update symbol qvalues of
20646 coding-category-XXX, and coding-category-list.
20647 (Fdefine_coding_system_internal): Add category in the plist.
20648
20649 2008-02-01 Kenichi Handa <handa@m17n.org>
20650
20651 * callproc.c (Fcall_process): Handle carryover correctly.
20652
20653 * coding.c (decode_coding_iso_2022): Fix handling of invalid bytes.
20654 (raw_text_coding_system): Check NILP (coding_system).
20655 (coding_inherit_eol_type): Check NILP (coding_system) and
20656 NILP (parent).
20657 (consume_chars): Fix for the case of raw-text.
20658
20659 * process.c (read_process_output): Handle carryover correctly.
20660
20661 2008-02-01 Dave Love <fx@gnu.org>
20662
20663 * regex.c (re_search_2): Fix last change.
20664
20665 2008-02-01 Kenichi Handa <handa@m17n.org>
20666
20667 * regex.c (GET_CHAR_BEFORE_2): Check multibyte, not
20668 target_multibyte. Even in a unibyte case, return a converted
20669 multibyte char.
20670 (GET_CHAR_AFTER): New macro.
20671 (PATFETCH): Translate via multibyte char.
20672 (HANDLE_UNIBYTE_RANGE): Delete this macro.
20673 (SETUP_MULTIBYTE_RANGE): New macro.
20674 (regex_compile): Setup compiled code so that its multibyteness
20675 matches that of a target. Fix the handling of "[X-YZ]" using
20676 SETUP_MULTIBYTE_RANGE.
20677 (analyse_first) <charset>: For filling fastmap for all multibyte
20678 characters, don't check by BASE_LEADING_CODE_P.
20679 (re_search_2): Don't check RE_TARGET_MULTIBYTE_P (bufp). It is
20680 the same as RE_MULTIBYTE_P (bufp) now.
20681 (mutually_exclusive_p): Check by (! multibyte || IS_REAL_ASCII (c)).
20682 (TARGET_CHAR_AND_LENGTH): Delete this macro.
20683 (TRANSLATE_VIA_MULTIBYTE): New macro.
20684 (re_match_2_internal): Don't check RE_TARGET_MULTIBYTE_P (bufp).
20685 It is the same as RE_MULTIBYTE_P (bufp) now.
20686 <exactn>: Translate via multibyte.
20687 <anychar>: Fetch a character by RE_STRING_CHAR_AND_LENGTH. Don't
20688 translate it.
20689 <charset, charset_not>: Fetch a character by
20690 RE_STRING_CHAR_AND_LENGTH. Translate via multibyte.
20691 <duplicate>: Call bcmp_translate with the last arg `multibyte'.
20692 <wordbound, notwordbound, wordbeg, wordend, syntaxspec,
20693 notsyntaxspec, categoryspec, notcategoryspec> Fetch a character
20694 by GET_CHAR_AFTER.
20695 (bcmp_translate): Likewise.
20696
20697 * search.c (compile_pattern): Check the member target_multibyte,
20698 not the member multibyte of buf.
20699
20700 * lread.c (read1): While reading a string, set force_singlebyte
20701 and force_multibyte correctly.
20702
20703 * charset.c (Fset_unibyte_charset, init_charset_once): Fix setting
20704 up of unibyte_to_multibyte_table.
20705
20706 2008-02-01 Kenichi Handa <handa@m17n.org>
20707
20708 * coding.c (setup_coding_system): If coding has
20709 post-read-conversion or pre-write-conversion, set
20710 CODING_REQUIRE_DECODING_MASK and CODING_REQUIRE_ENCODING_MASK
20711 respectively.
20712 (decode_coding_gap): Run post-read-conversion if any.
20713
20714 * fileio.c (Finsert_file_contents): Even if we read into a
20715 unibyte buffer, check if we must decode the result or not.
20716
20717 2008-02-01 Kenichi Handa <handa@m17n.org>
20718
20719 * coding.c (make_conversion_work_buffer): Change the work buffer
20720 name to the same one as that of Emacs 21.
20721
20722 2008-02-01 Kenichi Handa <handa@m17n.org>
20723
20724 * coding.h (make_conversion_work_buffer): Adjust prototype.
20725 (code_conversion_restore): Don't extern it.
20726
20727 * coding.c (detected_mask): Delete unused variable.
20728 (decode_coding_iso_2022): Pay attention to the byte sequence of
20729 CTEXT extended segment, and retain those bytes as is.
20730 (decode_coding_ccl): Delete unused variable `valids'.
20731 (setup_coding_system): Delete unused variable `category'.
20732 (consume_chars): Delete unused variable `category'. Make it work
20733 for non-multibyte case.
20734 (make_conversion_work_buffer): Change argument.
20735 (saved_coding): Delete unused variable.
20736 (code_conversion_restore): Don't check saved_coding->destination.
20737 (code_conversion_save): New function.
20738 (decode_coding_gap, encode_coding_gap): Call code_conversion_save
20739 instead of record_unwind_protect.
20740 (decode_coding_object, encode_coding_object): Likewise. Recover PT.
20741 (detect_coding_system): Delete unused variable `mask'.
20742 (Fdefine_coding_system_internal): Delete unused variable id.
20743
20744 * fileio.c (kill_workbuf_unwind): New function.
20745 (Finsert_file_contents): On replacing, call
20746 make_conversion_work_buffer with correct args, and call
20747 record_unwind_protect with the first arg kill_workbuf_unwind.
20748
20749 * lisp.h (Fgenerate_new_buffer_name): EXFUN it.
20750
20751 2008-02-01 Kenichi Handa <handa@m17n.org>
20752
20753 * fontset.c (BASE_FONTSET_P): Check FONTSET_BASE, not FONTSET_NAME.
20754 (fontset_add): Fix for the case that TO is less than TO1.
20755 (Ffontset_info): Don't use fallback fontset on checking the
20756 default fontset.
20757 (dump_fontset): New function for debugging.
20758
20759 * coding.c (Fdefine_coding_system_internal): Fix for the case that
20760 coding_type is Qcharset.
20761
20762 2008-02-01 Kenichi Handa <handa@m17n.org>
20763
20764 * chartab.c (map_sub_char_table): New argument DEFAULT_VAL.
20765 (map_char_table): Don't inherit the value from the parent on
20766 initializing VAL. Adjust for the above change.
20767
20768 2008-02-01 Kenichi Handa <handa@m17n.org>
20769
20770 * coding.c (Qsignature, Qendian): Delete these variables.
20771 (syms_of_coding): Don't initialize them.
20772 (CATEGORY_MASK_UTF_16_AUTO): New macro.
20773 (detect_coding_utf_16): Add CATEGORY_MASK_UTF_16_AUTO in
20774 detect_info->found.
20775 (decode_coding_utf_16): Don't detect BOM here.
20776 (encode_coding_utf_16): Produce BOM if CODING_UTF_16_BOM (coding)
20777 is NOT utf_16_without_bom.
20778 (setup_coding_system): For a coding system of type utf-16, check
20779 if the attribute :endian is Qbig or not (not nil or not), and set
20780 CODING_REQUIRE_DETECTION_MASK if BOM detection is required.
20781 (detect_coding): If coding type is utf-16 and BOM detection is
20782 required, detect it.
20783 (Fdefine_coding_system_internal): For a coding system of type
20784 utf-16, check if the attribute :endian is Qbig or not (not nil or not).
20785
20786 2008-02-01 Kenichi Handa <handa@m17n.org>
20787
20788 * coding.c (coding_set_source): Fix for the case that the current
20789 buffer is different from coding->src_object.
20790 (decode_coding_object): Don't use the conversion work buffer if
20791 DST_OBJECT is a buffer.
20792
20793 2008-02-01 Dave Love <fx@gnu.org>
20794
20795 * lread.c (read_emacs_mule_char) [len==2]: Index
20796 emacs_mule_charset correctly.
20797
20798 2008-02-01 Dave Love <fx@gnu.org>
20799
20800 * coding.c (Qbig5, Vbig5_coding_system, CATEGORY_MASK_BIG5)
20801 (detect_coding_big5, decode_coding_big5, encode_coding_big5)
20802 (Fdecode_big5_char, Fencode_big5_char): Delete. (Big5 no longer
20803 treated specially.)
20804 (setup_coding_system, coding_category, CATEGORY_MASK_ANY)
20805 (detected_mask): Remove Big5 bits.
20806
20807 2008-02-01 Kenichi Handa <handa@m17n.org>
20808
20809 The following changes are to make the font rescaling facility
20810 compatible with Emacs 21.
20811
20812 * xfaces.c (Vface_font_rescale_alist): Rename from
20813 Vface_resizing_fonts.
20814 (struct font_name): Rename member resizing_ratio to rescale_ratio.
20815 (font_rescale_ratio): Rename from font_resizing_ratio.
20816 (split_font_name): Set font->rescale_ratio.
20817 (better_font_p): Pay attention to font->rescale_ratio.
20818 (build_scalable_font_name): Likewise. Change RESX, and RESY
20819 fields.
20820 (syms_of_xfaces): Declare Vface_font_rescale_alist as a Lisp variable.
20821
20822 2008-02-01 Kenichi Handa <handa@m17n.org>
20823
20824 * coding.c (Qutf_16_be_nosig, Qutf_16_be, Qutf_16_le_nosig)
20825 (Qutf_16_le): Remove these variables.
20826 (syms_of_coding): Don't DEFSYM them.
20827 (decode_coding_utf_16): Fix handling of BOM.
20828 (encode_coding_utf_16): Fix handling of BOM.
20829
20830 2008-02-01 Kenichi Handa <handa@m17n.org>
20831
20832 * fileio.c (Finsert_file_contents): On replacing, before decoding
20833 the file into the work buffer, set point of the work buffer to the end.
20834
20835 2008-02-01 Dave Love <fx@gnu.org>
20836
20837 * coding.c (Fcheck_coding_systems_region): Fix type errors.
20838
20839 2008-02-01 Dave Love <fx@gnu.org>
20840
20841 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
20842 and fix C types.
20843
20844 2008-02-01 Kenichi Handa <handa@m17n.org>
20845
20846 * xdisp.c (SKIP_GLYPHS): New macro.
20847 (set_cursor_from_row): Pay attention to string display properties.
20848
20849 * category.c (copy_category_entry): Fix for the case that RANGE
20850 is an integer.
20851
20852 * xterm.c (x_encode_char): Call ccl_driver with the last arg Qnil.
20853
20854 * w32term.c (w32_encode_char): Call ccl_driver with the last arg Qnil.
20855
20856 2008-02-01 Kenichi Handa <handa@m17n.org>
20857
20858 * charset.c (Fcharset_id_internal): New function.
20859 (syms_of_charset): Defsubr it.
20860
20861 * coding.c (decode_coding_ccl, encode_coding_ccl): Call ccl_driver
20862 with the last arg charset_list acquired from coding.
20863 (Fdefine_coding_system_internal): For ccl-based coding system, fix
20864 the attribute coding_attr_ccl_valids.
20865
20866 * coding.h (enum define_coding_ccl_arg_index): Set the first
20867 member coding_arg_ccl_decoder to coding_arg_max.
20868
20869 * ccl.h (ccl_driver): Adjust prototype.
20870
20871 * ccl.c (CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
20872 (ccl_driver): New arg CHARSET_LIST. Use the above macros instead
20873 of DECODE_CHAR, ENCODE_CHAR, CHAR_CHARSET.
20874 (Fccl_execute, Fccl_execute_on_string): Call ccl_driver with the
20875 last arg Qnil.
20876
20877 2008-02-01 Kenichi Handa <handa@m17n.org>
20878
20879 * charset.h (ENCODE_CHAR): If the method is SUBSET or SUPERSET,
20880 call encode_char.
20881
20882 * charset.c (encode_char): Fix handling of methods SUBSET and SUPERSET.
20883
20884 2008-02-01 Dave Love <fx@gnu.org>
20885
20886 * composite.c (syms_of_composite): Make composition_hash_table weak.
20887
20888 2008-02-01 Kenichi Handa <handa@m17n.org>
20889
20890 * dispextern.h (check_face_attributes, generate_ascii_font_name)
20891 (font_name_registry): Don't extern them.
20892 (split_font_name_into_vector, build_font_name_from_vector): Extern them.
20893
20894 * fontset.h (Qfontset): Don't extern it.
20895 (new_fontset_from_font_name): Extern it.
20896
20897 * fontset.c: Give 8 extra slots to fontset objects.
20898 (Qfontset_info): New variable.
20899 (syms_of_fontset): Defsym it.
20900 (FONTSET_FALLBACK): New macro.
20901 (fontset_face): Try also the default fontset.
20902 (make_fontset): Realize a fallback fontset from the default fontset.
20903 (generate_ascii_font_name): Move from xfaces.c. Rewritten by
20904 using split_font_name_into_vector and build_font_name_from_vector.
20905 (Fset_fontset_font): Access the elements of font_spec by enum
20906 FONT_SPEC_INDEX. If font_spec is a string, extract the registry
20907 name by using split_font_name_into_vector.
20908 (Fnew_fontset): If no ASCII font is specified in FONTLIST,
20909 generate a proper font name from the fontset name. Update
20910 Vfontset_alias_alist.
20911 (n_auto_fontsets): New variable.
20912 (new_fontset_from_font_name): New function.
20913 (Ffont_info): Store the information about fonts generated from the
20914 default fontset in the first extra slot of the returned char-table.
20915
20916 * xfaces.c (generate_ascii_font_name): Move to fontset.c.
20917 (font_name_registry): Delete function.
20918 (split_font_name_into_vector): New function.
20919 (build_font_name_from_vector): New function.
20920 (font_list): The argument REGISTRY is now a list of registry names.
20921 (choose_face_font): If we are choosing an ASCII font, and ATTRS
20922 specifies an explicit font name, return the name as is. Make a
20923 list of registy names.
20924
20925 * xfns.c (x_set_font, x_create_tip_frame): Adjust for the change
20926 of x_new_fontset.
20927 (Fx_create_frame): Don't call x_new_fontset here. Just use
20928 x_list_fonts to check the existence of fonts.
20929
20930 * xterm.h (x_new_fontset): Adjust prototype.
20931
20932 * xterm.c (x_new_fontset): Change the arg FONTSETNAME to Lisp
20933 string. Use new_fontset_from_font_name to create a fontset from a
20934 font name.
20935
20936 2008-02-01 Kenichi Handa <handa@m17n.org>
20937
20938 * syntax.c (Vfind_word_boundary_function_table): New name for
20939 Vnext_word_boundary_function_table.
20940 (find-word-boundary-function-table): New name for
20941 next-word-boundary-function-table.
20942
20943 2008-02-01 Dave Love <fx@gnu.org>
20944
20945 * Makefile.in: Fix some dependencies.
20946
20947 * keymap.c (Fapropos_internal): Don't gcpro apropos_predicate but
20948 set it to nil before returning.
20949
20950 * composite.c (update_compositions): Fix type error.
20951
20952 * syntax.c (skip_chars, skip_syntaxes): Fix type errors.
20953
20954 2008-02-01 Kenichi Handa <handa@m17n.org>
20955
20956 * xterm.c (x_new_font): Optimize for the case that the font is
20957 already set for the frame.
20958
20959 2008-02-01 Kenichi Handa <handa@m17n.org>
20960
20961 * chartab.c (char_table_ascii): Check if the char table contents
20962 is sub-char-table or not.
20963 (char_table_set, char_table_set_range): Fix argument to
20964 char_table_ascii.
20965
20966 * coding.c (CATEGORY_MASK_RAW_TEXT): New macro.
20967 (detect_coding_utf_8, detect_coding_utf_16)
20968 (detect_coding_emacs_mule, detect_coding_iso_2022)
20969 (detect_coding_sjis, detect_coding_big5)
20970 (detect_coding_ccl, detect_coding_charset): Change argument MASK
20971 to DETECT_INFO. Update DETECT_INFO and return 1 if the byte
20972 sequence is valid in this coding system. Change callers.
20973 (MAX_ANNOTATION_LENGTH): New macro.
20974 (ADD_ANNOTATION_DATA): New macro.
20975 (ADD_COMPOSITION_DATA): Change argument. Change callers. Call
20976 ADD_ANNOTATION_DATA. Change the format of annotation data.
20977 (ADD_CHARSET_DATA): New macro.
20978 (emacs_mule_char): New argument ID. Change callers.
20979 (decode_coding_emacs_mule, decode_coding_iso_2022)
20980 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
20981 Produce charset annotation data in coding->charbuf.
20982 (encode_coding_emacs_mule, encode_coding_iso_2022): Pay attention
20983 to charset annotation data in coding->charbuf.
20984 (setup_coding_system): Add CODING_ANNOTATE_CHARSET_MASK
20985 coding->common_flags if the coding system is iso-2022 based and
20986 uses designation.
20987 (produce_composition): Adjust for the new annotation data format.
20988 (produce_charset): New function.
20989 (produce_annotation): Handle charset annotation.
20990 (handle_composition_annotation, handle_charset_annotation): New
20991 functions.
20992 (consume_chars): Handle charset annotation. Utilize the above two
20993 functions.
20994 (encode_coding_object): If SRC_OBJECT and DST_OBJECT are the same
20995 buffer, get the deleted text as a string and set
20996 coding->src_object to that string.
20997 (detect_coding, detect_coding_system): Use the new struct
20998 coding_detection_info.
20999
21000 * coding.h (struct coding_detection_info): New structure.
21001 (struct coding_system): Adjust prototype of the member `detector'.
21002 (CODING_ANNOTATE_CHARSET_MASK): New macro.
21003
21004 2008-02-01 Kenichi Handa <handa@m17n.org>
21005
21006 * insdel.c (insert_from_gap): Fix argument to offset_intervals.
21007
21008 2008-02-01 Dave Love <fx@gnu.org>
21009
21010 * keymap.c (apropos_predicate, apropos_accumulate): Declare static.
21011 (Fapropos_internal): Don't gcpro apropos_accumulate. Set result
21012 to new local and nullify apropos_accumulate before returning.
21013 (syms_of_keymap): Staticpro and initialize apropos_accumulate.
21014
21015 2008-02-01 Kenichi Handa <handa@m17n.org>
21016
21017 * charset.c (Fdefine_charset_internal): Setup charset.fast_map
21018 correctly.
21019
21020 2008-02-01 Dave Love <fx@gnu.org>
21021
21022 * fns.c (Flanginfo): Call synchronize_system_time_locale.
21023
21024 2008-02-01 Kenichi Handa <handa@m17n.org>
21025
21026 The following changes are to make character composition happen
21027 automatically on displaying.
21028
21029 * Makefile.in (lisp, shortlisp): Add composite.elc.
21030
21031 * composite.h (Qauto_composed, Vauto_composition_function)
21032 (Qauto_composition_function): Extern them.
21033
21034 * composite.c (Vcomposition_function_table)
21035 (Qcomposition_function_table): Delete variables.
21036 (Qauto_composed, Vauto_composition_function)
21037 (Qauto_composition_function): New variables.
21038 (run_composition_function): Don't call
21039 compose-chars-after-function.
21040 (update_compositions): Clear `auto-composed' text property.
21041 (compose_chars_in_text): Delete this function.
21042 (syms_of_composite): Staticpro Qauto_composed and
21043 Qauto_composition_function. Declare Vauto_composition_function as
21044 a Lisp variable.
21045
21046 * dispextern.h (enum prop_idx): Add member AUTO_COMPOSED_PROP_IDX.
21047
21048 * xdisp.c (it_props): Add an entry for Qauto_composed.
21049 (handle_auto_composed_prop): New function.
21050
21051 * xselect.c (selection_data_to_lisp_data): Don't call
21052 compose_chars_in_text.
21053
21054 2008-02-01 Dave Love <fx@gnu.org>
21055
21056 * keyboard.c (read_char): Modify checking around use of
21057 Vkeyboard_translate_table.
21058
21059 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
21060 and fix C types.
21061
21062 2008-02-01 Kenichi Handa <handa@m17n.org>
21063
21064 * coding.c (decode_coding_utf_8, decode_coding_emacs_mule)
21065 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
21066 (decode_coding_charset, produce_chars): When eol_type is Qdos, handle
21067 the case that the last byte is '\r' correctly.
21068 (decode_coding): Flush out the unprocessed data correctly.
21069 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK bit of coding->mode.
21070
21071 2008-02-01 Dave Love <fx@gnu.org>
21072
21073 * xterm.c (XTread_socket): Fix changes for defined keysyms.
21074 Add XK_ISO... case.
21075 (xaw_scroll_callback): Revert last change.
21076
21077 2008-02-01 Kenichi Handa <handa@m17n.org>
21078
21079 * charset.c (Fset_charset_priority): Update Viso_2022_charset_list.
21080
21081 2008-02-01 Kenichi Handa <handa@m17n.org>
21082
21083 * xfaces.c (Vface_resizing_fonts): New variable.
21084 (struct font_name): New member `resizing_ratio'.
21085 (font_resizing_ratio): New function.
21086 (split_font_name): Set font->resizing_ratio.
21087 (better_font_p): Pay attention to font->resizing_ratio.
21088 (build_scalable_font_name): Likewise. Don't change POINT_SIZE,
21089 RESX, and RESY fields.
21090 (try_alternative_families): Try scalable fonts if
21091 Vscalable_fonts_allowed is not Qt.
21092 (syms_of_xfaces): Declare Vface_resizing_fonts as a Lisp variable.
21093
21094 2008-02-01 Dave Love <fx@gnu.org>
21095
21096 * xterm.c (xaw_scroll_callback): Cast correctly.
21097
21098 2008-02-01 Dave Love <fx@gnu.org>
21099
21100 * keyboard.c (lispy_accent_codes, lispy_accent_keys): Extend.
21101 (lispy_kana_keys): Comment out.
21102 (make_lispy_event) [XK_kana_A]: Comment out.
21103
21104 * xterm.c (xaw_scroll_callback): Cast call_data.
21105 (XTread_socket): Deal with ASCII keysyms.
21106 (syms_of_xterm) <Vx_keysym_table>: Fix args of make_hash_table.
21107
21108 2008-02-01 Dave Love <fx@gnu.org>
21109
21110 * xterm.c (Vx_keysym_table): New.
21111 (syms_of_xterm): Initialize it.
21112 (XTread_socket): Use it.
21113 From head: Eliminate incorrect optimization that tried to avoid
21114 decoding the output of X*LookupString.
21115 (x_get_font_repertory): Delete charset declaration.
21116
21117 2008-02-01 Kenichi Handa <handa@m17n.org>
21118
21119 * coding.c (detect_coding_charset): If only ASCII bytes are found,
21120 return 0.
21121 (Fdefine_coding_system_internal): Setup
21122 CODING_ATTR_ASCII_COMPAT (attrs) correctly.
21123
21124 2008-02-01 Dave Love <fx@gnu.org>
21125
21126 * coding.c (Fcheck_coding_system): Doc fix.
21127
21128 * editfns.c (Finsert_byte): Return a proper value.
21129
21130 2008-02-01 Kenichi Handa <handa@m17n.org>
21131
21132 * coding.c (decode_coding): Fix args to translate_chars. Pay
21133 attention to Vstandard_translation_table_for_decode.
21134 (encode_coding): Fix args to translate_chars. Pay attention to
21135 Vstandard_translation_table_for_encode.
21136
21137 * data.c (Faset): Check NEWELT by ASCII_CHAR_P, not by
21138 SINGLE_BYTE_CHAR_P.
21139
21140 * editfns.c (general_insert_function): Check VAL by ASCII_CHAR_P,
21141 not by SINGLE_BYTE_CHAR_P.
21142
21143 * fns.c (concat): Check CH by ASCII_CHAR_P, not by
21144 SINGLE_BYTE_CHAR_P.
21145
21146 * insdel.c (copy_text): Check C by ASCII_CHAR_P, not by
21147 SINGLE_BYTE_CHAR_P.
21148
21149 * keymap.c (Ftext_char_description): Check C by ASCII_CHAR_P, not
21150 by SINGLE_BYTE_CHAR_P.
21151
21152 * search.c (Freplace_match): Check C by ASCII_CHAR_P, not by
21153 SINGLE_BYTE_CHAR_P.
21154
21155 2008-02-01 Dave Love <fx@gnu.org>
21156
21157 * fns.c (Fstring_as_multibyte, Fstring_to_multibyte): Doc fix.
21158
21159 2008-02-01 Dave Love <fx@gnu.org>
21160
21161 * fns.c (Flanginfo): Fix typo.
21162
21163 * unexelf.c (unexec): Make last change conditional on Irix 6.5.
21164
21165 2008-02-01 Kenichi Handa <handa@m17n.org>
21166
21167 * coding.c (detect_coding_utf_8, detect_coding_utf_16)
21168 (detect_coding_emacs_mule, detect_coding_iso_2022)
21169 (detect_coding_sjis, detect_coding_big5, detect_coding_ccl): Check
21170 incomplete byte sequence. Don't update *mask when correctly detected.
21171 (decode_coding_sjis): Fix decoding of katakana-jisx0201.
21172 (detect_eol): Delete the argument CODING, and add the argument CATEGORY.
21173 (detect_coding, detect_coding_system): Adjust for the changes above.
21174
21175 2008-02-01 Kenichi Handa <handa@m17n.org>
21176
21177 * character.c (char_string): Rename from
21178 char_string_with_unification. Pay attention to CHAR_MODIFIER_MASK.
21179 (string_char): Rename from string_char.
21180
21181 * character.h (CHAR_STRING, CHAR_STRING_ADVANCE): Call char_string
21182 if C is greater than MAX_3_BYTE_CHAR.
21183 (STRING_CHAR, STRING_CHAR_AND_LENGTH, STRING_CHAR_ADVANCE): Call
21184 string_char instead of string_char_with_unification.
21185
21186 2008-02-01 Dave Love <fx@gnu.org>
21187
21188 * coding.c (decode_coding_utf_8): Treat surrogates as invalid.
21189
21190 2008-02-01 Kenichi Handa <handa@m17n.org>
21191
21192 * keymap.c (push_key_description): Pay attention to force_multibyte.
21193
21194 * regex.c (re_search_2): Fix for the case of unibyte buffer.
21195
21196 2008-02-01 Dave Love <fx@gnu.org>
21197
21198 * charset.c (define_charset_internal): Rename `supprementary'.
21199
21200 * Makefile.in (lisp, shortlisp): Remove latin-N.
21201
21202 2008-02-01 Dave Love <fx@gnu.org>
21203
21204 * xfns.c (x_window, x_window): Use use_xim.
21205
21206 * xterm.c (use_xim): Initialize.
21207 (xim_open_dpy, xim_initialize, xim_close_dpy): Use use_xim.
21208 (x_term_init): Maybe set use_xim.
21209
21210 * xterm.h (use_xim) [HAVE_X_I18N]: Declare.
21211
21212 2008-02-01 Kenichi Handa <handa@m17n.org>
21213
21214 * search.c (search_buffer): Fix case-fold-search of multibyte
21215 characters.
21216 (boyer_moore): Rename the last argument to char_high_bits.
21217
21218 2008-02-01 Kenichi Handa <handa@m17n.org>
21219
21220 * xdisp.c (display_string): Fix for the case of zero width glyph.
21221
21222 * xfns.c (x_set_font): Change the error message of the case that
21223 x_new_fontset returns Qt.
21224
21225 * xfaces.c (set_lface_from_font_name): Reject the default fontset.
21226 (Finternal_set_lisp_face_attribute): Use signal_error for the
21227 error of invalid fontset.
21228
21229 * xterm.c (x_new_fontset): If FONTSETNAME specifies the default
21230 fontset, return Qt.
21231
21232 2008-02-01 Dave Love <fx@gnu.org>
21233
21234 * unexelf.c (unexec): Make .got handling not SGI-specific.
21235
21236 * syntax.c (syms_of_syntax) <multibyte-syntax-as-symbol>: Doc fix.
21237
21238 * regex.c: Use `ifdef HAVE_ALLOCA_H', not `if HAVE_ALLOCA_H'.
21239
21240 * keyboard.c (read_key_sequence): Fix type error.
21241
21242 * buffer.c (Fset_buffer_multibyte, Fset_buffer_multibyte): Fix
21243 type error.
21244
21245 * fontset.c (fontset_add): Return Lisp_Object.
21246
21247 2008-02-01 Dave Love <fx@gnu.org>
21248
21249 * charset.h (charset_ordered_list_tick): Declare extern.
21250
21251 2008-02-01 Kenichi Handa <handa@m17n.org>
21252
21253 The following changes (and some of 2008-02-01 changes of mine) are
21254 for handling syntax, category, and case conversion for unibyte
21255 characters by converting them to multibyte on the fly. With these
21256 changes, we don't have to setup syntax and case tables for unibyte
21257 characters in each language environment.
21258
21259 * abbrev.c (Fexpand_abbrev): Convert a unibyte character to
21260 multibyte if necessary.
21261
21262 * bytecode.c (Fbyte_code): Likewise.
21263
21264 * character.h (LEADING_CODE_LATIN_1_MIN)
21265 (LEADING_CODE_LATIN_1_MAX): New macros.
21266 (unibyte_to_multibyte_table): Extern it.
21267 (unibyte_char_to_multibyte): New macro.
21268 (MAKE_CHAR_MULTIBYTE): Use unibyte_to_multibyte_table.
21269 (CHAR_LEADING_CODE): New macro.
21270 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): New macro.
21271
21272 * character.c (unibyte_to_multibyte_table): New variable.
21273 (unibyte_char_to_multibyte): Move to character.h and define as macro.
21274 (multibyte_char_to_unibyte): If C is an eight-bit character,
21275 convert it to the corresponding byte value.
21276
21277 * charset.c (Fset_unibyte_charset): If the dimension of CHARSET is
21278 not 1, signals an error. Update the elements of
21279 unibyte_to_multibyte_table.
21280 (init_charset_once): Initialize unibyte_to_multibyte_table.
21281 (syms_of_charset): Define the charset `iso-8859-1'.
21282
21283 * cmds.c (internal_self_insert): In a multibyte buffer, insert C
21284 as is without converting it to unibyte. In a unibyte buffer,
21285 convert C to multibyte before checking the syntax.
21286
21287 * lisp.h (unibyte_char_to_multibyte): Delete extern.
21288
21289 * minibuf.c (Fminibuffer_complete_word): Use the macro
21290 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE.
21291
21292 * regex.h (struct re_pattern_buffer): New member target_multibyte.
21293
21294 * regex.c (RE_TARGET_MULTIBYTE_P): New macro.
21295 (GET_CHAR_BEFORE_2): Check target_multibyte, not multibyte. If
21296 that is zero, convert an eight-bit char to multibyte.
21297 (MAKE_CHAR_MULTIBYTE, CHAR_LEADING_CODE): New dummy new macros for
21298 non-emacs case.
21299 (PATFETCH): Convert an eight-bit char to multibyte.
21300 (HANDLE_UNIBYTE_RANGE): New macro.
21301 (regex_compile): Setup the compiled pattern for multibyte chars
21302 even if the given regex string is unibyte. Use PATFETCH_RAW
21303 instead of PATFETCH in many places. To handle `charset'
21304 specification of unibyte, call HANDLE_UNIBYTE_RANGE. Use bitmap
21305 only for ASCII chars.
21306 (analyse_first) <exactn>: Simplify because the compiled pattern
21307 is multibyte.
21308 <charset_not>: Setup fastmap from bitmap only for ASCII chars.
21309 <charset>: Use CHAR_LEADING_CODE to get leading codes.
21310 <categoryspec>: If multibyte, setup fastmap only for ASCII chars here.
21311 (re_compile_fastmap) [emacs]: Call analyse_first with the arg
21312 multibyte always 1.
21313 (re_search_2): In emacs, set the locale variable multibyte to 1,
21314 otherwise to 0. New local variable target_multibyte. Check it
21315 to decide the multibyteness of STR1 and STR2. If
21316 target_multibyte is zero, convert unibyte chars to multibyte
21317 before translating and checking fastmap.
21318 (TARGET_CHAR_AND_LENGTH): New macro.
21319 (re_match_2_internal): In emacs, set the locale variable multibyte
21320 to 1, otherwise to 0. New local variable target_multibyte. Check
21321 it to decide the multibyteness of STR1 and STR2. Use
21322 TARGET_CHAR_AND_LENGTH to fetch a character from D.
21323 <charset, charset_not>: If multibyte is nonzero, check fastmap
21324 only for ASCII chars. Call bcmp_translate with
21325 target_multibyte, not with multibyte.
21326 <begline>: Declare the local variable C as `unsigned'.
21327 (bcmp_translate): Change the last arg name to target_multibyte.
21328
21329 * search.c (compile_pattern_1): Don't adjust the multibyteness of
21330 the regexp pattern and the matching target. Set cp->buf.multibyte
21331 to the multibyteness of the regexp pattern. Set
21332 cp->but.target_multibyte to the multibyteness of the matching target.
21333 (wordify): Use FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE instead of
21334 FETCH_STRING_CHAR_ADVANCE.
21335 (Freplace_match): Convert unibyte chars to multibyte.
21336
21337 * syntax.c (char_quoted, back_comment, scan_words)
21338 (Fforward_comment, scan_lists, Fbackward_prefix_chars)
21339 (scan_sexps_forward): Use FETCH_CHAR_AS_MULTIBYTE to convert
21340 unibyte chars to multibyte.
21341 (skip_chars): Delete the arg syntaxp, and move the code for
21342 handling syntaxes to skip_syntaxes. Change callers.
21343 Fix the case that the multibyteness of STRING and the current
21344 buffer doesn't match.
21345 (skip_syntaxes): New function.
21346 (SYNTAX_WITH_MULTIBYTE_CHECK): Check C by ASCII_CHAR_P, not by
21347 SINGLE_BYTE_CHAR_P.
21348
21349 2008-02-01 Kenichi Handa <handa@m17n.org>
21350
21351 * xfaces.c (QCfontset): New variable.
21352 (LFACE_FONTSET): New macro.
21353 (check_lface_attrs): Check also LFACE_FONTSET_INDEX.
21354 (set_lface_from_font_name): Setup LFACE_FONTSET (lface).
21355 (Finternal_set_lisp_face_attribute)
21356 (Finternal_get_lisp_face_attribute): Handle QCfontset.
21357 (lface_same_font_attributes_p): Fix checking of LFACE_FONT_INDEX,
21358 check also LFACE_FONTSET_INDEX.
21359 (face_fontset): Check attrs[LFACE_FONTSET_INDEX], not
21360 attrs[LFACE_FONT_INDEX].
21361 (syms_of_xfaces): Intern and staticpro QCfontset.
21362
21363 * dispextern.h (enum lface_attribute_index): New member
21364 LFACE_FONTSET_INDEX.
21365
21366 * fns.c (base64_encode_1): Handle eight-bit chars correctly.
21367
21368 2008-02-01 Kenichi Handa <handa@m17n.org>
21369
21370 * coding.c (coding_set_destination): Fix coding->destination for
21371 the case converting a region.
21372 (encode_coding_utf_8): Encode eight-bit chars as single byte.
21373 (encode_coding_object): Fix coding->dst_pos and
21374 coding->dst_pos_byte for the case converting a region.
21375
21376 * insdel.c (insert_from_gap): Make it work even if PT != GTP.
21377
21378 * character.h (BYTE8_STRING): New macro.
21379
21380 * fns.c (base64_decode_1): Insert eight-bit chars correctly.
21381
21382 2008-02-01 Kenichi Handa <handa@m17n.org>
21383
21384 * xdisp.c (get_next_display_element): Don't display unibyte 8-bit
21385 characters by octal form.
21386
21387 * abbrev.c (Fexpand_abbrev): Fix for the multibyte case.
21388
21389 * buffer.h (_fetch_multibyte_char_len): Delete extern.
21390 (FETCH_MULTIBYTE_CHAR, BUF_FETCH_MULTIBYTE_CHAR): Don't use
21391 _fetch_multibyte_char_len.
21392 (FETCH_CHAR_AS_MULTIBYTE): New macro.
21393
21394 * casetab.c (set_canon, set_identity, shuffle): Simplify.
21395
21396 * casefiddle.c (casify_object): Simplify. Handle the case that
21397 the case conversion change the byte length.
21398 (casify_region): Likewise.
21399
21400 * character.h (MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
21401
21402 * character.c (_fetch_multibyte_char_len): Delete this variable.
21403 (syms_of_character): Setup Vprintable_chars.
21404
21405 * editfns.c (Fchar_equal): Fix for the unibyte case.
21406 (Finsert_byte): New function.
21407 (syms_of_editfns): Defsubr it.
21408
21409 * keyboard.c (read_key_sequence): Use ~CHAR_MODIFIER_MASK instead
21410 of direct code 0x3ffff.
21411
21412 * search.c (Freplace_match): Fix for the unibyte case.
21413
21414 2008-02-01 Kenichi Handa <handa@m17n.org>
21415
21416 * lread.c (safe_to_load_p): Fix the logic.
21417
21418 * syntax.c (scan_words): Don't treat characters belonging to
21419 different scripts as constituting a word.
21420
21421 * editfns.c (Fformat): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
21422
21423 * fontset.c (Fset_fontset_font): Treat `ascii' as charset, not script.
21424
21425 * emacs.c (main): In the case of --unibyte, instead of aborting on
21426 finding non-empty buffer, make it unibyte.
21427
21428 2008-02-01 Kenichi Handa <handa@m17n.org>
21429
21430 * xterm.c (x_new_fontset): Call `create-fontset-from-ascii-font'
21431 to create a fontset.
21432
21433 2008-02-01 Dave Love <fx@gnu.org>
21434
21435 * character.c (Funibyte_char_to_multibyte): Doc fix.
21436
21437 * xfns.c [HAVE_STDLIB_H]: Fix last change.
21438
21439 2008-02-01 Kenichi Handa <handa@m17n.org>
21440
21441 * fontset.c (fontset_add): Make the type `int'.
21442 (fontset_id_valid_p): Define it if FONTSET_DEBUG is defined.
21443
21444 * character.c (unibyte_char_to_multibyte)
21445 (multibyte_char_to_unibyte, Funibyte_char_to_multibyte): Refer to
21446 charset_unibyte, not charset_primary.
21447
21448 * charset.h (charset_unibyte): Extern it instead of charset_primary.
21449
21450 * charset.c (charset_unibyte): Rename from charset_primary.
21451 (Funibyte_charset): Rename from Fprimary_charset.
21452 (Fset_unibyte_charset): Rename from Fset_primary_charset.
21453 (syms_of_charset): Adjust for the above changes.
21454
21455 * w32term.c (x_produce_glyphs): Use ASCII_CHAR_P, not
21456 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
21457 it->multibyte_p is zero.
21458
21459 * lisp.h (nonascii_insert_offset, Vnonascii_translation_table):
21460 Delete extern.
21461
21462 2008-02-01 Kenichi Handa <handa@m17n.org>
21463
21464 * coding.c (Fdefine_coding_system_internal): Fix category setting
21465 for a coding system of type iso-2022.
21466
21467 2008-02-01 Kenichi Handa <handa@m17n.org>
21468
21469 * fontset.h (FS_LOAD_FONT): Call fs_load_font with the arg CHARSET -1.
21470
21471 2008-02-01 Kenichi Handa <handa@m17n.org>
21472
21473 * syntax.c (Vnext_word_boundary_function_table): New variable.
21474 (next-word-boundary-function-table): Declare it as a Lisp variable
21475 in syms_of_syntax.
21476 (scan_words): Call functions in Vnext_word_boundary_function_table
21477 if any.
21478
21479 * xterm.c (x_load_font): Initialize fontp->fontset to -1.
21480
21481 * fontset.c (fs_load_font): If fontp->charset is not negative,
21482 return fontp without setting its members.
21483
21484 2008-02-01 Dave Love <fx@gnu.org>
21485
21486 * xfns.c [HAVE_STDLIB_H]: Change logic (instead of fixing typo).
21487
21488 * m/sparc.h (HAVE_ALLOCA): Delete.
21489
21490 * s/irix6-5.h: Don't include strings.h.
21491 (bcopy, bzero, bcmp): Don't undef.
21492
21493 * s/irix6-0.h (bcopy, bzero, bcmp): Don't undef.
21494
21495 * s/usg5-4.h (NO_SIOCTL_H): Don't define.
21496 (TIOCSIGSEND): Don't test IRIX6.
21497 (bcopy, bzero, bcmp): Define conditionally.
21498
21499 2008-02-01 Kenichi Handa <handa@m17n.org>
21500
21501 * buffer.c (Qas, Qmake, Qto): New variables.
21502 (Fset_buffer_multibyte): New optional arg METHOD. Change caller.
21503 (syms_of_buffer): Intern and staticpro Qas, Qmake, and Qto.
21504
21505 * callproc.c (Fcall_process): Don't call insert_1_both directly if
21506 we are inserting a process output into a multibyte buffer.
21507
21508 * character.h (CHAR_TO_BYTE8): If C is not eight-bit char, call
21509 multibyte_char_to_unibyte.
21510
21511 * character.c (Funibyte_char_to_multibyte): If C can't be decoded
21512 by the primary charset, make it eight-bit char.
21513 (Fmultibyte_char_to_unibyte): Call CHAR_TO_BYTE8.
21514
21515 * charset.c (charset_eight_bit, Qeight_bit_control): New variables.
21516 (charset_8_bit__control, charset_8_bit_graphic)
21517 (Qeight_bit_control, Qeight_bit_graphic): Delete these variables.
21518 (define_charset_internal): New function.
21519 (syms_of_charset): Call define_charset_internal for pre-defined
21520 charsets.
21521
21522 * charset.h (charset_8_bit): Extern it.
21523
21524 * coding.c (make_conversion_work_buffer): Adjust for the change
21525 of Fset_buffer_multibyte.
21526 (encode_coding_raw_text): Increment p0 in the loop.
21527
21528 * lisp.h (Fset_buffer_multibyte): Adjust prototype.
21529
21530 * xdisp.c (setup_echo_area_for_printing, set_message_1): Adjust
21531 for the change of Fset_buffer_multibyte.
21532
21533 * fns.c (Fstring_to_multibyte): New function.
21534 (syms_of_fns): Declare Fstring_to_multibyte as Lisp subroutine.
21535
21536 2008-02-01 Dave Love <fx@gnu.org>
21537
21538 * xfns.c (x_put_x_image): Declare args.
21539
21540 * xfaces.c (font_name_registry, choose_face_font): Delete unused vars.
21541 (try_font_list): Declare an arg.
21542
21543 * xdisp.c (message2_nolog, set_message): Declare an arg.
21544
21545 * terminfo.c (tparam): Declare an arg. Use P_ to declare tparm.
21546
21547 * syntax.c (scan_sexps_forward): Declare an arg.
21548
21549 * scroll.c (calculate_scrolling, calculate_direct_scrolling):
21550 Declare an arg.
21551
21552 * lisp.h (Fnew_fontset): Declare.
21553
21554 * keymap.c (push_key_description): Call CHARACTERP correctly.
21555
21556 * fontset.c (fontset_add): Declare args. Call make_number correctly.
21557 (face_for_char): Delete unused vars.
21558 (Fset_fontset_font): Doc fix. Delete unused vars.
21559
21560 * doc.c (Fsubstitute_command_keys): Delete unused vars.
21561
21562 * composite.c (update_compositions): Declare arg.
21563
21564 * cm.c (calccost, cmgoto): Declare args.
21565
21566 * charset.c: Remove `emacs' conditional. Doc fixes.
21567 (map_char_table_for_charset): Declare.
21568
21569 * character.c (syms_of_character) <translation-table-vector>: Doc fix.
21570
21571 * ccl.c: Remove `emacs' conditional.
21572
21573 2008-02-01 Kenichi Handa <handa@m17n.org>
21574
21575 The following changes are to allow specifying multiple font
21576 patterns for a character range (specified by script or charset).
21577
21578 * Makefile.in (abbrev.o): Depend on syntax.h.
21579 (xfaces.o): Depend on charset.h.
21580
21581 * alloc.c (Fmake_string): Use ASCII_CHAR_P, not
21582 SINGLE_BYTE_CHAR_P.
21583
21584 * ccl.c (Fccl_execute_on_string): Add `const' to local variables.
21585
21586 * character.h (Vchar_script_table): Extern it.
21587
21588 * character.c (Vscript_alist): Delete.
21589 (Vchar_script_table, Qchar_script_table): New variable.
21590 (syms_of_character): Declare Vchar_script_table as a lisp variable
21591 and initialize it.
21592
21593 * chartab.c (Fmake_char_table): Doc fix. If PURPOSE doesn't
21594 have property char-table-extra-slots, make no extra slot.
21595
21596 * dispextern.h (struct face): Delete member `charset'.
21597 (FACE_SUITABLE_FOR_CHAR_P, FACE_FOR): Use ASCII_CHAR_P, not
21598 SINGLE_BYTE_CHAR_P.
21599 (choose_face_font, lookup_non_ascii_face, font_name_registry):
21600 Add prototypes.
21601 (lookup_face, lookup_named_face, lookup_derived_face): Fix prototype.
21602 (generate_ascii_font_name): Rename from generate_ascii_font.
21603
21604 * fontset.h (get_font_repertory_func): New prototype.
21605 (make_fontset_for_ascii_face, fs_load_font): Fix prototypes.
21606 (FS_LOAD_FONT): Call fs_load_font with the 3rd arg charset_ascii.
21607
21608 * fontset.c (Qprepend, Qappend): New variables.
21609 (FONTSET_CHARSET_ALIST, FONTSET_FACE_ALIST): Delete.
21610 (FONTSET_NOFONT_FACE, FONTSET_REPERTORY): New macros.
21611 (FONTSET_REF): Optimize if FONTSET is Vdefault_fontset.
21612 (FONTSET_REF_AND_RANGE, FONTSET_ADD): New macros.
21613 (fontset_ref_and_range, fontset_add, reorder_font_vector)
21614 (load_font_get_repertory): New functions.
21615 (fontset_set): Delete.
21616 (fontset_face): New arg FACE. Return face ID, not face.
21617 Complete re-write to handle new fontset structure. Change caller.
21618 (free_face_fontset): Use ASET istead of AREF (X) = Y.
21619 (face_for_char): Don't call lookup_face.
21620 (make_fontset_for_ascii_face): New arg FACE.
21621 (fs_load_font): New arg CHARSET_ID. Don't check
21622 Vfont_encoding_alist here.
21623 (find_font_encoding): New function.
21624 (list_fontsets): Use STRINGP, not ! NILP.
21625 (accumulate_script_ranges): New function.
21626 (Fset_fontset_font, Fnew_fontset, Ffontset_info): Completely
21627 re-written to handle new fontset structure.
21628 (Ffontset_font): Return a copy of element.
21629 (syms_of_fontset): Define symbols Qprepend and Qappend. Fix
21630 docstring of font-encoding-alist.
21631
21632 * lisp.h (CHAR_TABLE_REF): Remove unnecessary check (IDX >= 0).
21633 (Fset_fotset_font): Fix arguments to 5.
21634
21635 * msdos.c (XMenuActivate): Adjust for the change of lookup_derived_face.
21636
21637 * xdisp.c (message_dolog, set_message_1, extend_face_to_end_of_line):
21638 Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
21639 (highlight_trailing_whitespace): Adjust for the change of
21640 lookup_named_face.
21641
21642 * xfaces.c: Include charset.h.
21643 (load_face_font): Delete argument C. Change caller.
21644 (generate_ascii_font_name): Rename from generate_ascii_font.
21645 (font_name_registry): New function.
21646 (cache_face): Store ascii faces before non-ascii faces in buckets.
21647 (lookup_face): Delete arguments C and BASE_FACE. Change caller.
21648 Lookup only ascii faces.
21649 (lookup_non_ascii_face): New function.
21650 (lookup_named_face): Delete argument C. Change caller.
21651 (lookup_derived_face): Delete argument C. Change caller.
21652 (try_font_list): New arg PATTERN. Change caller. If PATTERN is
21653 a string, just call font_list with it.
21654 (choose_face_font): Delete arguments FACE and C. New arg
21655 FONT_SPEC. Change caller.
21656 (realize_face, realize_x_face): Delete arguments C and BASE_FACE.
21657 Change caller.
21658 (realize_non_ascii_face): New function.
21659 (realize_x_face): Call load_face_font here.
21660 (realize_tty_face): Delete argument C. Change caller.
21661 (compute_char_face): If CH is not ascii, call FACE_FOR_CHAR to
21662 get a face ID.
21663 (dump_realized_face): Don't print charset of FACE.
21664
21665 * xfns.c (x_set_font): Always call x_new_fontset and
21666 store_frame_parameter.
21667 (Fx_create_frame): Call x_new_fontset, not x_new_font.
21668 (syms_of_xfns): Set get_font_repertory_func to x_get_font_repertory.
21669
21670 * xterm.h (x_get_font_repertory): Extern it.
21671
21672 * xterm.c (x_produce_glyphs): Use ASCII_CHAR_P, not
21673 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
21674 it->multibyte_p is zero.
21675 (XTread_socket): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
21676 (x_new_fontset): If FONTSETNAME doesn't match any existing
21677 fontsets, create a new one.
21678 (x_get_font_repertory): New function.
21679
21680 2008-02-01 Kenichi Handa <handa@m17n.org>
21681
21682 * coding.c (Ffind_coding_systems_region_internal): Detect an
21683 ASCII only string correctly.
21684
21685 * lread.c (Fload): Don't load with Qload_force_doc_strings t if
21686 version is 0.
21687
21688 2008-02-01 Kenichi Handa <handa@m17n.org>
21689
21690 * lread.c: Include "coding.h".
21691 (Qget_emacs_mule_file_char, Qload_force_doc_strings)
21692 (load_each_byte, unread_char): New variables.
21693 (readchar_backlog): Delete.
21694 (readchar): Return a character unless load_each_byte is nonzero.
21695 Handle the case that readcharfun is Qget_emacs_mule_file_char or a
21696 cons. If unread_char is not -1, simply return it.
21697 (unreadchar): Handle the case that readcharfun is
21698 Qget_emacs_mule_file_char or a cons. Set unread_char if necessary.
21699 (read_multibyte): Delete.
21700 (readbyte_for_lambda, readbyte_from_file, readbyte_from_string)
21701 (read_emacs_mule_char): New functions.
21702 (Fload): Even if the file doesn't have the extension ".elc", if
21703 safe_to_load_p returns a positive version number, assume that the
21704 file contains bytecompiled code. If the version is less than 22,
21705 load the file while decoding multibyte sequences by emacs-mule.
21706 (readevalloop): Don't use readchar_backlog.
21707 (Fread): Likewise. Pay attention to the case that STREAM is a cons.
21708 (Fread_from_string): Pay attention to the case that STREAM is a cons.
21709 (read_escape): Delete the arg BYTEREP.
21710 (read1): Set load_each_byte to 1 temporarily while handling
21711 #@NUMBER. Don't call read_multibyte.
21712 (read_vector): Call Fread with a cons. If readcharfun is
21713 Qget_emacs_mule_file_char, decode the read string by emacs-mule.
21714 (read_list): If doc_reference is 2, make the cdr part string as unibyte.
21715 (syms_of_lread): Intern and staticpro Qget_emacs_mule_file_char
21716 and Qload_force_doc_strings.
21717
21718 2008-02-01 Kenichi Handa <handa@m17n.org>
21719
21720 * xdisp.c (face_before_or_after_it_pos): Call
21721 FETCH_MULTIBYTE_CHAR with byte postion, not char position.
21722
21723 2008-02-01 Kenichi Handa <handa@m17n.org>
21724
21725 * character.h (TRAILING_CODE_P): New macro.
21726 (MAYBE_UNIFY_CHAR): Adjust for the change of Funify_charset.
21727 (string_char_with_unification): Fix prototype.
21728 (Vscript_alist): Extern it.
21729
21730 * character.c (Vscript_alist): New variable.
21731 (string_char_with_unification, str_as_unibyte)
21732 (string_escape_byte8): Add `const' to local variables.
21733 (syms_of_character): Declare script-alist as a Lisp variable.
21734
21735 * charset.h (Vcharset_ordered_list): Extern it.
21736 (charset_ordered_list_tick): Extern it.
21737 (EMACS_MULE_LEADING_CODE_PRIVATE_11)
21738 (EMACS_MULE_LEADING_CODE_PRIVATE_12)
21739 (EMACS_MULE_LEADING_CODE_PRIVATE_21)
21740 (EMACS_MULE_LEADING_CODE_PRIVATE_22): New macros.
21741 (Funify_charset): Adjust for the change of Funify_charset.
21742
21743 * charset.c (charset_ordered_list_tick): New variable.
21744 (Fdefine_charset_internal): Increment charset_ordered_list_tick.
21745 (Funify_charset): New optional arg DEUNIFY. If it is non-nil,
21746 deunify instead of unify a charset.
21747 (string_xstring_p): Add `const' to local variables.
21748 (find_charsets_in_text): Add `const' to arguments and local variables.
21749 (encode_char): Adjust for the change of Funify_charset. Fix
21750 detecting of invalid code.
21751 (Fset_charset_priority): Increment charset_ordered_list_tick.
21752 (Fmap_charset_chars): Fix handling of default value for FROM_CODE
21753 and TO_CODE.
21754
21755 * coding.c (LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12)
21756 (LEADING_CODE_PRIVATE_21, LEADING_CODE_PRIVATE_22): Delete macros.
21757 Changed callers to use EMACS_MULE_LEADING_CODE_PRIVATE_11, etc.
21758 (decode_coding_ccl, consume_chars)
21759 (Ffind_coding_systems_region_internal)
21760 (Fcheck_coding_systems_region): Add `const' to local variables.
21761
21762 * print.c (print_object): Use octal form for printing the
21763 contents of a bool vector.
21764
21765 2008-02-01 Dave Love <fx@gnu.org>
21766
21767 * lread.c (Fload) <!load_dangerous_libraries>: Don't leak fd.
21768 <version == 20>: Refuse to load.
21769
21770 2008-02-01 Dave Love <fx@gnu.org>
21771
21772 * fns.c: Move coding.h.
21773 (Qcodeset, Qdays, Qmonths): New.
21774 (concat): Use CHARACTERP instead of INTEGERP.
21775 (Flocale_codeset): Delete.
21776 (Flanginfo): New function.
21777 (syms_of_fns): Change accordingly.
21778
21779 * coding.c (adjust_coding_eol_type): Fix eol_type/eol_seen mixup.
21780
21781 2008-02-01 Dave Love <fx@gnu.org>
21782
21783 * casetab.c (init_casetab_once, init_casetab_once): Fix
21784 CHAR_TABLE_SET call.
21785
21786 * category.c (Fmodify_category_entry): Fix CATEGORY_MEMBER call.
21787
21788 * character.c (syms_of_character): Fix CHAR_TABLE_SET call.
21789
21790 * charset.c (Fmap_charset_chars): Check args. Convert Lisp types.
21791 (load_charset_map, Fdeclare_equiv_charset, Fencode_char)
21792 (Fset_charset_priority, syms_of_charset): Convert Lisp types.
21793
21794 * charset.h (CHECK_CHARSET_GET_ID): Use XINT on AREF result.
21795
21796 * coding.c (ENCODE_DESIGNATION, decode_eol)
21797 (make_conversion_work_buffer, code_conversion_restore)
21798 (Fdefine_coding_system_internal): Convert Lisp types.
21799 (code_conversion_restore): Use EQ, not ==.
21800 (Fencode_coding_string): Fix code_convert_string call.
21801
21802 * coding.h (code_convert_region): Fix prototype.
21803
21804 * dispextern.h (redraw_frame, redraw_garbaged_frames): Remove.
21805
21806 * fontset.c (fontset_ref, fontset_set, fs_load_font)
21807 (Ffontset_info): Convert Lisp types.
21808
21809 * syntax.h (SYNTAX_ENTRY_INT): Don't use make_number.
21810
21811 * xterm.c (note_mouse_movement): Fix call of window_from_coordinates.
21812
21813 * xdisp.c (display_mode_element): Fix call of Fset_text_properties.
21814
21815 * chartab.c: Include "...h", not <...h> in some cases.
21816
21817 * callproc.c (Fcall_process): Remove unused variables.
21818
21819 2008-02-01 Dave Love <fx@gnu.org>
21820
21821 * coding.c (Fset_coding_system_priority): Allow null arg list.
21822
21823 2008-02-01 Dave Love <fx@gnu.org>
21824
21825 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
21826 (Fself_insert_and_exit): Use CHARACTERP.
21827
21828 * callproc.c (Fcall_process): Remove unused vars.
21829
21830 * xterm.c (XTread_socket): Add extra dead keysyms.
21831
21832 * xdisp.c (decode_mode_spec_coding): Use CHARACTERP.
21833
21834 * dispextern.h: Remove prototypes for redraw_frame,
21835 redraw_garbaged_frames.
21836
21837 * cmds.c (Fself_insert_command): Use CHARACTERP.
21838
21839 * chartab.c (make_sub_char_table): Remove unused var.
21840 (Fset_char_table_default, Fmap_char_table): Doc fix.
21841
21842 * keymap.c (access_keymap): Remove generic char code.
21843 (push_key_description): Use CHARACTERP.
21844
21845 2008-02-01 Dave Love <fx@gnu.org>
21846
21847 * charset.c: Doc fixes.
21848 (Funify_charset): Extra checking.
21849
21850 2008-02-01 Dave Love <fx@gnu.org>
21851
21852 * lread.c: Remove some unused variables.
21853 (safe_to_load_p): If safe, return the magic number version byte.
21854 (Fload): Maybe use load-with-code-conversion.
21855
21856 2008-02-01 Kenichi Handa <handa@m17n.org>
21857
21858 * category.c (Fmodify_category_entry): Don't modify the contents
21859 of category_set for characters out of the range. Avoid
21860 unnecessary modification.
21861
21862 * character.h (MAYBE_UNIFY_CHAR): Adjust for the change of
21863 Vchar_unify_table. The default value of the table is now nil.
21864
21865 * character.c (syms_of_character): Setup Vchar_width_table for
21866 eight-bit-control and raw-byte chars.
21867
21868 * charset.h (enum define_charset_arg_index): Delete
21869 charset_arg_parents and add charset_arg_subset and
21870 charset_arg_superset.
21871 (enum charset_attr_index): Delete charset_parents and add
21872 charset_subset and charset_superset.
21873 (enum charset_method): Delete CHARSET_METHOD_INHERIT and add
21874 CHARSET_METHOD_SUBSET and CHARSET_METHOD_SUPERSET.
21875 (CHARSET_ATTR_PARENTS, CHARSET_PARENTS): Delete.
21876 (CHARSET_ATTR_SUBSET, CHARSET_ATTR_SUPERSET, CHARSET_SUBSET)
21877 (CHARSET_SUPERSET): New macros.
21878 (charset_work): Extern it.
21879 (ENCODE_CHAR): Use charset_work.
21880 (CHAR_CHARSET_P): Adjust for the change of encoder format.
21881 (map_charset_chars): Extern it.
21882
21883 * charset.c (load_charset_map): Set the default value of encoder
21884 and deunifier char-tables to nil.
21885 (map_charset_chars): Change argument. Change callers. Use
21886 map_char_table_for_charset instead of map_char_table.
21887 (Fmap_charset_chars): New optional args from_code and to_code.
21888 (Fdefine_charset_internal): Adjust for the change of
21889 `define-charset' (:parents -> :subset or :superset).
21890 (charset_work): New variable.
21891 (encode_char, syms_of_charset): Adjust for the change of
21892 Fdefine_charset_internal.
21893 (Ffind_charset_string): Setup the vector `charsets' correctly.
21894
21895 * chartab.c (sub_char_table_ref_and_range): New arg default. Fix
21896 the previous change.
21897 (char_table_ref_and_range): Adjust for the above change.
21898 (map_sub_char_table_for_charset): New function.
21899 (map_char_table_for_charset): New function.
21900
21901 * keymap.c (describe_vector): Handle a char-table directly here.
21902 (describe_char_table): Delete.
21903
21904 * lisp.h (map_charset_chars): Delete.
21905
21906 2008-02-01 Dave Love <fx@gnu.org>
21907
21908 * fns.c (count_combining): Comment out (unused).
21909 (Flocale_codeset): New.
21910 (syms_of_fns): Defsubr it.
21911
21912 * config.in (HAVE_PTY_H, HAVE_SIZE_T, HAVE_LANGINFO_CODESET): New.
21913 (size_t): Remove.
21914
21915 2008-02-01 Dave Love <fx@gnu.org>
21916
21917 * Makefile.in (chartab.o): Depend on charset.h.
21918
21919 2008-02-01 Kenichi Handa <handa@m17n.org>
21920
21921 * character.c (syms_of_character): Set the default value of
21922 Vprintable_chars to Qnil.
21923
21924 2008-02-01 Dave Love <fx@gnu.org>
21925
21926 * Makefile.in (lisp, shortlisp): Change indian.elc to indian.el.
21927
21928 2008-02-01 Kenichi Handa <handa@m17n.org>
21929
21930 * charset.c (load_charset_map): Handle the case that from < to
21931 correctly.
21932
21933 * coding.c (encode_coding_emacs_mule, encode_coding_iso_2022)
21934 (encode_coding_sjis, encode_coding_big5, encode_coding_charset):
21935 Pay attention to raw-8-bit chars.
21936
21937 2008-02-01 Kenichi Handa <handa@m17n.org>
21938
21939 * Makefile.in (lisp, shortlisp): Change chinese.elc to chinese.el.
21940 It is not bytecompiled now.
21941
21942 * charset.c (charset_jisx0201_roman, charset_jisx0208_1978)
21943 (charset_jisx0208): New variables.
21944 (Fdefine_charset_internal): Setup them if appropriate.
21945 (init_charset_once): Initialize them to -1.
21946
21947 * charset.h (charset_jisx0201_roman, charset_jisx0208_1978)
21948 (charset_jisx0208): Extern them.
21949
21950 * coding.c (CODING_ISO_FLAG_USE_ROMAN): New macro.
21951 (CODING_ISO_FLAG_USE_OLDJIS): New macro.
21952 (CODING_ISO_FLAG_FULL_SUPPORT): Change macro definition.
21953 (setup_iso_safe_charsets): Fix arguments to Fassq.
21954 (DECODE_DESIGNATION, ENCODE_ISO_CHARACTER_DIMENSION1)
21955 (ENCODE_ISO_CHARACTER_DIMENSION2): Pay attention to
21956 CODING_ISO_FLAG_USE_ROMAN and CODING_ISO_FLAG_USE_OLDJIS.
21957 (encode_coding_iso_2022): Change the 1st arg to
21958 ENCODE_ISO_CHARACTER to a variable.
21959
21960 2008-02-01 Kenichi Handa <handa@m17n.org>
21961
21962 * charset.h (enum define_charset_arg_index): New enums
21963 charset_arg_min_code and charset_arg_max_code.
21964 (struct charset): New member char_index_offset.
21965
21966 * charset.c (CODE_POINT_TO_INDEX, INDEX_TO_CODE_POINT):
21967 Take charset->char_index_offset into account.
21968 (Fdefine_charset_internal): Handle args[charset_arg_min_code] and
21969 args[charset_arg_max_code]. Setup charset.char_index_offset.
21970 (syms_of_charset): Fix args to Fdefine_charset_internal.
21971
21972 2008-02-01 Dave Love <fx@gnu.org>
21973
21974 * coding.c (decode_coding_utf_8): Reject overlong sequences.
21975
21976 2008-02-01 Dave Love <fx@gnu.org>
21977
21978 * coding.c: Doc fixes.
21979 (Fcoding_system_aliases): Fix return value.
21980 (Qmac): Remove (duplicated) definition.
21981
21982 2008-02-01 Dave Love <fx@gnu.org>
21983
21984 * charset.c (Fcharset_priority_list, Fset_charset_priority):
21985 New functions.
21986
21987 * character.c (Fstring): Doc fix.
21988
21989 * charset.c (Fdefine_charset_alias): Update Vcharset_list.
21990
21991 * fontset.c (Ffontset_info): Doc fix. Return charset names, not ids.
21992 (font-encoding-alist): Doc fix.
21993
21994 2008-02-01 Dave Love <fx@gnu.org>
21995
21996 * term.c (costs_set): Declare static, non-initialized for pcc.
21997 (encode_terminal_code): Remove unused var.
21998
21999 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal decl
22000 for K&R.
22001
22002 * xterm.c (xlwmenu_window_p): Fix prototype for K&R.
22003
22004 * coding.c (setup_iso_safe_charsets): Fix arg decl for K&R.
22005 (suffixes): Move out of make_subsidiaries for K&R.
22006
22007 * charset.c (map_charset_chars): Fix c_function declaration for K&R.
22008
22009 * lisp.h (DEFUN) [!PROTOTYPES]: Remove spurious `args'.
22010
22011 2008-02-01 Dave Love <fx@gnu.org>
22012
22013 * data.c (Fchar_or_string_p): Doc fix. Use CHARACTERP.
22014
22015 * category.c (Fmodify_category_entry): Doc fix. Remove unused vars.
22016
22017 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
22018
22019 * charset.c (Fdefine_charset_internal): Fix argument to bzero.
22020
22021 * coding.c (decode_coding_charset): Workaround for the bug of GCC 2.96.
22022
22023 2008-02-01 Kenichi Handa <handa@m17n.org>
22024
22025 * Makefile.in (lisp, shortlisp): Change cyrillic.elc to cyrillic.el,
22026 vietnamese.elc to vietnamese.el. They are not bytecompiled now.
22027
22028 2008-02-01 Kenichi Handa <handa@m17n.org>
22029
22030 * coding.c (decode_coding_charset): Adjust for the change of
22031 Fdefine_coding_system_internal.
22032 (Fdefine_coding_system_internal): For a coding system of
22033 `charset' type, store a list of charset IDs in
22034 `charset_attr_charset_valids' element of coding attributes.
22035
22036 2008-02-01 Kenichi Handa <handa@m17n.org>
22037
22038 * coding.c (ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
22039 (emacs_mule_char): New arg src. Delete arg `composition'. Change
22040 caller. Handle 2-byte and 3-byte charsets correctly.
22041 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): Rename from
22042 DECODE_EMACS_MULE_COMPOSITION_RULE. Change caller.
22043 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New macro.
22044 (DECODE_EMACS_MULE_21_COMPOSITION): Call
22045 DECODE_EMACS_MULE_COMPOSITION_RULE_21. Produce correct annotation
22046 sequence.
22047 (decode_coding_emacs_mule): Handle composition correctly. Rewind
22048 `src' and `consumed_chars' correctly before calling emacs_mule_char.
22049 (DECODE_COMPOSITION_START): Correctly handle the case of altchar
22050 and alt&rule composition.
22051 (decode_coding_iso_2022): Handle composition correctly.
22052 (init_coding_once): Setup emacs_mule_bytes for private charsets.
22053
22054 * charset.c (Fdefine_charset_internal): Fix bug for the case of
22055 re-defining a charset. If the charset has :emacs-mule-id, setup
22056 emacs_mule_bytes.
22057 (Fmake_char): If CODE1 is nil, use the minimum code of the charset.
22058
22059 2008-02-01 Kenichi Handa <handa@m17n.org>
22060
22061 * coding.c (encode_coding_iso_2022, encode_coding_sjis)
22062 (encode_coding_big5, encode_coding_charset): If coding requires safe
22063 encoding, produce a character specified by
22064 CODING_INHIBIT_CHARACTER_SUBSTITUTION.
22065
22066 2008-02-01 Dave Love <fx@gnu.org>
22067
22068 * xterm.c (XSetIMValues): Declare.
22069
22070 * process.c: Conditionally include sys/wait.h, pty.h.
22071
22072 * print.c (print_object): Fix print format for 64-bit systems.
22073
22074 * keyboard.c (modify_event_symbol): Fix print format for 64-bit systems.
22075
22076 * buffer.c (emacs_strerror): Declare.
22077
22078 * fontset.c (Fclear_face_cache): Declare.
22079 (accumulate_font_info): Comment-out (unused).
22080 (face_for_char, Fset_fontset_font, Ffontset_info): Remove unused
22081 variables.
22082
22083 * character.h (string_escape_byte8): Declare.
22084
22085 * charset.c (load_charset_map, load_charset_map_from_file): Remove
22086 unused vars.
22087 (Fdefine_charset_internal, Fsplit_char, syms_of_charset)
22088 (Fmap_charset_chars): Doc fix.
22089
22090 * coding.c (Vchar_coding_system_table, Qchar_coding_system): Remove.
22091 (Fset_coding_system_priority, Fset_coding_system_priority)
22092 (Fdefine_coding_system_internal): Doc fix.
22093
22094 2008-02-01 Dave Love <fx@gnu.org>
22095
22096 * s/osf5-0.h (C_SWITCH_SYSTEM) [!__GNUC__]: Remove -nointrinsics.
22097
22098 2008-02-01 Kenichi Handa <handa@m17n.org>
22099
22100 * character.c (string_escape_byte8): Make multibyte string with
22101 correct size.
22102
22103 * charset.c (Fmake_char): Delete unnecessary code.
22104
22105 2008-02-01 Kenichi Handa <handa@m17n.org>
22106
22107 * xfns.c (x_encode_text): Allocate coding.destination here, and
22108 call encode_coding_object with dst_object Qnil.
22109
22110 * buffer.c (Fset_buffer_multibyte): Convert 8-bit bytes to
22111 multibyte form correctly.
22112
22113 * fontset.c (fs_load_font): Check fontp->full_name (not fontname)
22114 against Vfont_encoding_alist.
22115
22116 * coding.c (Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
22117 handling of charset list.
22118 (encode_coding_iso_2022): Setup coding->safe_charsets in advance.
22119 (decode_coding_object): Move point to coding->dst_pos before
22120 calling post-read-conversion function.
22121 (encode_coding_object): Give correct arguments to
22122 pre-write-conversion. Ignore the return value of
22123 pre-write-conversion function. Pay attention to the case that
22124 pre-write-conversion changes the current buffer. If dst_object is
22125 Qt, even if coding->src_bytes is zero, allocate at least one byte
22126 to coding->destination.
22127
22128 * coding.h (JIS_TO_SJIS): Fix typo (j1->s1, j2->s2).
22129
22130 * charset.c (Fmake_char): Make it more backward compatible.
22131 (Fmap_charset_chars): Fix docstring.
22132
22133 2008-02-01 Dave Love <fx@gnu.org>
22134
22135 * coding.c: Doc fixes.
22136 (Fdefine_coding_system_alias): Use names, not symbols, in
22137 coding-system-alist.
22138
22139 2008-02-01 Kenichi Handa <handa@m17n.org>
22140
22141 * fontset.c (free_realized_fontsets): Call Fclear_face_cache instead
22142 of calling free_realized_face.
22143
22144 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
22145
22146 * charset.c (read_hex): Don't treat SPC as a comment starter.
22147 (decode_char): If CODE_POINT_TO_INDEX returns -1, always return -1.
22148 (Fdecode_char): Fix typo.
22149
22150 2008-02-01 Kenichi Handa <handa@m17n.org>
22151
22152 * charset.h (struct charset): New member `code_space_mask'.
22153
22154 * coding.c (coding_set_source): Delete the local variable beg_byte.
22155 (encode_coding_charset, Fdefine_coding_system_internal):
22156 Delete the local variable charset.
22157 (Fdefine_coding_system_internal): Setup
22158 attrs[coding_attr_charset_valids] correctly.
22159
22160 * charset.c (CODE_POINT_TO_INDEX): Utilize `code_space_mask'
22161 member to check if CODE is valid or not.
22162 (Fdefine_charset_internal): Initialize `code_space_mask' member.
22163 (encode_char): Before calling CODE_POINT_TO_INDEX, check if CODE
22164 is within the range of charset->min_code and carset->max_code.
22165
22166 2008-02-01 Dave Love <fx@gnu.org>
22167
22168 * syntax.h (syntax_temp) [!__GNUC__]: Declare.
22169
22170 * dispextern.h (generate_ascii_font): Fix return type.
22171
22172 * xfaces.c (generate_ascii_font): Fix arg declaration.
22173
22174 * coding.c (coding_inherit_eol_type)
22175 (Fset_terminal_coding_system_internal)
22176 (Fset_safe_terminal_coding_system_internal): Fix arg declarations.
22177
22178 2008-02-01 Kenichi Handa <handa@m17n.org>
22179
22180 * coding.c (decode_coding_charset, encode_coding_charset): Handle
22181 multiple charsets correctly.
22182
22183 2008-02-01 Kenichi Handa <handa@m17n.org>
22184
22185 * search.c (boyer_moore): Fix handling of multibyte character
22186 translation.
22187
22188 * xdisp.c (display_mode_element): When the variable `elt' is
22189 changed, update `this' and `lisp_string'.
22190
22191 2008-02-01 Kenichi Handa <handa@m17n.org>
22192
22193 * buffer.c (Fset_buffer_multibyte): Fix 8-bit char handling.
22194
22195 * callproc.c (Fcall_process): Be sure to give the current buffer
22196 to decode_coding_c_string. Update PT and PT_BYTE after the insertion.
22197
22198 * charset.c (struct charset_map_entries): New struct.
22199 (load_charset_map): Rename from parse_charset_map. New args
22200 entries and n_entries. Change caller.
22201 (load_charset_map_from_file): Rename from load_charset_map.
22202 Change caller. New arg control_flag. Call load_charset_map at
22203 the tail.
22204 (load_charset_map_from_vector): New function.
22205 (Fdefine_charset_internal): Setup charset.compact_codes_p.
22206 (encode_char): If the charset is compact, change a character index
22207 to a code point.
22208
22209 * coding.c (coding_alloc_by_making_gap): Check the case that the
22210 source and destination are the same correctly.
22211 (decode_coding_raw_text): Set coding->consumed_char and
22212 coding->consumed to 0.
22213 (produce_chars): If coding->chars_at_source is nonzero, update
22214 coding->consumed_char and coding->consumed before calling
22215 alloc_destination.
22216 (Fdefine_coding_system_alias): Register ALIAS in
22217 Vcoding_system_alist.
22218 (syms_of_coding): Define `no-conversion' coding system at the tail.
22219
22220 * fileio.c (Finsert_file_contents): Set coding_system instead of
22221 val. If the current buffer is multibyte, always call
22222 decode_coding_gap.
22223
22224 * xfaces.c (try_font_list): Give higher priority to fontset's
22225 family than face's family.
22226
22227 2008-02-01 Kenichi Handa <handa@m17n.org>
22228
22229 * callproc.c (Fcall_process): Be sure to give the current buffer
22230 to decode_coding_c_string.
22231
22232 * xfaces.c (try_font_list): Give a family specified in a fontset
22233 higher priority than a family specified in a face.
22234
22235 2008-02-01 Kenichi Handa <handa@m17n.org>
22236
22237 * fileio.c (Finsert_file_contents): Fix calculation of `inserted'.
22238 Fix arguments to insert_from_buffer.
22239
22240 * xdisp.c (display_mode_element): Fix calculation of `bytepos'.
22241
22242 2008-02-01 Kenichi Handa <handa@m17n.org>
22243
22244 * coding.c (produce_chars): Set the variable `multibytep' correctly.
22245 (decode_coding_gap): Set coding->dst_multibyte correctly.
22246
22247 2008-02-01 Kenichi Handa <handa@m17n.org>
22248
22249 * coding.c (encode_coding_utf_8): Initialize produced_chars to 0.
22250 (decode_coding_utf_16): Fix converting high and low bytes to code-point.
22251 (encode_coding_utf_16): Substitute coding->default_char for
22252 non-Unicode characters.
22253 (decode_coding): Don't call record_insert here.
22254 (setup_coding_system): Initialize `surrogate' of
22255 coding->spec.utf_16 to 0.
22256 (EMIT_ONE_BYTE): Fix for multibyte case.
22257
22258 * insdel.c (insert_from_gap): Call record_insert.
22259
22260 2008-02-01 Kenichi Handa <handa@m17n.org>
22261
22262 * casefiddle.c (casify_region): Fix multibyte case.
22263
22264 * character.c (c_string_width): Add return type `int'.
22265 (char_string_with_unification): Delete arg ADVANCED.
22266
22267 * character.h (CHAR_VALID_P): Don't call CHARACTERP.
22268 (CHAR_STRING): Adjust for the change of char_string_with_unification.
22269 (CHAR_STRING_ADVANCE): Make it do-while statement.
22270
22271 * chartab.c (sub_char_table_set_range): Optimize for the case
22272 DEPTH == 3. Add workaround code for a GCC optimization bug.
22273
22274 * charset.c (parse_charset_map): Remove an unused variable.
22275
22276 * coding.c: Delete unused variables.
22277
22278 * fileio.c (Finsert_file_contents): Set coding_system to Qnil
22279 earlier. If inserted is zero and the coding system doesn't
22280 require flushing, don't call decode_coding_gap.
22281
22282 * syntax.h (SET_RAW_SYNTAX_ENTRY): Don't call make_number.
22283
22284 2008-02-01 Kenichi Handa <handa@m17n.org>
22285
22286 The following changes are for using Unicode as an internal
22287 character model, and use UTF-8 format for buffer/string
22288 representation.
22289
22290 * .gdbinit (xchartable): Adjust for the change of char table structure.
22291 (xsubchartable, xcoding, xcharset, xcurbuf): New commands.
22292
22293 * Makefile.in (obj): Add character.o and chartab.o.
22294 (lisp, shortlisp): Remove utf-8.elc.
22295 (*.o): For many files, change dependency on charset.h to
22296 character.h, and add dependency on character.h.
22297 (character.o, chartab.o): New targets.
22298
22299 * abbrev.c, bytecode.c, casefiddle.c, cmds.c, dispnew.c, doc.c:
22300 * doprnt.c, dosfns.c, frame.c, marker.c, minibuf.c, msdos.c:
22301 * w16select.c, w32bdf.c, w32console.c: Include "character.h" instead
22302 of "charset.h".
22303
22304 * dired.c, filelock.c: Include "character.h".
22305
22306 * alloc.c: Include "character.h" instead of "charset.h".
22307 (Fmake_char_table, make_sub_char_table): Move to chartab.c.
22308 (syms_of_alloc): Remove defsubr for Smake_char_table.
22309
22310 * buffer.c: Include "character.h" instead of "charset.h", don't
22311 include "coding.h".
22312 (Fset_buffer_multibyte): Adjust for UTF-8.
22313
22314 * buffer.h: EXFUN Fbuffer_live_p.
22315
22316 * callproc.c: Include "character.h" instead of "charset.h".
22317 (Fcall_process): Big change for the new code-conversion APIs.
22318
22319 * casetab.c: Include "character.h" instead of "charset.h".
22320 (set_canon, set_identity, shuffle): Adjust for the new
22321 map_char_table spec.
22322 (init_casetab_once): Call CHAR_TABLE_SET instead of directly
22323 accessing the char table structure.
22324
22325 * chartab.c: New file that implements char table.
22326
22327 * category.c: Include "character.h".
22328 (copy_category_entry): New function.
22329 (copy_category_table): Call map_char_table and copy_category_entry.
22330 (Fmake_category_table): Initialize all top-level slots.
22331 (char_category_set): New function.
22332 (modify_lower_category_set): Delete.
22333 (Fmodify_category_entry): Call char_table_ref_and_range.
22334
22335 * category.h (CATEGORY_SET): Just call char_category_set.
22336
22337 * ccl.c: Include "character.h".
22338 (Qccl, Qcclp): New variables.
22339 (CCL_WRITE_CHAR): Alway treat the arg CH as a character even if
22340 it's less than 256.
22341 (CCL_WRITE_MULTIBYTE_CHAR): Delete.
22342 (CCL_WRITE_STRING, CCL_READ_CHAR): Adjust for the change of SRC
22343 and DST type.
22344 (ccl_driver): Change types of argument, adjust code accordingly.
22345 (Fccl_execute, Fccl_execute_on_string): Adjust for the change of
22346 ccl_driver.
22347 (syms_of_ccl): Intern and staticpro Qccl and Qcclp.
22348
22349 * ccl.h (struct ccl_program): Delete members eol_type and multibyte.
22350 New members src_multibyte, dst_multibyte, consumed, and produced.
22351 (struct ccl_spec): Delete members decoder and encoder. New member ccl.
22352 (CODING_SPEC_CCL_PROGRAM): New macro.
22353 (ccl_driver): Update prototype.
22354 (Qccl, Qcclp, Fccl_program_p): Extern them.
22355 (CHECK_CCL_PROGRAM): New macro.
22356
22357 * character.c, character.h, chartab.c: New files.
22358
22359 * charset.c: Mostly re-written. Move character and multibyte sequence
22360 handling codes to character.c.
22361
22362 * charset.h: Mostly re-written. Move character and multibyte sequence
22363 handling codes to character.h.
22364
22365 * coding.c, coding.h: Mostly re-written.
22366
22367 * composite.c: Include "character.h" instead of "charset.h".
22368 (CHAR_WIDTH): Move to character.h.
22369 (HASH_KEY, HASH_VALUE): Delete.
22370
22371 * composite.h (enum composition_method): Change order of enumeration
22372 symbols.
22373
22374 * data.c: Include "character.h" instead of "charset.h".
22375 (Faref): Call CHAR_TABLE_REF for a char table.
22376 (Faset): Call CHAR_TABLE_SET for a char table.
22377
22378 * dispextern.h (free_realized_face, check_face_attribytes)
22379 (generate_ascii_font): Extern them.
22380 (free_realized_multibyte_face): Delete extern.
22381
22382 * disptab.h (DISP_CHAR_VECTOR): Adjust for the change of char
22383 table structure.
22384
22385 * editfns.c: Include "character.h" instead of "charset.h".
22386 (Fchar_to_string): Always call CHAR_STRING.
22387
22388 * emacs.c (main): Call init_charset_once, init_charset,
22389 syms_of_chartab, and syms_of_character.
22390
22391 * fileio.c: Include "character.h" instead of "charset.h".
22392 (Finsert_file_contents): Big change for the new code-conversion API.
22393 (choose_write_coding_system, Fwrite_region): Likewise.
22394 (build_annotations_2): Delete.
22395 (e_write): Big change for the new code-conversion API.
22396
22397 * fns.c: Include "character.h" instead of "charset.h".
22398 (copy_sub_char_table): Move to chartab.c.
22399 (Fcopy_sequence): Call copy_char_table for a char table.
22400 (concat): Delete codes calling count_multibyte.
22401 (string_char_to_byte, string_byte_to_char): Adjust for the new
22402 multibyte form.
22403 (internal_equal): Adjust for the change of char table structure.
22404 (Fchar_table_subtype, Fchar_table_parent, Fset_char_table_parent)
22405 (Fchar_table_extra_slot, Fset_char_table_extra_slot)
22406 (Fchar_table_range, Fset_char_table_range, Fset_char_table_default)
22407 (char_table_translate, optimize_sub_char_table)
22408 (Foptimize_char_table, map_char_table, Fmap_char_table): Move to
22409 chartab.c.
22410 (char_table_ref_and_index): Delete.
22411 (HASH_KEY, HASH_VALUE): Move to lisp.h.
22412 (Fmd5): Call preferred_coding_system instead of accessing
22413 Vcoding_category_list. Adjust for the new code-conversion API.
22414 (syms_of_fns): Move defsubr for char table related functions to
22415 chartab.c.
22416
22417 * fontset.c: Mostly re-written.
22418
22419 * fontset.h (struct font_info): Change type of the member encoding_type.
22420 (enum FONT_SPEC_INDEX): New enum.
22421 (fontset_font_pattern, fs_load_font): Update prototype.
22422 (FS_LOAD_FONT): Adjust for the change of fs_load_font.
22423
22424 * indent.c: Include "character.h" instead of "charset.h".
22425 (MULTIBYTE_BYTES_WIDTH): Call CHAR_WIDTH instead of WIDTH_BY_CHAR_HEAD.
22426
22427 * insdel.c: Include "character.h" instead of "charset.h".
22428 (copy_text): Don't refer to Vnonascii_translation_table.
22429 (insert_from_gap): New function.
22430
22431 * keyboard.c: Include "character.h" instead of "charset.h".
22432 (command_loop_1): Never call direct_output_forward_char before
22433 a non-ASCII character.
22434 (read_char): If Vkeyboard_translate_table is a char table, always
22435 translate a character.
22436
22437 * keymap.c: Include "character.h".
22438 (store_in_keymap): Handle the case that IDX is a cons.
22439 (Fdefine_key): Handle the case that KEY is a cons and the car part
22440 is also a cons (range).
22441 (push_key_description): Adjust for the new character code.
22442 (describe_vector): Call describe_char_table for a char table.
22443 (describe_char_table): New function.
22444
22445 * keymap.h (describe_char_table): Extern it.
22446
22447 * lisp.h (enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
22448 (XSUB_CHAR_TABLE, XSETSUB_CHAR_TABLE): New macros.
22449 (CHAR_TABLE_ORDINARY_SLOTS, CHAR_TABLE_SINGLE_BYTE_SLOTS)
22450 (SUB_CHAR_TABLE_ORDINARY_SLOTS, SUB_CHAR_TABLE_STANDARD_SLOTS):
22451 Delete.
22452 (CHAR_TABLE_REF, CHAR_TABLE_SET): Adjust for the new char table
22453 structure.
22454 (CHAR_TABLE_TRANSLATE): Just call char_table_translate.
22455 (CHARTAB_SIZE_BITS_0, CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2)
22456 (CHARTAB_SIZE_BITS_3): New macros.
22457 (chartab_size): Extern it.
22458 (struct Lisp_Char_Table): Re-design.
22459 (struct Lisp_Sub_Char_Table): New structure.
22460 (HASH_KEY, HASH_VALUE): Move from fns.c.
22461 (CHARACTERBITS): Define as 22.
22462 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Adjust for the above change.
22463 (SUB_CHAR_TABLE_P): Check PVEC_CHAR_TABLE.
22464 (GC_SUB_CHAR_TABLE_P): New macro.
22465 (Fencode_coding_string, Fdecode_coding_string): Update EXFUN.
22466 (code_convert_string_norecord): Deleted extern.
22467 (init_character_once, syms_of_character, init_charset)
22468 (syms_of_composite, Qeq, Fmakehash, insert_from_gap): Extern them.
22469
22470 * lread.c: Include "character.h".
22471 (read_multibyte): New arg NBYTES.
22472 (read_escape): Change the meaning of returned *BYTEREP.
22473 (to_multibyte): Delete.
22474 (read1): Adjust the handling of char table and string.
22475
22476 * print.c: Include "character.h" instead of "charset.h".
22477 (print_string): Convert 8-bit raw bytes to octal form by
22478 string_escape_byte8.
22479 (print_object): Adjust for the new multibyte form. Print 8-bit
22480 raw bytes always in octal form. Handle sub char table correctly.
22481
22482 * process.c: Include "character.h" instead of "charset.h".
22483 (read_process_output, send_process): Adjust for the new
22484 code-conversion API.
22485
22486 * puresize.h (BASE_PURESIZE): Increase.
22487
22488 * regex.c: Include "character.h" instead of "charset.h".
22489 (BYTE8_TO_CHAR, CHAR_BYTE8_P) [not emacs]: New dummy macros.
22490 (regex_compile): Accept a range whose starting and ending
22491 character have different leading bytes.
22492 (analyse_first): Adjust for the above change.
22493
22494 * search.c: Include "character.h" instead of "charset.h".
22495 (search_buffer, boyer_moore): Adjust for the new multibyte form.
22496 (Freplace_match): Adjust for the change of multibyte_char_to_unibyte.
22497
22498 * syntax.c: Include "character.h" instead of "charset.h".
22499 (syntax_parent_lookup): Delete.
22500 (Fmodify_syntax_entry): Accept a cons as CHAR.
22501 (skip_chars): Adjust for the new multibyte form.
22502 (init_syntax_once): Call char_table_set_range instead of directly
22503 accessing the structure of a char table.
22504
22505 * syntax.h (SET_RAW_SYNTAX_ENTRY): Call CHAR_TABLE_SET.
22506 (SYNTAX_ENTRY_FOLLOW_PARENT): Delete macro.
22507 (SET_RAW_SYNTAX_ENTRY_RANGE): New macro.
22508 (SYNTAX_ENTRY_INT): Call CHAR_TABLE_REF.
22509
22510 * term.c: Include "buffer.h" and "character.h".
22511 (encode_terminal_code, write_glyphs): Adjust for the new
22512 code-conversion API.
22513 (produce_glyphs): Call CHAR_WIDTH instead of CHARSET_WIDTH.
22514
22515 * w32term.c (x_new_font): Adjust for the change of FS_LOAD_FONT.
22516
22517 * xdisp.c: Include "character.h".
22518 (get_next_display_element): Adjust for the new multibyte form.
22519 (disp_char_vector): Adjust for the new char table structure.
22520 (decode_mode_spec_coding): Adjust for the new structure of
22521 coding system.
22522 (decode_mode_spec): Adjust for the new code-conversion API.
22523
22524 * xfaces.c: Include "character.h" instead of "charset.h".
22525 (load_face_font): Adjust for the change of choose_face_font and
22526 FS_LOAD_FONT.
22527 (generate_ascii_font): New function.
22528 (set_lface_from_font_name): Adjust for the change of FS_LOAD_FONT.
22529 (set_font_frame_param): Adjust for the change of choose_face_font.
22530 (free_realized_face): Make it public.
22531 (free_realized_faces_for_fontset): Rename from
22532 free_realized_multibyte_face. Free also faces realized for ASCII.
22533 (choose_face_font): Change arguments. Adjust for the change of
22534 fontset_font_pattern and FS_LOAD_FONT.
22535
22536 * xfns.c: Include "character.h".
22537 (x_encode_text): Adjust for the new code-conversion API.
22538
22539 * xselect.c: Don't include "charset.h".
22540 (selection_data_to_lisp_data): Adjust for the new code conversion API.
22541
22542 * xterm.c: Include "character.h".
22543 (x_encode_char): New argument CHARSET. Change caller.
22544 (x_get_char_face_and_encoding, x_get_glyph_face_and_encoding):
22545 Call ENCODE_CHAR instead of SPLIT_CHAR.
22546 (x_produce_glyphs): Don't check Vnonascii_translation_table Call
22547 CHAR_WIDTH instead of CHARSET_WIDTH.
22548 (XTread_socket): Adjust for the new code-conversion API.
22549 (x_new_font): Adjust for the change of FS_LOAD_FONT.
22550 (x_load_font): Adjust for the change of struct font.
22551
22552 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
22553
22554 * xfaces.c (face_at_buffer_position): Remove unused vars.
22555
22556 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
22557
22558 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR):
22559 Fix overflow checking.
22560
22561 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
22562
22563 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR, ccl_driver):
22564 Cancel previous change.
22565
22566 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
22567
22568 * ccl.c (CCL_WRITE_CHAR): Increment extra_bytes only when
22569 ccl->eight_bit_control. Fix check for buffer overflow.
22570 (CCL_WRITE_MULTIBYTE_CHAR): Fix check for buffer overflow.
22571 (ccl_driver): Initialize extra_bytes to 0.
22572
22573 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
22574
22575 * keyboard.c (make_ctrl_char): If C is a multibyte character, just
22576 return it ORed with ctrl_modifier.
22577
22578 2008-01-29 Miles Bader <miles@gnu.org>
22579
22580 * macterm.c (XTset_vertical_scroll_bar): Fix merge mistake.
22581
22582 2008-01-28 Jason Rumney <jasonr@gnu.org>
22583
22584 * w32.c (stat): Don't double check for networked drive.
22585
22586 2008-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
22587
22588 * window.c (run_window_configuration_change_hook): New function.
22589 Code extracted from set_window_buffer. Set the selected frame.
22590 (set_window_buffer): Use it.
22591 * window.h (run_window_configuration_change_hook): Declare.
22592 * dispnew.c (change_frame_size_1): Use it instead of set-window-buffer.
22593
22594 * keyboard.c (read_char): Yet another int/Lisp_Object mixup (YAILOM).
22595
22596 2008-01-27 Dan Nicolaescu <dann@ics.uci.edu>
22597
22598 * Makefile.in: Remove references to unused macros.
22599
22600 2008-01-26 Eli Zaretskii <eliz@gnu.org>
22601
22602 * w32.c (g_b_init_get_sid_sub_authority)
22603 (g_b_init_get_sid_sub_authority_count): New static variables.
22604 (GetSidSubAuthority_Proc, GetSidSubAuthorityCount_Proc): New typedefs.
22605 (get_sid_sub_authority, get_sid_sub_authority_count): New functions.
22606 (init_user_info): Use them to retrieve uid and gid.
22607 Use 500/513, the Windows defaults, as Administrator's uid/gid.
22608 (fstat): Use pw_uid and pw_gid from the_passwd structure for
22609 st_uid and st_gid of the file.
22610
22611 2008-01-26 Jason Rumney <jasonr@gnu.org>
22612
22613 * w32.c (logon_network_drive): New function.
22614 (stat): Use it.
22615
22616 2008-01-26 Chong Yidong <cyd@stupidchicken.com>
22617
22618 * xdisp.c (pos_visible_p): Handle the case where charpos falls on
22619 invisible text covered with an ellipsis.
22620
22621 2008-01-25 Richard Stallman <rms@gnu.org>
22622
22623 * xdisp.c (redisplay_window): Run Qwindow_text_change_functions and
22624 jump back to beginning. Move some other initializations after that.
22625 (Qwindow_text_change_functions, Vwindow_text_change_functions):
22626 New variables.
22627 (syms_of_xdisp): Init them.
22628
22629 * keyboard.c (read_char): Restore echo_message_buffer after redisplay.
22630
22631 * buffer.c (reset_buffer_local_variables):
22632 Implement `permanent-local-hook'.
22633 (Qpermanent_local_hook): New variable.
22634 (syms_of_buffer): Init and staticpro it.
22635
22636 2008-01-25 Michael Albinus <michael.albinus@gmx.de>
22637
22638 * dbusbind.c (xd_retrieve_arg): Pacify GCC on x86_64 GNU/Linux.
22639
22640 2008-01-25 Thien-Thi Nguyen <ttn@gnuvola.org>
22641
22642 * fns.c (Fclrhash): Return TABLE.
22643
22644 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22645
22646 * macterm.c (x_scroll_bar_create): Initialize bar->redraw_needed_p.
22647 (XTset_vertical_scroll_bar): Redraw scroll bar if bar->redraw_needed_p
22648 is set even without positional changes.
22649 (x_scroll_bar_clear): Set bar->redraw_needed_p.
22650
22651 * macterm.h (struct scroll_bar): New member `redraw_needed_p'.
22652
22653 2008-01-23 Jason Rumney <jasonr@gnu.org>
22654
22655 * xterm.c (handle_one_xevent): Revert to counting chars not bytes.
22656
22657 * w32term.c (w32_read_socket) <WM_CHAR>: Decode characters outside
22658 the unicode range available in MULE by locale-coding-system.
22659 Improve dbcs lead byte detection. Set event timestamp and modifiers
22660 earlier.
22661
22662 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22663
22664 * mac.c (mac_emacs_pid) [MAC_OSX]: New variable.
22665 [MAC_OSX] (init_mac_osx_environment): Initialize it.
22666 [MAC_OSX] (mac_try_close_socket) [SELECT_USE_CFSOCKET]: Return 0
22667 when used on child processes.
22668
22669 2008-01-21 Michael Albinus <michael.albinus@gmx.de>
22670
22671 * dbusbind.c (Fdbus_method_return_internal): Rename from
22672 Fdbus_method_return.
22673 (Fdbus_unregister_object): Move to dbus.el.
22674 (Fdbus_call_method, Fdbus_method_return_internal)
22675 (Fdbus_send_signal): Improve debug messages.
22676
22677 2008-01-20 Martin Rudalics <rudalics@gmx.at>
22678
22679 * undo.c (undo_inhibit_record_point): New variable.
22680 (syms_of_undo): Initialize it.
22681 (record_point): Don't record point when undo_inhibit_record_point
22682 is set.
22683
22684 2008-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
22685
22686 * process.c (list_processes_1): Don't use SCHARS on a nil buffer name.
22687
22688 * xdisp.c (Qauto_hscroll_mode): New var.
22689 (syms_of_xdisp): Initialize it.
22690 (hscroll_window_tree): Use it to lookup `auto-hscroll-mode' in each
22691 window's buffer.
22692 (hscroll_windows): Don't check automatic_hscrolling_p here.
22693
22694 * window.c (set_window_buffer): Don't unnecessarily reset hscroll and
22695 vscroll if we're setting window-buffer to the value it already has.
22696
22697 2008-01-18 Dan Nicolaescu <dann@ics.uci.edu>
22698
22699 * m/intel386.h: Remove references to XENIX.
22700
22701 2008-01-17 Andreas Schwab <schwab@suse.de>
22702
22703 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Use HAVE_LIB64_DIR
22704 instead of HAVE_X86_64_LIB64_DIR.
22705 * m/ibms390x.h (START_FILES, LIB_STANDARD): Likewise.
22706
22707 2008-01-17 Glenn Morris <rgm@gnu.org>
22708
22709 * m/ibms390x.h (START_FILES, LIB_STANDARD): Adjust value according
22710 to HAVE_X86_64_LIB64_DIR.
22711
22712 2008-01-16 Dan Nicolaescu <dann@ics.uci.edu>
22713
22714 * s/irix3-3.h:
22715 * s/irix4-0.h:
22716 * s/386-ix.h:
22717 * s/domain.h:
22718 * s/hpux9-x11r4.h:
22719 * s/hpux9shxr4.h: Remove files for systems no longer supported.
22720
22721 * sysdep.c: Remove code containing references to symbols defined
22722 by unsupported systems.
22723
22724 2008-01-16 Glenn Morris <rgm@gnu.org>
22725
22726 * coding.c (select-safe-coding-system-function): Doc fix.
22727
22728 2008-01-15 Glenn Morris <rgm@gnu.org>
22729
22730 * config.in: Revert 2008-01-13 change: this is a generated file.
22731
22732 2008-01-13 Tom Tromey <tromey@redhat.com>
22733
22734 * lisp.h: Fix typo.
22735
22736 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
22737
22738 * m/sequent-ptx.h:
22739 * m/sequent.h:
22740 * s/ptx.h:
22741 * s/ptx4-2.h:
22742 * s/ptx4.h: Remove files for systems no longer supported.
22743
22744 * callproc.c (Fcall_process): Fix previous change.
22745
22746 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
22747
22748 * unexsunos4.c: Remove file, system not supported anymore.
22749
22750 * m/mips.h:
22751 * m/intel386.h:
22752 * callproc.c:
22753 * config.in:
22754 * ecrt0.c:
22755 * emacs.c:
22756 * fileio.c:
22757 * frame.c:
22758 * getpagesize.h:
22759 * keyboard.c:
22760 * lread.c:
22761 * process.c:
22762 * puresize.h:
22763 * sysdep.c:
22764 * systty.h:
22765 * syswait.h:
22766 * unexec.c:
22767 * xdisp.c:
22768 * alloc.c: Remove code containing references to symbols defined by
22769 unsupported systems.
22770
22771 2008-01-11 Kenichi Handa <handa@ni.aist.go.jp>
22772
22773 * coding.c (detect_coding_mask): Fix previous change.
22774
22775 2008-01-09 Kenichi Handa <handa@ni.aist.go.jp>
22776
22777 * coding.c (detect_coding_iso2022): New arg
22778 latin_extra_code_state. Allow Latin extra codes only
22779 when *latin_extra_code_state is nonzero.
22780 (detect_coding_mask): If there is a NULL byte, detect the encoding
22781 as UTF-16 or binary. If Latin extra codes exist, detect the
22782 encoding as ISO-2022 only when there's no other proper encoding is
22783 found.
22784
22785 2008-01-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22786
22787 * frame.c (Fmake_terminal_frame): Use #ifdef MAC_OS8 instead of
22788 #ifdef MAC_OS.
22789
22790 2008-01-08 Richard Stallman <rms@gnu.org>
22791
22792 * fileio.c (Ffile_name_directory, Fexpand_file_name): Doc fixes.
22793
22794 2008-01-06 Nick Roberts <nickrob@snap.net.nz>
22795
22796 * keyboard.c (parse_menu_item): Don't enclose key bindings on
22797 menu bar in parentheses.
22798
22799 2008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
22800
22801 * m/7300.h:
22802 * m/acorn.h:
22803 * m/alliant-2800.h:
22804 * m/alliant.h:
22805 * m/alliant1.h:
22806 * m/alliant4.h:
22807 * m/altos.h:
22808 * m/amdahl.h:
22809 * m/apollo.h:
22810 * m/att3b.h:
22811 * m/aviion-intel.h:
22812 * m/aviion.h:
22813 * m/celerity.h:
22814 * m/clipper.h:
22815 * m/cnvrgnt.h:
22816 * m/convex.h:
22817 * m/cydra5.h:
22818 * m/delta88k.h:
22819 * m/dpx2.h:
22820 * m/dual.h:
22821 * m/elxsi.h:
22822 * m/f301.h:
22823 * m/gould-np1.h:
22824 * m/gould.h:
22825 * m/i860.h:
22826 * m/ibmps2-aix.h:
22827 * m/ibmrt-aix.h:
22828 * m/ibmrt.h:
22829 * m/irist.h:
22830 * m/is386.h:
22831 * m/isi-ov.h:
22832 * m/mega68.h:
22833 * m/mg1.h:
22834 * m/news-r6.h:
22835 * m/news-risc.h:
22836 * m/news.h:
22837 * m/nh3000.h:
22838 * m/nh4000.h:
22839 * m/ns16000.h:
22840 * m/ns32000.h:
22841 * m/nu.h:
22842 * m/orion.h:
22843 * m/orion105.h:
22844 * m/paragon.h:
22845 * m/pfa50.h:
22846 * m/plexus.h:
22847 * m/pyramid.h:
22848 * m/pyrmips.h:
22849 * m/sh3el.h:
22850 * m/sps7.h:
22851 * m/sr2k.h:
22852 * m/stride.h:
22853 * m/sun1.h:
22854 * m/sun2.h:
22855 * m/sun3-68881.h:
22856 * m/sun3-fpa.h:
22857 * m/sun3-soft.h:
22858 * m/sun3.h:
22859 * m/sun386.h:
22860 * m/symmetry.h:
22861 * m/tad68k.h:
22862 * m/tahoe.h:
22863 * m/targon31.h:
22864 * m/tek4300.h:
22865 * m/tekxd88.h:
22866 * m/tower32.h:
22867 * m/tower32v3.h:
22868 * m/ustation.h:
22869 * m/wicat.h:
22870 * m/xps100.h:
22871 * s/cxux.h:
22872 * s/cxux7.h:
22873 * s/dgux.h:
22874 * s/dgux4.h:
22875 * s/dgux5-4-3.h:
22876 * s/dgux5-4r2.h:
22877 * s/esix.h:
22878 * s/esix5r4.h:
22879 * s/hiuxmpp.h:
22880 * s/hiuxwe2.h:
22881 * s/iris3-5.h:
22882 * s/iris3-6.h:
22883 * s/isc2-2.h:
22884 * s/isc3-0.h:
22885 * s/isc4-0.h:
22886 * s/isc4-1.h:
22887 * s/newsos5.h:
22888 * s/newsos6.h:
22889 * s/osf1.h:
22890 * s/osf5-0.h:
22891 * s/riscix1-1.h:
22892 * s/riscix12.h:
22893 * s/sco4.h:
22894 * s/sco5.h:
22895 * s/sunos4-0.h:
22896 * s/sunos4-1.h:
22897 * s/sunos413.h:
22898 * s/sunos4shr.h:
22899 * s/umax.h:
22900 * s/unipl5-2.h:
22901 * s/xenix.h:
22902 * cxux-crt0.s:
22903 * unexapollo.c:
22904 * unexconvex.c:
22905 * unexenix.c:
22906 * unexsni.c: Remove files for systems no longer supported.
22907
22908 * m/intel386.h: Remove references to unsupported systems.
22909
22910 * w32.c (get_emacs_configuration): Remove reference to i860.
22911
22912 * sysdep.c: Remove dead code.
22913
22914 2008-01-05 Dan Nicolaescu <dann@ics.uci.edu>
22915
22916 * s/rtu.h:
22917 * m/masscomp.h: Remove files. Platform is obsolete.
22918
22919 2008-01-04 Michael Albinus <michael.albinus@gmx.de>
22920
22921 * dbusbind.c (Fdbus_method_return): New function.
22922 (xd_read_message): Add the serial number to the event.
22923 (Fdbus_register_method): Activate the function.
22924
22925 2008-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
22926
22927 * keyboard.c (read_key_sequence): Fix typo.
22928
22929 2008-01-03 Michael Albinus <michael.albinus@gmx.de>
22930
22931 * dbusbind.c (all): Replace XCAR by CAR_SAFE and XCDR by CDR_SAFE.
22932 (xd_signature, xd_append_arg): Handle element type detection for
22933 empty arrays.
22934 (Fdbus_call_method, Fdbus_send_signal): Undo type casting for
22935 SDATA () calls; this must be solved more general.
22936 (Fdbus_register_signal): Use SBYTES instead of strlen.
22937
22938 2008-01-03 Magnus Henoch <magnus@zemdatav>
22939
22940 * dbusbind.c (xd_append_arg): Use unsigned char instead of
22941 unsigned int for byte values (necessary for big-endian platform).
22942 (Fdbus_call_method): Handle the case of no returned arguments.
22943
22944 2007-12-31 Tom Tromey <tromey@redhat.com> (tiny change)
22945
22946 * dbusbind.c (xd_read_message): Use non-static input_event struct.
22947
22948 2007-12-31 Magnus Henoch <mange@freemail.hu>
22949
22950 * dbusbind.c (xd_signature): Signature of variant is just "v".
22951
22952 2007-12-30 Michael Albinus <michael.albinus@gmx.de>
22953
22954 * dbusbind.c: Fix several errors and compiler warnings.
22955 Reported by Tom Tromey <tromey@redhat.com>.
22956 (XD_ERROR, XD_DEBUG_MESSAGE)
22957 (XD_DEBUG_VALID_LISP_OBJECT_P): Wrap code with "do ... while (0)".
22958 (xd_append_arg): Part for basic D-Bus types rewritten.
22959 (xd_retrieve_arg): Split implementation of DBUS_TYPE_BYTE and
22960 DBUS_TYPE_(U)INT16. Don't call XD_DEBUG_MESSAGE with "%f" if not
22961 appropriate.
22962 (xd_read_message): Return Qnil. Don't signal an error; it is not
22963 useful during event reading.
22964 (Fdbus_register_signal): Signal an error if the check for
22965 FUNCTIONP fails.
22966 (Fdbus_register_method): New function. The implementation is not
22967 complete, the call of the function signals an error therefore.
22968 (Fdbus_unregister_object): New function, renamed from
22969 Fdbus_unregister_signal. The initial check signals an error, if
22970 the object is not well formed.
22971
22972 2007-12-30 Richard Stallman <rms@gnu.org>
22973
22974 * textprop.c (get_char_property_and_overlay):
22975 Signal error if POSITION is out of range in a buffer.
22976
22977 2007-12-29 Martin Rudalics <rudalics@gmx.at>
22978
22979 * w32fns.c (Fx_create_frame): Make copy of frame parameters
22980 because the original parameters are in pure storage now.
22981
22982 2007-12-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22983
22984 * xdisp.c (phys_cursor_in_rect_p): Check if cursor is in fringe area.
22985
22986 2007-12-22 Eli Zaretskii <eliz@gnu.org>
22987
22988 * callint.c (syms_of_callint) <command-history>: Add reference to
22989 history-length in the doc string.
22990
22991 2007-12-17 Jason Rumney <jasonr@gnu.org>
22992
22993 * w32fns.c (w32_wnd_proc) <WM_KEYDOWN>: Cast char to unsigned
22994 before passing as wParam.
22995
22996 2007-12-22 Michael Albinus <michael.albinus@gmx.de>
22997
22998 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_BYTE,
22999 DBUS_TYPE_INT16, DBUS_TYPE_UINT16, DBUS_TYPE_INT64,
23000 DBUS_TYPE_UINT64, DBUS_TYPE_DOUBLE and DBUS_TYPE_SIGNATURE.
23001 Return float when DBUS_TYPE_INT32 or DBUS_TYPE_UINT32 do not fit
23002 as number.
23003 (Fdbus_call_method): Fix docstring.
23004
23005 2007-12-21 Michael Albinus <michael.albinus@gmx.de>
23006
23007 * dbusbind.c (XD_BASIC_DBUS_TYPE, XD_DBUS_TYPE_P, XD_NEXT_VALUE):
23008 New macros.
23009 (XD_SYMBOL_TO_DBUS_TYPE): Rename from XD_LISP_SYMBOL_TO_DBUS_TYPE.
23010 (XD_OBJECT_TO_DBUS_TYPE): Rename from XD_LISP_OBJECT_TO_DBUS_TYPE.
23011 Simplify.
23012 (xd_signature): New function.
23013 (xd_append_arg): Compute also signatures. Major rewrite.
23014 (xd_retrieve_arg): Make debug messages friendly.
23015 (Fdbus_call_method, Fdbus_send_signal): Extend docstring.
23016 Check for signatures of arguments.
23017
23018 2007-12-19 Michael Albinus <michael.albinus@gmx.de>
23019
23020 * dbusbind.c (QCdbus_type_byte, QCdbus_type_boolean)
23021 (QCdbus_type_int16, QCdbus_type_uint16, QCdbus_type_int32)
23022 (QCdbus_type_uint32, QCdbus_type_int64, QCdbus_type_uint64)
23023 (QCdbus_type_double, QCdbus_type_string, QCdbus_type_object_path)
23024 (QCdbus_type_signature, QCdbus_type_array, QCdbus_type_variant)
23025 (QCdbus_type_struct, QCdbus_type_dict_entry): New D-Bus type symbols.
23026 (XD_LISP_SYMBOL_TO_DBUS_TYPE): New macro.
23027 (XD_LISP_OBJECT_TO_DBUS_TYPE): Add compound types.
23028 (xd_retrieve_value): Remove. Functionality included in ...
23029 (xd_append_arg): New function.
23030 (Fdbus_call_method, Fdbus_send_signal): Apply it.
23031
23032 2007-12-16 Michael Albinus <michael.albinus@gmx.de>
23033
23034 * dbusbind.c (top): Include <stdio.h>.
23035 (Fdbus_call_method, Fdbus_send_signal): Apply type cast in
23036 dbus_message_new_method_call and dbus_message_new_signal.
23037 (Fdbus_register_signal): Rename unique_name to uname.
23038 Check handler for FUNCTIONP instead of CHECK_SYMBOL. Handle case of
23039 non-existing unique name. Fix typos in matching rule. Return an
23040 object which is useful in Fdbus_unregister_signal.
23041 (Fdbus_unregister_signal): Reimplementation, in order to remove
23042 only the corresponding entry.
23043 (Vdbus_registered_functions_table): Change the order of entries.
23044 Apply these changes in xd_read_message and Fdbus_register_signal.
23045
23046 2007-12-16 Andreas Schwab <schwab@suse.de>
23047
23048 * fileio.c (Finsert_file_contents): Fix overflow check to not
23049 depend on undefined integer overflow.
23050
23051 2007-12-14 Jason Rumney <jasonr@gnu.org>
23052
23053 * w32term.c (w32_read_socket): Use MULTIBYTE_CHAR_KEYSTROKE_EVENT
23054 for characters above 127.
23055
23056 2007-12-13 Jason Rumney <jasonr@gnu.org>
23057
23058 * w32fns.c (w32_wnd_proc, Fw32_reconstruct_hot_key): Range check
23059 before dereferencing array.
23060 (lookup_vk_code): Remove zero comparison.
23061
23062 2007-12-14 Michael Albinus <michael.albinus@gmx.de>
23063
23064 * dbusbind.c (xd_retrieve_value, xd_retrieve_arg)
23065 (Fdbus_call_method, Fdbus_send_signal, xd_read_message):
23066 Use `unsigned int' instead of `uint'.
23067 (xd_read_message, Fdbus_register_signal): Split expressions into
23068 multiple lines before operators "&&" and "||", according to the
23069 GNU Coding Standards.
23070
23071 2007-12-14 Eli Zaretskii <eliz@gnu.org>
23072
23073 * dispextern.h (WINDOWS_NT): Fix incorrect spelling of WINDOWSNT.
23074
23075 2007-12-12 Juri Linkov <juri@jurta.org>
23076
23077 * buffer.c (Frename_buffer): In interactive spec replace
23078 `read-buffer' with `read-string' that uses `buffer-name-history'
23079 as history, and the current buffer's name as default.
23080
23081 2007-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
23082
23083 * keyboard.c (Fcommand_execute): Call Qcall_interactively instead of
23084 manipulating the backtrace manually.
23085 (make_lispy_event): Merge the ASCII and MULTIBYTE cases.
23086 (struct backtrace, backtrace_list): Remove.
23087 (command_loop_1): Remove dead var `no_direct'.
23088
23089 * buffer.c (reset_buffer_local_variables): If permanent_too is 0, also
23090 preserve non-built-in buffer-local variables.
23091 (Fkill_all_local_variables): Don't re-create&re-set permanent
23092 buffer-local variables.
23093
23094 2007-12-09 Juri Linkov <juri@jurta.org>
23095
23096 * buffer.c (Frename_buffer): Change interactive spec from "s" to
23097 Lisp code that uses `read-buffer' with current buffer as default.
23098
23099 2007-12-08 Michael Albinus <michael.albinus@gmx.de>
23100
23101 * dbusbind.c (xd_read_message): Generate an event for every
23102 registered handler. There might be several handlers registered
23103 for the same signal.
23104 (Fdbus_register_signal): Don't overwrite a registration for the
23105 same signal. Add a new registration if handlers are different.
23106 (Vdbus_registered_functions_table): Rework doc string.
23107
23108 2007-12-07 Michael Albinus <michael.albinus@gmx.de>
23109
23110 * dbusbind.c (Fdbus_get_unique_name, xd_read_message)
23111 (Fdbus_register_signal): Use DBUS_MAXIMUM_NAME_LENGTH and
23112 DBUS_MAXIMUM_MATCH_RULE_LENGTH for string lengths.
23113 (Fdbus_call_method, Fdbus_send_signal, Fdbus_register_signal):
23114 Unify argument lists.
23115 (xd_read_message, Fdbus_register_signal): Reorder and extend event
23116 arguments and hash table keys. Use unique name for service.
23117 (Fdbus_unregister_signal): Remove checks.
23118 (Vdbus_registered_functions_table): Fix doc string.
23119
23120 2007-12-05 Magnus Henoch <mange@freemail.hu>
23121
23122 * process.c (make_process): Initialize pty_flag to 0.
23123
23124 2007-12-05 Jason Rumney <jasonr@gnu.org>
23125
23126 * image.c (xbm_load) [WINDOWSNT]: Shuffle the bits of directly
23127 specified XBMs.
23128
23129 2007-12-05 Richard Stallman <rms@gnu.org>
23130
23131 * xdisp.c (syms_of_xdisp) <scroll-conservatively>: Doc fix.
23132
23133 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23134
23135 * mac.c (cfsockets_for_select) [MAC_OSX && SELECT_USE_CFSOCKET]:
23136 New variable.
23137 (mac_try_close_socket) [MAC_OSX]: New function.
23138 [MAC_OSX] (sys_select) [SELECT_USE_CFSOCKET]:
23139 Update cfsockets_for_select. Replace invalid CFRunLoop source.
23140
23141 * sysdep.c (emacs_close) [MAC_OSX && HAVE_CARBON]:
23142 Use mac_try_close_socket.
23143
23144 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23145
23146 * unexmacosx.c (unrelocate): New argument BASE. Use it instead of
23147 reloc_base.
23148 (copy_dysymtab): Compute relocation base here.
23149 (rebase_reloc_address) [__ppc64__]: New function.
23150 (copy_dysymtab) [__ppc64__]: Use it if relocation base needs to be
23151 changed.
23152
23153 2007-12-05 Jason Rumney <jasonr@gnu.org>
23154
23155 * w32proc.c (sys_spawnve): Quote args with wildcards.
23156
23157 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23158
23159 * unexmacosx.c (copy_data_segment): Also copy __gcc_except_tab and
23160 __objc_* sections.
23161 (unrelocate) [_LP64]: Set relocation base to address of data segment.
23162
23163 2007-12-05 Michael Albinus <michael.albinus@gmx.de>
23164
23165 * dbusbind.c (xd_read_message): Return value is a Lisp_Object.
23166 Move check for Vdbus_registered_functions_table to
23167 xd_read_queued_messages.
23168 (xd_read_queued_messages): Protect xd_read_message calls by
23169 internal_condition_case_1.
23170
23171 2007-12-04 Michael Albinus <michael.albinus@gmx.de>
23172
23173 * dbusbind.c (QCdbus_system_bus, QCdbus_session_bus): Rename from
23174 Qdbus_system_bus and Qdbus_session_bus, respectively.
23175 (Vdbus_intern_symbols): Remove.
23176 (Vdbus_registered_functions_table): New hash table.
23177 (XD_SYMBOL_INTERN_SYMBOL): Remove.
23178 (xd_read_message, Fdbus_register_signal, Fdbus_unregister_signal):
23179 Rewrite in order to manage registered functions by hash table
23180 Vdbus_registered_functions_table.
23181
23182 2007-12-03 Jan Djärv <jan.h.d@swipnet.se>
23183
23184 * xterm.c: Update URL to Window Manager Specification in comment.
23185
23186 2007-12-02 Michael Albinus <michael.albinus@gmx.de>
23187
23188 * config.in (HAVE_DBUS): Add.
23189
23190 * Makefile.in (HAVE_DBUS): Add D-Bus definitions if defined.
23191 (ALL_CFLAGS): Add ${DBUS_CFLAGS}.
23192 (obj): Add $(DBUS_OBJ).
23193 (LIBES): Add $(DBUS_LIBS).
23194 (dbusbind.o): New target.
23195
23196 * dbusbind.c: New file.
23197
23198 * emacs.c (main): Call syms_of_dbusbind when HAVE_DBUS is defined.
23199
23200 * keyboard.c: All D-Bus related code is wrapped by "#ifdef HAVE_DBUS".
23201 (Qdbus_event): New Lisp symbol.
23202 (kbd_buffer_get_event, make_lispy_event): Handle DBUS_EVENT.
23203 (gobble_input): Call xd_read_queued_messages, reading D-Bus messages.
23204 (keys_of_keyboard): Define dbus-event.
23205
23206 * termhooks.h (event_kind): Add DBUS_EVENT when HAVE_DBUS is defined.
23207
23208 2007-12-01 Richard Stallman <rms@gnu.org>
23209
23210 * search.c (syms_of_search) <inhibit-changing-match-data>: Doc fix.
23211
23212 2007-11-30 Jason Rumney <jasonr@gnu.org>
23213
23214 * w32console.c (w32con_ins_del_lines, scroll_line): Clip to window.
23215 (w32con_reset_terminal_modes): Clear screen buffer.
23216 (w32_face_attributes): Don't use color indexes that are out of range.
23217 Only reverse the default colors.
23218
23219 * xfaces.c (map_tty_color, tty_color_name): Remove special case for
23220 WINDOWSNT.
23221
23222 * w32console.c, w32term.h (vga_stdcolor_name): Remove.
23223
23224 2007-11-29 Jason Rumney <jasonr@gnu.org>
23225
23226 * w32console.c: Leave HAVE_WINDOW_SYSTEM defined.
23227 (w32_face_attributes): Use Vtty_defined_color_alist to determine
23228 if the terminal colors are initialized.
23229 (unspecified_fg, unspecified_bg): Remove unused declarations.
23230
23231 2007-11-29 Andreas Schwab <schwab@suse.de>
23232
23233 * keyboard.c (apply_modifiers): Fix typo.
23234
23235 2007-11-29 Richard Stallman <rms@gnu.org>
23236
23237 * keymap.c (Fcurrent_local_map): Doc fix.
23238
23239 2007-11-28 Petr Salinger <Petr.Salinger@seznam.cz> (tiny change)
23240
23241 * s/gnu-kfreebsd.h: New file.
23242
23243 2007-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
23244
23245 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
23246 Don't cast redundantly.
23247
23248 * keyboard.c (KEY_TO_CHAR): New macro.
23249 (parse_modifiers, apply_modifiers): Accept integer arguments.
23250 (read_key_sequence): Use them to unify the "shift->unshift" mapping
23251 for chars and symbol keys.
23252 After doing such remapping, apply function-key-map again.
23253
23254 2007-11-27 Dan Nicolaescu <dann@ics.uci.edu>
23255
23256 * Makefile.in (SOME_MACHINE_LISP): Remove VMS files, they are not
23257 compiled anymore.
23258
23259 2007-11-26 Andreas Schwab <schwab@suse.de>
23260
23261 * process.c (list_processes_1): Fix indentation level of the
23262 command column.
23263
23264 2007-11-23 Andreas Schwab <schwab@suse.de>
23265
23266 * editfns.c (Fformat): Handle %c specially since it requires the
23267 argument to be of type int.
23268
23269 2007-11-23 Markus Triska <markus.triska@gmx.at>
23270
23271 * emacs.c (main): Call init_editfns before init_process, since
23272 init_process sets Vprocess_connection_type depending on OS release.
23273
23274 2007-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
23275
23276 * data.c (do_symval_forwarding): Use same code as in find_symbol_value.
23277 (find_symbol_value): Use do_symval_forwarding.
23278
23279 * data.c (set_internal): Set the value in the `cons-cell' (for
23280 Buffer_Local_values) not only for frame-local variables.
23281
23282 2007-11-22 Andreas Schwab <schwab@suse.de>
23283
23284 * data.c (Fnumber_to_string): Add cast when passing EMACS_INT
23285 values to sprintf.
23286 * keymap.c (Fsingle_key_description): Likewise.
23287 * print.c (print_object): Likewise.
23288
23289 2007-11-22 Jan Djärv <jan.h.d@swipnet.se>
23290
23291 * gtkutil.c (update_frame_tool_bar): Don't call x-gtk-map-stock if
23292 file for image is nil.
23293
23294 2007-11-22 Dan Nicolaescu <dann@ics.uci.edu>
23295
23296 * term.c: Include stdarg.h.
23297 (fatal): Implement using varargs.
23298 * lisp.h (fatal): Add argument types. (Restore 2005-09-30 change).
23299
23300 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
23301
23302 * lisp.h (struct Lisp_Buffer_Objfwd): Add a `slottype' field.
23303 * data.c (store_symval_forwarding): Get type from buffer_objfwd.
23304 Update call to buffer_slot_type_mismatch.
23305 * buffer.h (buffer_local_types, PER_BUFFER_TYPE): Remove.
23306 (buffer_slot_type_mismatch): Update.
23307 * buffer.c (buffer_local_types): Remove.
23308 (buffer_slot_type_mismatch): Get the symbol and type as arguments.
23309 (defvar_per_buffer): Set the type in the buffer_objfwd.
23310
23311 2007-11-21 Jason Rumney <jasonr@gnu.org>
23312
23313 * w32bdf.c (w32_init_bdf_font, w32_BDF_to_x_font):
23314 CreateFileMapping returns NULL on failure.
23315
23316 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
23317
23318 * search.c (Fset_match_data): Remove the `evaporate' feature.
23319 (unwind_set_match_data): Don't use the `evaporate' feature.
23320
23321 2007-11-21 Jason Rumney <jasonr@gnu.org>
23322
23323 * dispnew.c (init_display) [WINDOWSNT]: Hardcode terminal_type.
23324
23325 * w32console.c (w32con_write_glyphs): Remove unused variables.
23326
23327 2007-11-20 Dan Nicolaescu <dann@ics.uci.edu>
23328
23329 * macterm.c (mac_term_init): Call add_keyboard_wait_descriptor.
23330
23331 * s/darwin.h (MULTI_KBOARD): Remove.
23332
23333 * macfns.c (x_create_tip_frame, Fx_create_frame)
23334 (x_create_tip_frame): Don't deal with MULTI_KBOARD.
23335
23336 2007-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
23337
23338 * buffer.c (Fbuffer_local_value): Remove redundant test.
23339 (swap_out_buffer_local_variables): Swap out binding in `buffer' rather
23340 than in `current-buffer' to match the comment.
23341 Do the swap using swap_in_global_binding.
23342
23343 * data.c (store_symval_forwarding, set_internal):
23344 * eval.c (specbind): Remove dead code.
23345
23346 * coding.c (detect_coding, Fupdate_coding_systems_internal):
23347 * fns.c (Fmd5): Use find_symbol_value rather than SYMBOL_VALUE
23348 Since we do not want to see internal Lisp_*fwd objects here.
23349
23350 2007-11-18 Jan Djärv <jan.h.d@swipnet.se>
23351
23352 * sysdep.c (init_system_name): Use getaddrinfo if available.
23353
23354 * xterm.c (x_scroll_bar_set_handle, x_scroll_bar_handle_click)
23355 (x_scroll_bar_note_movement): start, end, with, height in struct
23356 scroll_bar are integers and not Lisp_Object, so remove XINT for them.
23357
23358 2007-11-17 Dan Nicolaescu <dann@ics.uci.edu>
23359
23360 * puresize.h (BASE_PURESIZE): Increase to 1190000.
23361
23362 2007-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
23363
23364 * buffer.h (struct buffer): Move `undo_list' back to before `name'.
23365 This undoes Richard's change of 14-Oct-2002.
23366
23367 * alloc.c (allocate_other_vector):
23368 * lisp.h (allocate_other_vector): Remove.
23369
23370 * window.c (struct save_window_data): Move non-lisp data to the end
23371 and make it `int' rather than Lisp_Object.
23372 (Fcurrent_window_configuration): Use ALLOCATE_PSEUDOVECTOR.
23373 Done wrap/unwrap integer values.
23374 (Fset_window_configuration, compare_window_configurations):
23375 Update use of fields to their new types.
23376
23377 * xterm.h (struct scroll_bar): Only use Lisp_Object for lisp data.
23378 Turn integer fields into `int'. Merge x_window_low and x_window_high.
23379 (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK, SCROLL_BAR_X_WINDOW)
23380 (SET_SCROLL_BAR_X_WINDOW): Remove.
23381 (SCROLL_BAR_X_WIDGET, SET_SCROLL_BAR_X_WIDGET):
23382 Access the new x_window field directly.
23383 * xterm.c (x_scroll_bar_create): Use a pseudovector.
23384 Don't wrap/unwrap integers into Lisp_Objects.
23385 (XTset_vertical_scroll_bar, x_scroll_bar_handle_click)
23386 (x_scroll_bar_report_motion):
23387 Don't wrap/unwrap integers into Lisp_Objects.
23388 (x_term_init): Use SDATA.
23389 (x_window_to_scroll_bar, x_create_toolkit_scroll_bar)
23390 (x_scroll_bar_set_handle, x_scroll_bar_remove)
23391 (XTset_vertical_scroll_bar, x_scroll_bar_expose)
23392 (x_scroll_bar_report_motion, x_scroll_bar_clear):
23393 * xfns.c (x_set_background_color):
23394 * gtkutil.c (xg_create_scroll_bar, xg_set_toolkit_scroll_bar_thumb):
23395 Access the new x_window field directly.
23396
23397 * alloc.c (ALLOCATE_PSEUDOVECTOR): Move to lisp.h.
23398 (allocate_pseudovector): Make non-static.
23399
23400 * lisp.h (enum pvec_type): New tag PVEC_OTHER.
23401 (allocate_pseudovector): Declare.
23402 (ALLOCATE_PSEUDOVECTOR): Move from alloc.c.
23403
23404 2007-11-15 Andreas Schwab <schwab@suse.de>
23405
23406 * editfns.c (Fformat): Correctly format EMACS_INT values.
23407 Also take precision into account when formatting an integer.
23408
23409 * keyboard.c (Fevent_symbol_parse_modifiers): Fix declaration.
23410
23411 2007-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
23412
23413 * keyboard.c (Fevent_symbol_parse_modifiers): New function.
23414 (syms_of_keyboard): Defsubr it.
23415
23416 * data.c (swap_in_global_binding): Fix longstanding bug where
23417 store_symval_forwarding was not called with the right second argument,
23418 thus causing objfwd-ing from being dropped.
23419
23420 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
23421
23422 * macfns.c (Fx_create_frame, Fx_display_pixel_width)
23423 (Fx_display_pixel_height, Fx_display_planes)
23424 (Fx_display_color_cells, Fx_server_max_request_size)
23425 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
23426 (Fx_display_visual_class, Fx_display_save_under):
23427 * w32fns.c (Fx_create_frame, Fx_display_pixel_width)
23428 (Fx_display_pixel_height, Fx_display_planes)
23429 (Fx_display_color_cells, Fx_server_max_request_size)
23430 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
23431 (Fx_display_mm_height, Fx_display_mm_width)
23432 (Fx_display_backing_store, Fx_display_visual_class)
23433 (Fw32_select_font, Fx_display_save_under):
23434 * xfns.c (Fx_create_frame, Fx_display_pixel_width)
23435 (Fx_display_pixel_height, Fx_display_planes)
23436 (Fx_display_color_cells, Fx_server_max_request_size)
23437 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
23438 (Fx_display_save_under): Fix typos in docstrings.
23439
23440 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
23441
23442 * w32fns.c (Fw32_registered_hot_keys): Don't return the nil values
23443 corresponding to deleted entries; they are an implementation detail.
23444 (gray_bitmap_width, gray_bitmap_height, gray_bitmap_bits):
23445 Remove variables.
23446 (w32_pass_extra_mouse_buttons_to_system, w32_strict_fontnames)
23447 (w32_pass_multimedia_buttons_to_system, w32_strict_painting)
23448 (Vw32_charset_info_alist, w32_to_x_color, w32_init_class)
23449 (w32_createscrollbar, w32_createwindow, my_post_msg, w32_get_modifiers)
23450 (w32_grabbed_keys, cancel_all_deferred_msgs): Make static.
23451 (Fw32_define_rgb_color, Fw32_load_color_file)
23452 (syms_of_w32fns) <w32-pass-multimedia-buttons-to-system>:
23453 Fix typos in docstrings.
23454 (Fx_server_version): Reflow docstring.
23455 (Fw32_shell_execute): Doc fixes.
23456
23457 2007-11-13 Juanma Barranquero <lekktu@gmail.com>
23458
23459 * w32fns.c (Fw32_register_hot_key): Don't try to register hot key
23460 if w32_parse_hot_key returned nil.
23461
23462 2007-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
23463
23464 * xdisp.c (load_overlay_strings): Fix copy&paste typo.
23465
23466 2007-11-09 Jason Rumney <jasonr@gnu.org>
23467
23468 * s/ms-w32.c (USE_TOOLKIT_SCROLL_BARS): Define.
23469
23470 * w32term.c (w32_scroll_bar_handle_click): Use SCROLL_BAR_CLICK_EVENT.
23471
23472 * keyboard.c (discard_mouse_events, make_lispy_event) [WINDOWSNT]:
23473 Remove W32_SCROLL_BAR_CLICK_EVENT.
23474
23475 * termhooks.h (enum event_kind) [WINDOWSNT]: Likewise.
23476 Add MULTIMEDIA_KEY_EVENT.
23477
23478 * keyboard.c (lispy_function_keys) [WINDOWSNT]: Add more keys.
23479 (lispy_multimedia_keys) [WINDOWSNT]: New array.
23480 (make_lispy_event) [WINDOWSNT]: Use it to translate
23481 MULTIMEDIA_KEY_EVENT.
23482
23483 * w32term.h (WM_APPCOMMAND): Define if not already.
23484 (GET_APPCOMMAND_LPARAM): Likewise.
23485
23486 * w32term.c (w32_read_socket): Generate MULTIMEDIA_KEY_EVENT from
23487 WM_APPCOMMAND.
23488
23489 * w32fns.c (w32_pass_multimedia_buttons_to_system): New user option.
23490 (syms_of_w32fns): Export and initialize it.
23491 (w32_wnd_proc): Pass WM_APPCOMMAND on to w32_read_socket.
23492
23493 2007-11-09 Chong Yidong <cyd@stupidchicken.com>
23494
23495 * dispextern.h (struct it): Don't define OVERLAY_STRING_CHUNK_SIZE
23496 twice.
23497
23498 * xdisp.c (handle_face_prop): Fix last change.
23499
23500 2007-11-09 Richard Stallman <rms@gnu.org>
23501
23502 * xdisp.c (handle_face_prop): Test for strings that came from overlays,
23503 not just for after-strings and before-strings.
23504 Call face_for_overlay_string and pass the overlay to it.
23505 (handle_display_prop): Determine whether property came from an overlay.
23506 Pass OVERLAY arg to handle_single_display_spec.
23507 (handle_single_display_spec): New arg OVERLAY sets it->from_overlay.
23508 (load_overlay_strings): Fill in it->string_overlays.
23509 (get_overlay_strings_1, push_it, pop_it): Handle it->from_overlays.
23510
23511 * xfaces.c (face_for_overlay_string): Function renamed from
23512 face_at_buffer_position_no_overlays, and add arg OVERLAY.
23513
23514 * dispextern.h (struct it): New elt string_overlays.
23515 New elt from_overlay, also in stack.
23516 Rearrange a few elements.
23517 (face_for_overlay_string): Decl renamed from
23518 face_at_buffer_position_no_overlays, and add argument.
23519
23520 2007-11-09 Richard Stallman <rms@gnu.org>
23521
23522 * xdisp.c (handle_face_prop): Use face_at_buffer_position_no_overlays
23523 to get the base face for an overlay string.
23524
23525 * dispextern.h (face_at_buffer_position_no_overlays): Add decl.
23526
23527 * xfaces.c (face_at_buffer_position_no_overlays): New function.
23528
23529 * xdisp.c (handle_stop): Move some code out of loop.
23530
23531 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23532
23533 * macfns.c [USE_ATSUI] (Fmac_atsu_font_face_attributes):
23534 Fix conversion from Lisp object to ATSUFontID.
23535
23536 2007-11-09 Jason Rumney <jasonr@gnu.org>
23537
23538 * xdisp.c (Fformat_mode_line): Do nothing when noninteractive.
23539
23540 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23541
23542 * unexmacosx.c (unexec_regions_recorder, unexec_regions_merge):
23543 Don't assume regions are aligned to page boundary.
23544 (print_load_command_name): Add LC_UUID if defined.
23545
23546 2007-11-09 Richard Stallman <rms@gnu.org>
23547
23548 * emacs.c (syms_of_emacs) <installation-directory>: Reflow docstring.
23549
23550 2007-11-07 Jason Rumney <jasonr@gnu.org>
23551
23552 * s/windows95.h: Remove.
23553
23554 2007-11-06 Jan Djärv <jan.h.d@swipnet.se>
23555
23556 * gtkutil.c (xg_tool_bar_menu_proxy): Handle GTK_IMAGE_ICON_NAME and
23557 abort with a message on unhandled store_type values.
23558
23559 2007-11-01 Jan Djärv <jan.h.d@swipnet.se>
23560
23561 * xterm.c, xfns.c, xselect.c, xterm.h, s/msdos.h, s/sco4.h, s/sco5.h:
23562 Remove HAVE_X11R5 and HAVE_X11R4.
23563
23564 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
23565
23566 * Makefile.in: Remove references to sunfns.c and sunfns.o.
23567
23568 2007-11-01 Johan Bockgård <bojohan@gnu.org>
23569
23570 * macterm.c, w32term.c, xterm.c (x_draw_stretch_glyph_string):
23571 Don't set s->stippled_p here, since it has already been set by
23572 x_set_glyph_string_gc from x_draw_glyph_string.
23573
23574 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
23575
23576 * sunfns.c: Remove file.
23577
23578 * m/sun386.h:
23579 * m/sun2.h:
23580 * m/sparc.h: Remove Sun windows code.
23581
23582 2007-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
23583
23584 * keyboard.c (syms_of_keyboard): Initialize the initial_kboard.
23585 (init_keyboard): Set current_kboard's window-system to nil.
23586 (tty_read_avail_input): Typo.
23587 * frame.c (make_initial_frame): Don't initialize the initial_kboard.
23588
23589 2007-10-31 Dan Nicolaescu <dann@ics.uci.edu>
23590
23591 * s/usg5-4.h:
23592 * s/usg5-3.h:
23593 * s/ptx.h:
23594 * m/is386.h:
23595 * m/ibmps2-aix.h:
23596 * Makefile.in: Remove all mentions of X10.
23597
23598 * dispnew.c (syms_of_display): Don't mention version 10.
23599
23600 2007-10-28 Juanma Barranquero <lekktu@gmail.com>
23601
23602 * makefile.w32-in (OBJ1): Remove abbrev.$(O).
23603 ($(BLD)/abbrev.$(O)): Remove.
23604
23605 2007-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
23606
23607 Rewrite abbrev.c in Elisp.
23608 * image.c (Qcount): Don't declare as extern.
23609 (syms_of_image): Initialize and staticpro `Qcount'.
23610 * puresize.h (BASE_PURESIZE): Increase for the new abbrev.el functions.
23611 * emacs.c (main): Don't call syms_of_abbrev.
23612 * Makefile.in (obj): Remove abbrev.o.
23613 (abbrev.o): Remove.
23614 * abbrev.c: Remove.
23615
23616 2007-10-26 Martin Rudalics <rudalics@gmx.at>
23617
23618 * window.c (window_min_size_2): Don't count header-line.
23619
23620 2007-10-26 Dan Nicolaescu <dann@ics.uci.edu>
23621
23622 * frame.h (struct frame): Move all bit fields after the first bit
23623 field to take advantage of the available space. Group all the
23624 chars together to reduce wasted space due to padding.
23625
23626 2007-10-26 Juanma Barranquero <lekktu@gmail.com>
23627
23628 * minibuf.c (Fread_minibuffer, Feval_minibuffer): Reflow docstrings.
23629
23630 * alloc.c (spare_memory, stack_copy, stack_copy_size, ignore_warnings)
23631 (Vdead, dont_register_blocks, staticvec, staticidx, interval_block)
23632 (n_interval_blocks, init_strings, check_string_bytes, check_sblock)
23633 (init_float, free_float, n_cons_blocks, init_cons, all_vectors)
23634 (n_vectors, symbol_block, symbol_block_index, symbol_free_list)
23635 (n_symbol_blocks, init_symbol, marker_block, marker_free_list)
23636 (n_marker_blocks, init_marker, valid_pointer_p, make_pure_float)
23637 (last_marked, mark_object_loop_halt): Make static.
23638
23639 * frame.c (syms_of_frame) <delete-frame-functions>:
23640 Fix typo in docstring.
23641
23642 2007-10-25 Juanma Barranquero <lekktu@gmail.com>
23643
23644 * w32.c (init_environment): Fix tiny memory leak.
23645 (w32_get_resource): Remove unused variable `ok'.
23646
23647 2007-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
23648
23649 Make `window-system' into a keyboard-local variable (rather than
23650 frame-local as done originally by multi-tty).
23651
23652 * keyboard.h (struct kboard): Add Vwindow_system.
23653 * keyboard.c (init_kboard): Set a default for Vwindow_system.
23654 (mark_kboards): Mark Vwindow_system.
23655
23656 * dispnew.c (syms_of_display) <window-system>: Declare terminal-local.
23657 (init_display): Don't set the obsolete `window-system' frame-param.
23658
23659 * xterm.c (x_term_init):
23660 * w32term.c (w32_create_terminal):
23661 * term.c (init_tty): Set Vwindow_system.
23662 * macterm.c (mac_create_terminal): Set a keyboard (missing piece of the
23663 multi-tty merge maybe?), copied from w32term.c. Set Vwindow_system.
23664
23665 * xfns.c (Fx_create_frame, x_create_tip_frame):
23666 * w32fns.c (Fx_create_frame, x_create_tip_frame):
23667 * macfns.c (Fx_create_frame):
23668 Don't set the obsolete `window-system' frame-param.
23669
23670 * frame.h (Qwindow_system): Remove.
23671 * frame.c (Qwindow_system): Remove. In `syms_of_frame' as well.
23672 (Fmake_terminal_frame): Don't set obsolete `window-system' frame-param.
23673
23674 2007-10-24 Richard Stallman <rms@gnu.org>
23675
23676 * frame.c (x_figure_window_size): For fullscreen case,
23677 set USPosition | PPosition without clobbering rest of window_prompting.
23678
23679 * keyboard.c (Fcurrent_idle_time): Doc fix.
23680
23681 * print.c (Fwith_output_to_temp_buffer): Doc fix.
23682
23683 2007-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
23684
23685 * process.c (unwind_request_sigio): Only define if __ultrix__.
23686
23687 * callproc.c (child_setup): Remove spurious *.
23688
23689 * lisp.h (Fget_text_property): Declare.
23690 (have_menus_p): Declare it here rather than in sys-dep header files.
23691 * macterm.h (have_menus_p):
23692 * msdos.h (have_menus_p):
23693 * xterm.h (have_menus_p): Remove.
23694
23695 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
23696 (Fmake_variable_frame_local): Just check the variable's const-ness
23697 rather than checking nil or t.
23698
23699 2007-10-22 Jason Rumney <jasonr@gnu.org>
23700
23701 * w32fns.c: Include math.h.
23702 (w32_abort): Declaration moved to nt/config.nt.
23703
23704 * s/ms-w32.h (HAVE_STDLIB_H): Define.
23705 (abort): Redefinition moved to nt/config.nt.
23706
23707 * m/windowsnt.h: Remove.
23708
23709 2007-10-22 Juanma Barranquero <lekktu@gmail.com>
23710
23711 * emacs.c (Fdump_emacs): Fix typo in message.
23712 (syms_of_emacs) <kill-emacs-hook>: Fix typo in docstring.
23713 <installation-directory>: Reflow docstring.
23714
23715 2007-10-22 Juri Linkov <juri@jurta.org>
23716
23717 * minibuf.c: Allow minibuffer default to be a list of default values.
23718 With empty input use the first element of this list as returned default.
23719 (string_to_object)
23720 (read_minibuf_noninteractive): If defalt is cons, set val to its car.
23721 (read_minibuf): If defalt is cons, set histstring to its car.
23722 (Fread_string): If default_value is cons, set val to its car.
23723 (Fread_buffer): If def is cons, use its car.
23724 (Fcompleting_read): If defalt is cons, set val to its car.
23725
23726 2007-10-21 Michael Albinus <michael.albinus@gmx.de>
23727
23728 * fileio.c (Fcopy_file): Call file name handler with preserve_uid_gid.
23729
23730 2007-10-20 Juanma Barranquero <lekktu@gmail.com>
23731
23732 * doc.c (Fdocumentation): Check for advice in all cases.
23733
23734 2007-10-19 Chong Yidong <cyd@stupidchicken.com>
23735
23736 * Makefile.in [HAVE_LIBRESOLV]: Add -lresolv to linker flags.
23737
23738 2007-10-19 Richard Stallman <rms@gnu.org>
23739
23740 * doc.c (Fdocumentation): Check for and handle an advised function.
23741
23742 2007-10-19 Juanma Barranquero <lekktu@gmail.com>
23743
23744 * process.c (Fset_process_filter): Doc fix.
23745
23746 2007-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
23747
23748 * keyboard.c (read_key_sequence): Undo a change introduced by multi-tty
23749 which caused key-translation-map to applied repeatedly (thus breaking
23750 double-mode).
23751
23752 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
23753
23754 * xselect.c (x_own_selection, x_handle_selection_clear)
23755 (x_clear_frame_selections):
23756 * w32menu.c (list_of_panes, list_of_items):
23757 * w32fns.c (w32_color_map_lookup, Fx_create_frame, Fx_display_list):
23758 * textprop.c (validate_plist, interval_has_all_properties)
23759 (interval_has_some_properties, interval_has_some_properties_list)
23760 (add_properties, text_property_list):
23761 * process.c (Fget_buffer_process, list_processes_1, status_notify):
23762 * minibuf.c (Fassoc_string):
23763 * macselect.c (x_own_selection, x_clear_frame_selections)
23764 (Fx_disown_selection_internal):
23765 * keymap.c (Fcommand_remapping, where_is_internal, describe_map_tree):
23766 Use CONSP rather than !NILP and XC[AD]R rather than Fc[ad]r.
23767
23768 2007-10-17 Chong Yidong <cyd@stupidchicken.com>
23769
23770 * process.c: Link to libs for calling res_init() if available.
23771 (Fmake_network_process): Call res_init() before getaddrinfo or
23772 gethostbyname, if possible.
23773
23774 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
23775
23776 * lread.c (read1): Set pvectype for char_tables.
23777
23778 * lisp.h (XMISCANY, XMARKER, XINTFWD, XBOOLFWD, XOBJFWD, XOVERLAY)
23779 (XBUFFER_OBJFWD, XBUFFER_LOCAL_VALUE, XKBOARD_OBJFWD, XSAVE_VALUE):
23780 Add type checks.
23781 (SOME_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP): Remove.
23782
23783 * alloc.c (free_misc): Use XMISCTYPE.
23784 (live_misc_p, gc_sweep): Use Lisp_Misc_Any.
23785
23786 2007-10-17 Glenn Morris <rgm@gnu.org>
23787
23788 * minibuf.c (Qcompletion_ignore_case): New Lisp_Object.
23789 (syms_of_minibuf): Add Qcompletion_ignore_case.
23790 * dired.c (Qcompletion_ignore_case): Change to external.
23791 (syms_of_dired) [VMS]: Remove Qcompletion_ignore_case.
23792 * fileio.c (Qcompletion_ignore_case): New external Lisp_Object.
23793 (Fread_file_name): Use it rather than intern'ing.
23794
23795 * coding.c (Qcompletion_ignore_case): New external Lisp_Object.
23796 (Fread_coding_system): Ignore case of user input.
23797
23798 2007-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23799
23800 * xdisp.c (handle_display_prop): Ignore display specs after
23801 replacing one when string text is being replaced.
23802 (handle_single_display_spec): Pretend as if characters with display
23803 property haven't been consumed only when buffer text is being replaced.
23804
23805 2007-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
23806
23807 * xfns.c (Fx_create_frame, Fx_display_list):
23808 * window.c (window_fixed_size_p, enlarge_window)
23809 (shrink_window_lowest_first):
23810 * macterm.c (init_font_name_table):
23811 * macfns.c (Fx_create_frame, Fx_display_list):
23812 * lread.c (close_load_descs):
23813 * keyboard.c (read_char_x_menu_prompt):
23814 * fns.c (Fmember, Fmemql, Fdelete, Fset_char_table_parent):
23815 * coding.c (code_convert_region_unwind): Test the type of an object
23816 rather than just !NILP before extracting data from it.
23817
23818 * alloc.c (Fpurecopy): Set the pvec tag on pseudo vectors.
23819
23820 * lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
23821 (XMISCANY): New macro.
23822 (XMISCTYPE): Use it.
23823 (struct Lisp_Misc_Any): New type.
23824 (union Lisp_Misc): Use it.
23825 (struct Lisp_Buffer_Local_Value): Add `local_if_set' bit.
23826 * data.c (Fboundp, store_symval_forwarding, swap_in_global_binding)
23827 (find_symbol_value, set_internal, default_value, Fset_default)
23828 (Fmake_variable_buffer_local, Fmake_local_variable)
23829 (Fkill_local_variable, Fmake_variable_frame_local, Flocal_variable_p)
23830 (Flocal_variable_if_set_p, Fvariable_binding_locus):
23831 The SOME_BUFFER_LOCAL_VALUEP distinction is replaced by local_if_set.
23832 * alloc.c (allocate_buffer): Set the size and tag.
23833 (allocate_misc, mark_maybe_object, mark_object, survives_gc_p):
23834 Use XMISCANY.
23835 (die): Follow the GNU convention for error messages.
23836 * print.c (print_object): SOME_BUFFER_LOCAL_VALUEP -> local_if_set.
23837 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Don't set the
23838 tag any more.
23839 (set_buffer_internal_1):
23840 * frame.c (store_frame_param):
23841 * eval.c (specbind):
23842 * xdisp.c (select_frame_for_redisplay): Drop SOME_BUFFER_LOCAL_VALUEP.
23843
23844 * doc.c (Fsnarf_documentation): Simplify.
23845
23846 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
23847
23848 * w32term.c (w32_font_is_double_byte, my_create_scrollbar): Make static.
23849 (syms_of_w32term) <w32-enable-unicode-output>: Fix typo in docstring.
23850
23851 2007-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
23852
23853 * buffer.c (Fmake_indirect_buffer): Set the buffer's tag.
23854
23855 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
23856
23857 * eval.c (do_autoload): Don't save autoloads.
23858
23859 * data.c (Ffset): Save autoload of the function being set.
23860
23861 2007-10-07 John Paul Wallington <jpw@pobox.com>
23862
23863 * xfns.c (x_create_tip_frame): Set the `display-type' frame
23864 parameter before setting up faces.
23865
23866 2007-10-13 Eli Zaretskii <eliz@gnu.org>
23867
23868 * ccl.c (Fregister_code_conversion_map):
23869 * keyboard.c (append_tool_bar_item): Reformat last change.
23870
23871 * lisp.h (eabs): Rename from `abs'. All callers changed.
23872
23873 2007-10-05 Dmitry Antipov <dmantipov@yandex.ru>
23874
23875 * buffer.c (add_overlay_mod_hooklist):
23876 * ccl.c (Fregister_ccl_program, Fregister_code_conversion_map):
23877 * fontset.c (make_fontset):
23878 * keyboard.c (GROW_RAW_KEYBUF, menu_bar_items, menu_bar_item)
23879 (append_tool_bar_item):
23880 * macmenu.c (grow_menu_items):
23881 * w32menu.c (grow_menu_items):
23882 * xmenu.c (grow_menu_items): Use larger_vector.
23883
23884 2007-10-13 Eli Zaretskii <eliz@gnu.org>
23885
23886 * msdos.c (dos_rawgetc): Undo last change (there's no ``leaving
23887 selected frame'' on MSDOS).
23888
23889 2007-10-12 Martin Rudalics <rudalics@gmx.at>
23890
23891 * frame.c (Qexplicit_name): New variable.
23892 (x_report_frame_params): Report it in parameter alist.
23893 (syms_of_frame): Intern and staticpro it.
23894
23895 2007-10-10 Patrick Mahan <mahan@mahan.org> (tiny change)
23896
23897 * macfns.c (x_create_tip_frame): Set terminal for frame.
23898
23899 2007-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
23900
23901 * frame.c (Qenvironment): Remove.
23902 (syms_of_frame) <Qenvironment>: Don't initialize.
23903 (Fdelete_frame): Don't treat the `environment' param specially.
23904 * frame.h (Qenvironment): Don't declare.
23905 * callproc.c (set_initial_environment): Don't set unused frame param.
23906
23907 * frame.c (Fframe_with_environment): Remove.
23908 (syms_of_frame) <Sframe_with_environment>: Don't declare.
23909
23910 * lisp.h (Fframe_with_environment): Don't declare.
23911
23912 2007-10-10 Juanma Barranquero <lekktu@gmail.com>
23913
23914 * indent.c (indent_tabs_mode, last_known_column)
23915 (last_known_column_modified): Make static.
23916 (syms_of_indent) <indent-tabs-mode>: Remove redundant info in docstring.
23917
23918 2007-10-10 Katsumi Yamaoka <yamaoka@jpl.org>
23919
23920 * puresize.h (BASE_PURESIZE): Increase to 1170000.
23921
23922 2007-10-09 Jason Rumney <jasonr@gnu.org>
23923
23924 * w32term.c (x_set_window_size): Disable code that attempts to tell
23925 Lisp code about a size change before it actually happens.
23926
23927 2007-10-09 Richard Stallman <rms@gnu.org>
23928
23929 * xdisp.c (handle_invisible_prop): After setting up an ellipsis,
23930 return HANDLED_RETURN.
23931
23932 2007-10-08 Martin Rudalics <rudalics@gmx.at>
23933
23934 * keyboard.c (kbd_buffer_get_event): Break loop waiting for input
23935 when there's an unread command event.
23936
23937 * frame.c (focus_follows_mouse): Move here from frame.el to allow
23938 window autoselection act appropriately when leaving selected frame.
23939 (syms_of_frame): Initialize focus_follows_mouse.
23940 * frame.h (focus_follows_mouse): Extern it.
23941 * macterm.c (XTread_socket): When focus_follows_mouse is nil
23942 make SELECT_WINDOW_EVENT only if we don't leave the selected frame.
23943 * msdos.c (dos_rawgetc): Likewise.
23944 * w32term.c (w32_read_socket): Likewise.
23945 * xterm.c (handle_one_xevent): Likewise.
23946 * xdisp.c (syms_of_xdisp): In doc-string of
23947 mouse-autoselect-window mention focus-follows-mouse.
23948
23949 2007-10-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23950
23951 * macterm.c (mac_load_query_font): Fix missing return value.
23952 [USE_CG_DRAWING] (mac_define_fringe_bitmap, mac_destroy_fringe_bitmap):
23953 Add BLOCK_INPUT.
23954
23955 2007-10-08 Richard Stallman <rms@gnu.org>
23956
23957 * xdisp.c (get_window_cursor_type): Implement documented behavior
23958 for cursor-in-non-selected-windows = t.
23959
23960 2007-10-08 Jason Rumney <jasonr@gnu.org>
23961
23962 * w32.c (w32_get_resource): Always close registry keys.
23963
23964 2007-10-08 Jason Rumney <jasonr@gnu.org>
23965
23966 * makefile.w32-in (LIBS): Add COMCTL32.
23967
23968 * w32fns.c (globals_of_w32fns): Init common controls.
23969
23970 2007-10-08 Richard Stallman <rms@gnu.org>
23971
23972 * image.c (our_memory_buffer): Rename from omfib_buffer.
23973
23974 2007-10-08 Richard Stallman <rms@gnu.org>
23975
23976 * buffer.c (Foverlays_at): Doc fix.
23977
23978 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
23979
23980 * fns.c (Fplist_put): Preserve uneven tail data.
23981
23982 2007-10-08 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change)
23983
23984 * termhooks.h (enum event_kind): Remove trailing comma.
23985
23986 * frame.h (enum): Remove trailing comma.
23987
23988 2007-10-08 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
23989
23990 * w32proc.c (delete_child): Don't terminate threads of zombies.
23991
23992 2007-10-08 Martin Rudalics <rudalics@gmx.at>
23993
23994 * keyboard.h (struct kboard): New elt Vlast_repeatable_command.
23995
23996 * keyboard.c (syms_of_keyboard): Set up new Lisp variable
23997 last-repeatable-command.
23998 (init_kboard): Initialize Vlast_repeatable_command.
23999 (command_loop_1): Set it to real_this_command unless that was
24000 bound to an input event.
24001 (mark_kboards): Mark it.
24002
24003 2007-10-08 Richard Stallman <rms@gnu.org>
24004
24005 * eval.c (condition-case): Doc fix.
24006
24007 2007-10-08 Masatake YAMATO <jet@gyve.org>
24008
24009 * xfaces.c (tty_supports_face_attributes_p): Fix code
24010 for LFACE_INVERSE_INDEX and LFACE_BACKGROUND_INDEX; code
24011 was copied and not edited.
24012
24013 2007-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
24014
24015 Add new `input-decode-map' keymap and use it for terminal
24016 escape sequences.
24017 * keyboard.h (struct kboard): Add Vinput_decode_map.
24018 Remove Vlocal_key_translation_map.
24019 * keyboard.c (read_key_sequence): Add support for input-decode-map.
24020 (init_kboard): Init input-decode-map.
24021 Replace local-key-translation-map back with key-translation-map.
24022 (syms_of_keyboard): Declare input-decode-map.
24023 Remove local-key-translation-map. Update docstrings.
24024 (mark_kboards): Mark Vinput_decode_map.
24025 Don't mark Vlocal_key_translation_map.
24026 * keymap.c (Fdescribe_buffer_bindings): Describe input-decode-map.
24027 Replace local-key-translation-map back with key-translation-map.
24028 * term.c (term_get_fkeys_1, CONDITIONAL_REASSIGN):
24029 Bind in input-decode-map rather than function-key-map.
24030
24031 * lisp.h (XSETPSEUDOVECTOR): Don't set the tag anymore.
24032 This was made redundant by the previous introduction of XSETPVECTYPE.
24033
24034 2007-10-09 Richard Stallman <rms@gnu.org>
24035
24036 * image.c (free_bitmap_record): Rename from Free_Bitmap_Record.
24037
24038 2007-09-29 Richard Stallman <rms@gnu.org>
24039
24040 * eval.c (internal_condition_case_2, internal_condition_case_1)
24041 (internal_condition_case): Reenable abort if x_catching_errors ()
24042 to see if that really happens and why.
24043
24044 2007-10-06 Andreas Schwab <schwab@suse.de>
24045
24046 * fileio.c (Fwrite_region): Ignore EINVAL error from fsync.
24047
24048 2007-10-04 Juanma Barranquero <lekktu@gmail.com>
24049
24050 * image.c (syms_of_image) <image-types>: Fix typo in docstring.
24051
24052 2007-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
24053
24054 * frame.h (struct frame): Don't try to GC-mark menu_bar_items_used.
24055
24056 2007-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
24057
24058 * window.h (struct window):
24059 * window.c (struct save_window_data, struct saved_window):
24060 * termhooks.h (struct terminal):
24061 * process.h (struct Lisp_Process):
24062 * frame.h (struct frame):
24063 * buffer.h (struct buffer):
24064 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table)
24065 (struct Lisp_Bool_Vector, struct Lisp_Subr, struct Lisp_Hash_Table):
24066 The size field of (pseudo)vectors is now unsigned.
24067 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Simplify accordingly.
24068
24069 * lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
24070 Turn `count' into an integer.
24071
24072 * fns.c (make_hash_table, hash_put, hash_remove, hash_clear)
24073 (sweep_weak_table, sweep_weak_hash_tables, Fhash_table_count):
24074 * print.c (print_object) <HASH_TABLE_P>: `count' is an int.
24075 * alloc.c (allocate_hash_table): Use ALLOCATE_PSEUDOVECTOR.
24076 (mark_object) <HASH_TABLE_P>: Use mark_vectorlike.
24077
24078 * alloc.c (allocate_pseudovector): New fun.
24079 (ALLOCATE_PSEUDOVECTOR): New macro.
24080 (allocate_window, allocate_terminal, allocate_frame)
24081 (allocate_process): Use it.
24082 (mark_vectorlike): New function.
24083 (mark_object) <FRAMEP, WINDOWP, BOOL_VECTOR_P, VECTORP>: Use it.
24084 (mark_terminals): Use it.
24085 (Fmake_bool_vector, Fmake_char_table, make_sub_char_table)
24086 (Fmake_byte_code): Use XSETPVECTYPE.
24087
24088 * frame.c (Fframe_parameters): Minor simplification.
24089
24090 * insdel.c (adjust_markers_for_insert): Generalize assertion checks.
24091
24092 * marker.c (Fmarker_buffer): Make test for odd case into a failure.
24093
24094 * buffer.c (Fget_buffer_create, init_buffer_once):
24095 * lread.c (defsubr):
24096 * window.c (Fcurrent_window_configuration): Use XSETPVECTYPE.
24097
24098 * lisp.h (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Don't let them be
24099 defined differently in the m/*.h files.
24100 (XCHAR_TABLE, XBOOL_VECTOR): Add assertion checking.
24101 (XSETPVECTYPE): New macro.
24102 (XSETPSEUDOVECTOR): Use it.
24103
24104 * buffer.c (syms_of_buffer) <local-abbrev-table>: Move from abbrev.c.
24105 (DEFVAR_PER_BUFFER, defvar_per_buffer): Move from lisp.h and lread.c.
24106
24107 * lisp.h (defvar_per_buffer, DEFVAR_PER_BUFFER):
24108 * lread.c (defvar_per_buffer):
24109 * abbrev.c (syms_of_abbrev) <local-abbrev-tabl>: Move to buffer.c.
24110
24111 * window.c (candidate_window_p): Only consider as visible frames that
24112 are on the same terminal.
24113
24114 * m/ibms390x.h (MARKBIT): Remove unused macro.
24115
24116 2007-10-01 Juanma Barranquero <lekktu@gmail.com>
24117
24118 * lread.c (Fload): Fix typo in docstring.
24119
24120 2007-10-01 Michaël Cadilhac <michael@cadilhac.name>
24121
24122 * floatfns.c (Fexpt): Manually check for overflows, so that a power
24123 of a non-zero value can't yield zero.
24124
24125 2007-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
24126
24127 * term.c (term_clear_mouse_face, term_mouse_highlight)
24128 (tty_write_glyphs_with_face): Only define is HAVE_GPM.
24129
24130 * print.c (safe_debug_print): Use XHASH.
24131
24132 * lisp.h (DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
24133 Lisp elements such as tags.
24134 (XHASH): New macro.
24135 (EQ): Use it.
24136 (SREF, SSET, STRING_COPYIN): Use SDATA.
24137 (VOID_TO_LISP, CVOID_TO_LISP, LISP_TO_VOID, LISP_TO_CVOID): Remove.
24138
24139 * alloc.c (mark_terminal): Remove left-over declaration.
24140 (enum mem_type): Replace all vector subtypes -> MEM_TYPE_VECTORLIKE.
24141 (allocate_vectorlike): Remove type argument. Adjust callers.
24142 (live_vector_p, mark_maybe_pointer, valid_lisp_object_p):
24143 Only handle the one remaining MEM_TYPE_VECTORLIKE.
24144
24145 * alloc.c (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): New macros
24146 to avoid unnecessary BLOCK_INPUTs when SYNC_INPUT is used.
24147 (xmalloc, xrealloc, xfree, lisp_malloc, lisp_free, lisp_align_malloc)
24148 (lisp_align_free, make_interval, allocate_string, allocate_string_data)
24149 (make_float, Fcons, allocate_vectorlike, Fmake_symbol, allocate_misc):
24150 Use them.
24151
24152 * xfaces.c (load_face_font, free_realized_face, clear_face_gcs):
24153 Don't let signal handlers run when a GC is freed but not yet NULL'ed.
24154 (x_free_gc): Remove BLOCK_INPUT since it's now redundant.
24155
24156 2007-09-28 Dan Nicolaescu <dann@ics.uci.edu>
24157
24158 * Makefile.in (lisp, shortlisp): Delete server.elc, it is not
24159 loaded by default.
24160
24161 2007-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
24162
24163 * term.c (Fgpm_mouse_start): Don't signal an error if already activated
24164 on this tty.
24165 (Fgpm_mouse_stop): Only deactivate if it was activated on this tty.
24166
24167 * term.c (mouse_face_window): Rename from Qmouse_face_window.
24168 Update all users.
24169 (handle_one_term_event): Use Gpm_DrawPointer.
24170 (Fgpm_mouse_start): Rename from Fterm_open_connection.
24171 Signal errors instead of returning nil. Always return nil.
24172 (Fgpm_mouse_stop): Rename from Fterm_close_connection.
24173 Make it a noop if gpm-mouse was not activated.
24174 (syms_of_term): Update names.
24175
24176 2007-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
24177
24178 * sysdep.c (narrow_foreground_group, widen_foreground_group): Static.
24179 (init_sys_modes): Check that gpm_tty is the current tty.
24180
24181 * alloc.c (allocate_terminal): Set the vector size to only count the
24182 lisp fields. Initialize those to nil.
24183 (mark_object): Don't treat terminals specially.
24184 (mark_terminal): Remove.
24185 (mark_terminals): Use mark_object instead.
24186
24187 * termhooks.h (struct terminal): Move all Lisp_Object fields traced by
24188 the GC to the beginning.
24189
24190 * indent.h:
24191 * indent.c: Use EMACS_INT for ints coming from Elisp data.
24192
24193 * indent.c (Fmove_to_column): Use EMACS_INT for buffer positions.
24194
24195 2007-09-25 Jason Rumney <jasonr@gnu.org>
24196
24197 * frame.c (make_terminal_frame): Remove special case for WINDOWSNT.
24198
24199 * w32console.c (create_w32cons_output): Remove.
24200
24201 * term.c (init_tty): Call init_sys_modes on WINDOWSNT also.
24202
24203 * sysdep.c (init_sys_modes): Use set_terminal_modes_hook.
24204 (reset_sys_modes): Use reset_terminal_modes_hook.
24205
24206 2007-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
24207
24208 * eval.c (do_autoload): Don't output any message.
24209
24210 2007-09-24 Juri Linkov <juri@jurta.org>
24211
24212 * emacs.c (standard_args): Change priority of "--no-splash"
24213 from 40 to 3. Add "--no-desktop" with the same priority.
24214
24215 2007-09-23 Dmitry Antipov <dmantipov@yandex.ru>
24216
24217 * alloc.c (gc_sweep): Check cons cell mark bits word by word
24218 and optimize the case where they are all 1.
24219
24220 2007-09-23 Johannes Weiner <hannes@saeurebad.de>
24221
24222 * lisp.h (abs): Define if not defined.
24223 * keyboard.c, sound.c, w32term.c, xfaces.c, xterm.c:
24224 Don't define `abs', since it's defined in lisp.h.
24225
24226 2007-09-22 Eli Zaretskii <eliz@gnu.org>
24227
24228 * term.c (DEV_TTY): New macro. Provide a definition for MS-Windows.
24229 (FRAME_TERMCAP_P) [WINDOWSNT]: Don't define to zero.
24230 (Fcontrolling_tty_p, Fresume_tty, dissociate_if_controlling_tty)
24231 (init_tty): Use DEV_TTY instead of "/dev/tty".
24232 [WINDOWSNT]: No need to protect from NAME arg being null.
24233
24234 2007-09-21 Dan Nicolaescu <dann@ics.uci.edu>
24235
24236 * term.c (Fsuspend_tty): Run suspend-tty-functions before cleaning
24237 up the tty state.
24238
24239 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
24240
24241 * termhooks.h (term_gpm): Delete. Use gpm_tty's NULLness instead.
24242 (gpm_tty): Change its type.
24243 * term.c (term_gpm): Delete. Use gpm_tty's NULLness instead.
24244 (gpm_tty): Change its type and initialize it.
24245 (Fterm_open_connection): Check the frame is indeed a tty.
24246 Use the new gpm_tty.
24247 (Fterm_close_connection): Use the new gpm_tty.
24248 * keyboard.c (tty_read_avail_input): Use the new gpm_tty.
24249 * sysdep.c (init_sys_modes): term_gpm -> gpm_tty.
24250
24251 2007-09-21 Juanma Barranquero <lekktu@gmail.com>
24252
24253 * w32term.c (x_draw_glyph_string): Use strike_through_color, not
24254 underline_color, to draw strike-through.
24255
24256 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
24257
24258 * lisp.h (allocate_terminal): Declare.
24259
24260 * window.c (candidate_window_p): Consider frames that are being placed
24261 by the user as somewhere between visible and iconified.
24262 (window_loop): Prefer windows on the current frame.
24263 (Fselect_window): Move the use of select-frame to the beginning so we
24264 can just delegate all the work (it'll call us back anyway).
24265
24266 * frame.c (Qdisplay_environment_variable):
24267 * frame.h (Qdisplay_environment_variable): Delete.
24268
24269 * .gdbinit (xbacktrace): Print the arg's address rather than the value
24270 of the first arg, since that value may be a union.
24271
24272 * callproc.c (child_setup, getenv_internal): Use the frame's `display'
24273 parameter rather than Qdisplay_environment_variable. If all else
24274 fails, look for DISPLAY in initial-environment.
24275
24276 2007-09-21 Glenn Morris <rgm@gnu.org>
24277
24278 * Makefile.in (emacstool): Remove target.
24279 (lisp, shortlisp): Remove termdev.elc.
24280
24281 2007-09-21 Markus Triska <markus.triska@gmx.at>
24282
24283 * xterm.c (x_delete_display): Compile session management conditionally.
24284
24285 2007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
24286
24287 * callproc.c (getenv_internal_1): New function.
24288 (getenv_internal): Use it.
24289 (Fgetenv_internal): Use it. Accept an env-list as optional arg.
24290
24291 * terminal.c (get_terminal): Don't accept ints to represent terminals.
24292 (Fterminal_name, Fterminal_parameters, Fterminal_parameter)
24293 (Fset_terminal_parameter): Work with dead terminals as well.
24294 (Fmodify_terminal_parameters): Remove.
24295
24296 * terminal.c (get_terminal): Handle terminals.
24297 Make sure the terminal returned is live.
24298 (create_terminal): Use allocate_terminal.
24299 (mark_terminals): Move to alloc.c.
24300 (delete_terminal): Use terminal->name as liveness status.
24301 NULL out fields after freeing their contents.
24302 Don't deallocate the object.
24303 (Fframe_terminal): Use FRAME_TERMINAL. Return the terminal object
24304 rather than an int.
24305 (Fterminal_live_p): Accept non-integer arguments.
24306 (Fterminal_list): Return terminal objects rather than an ints.
24307
24308 * alloc.c (enum mem_type): New member for `terminal' objects.
24309 (allocate_terminal): New function.
24310 (mark_maybe_pointer, valid_lisp_object_p, mark_object):
24311 Handle terminals.
24312 (mark_terminal): New fun.
24313 (mark_terminals): Move from terminal.c.
24314
24315 * term.c (get_tty_terminal): Don't treat output_initial specially.
24316 (Fsuspend_tty, Fresume_tty): Use terminal objects rather than ints.
24317 (delete_tty): Use terminal->name as liveness status.
24318
24319 * termhooks.h (struct terminal): Make it into a pseudovector.
24320 Remove `deleted' replaced by checking `name's nullness.
24321
24322 * print.c (print_object): Handle terminals.
24323
24324 * lisp.h (enum pvec_type): New `terminal' pseudovector.
24325 (XTERMINAL, XSETTERMINAL, TERMINALP, GC_TERMINALP): New macros.
24326
24327 * frame.c (make_terminal_frame):
24328 * keyboard.c (tty_read_avail_input):
24329 * w32term.c (x_delete_terminal):
24330 * xfns.c (Fx_create_frame, x_create_tip_frame):
24331 * xterm.c (x_delete_terminal): Use terminal->name as liveness status.
24332
24333 2007-09-20 Glenn Morris <rgm@gnu.org>
24334
24335 * process.c (Fmake_network_process): Doc fix.
24336
24337 2007-09-19 Jason Rumney <jasonr@gnu.org>
24338
24339 * dispextern.h (w32_init_fringe, mac_init_fringe): Declare rif argument.
24340
24341 2007-09-19 Michaël Cadilhac <michael@cadilhac.name>
24342
24343 * coding.c (detect_eol_type, detect_eol_type_in_2_octet_form):
24344 Fix a C warning regarding variable constness.
24345
24346 * xterm.c (handle_one_xevent): Fix a C warning.
24347
24348 2007-09-18 Jason Rumney <jasonr@gnu.org>
24349
24350 * w32fns.c (Fx_focus_frame): Rename from Fw32_focus_frame.
24351
24352 2007-09-17 Jan Djärv <jan.h.d@swipnet.se>
24353
24354 * gtkutil.c (gdpy_def): New variable.
24355 (xg_initialize): Initialize gdpy_def.
24356 (xg_display_close): If no other display exists, set gdpy_def to a
24357 new connection.
24358
24359 2007-09-16 Jan Djärv <jan.h.d@swipnet.se>
24360
24361 * gtkutil.c (xg_get_image_for_pixmap): Always create a GdkPixbuf
24362 when we have no file name for the icon.
24363 (xg_tool_bar_expose_callback): Remove.
24364 (xg_create_tool_bar): Don't connect expose signal to
24365 xg_tool_bar_expose_callback.
24366 (xg_get_file_with_chooser): Move GCPRO1 after declarations.
24367
24368 2007-09-16 Andreas Schwab <schwab@suse.de>
24369
24370 * alloc.c (reset_malloc_hooks): Set the hooks to the previous
24371 values instead of zapping them.
24372
24373 2007-09-14 Glenn Morris <rgm@gnu.org>
24374
24375 * fringe.c (init_fringe_bitmap) <swap_nibble>: Move to file scope.
24376 * gtkutil.c (xg_separator_p) <separator_names>: Move to file scope.
24377 * image.c (our_memory_fill_input_buffer) <buffer>: Move to file
24378 scope and rename to omfib_buffer for clarity.
24379 (gif_load) <interlace_start, interlace_increment>: Move to file scope.
24380
24381 2007-09-14 Kenichi Handa <handa@m17n.org>
24382
24383 * xterm.c (handle_one_xevent): Skip decoding if nbytes is zero.
24384
24385 2007-09-13 Jason Rumney <jasonr@gnu.org>
24386
24387 * fringe.c (w32_init_fringe, mac_init_fringe): Add rif argument.
24388
24389 * w32term.c (w32_term_init): Pass rif to w32_init_fringe.
24390
24391 * macterm.c (mac_initialize): Don't call mac_init_fringe here.
24392 (mac_term_init): Call here instead, passing rif.
24393
24394 2007-09-13 Glenn Morris <rgm@gnu.org>
24395
24396 * s/hpux.h: No longer define `static' as nothing.
24397
24398 2007-09-13 Johan Bockgård <bojohan@gnu.org>
24399
24400 * callint.c (Fcall_interactively): Remove unused var `fun'.
24401
24402 2007-09-12 Romain Francoise <romain@orebokech.com>
24403
24404 * window.c (prefer_window_split_horizontally, display_buffer):
24405 Revert 2007-09-08 change.
24406
24407 2007-09-12 Glenn Morris <rgm@gnu.org>
24408
24409 * alloca.c: Remove file.
24410 * Makefile.in (alloca): Do not undef.
24411 (allocaobj, alloca.o): Remove.
24412 (otherobj): Remove allocaobj.
24413 * keyboard.c (command_loop_1): Remove #ifdef C_ALLOCA block.
24414 * regex.c (C_ALLOCA): Remove all references and code that was only
24415 used when this was defined.
24416 * search.c (boyer_moore): Remove #ifdef C_ALLOCA block.
24417 * xmenu.c (xmenu_show): Remove #ifdef C_ALLOCA block.
24418 * m/ibms390x.h, m/sh3el.h (C_ALLOCA): Remove references to this.
24419
24420 * Makefile.in (SOURCES, unlock, relock): Delete.
24421
24422 * gtkutil.c (cnt): Rename to menu_grab_callback_cnt for clarity.
24423 (menu_grab_callback): All uses changed.
24424
24425 * xselect.c (cnt): Rename to x_reply_selection_request_cnt for clarity.
24426 (x_reply_selection_request): All uses changed.
24427
24428 2007-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
24429
24430 * lread.c (load_warn_old_style_backquotes): Change message to look
24431 better when it appears in the middle of byte-compiler messages.
24432
24433 2007-09-10 Dan Nicolaescu <dann@ics.uci.edu>
24434
24435 * s/darwin.h (MULTI_KBOARD): Only define for Carbon.
24436
24437 * xterm.c (x_create_terminal): Add comment.
24438
24439 * term.c (clear_tty_hooks, set_tty_hooks): Add comments.
24440
24441 2007-09-10 Richard Stallman <rms@gnu.org>
24442
24443 * xterm.c (x_term_init): Give error if can't open DISPLAY_NAME.
24444
24445 2007-09-10 Michaël Cadilhac <michael@cadilhac.name>
24446
24447 * lisp.h (struct Lisp_Subr): Rename `prompt' field to `intspec'.
24448 (DEFUN): Document `intspec', use it instead of `prompt'.
24449
24450 * eval.c (Fcommandp): Change `->prompt' to `->intspec'.
24451
24452 * data.c (Finteractive_form): If the interactive specification starts
24453 with a `(', use it as a Lisp form.
24454
24455 * fileio.c (Fset_file_modes): Add an interactive spec that reads a file
24456 name and file modes.
24457
24458 * callint.c (Fcall_interactively): Comment fixes.
24459
24460 2007-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
24461
24462 * callint.c (Fcall_interactively): Use Finteractive_form also for subrs
24463 and compiled functions.
24464
24465 2007-09-08 Fredrik Axelsson <f.axelsson@gmail.com>
24466
24467 * window.c (prefer_window_split_horizontally): New variable.
24468 (display_buffer): Consider splitting window horizontally depending
24469 on prefer_window_split_horizontally.
24470
24471 2007-09-08 Eli Zaretskii <eliz@gnu.org>
24472
24473 * sysdep.c [WINDOWSNT]: Don't include sysselect.h.
24474
24475 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
24476
24477 * s/cygwin.h (GC_MARK_STACK): Enable conservative stack marking.
24478
24479 * frame.c (x_set_frame_parameters): Check number is positive before
24480 using XFASTINT.
24481
24482 * window.c (freeze_window_start): Don't presume selected_window holds
24483 a window object.
24484 (Fdisplay_buffer): Remove `register' since `buffer' needs to be gcpro'd.
24485
24486 2007-09-07 Angelo Graziosi <Angelo.Graziosi@roma1.infn.it> (tiny change)
24487
24488 * term.c (dissociate_if_controlling_tty): Call setsid on CYGWIN.
24489
24490 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
24491
24492 * window.c (Vsplit_window_preferred_function): New var.
24493 (Fdisplay_buffer): Use it.
24494 (syms_of_window): Export, and initialize it.
24495
24496 2007-09-06 Pixel <pixel@mandriva.com> (tiny change)
24497
24498 * image.c (gif_load): Fix bug: Handle nonexistent colormap.
24499
24500 2007-09-06 Glenn Morris <rgm@gnu.org>
24501
24502 * gtkutil.c (menu_grab_callback) <cnt>:
24503 * xselect.c (x_reply_selection_request) <cnt>: Move static
24504 variable to file scope.
24505
24506 2007-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
24507
24508 * xdisp.c (redisplay_internal): Make sure Elisp code always sees
24509 consistent values of selected_frame and selected_window.
24510
24511 2007-09-04 Jason Rumney <jasonr@gnu.org>
24512
24513 * w32console.c (initialize_w32_display): Zero unused hooks.
24514
24515 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
24516
24517 * term.c (Vsuspend_tty_functions, Vresume_tty_functions)
24518 (syms_of_term, Fsuspend_tty, Fresume_tty): Undo previous change.
24519
24520 2007-09-04 Jason Rumney <jasonr@gnu.org>
24521
24522 * term.c (init_tty) [WINDOWSNT]: Add hooks that are not accessible
24523 in w32console.c. Set up input. Remove XXX comments that have been
24524 confirmed as correct.
24525
24526 * s/ms-w32.h (MULTI_KBOARD): Define.
24527
24528 * w32console.c (one_and_only_w32cons): Remove.
24529 (initialize_w32_display): Take terminal argument.
24530
24531 * term.c (init_tty) [WINDOWSNT]: Pass terminal to
24532 initialize_w32_display.
24533 (init_tty) [MULTI_KBOARD]: Include this code on WINDOWSNT too.
24534
24535 * termhooks.h (enum event_kind) <HORIZ_WHEEL_EVENT>: New event.
24536
24537 * keyboard.c (discard_mouse_events): Discard it.
24538 (make_lispy_event): Translate it to a lisp event.
24539 (lispy_wheel_names): Add wheel-left and right events.
24540 (syms_of_keyboard): Enlarge wheel_syms.
24541
24542 * w32fns.c (w32_wnd_proc) <WM_DROPFILES>: Merge with WM_MOUSEWHEEL.
24543 <WM_MOUSEHWHEEL>: Pass new system message to lisp.
24544
24545 * w32term.h (WM_MOUSEHWHEEL): Define if system headers don't.
24546
24547 * w32term.c (construct_mouse_wheel): Make HORIZ_WHEEL_EVENT
24548 from WM_MOUSEHWHEEL.
24549 (w32_read_socket) <WM_MOUSEHWHEEL>: Treat as WM_MOUSEWHEEL.
24550
24551 * w32fns.c (x_create_tip_frame) [MULTI_KBOARD]: Get keyboard from
24552 terminal.
24553
24554 * w32term.c (w32_create_terminal) [MULTI_KBOARD]: Create a new
24555 keyboard for the terminal.
24556
24557 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
24558
24559 * term.c (Vsuspend_tty_hook): Rename from Vsuspend_tty_functions.
24560 (Vresume_tty_hook): Rename from Vresume_tty_functions.
24561 (syms_of_term): Rename suspend-tty-functions to suspend-tty-hook
24562 and resume-tty-function to resume-tty-hook.
24563 (Fsuspend_tty, Fresume_tty): Use new names.
24564
24565 2007-09-02 Jan Djärv <jan.h.d@swipnet.se>
24566
24567 * gtkutil.c (update_frame_tool_bar): Handle stock name as a named icon
24568 if it starts with "n:".
24569
24570 2007-08-31 Jan Djärv <jan.h.d@swipnet.se>
24571
24572 * gtkutil.c (update_frame_tool_bar): Initialize wbutton to NULL.
24573
24574 2007-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
24575
24576 * frame.h:
24577 * frame.c (Qterm_environment_variable): Remove.
24578 (syms_of_frame): Don't init and staticpro it.
24579
24580 * callproc.c (getenv_internal): Remove special case for $TERM.
24581
24582 * callproc.c (Vinitial_environment): New variable.
24583 (set_initial_environment): Initialize it.
24584 (syms_of_callproc): Declare it.
24585 (child_setup): Don't mess with TERM via Qterm_environment_variable; the
24586 TERM under which a process runs is never related to the TERM in which
24587 Emacs is running.
24588
24589 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
24590
24591 * config.in (HAVE_WINDOW_SYSTEM): Don't undef MULTI_KBOARD here...
24592 * s/darwin.h: ... do it here.
24593
24594 2007-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
24595
24596 * lisp.h (set_initial_environment): Rename from set_global_environment.
24597
24598 * Makefile.in (${etc}DOC): Re-add a ${EXEEXT} which seems to have been
24599 removed by mistake on the multi-tty branch.
24600
24601 * frame.c (make_terminal_frame): Yet Another Int/Lisp_Object Mixup.
24602 (Fmodify_frame_parameters): Return a value.
24603
24604 * image.c (png_load): Comment-out var only used in commented-out code.
24605
24606 * term.c (mark_ttys): Don't bother checking top_frame (incorrectly)
24607 before passing it to mark_object.
24608
24609 * xfaces.c (internal_resolve_face_name): Return a value.
24610 (internal_resolve_face_name, resolve_face_name_error): Comment out.
24611
24612 * xfns.c (check_x_display_info): Yet Another Int/Lisp_Object Mixup.
24613 (x_icon): Comment-out var only used in commented-out code.
24614
24615 2007-08-29 Romain Francoise <romain@orebokech.com>
24616
24617 * keyboard.c (Fset_input_mode): Don't call `Fset_quit_char' if
24618 QUIT hasn't been provided.
24619
24620 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
24621
24622 * callproc.c (child_setup, getenv_internal): Use the
24623 display-environment-variable and term-environment-variable frame params.
24624 (set_initial_environment): Initialise Vprocess_environment.
24625
24626 * config.in: Disable multi-keyboard support on a mac.
24627
24628 * frame.c (Qterm_environment_variable)
24629 (Qdisplay_environment_variable): New variables.
24630 (syms_of_frame): Intern and staticpro them.
24631 (Fmake_terminal_frame): Disable output method test.
24632
24633 * frame.h: Declare them here.
24634
24635 * macfns.c (x_set_mouse_color): Get rif from the frame.
24636 (x_set_tool_bar_lines): Don't use updating_frame.
24637 (mac_window): Add 2 new parameters for consistency with other systems.
24638 (Fx_create_frame): Fix doc string. Rename the parameter. Set the
24639 frame parameters following what is done in X11 and w32. Don't use
24640 FRAME_MAC_DISPLAY_INFO.
24641 (Fx_open_connection, start_hourglass): Remove window-system check.
24642 (x_create_tip_frame): Get the keyboard from the terminal.
24643
24644 * macmenu.c: Reorder includes.
24645 (Fx_popup_menu): Use terminal specific mouse_position_hook.
24646
24647 * macterm.c (XTset_terminal_modes, XTreset_terminal_modes): Add a
24648 terminal parameter.
24649 (x_clear_frame): Add a frame parameter.
24650 (note_mouse_movement): Get rif from the frame.
24651 (mac_term_init): Initialize the terminal.
24652 (mac_initialize): Make static and move terminal initialization ...
24653 (mac_create_terminal): ... to this new function.
24654
24655 * macterm.h (struct mac_display_info): Add terminal.
24656 (mac_initialize): Delete declaration.
24657
24658 * puresize.h (BASE_PURESIZE): Increase base value to 1164000.
24659
24660 * sysdep.c: Comment out text after #endif.
24661
24662 * term.c (init_tty): Only use terminal->kboard when MULTI_KBOARD
24663 is defined. Better initialize ttys in windows. Use terminal
24664 specific mouse_position_hook.
24665
24666 * termhooks.h (union display_info): Add mac_display_info.
24667
24668 * w32fns.c (Fx_create_frame): Use kboard from the terminal.
24669 Set the default minibuffer frame, window_system and the rest of the
24670 frame parameters following what is done in X11.
24671
24672 * w32term.c (w32_initialize): Make static.
24673
24674 * xselect.c (x_handle_selection_clear): Only access
24675 terminal->kboard when MULTI_KBOARD is defined.
24676
24677 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Define here.
24678 (SYSTEM_PURESIZE_EXTRA): Only define on Carbon.
24679
24680 2007-08-29 Jason Rumney <jasonr@gnu.org>
24681
24682 * frame.c (Fdelete_frame): Only get kboard when MULTI_KBOARD defined.
24683 (make_terminal_frame) [WINDOWSNT]: Initialize terminal.
24684
24685 * fringe.c (w32_init_fringe w32_reset_fringes) [HAVE_NTGUI]:
24686 (mac_init_fringe) [MAC_OS]: Get rif from selected_frame.
24687
24688 * keyboard.c (restore_kboard_configuration): Only define when
24689 MULTI_KBOARD defined.
24690
24691 * makefile.w32-in: Update dependancies from Makefile.in.
24692 (OBJ1): Add terminal.$(O)
24693
24694 * term.c (dissociate_if_controlling_tty) [WINDOWSNT]:
24695 Don't define function body.
24696 (init_tty) [WINDOWSNT]: Use selected_frame for initializing.
24697
24698 * termhooks.h (display_info) [WINDOWSNT]: Add w32.
24699
24700 * w32.c (request_sigio, unrequest_sigio): Remove.
24701
24702 * w32console.c (w32con_move_cursor, w32con_clear_to_end)
24703 (w32con_clear_frame, w32con_clear_end_of_line)
24704 (w32con_ins_del_lines, w32con_insert_glyphs, w32con_write_glyphs)
24705 (w32con_delete_glyphs, w32con_set_terminal_window)
24706 (scroll_line, w32_sys_ring_bell): Add frame arg.
24707 (w32con_set_terminal_modes, w32con_reset_terminal_modes):
24708 Add terminal arg.
24709 (PICK_FRAME): Remove.
24710 (w32con_write_glyphs): Use frame specific terminal coding.
24711 (one_and_only_w32cons): New global variable.
24712 (initialize_w32_display): Use it for storing hooks.
24713 (create_w32cons_output): New function.
24714
24715 * w32inevt.c, w32inevt.h (w32_console_read_socket): Make first
24716 arg a frame.
24717
24718 * w32fns.c (x_create_tip_frame): Set terminal and ref count.
24719 Set window_system.
24720 (x_set_tool_bar_lines): Don't use updating_frame.
24721 (Fx_create_frame): Set terminal and ref count.
24722 (Fx_open_connection): Remove window-system check.
24723
24724 * w32menu.c (Fx_popup_menu): Use terminal specific mouse_position_hook.
24725
24726 * w32term.c (w32_term_init): Call add_keyboard_wait_descriptor.
24727 (w32_set_terminal_modes, w32_reset_terminal_modes): Add terminal arg.
24728 (x_clear_frame, x_delete_glyphs, w32_ring_bell, x_ins_del_lines):
24729 Add frame arg.
24730 (x_delete_terminal, w32_create_terminal): New functions.
24731 (w32_term_init): Create a terminal.
24732 (w32_initialize): Move terminal specific initialization to
24733 w32_create_terminal.
24734
24735 * w32term.h (x_output): Remove foreground_pixel and background_pixel.
24736 (w32_clear_rect, w32_clear_area): Use background from frame.
24737 (w32_display_info): Add terminal.
24738 (w32_sys_ring_bell, x_delete_display): Declare here.
24739
24740 * xdisp.c (display_menu_bar) [HAVE_NTGUI]: Check frame type.
24741
24742 * s/ms-w32.h (SYSTEM_PURESIZE_EXTRA): Bump to 50k.
24743
24744 2007-08-29 Kalle Olavi Niemitalo <kon@iki.fi> (tiny change)
24745
24746 * keyboard.c (interrupt_signal, handle_interrupt, Fset_quit_char):
24747 Fix get_named_tty calls for the controlling tty.
24748
24749 2007-08-29 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
24750
24751 * term.c (dissociate_if_controlling_tty) [USG]: Fix parse error.
24752
24753 2007-08-29 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
24754
24755 * term.c (tty_insert_glyphs): Add missing first parameter.
24756
24757 2007-08-29 Károly Lőrentey <karoly@lorentey.hu>
24758
24759 * buffer.c (Fbuffer_list, Fbury_buffer):
24760 Take frame->buried_buffer_list into account.
24761
24762 * cm.c (current_tty): New variable, for cmputc().
24763 (cmputc): Use it.
24764 (cmcheckmagic): Add tty parameter, look up terminal streams there.
24765 (calccost): Add tty parameter. Use emacs_tputs() instead of tputs().
24766 (cmgoto): Add tty parameter. Pass it on to calccost().
24767 Use emacs_tputs() instead of tputs().
24768
24769 * cm.h (emacs_tputs): New macro to set current_tty, and then call
24770 tputs().
24771 (current_tty): New variable, for cmputc().
24772 (cmcheckmagic, cmputc, cmgoto): Add prototypes.
24773
24774 * eval.c (unwind_to_catch): Don't call x_fully_uncatch_errors.
24775 (internal_condition_case, internal_condition_case_1)
24776 (internal_condition_case_2): Don't abort when x_catching_errors.
24777
24778 * fns.c (Fyes_or_no_p): Don't try to open an X dialog on tty terminals.
24779 (Fy_or_n_p): Likewise. Use temporarily_switch_to_single_kboard to
24780 prevent crashes caused by bogus longjmps in read_char.
24781
24782 * keymap.h (Fset_keymap_parent): Add EXFUN.
24783
24784 * macterm.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL)
24785 * w32term.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
24786 Remove redundant definition.
24787
24788 * macfns.c (x_set_mouse_color, x_make_gc):
24789 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
24790
24791 * w32term.c (x_free_frame_resources):
24792 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
24793 (w32_initialize): Use the accessor macros for terminal characteristics.
24794
24795 * macterm.c (mac_initialize): Use Fset_input_interrupt_mode.
24796 Use the accessor macros for terminal characteristics.
24797 * msdos.c (internal_terminal_init): Use the accessor macros for
24798 terminal characteristics.
24799 (ScreenVisualBell, internal_terminal_init):
24800 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
24801
24802 * termopts.h (no_redraw_on_reenter): Declare.
24803
24804 * alloc.c (emacs_blocked_malloc): Disable mallopt call.
24805 (mark_terminals, mark_ttys): Declare.
24806 (Fgarbage_collect): Call them.
24807 (mark_object): Mark buried_buffer_list.
24808
24809 * prefix-args.c: Include stdlib.h for exit.
24810
24811 * syssignal.h: Add comment.
24812
24813 * indent.c: Include stdio.h.
24814
24815 * window.h (Vinitial_window_system): Declare.
24816 (Vwindow_system): Delete declaration.
24817
24818 * fontset.c (Finternal_char_font): Use FRAME_RIF.
24819
24820 * image.c (lookup_image): Don't initialize `c' until the xasserts
24821 have been run.
24822
24823 * gtkutil.c (xg_create_frame_widgets): Use FRAME_BACKGROUND_PIXEL and
24824 FRAME_FOREGROUND_PIXEL.
24825
24826 * print.c (print_preprocess): Don't lose print_depth levels while
24827 iterating.
24828
24829 * widget.c (update_from_various_frame_slots):
24830 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
24831
24832 * window.c (set_window_buffer): Don't call clear_mouse_face on tty
24833 frames.
24834 (window_internal_height): Remove bogus make_number call.
24835 (init_window_once): Call make_terminal_frame with two zero parameters.
24836
24837 * fileio.c (Fread_file_name): Update comment.
24838
24839 * callint.c (Fcall_interactively):
24840 Use temporarily_switch_to_single_kboard instead of single_kboard_state.
24841 Make sure it is correctly unwound.
24842
24843 * xsmfns.c (x_session_close): New function.
24844
24845 * coding.h (terminal_coding, safe_terminal_coding, keyboard_coding):
24846 Delete declarations.
24847
24848 * xterm.h: Remove declaration for x_fully_uncatch_errors.
24849 (x_output): Remove background_pixel and foreground_pixel fields.
24850 (x_display_info): Add new field TERMINAL. Remove KBOARD field.
24851 (x_delete_device, x_session_close): Declare.
24852
24853 * lread.c: Include setjmp.h. Update declaration of `read_char'.
24854 (read_filtered_event): Call `read_char' with a local
24855 `wrong_kboard_jmpbuf'.
24856
24857 * minibuf.c (read_minibuf): Call temporarily_switch_to_single_kboard.
24858 Don't call single_kboard_state. Use FRAME_RIF.
24859
24860 * process.c (Fmake_network_process): Don't unrequest_sigio on modern
24861 systems.
24862
24863 * lisp.h (set_process_environment): Rename to `set_global_environment'.
24864 (Fframe_with_environment, Fset_input_meta_mode)
24865 (Fset_quit_char): EXFUN.
24866 (x_create_device, tty_output, terminal, tty_display_info): Declare.
24867 (init_sys_modes, reset_sys_modes): Update prototypes.
24868 (init_all_sys_modes, reset_all_sys_modes): New prototypes.
24869
24870 * keyboard.h (struct kboard): Add new fields Vlocal_function_key_map,
24871 Vlocal_key_translation_map, and Vkeyboard_translate_table.
24872 (Vfunction_key_map, Vkeyboard_translate_table, single_kboard_state):
24873 Delete declarations.
24874 (Vfunction_key_map, Vkey_translation_map, push_kboard, pop_kboard)
24875 (temporarily_switch_to_single_kboard, tty_read_avail_input):
24876 New declarations.
24877
24878 * emacs.c (main): Don't call init_sys_modes(), the new term_init()
24879 already does that during init_display(). Call syms_of_keymap
24880 before syms_of_keyboard. Call `syms_of_terminal'.
24881 Call set_initial_environment, not set_process_environment.
24882 (shut_down_emacs): Call reset_all_sys_modes() instead of
24883 reset_sys_modes().
24884
24885 * xfaces.c (x_free_gc): Protect xassert with GLYPH_DEBUG.
24886 (internal_resolve_face_name, resolve_face_name_error): New functions.
24887 (resolve_face_name): Protect against loops and errors thrown by Fget.
24888 (realize_default_face): Don't use FRAME_FONT unless frame is an X frame.
24889 (Ftty_supports_face_attributes_p): Update tty_capable_p call.
24890
24891 * scroll.c: Replace CURTTY() with local variables throughout the
24892 file (where applicable).
24893 (calculate_scrolling, calculate_direct_scrolling)
24894 (scrolling_1, scroll_cost): Use the accessor macros for terminal
24895 characteristics.
24896
24897 * keymap.c (Vfunction_key_map): Remove.
24898 (Fdescribe_buffer_bindings): Update references to Vfunction_key_map.
24899 (syms_of_keymap): Remove DEFVAR for Vfunction_key_map.
24900 (Vkey_translation_map): Remove.
24901 (syms_of_keymap): Remove DEFVAR for key-translation-map.
24902 (Fdescribe_buffer_bindings)
24903 (read_key_sequence, init_kboard, syms_of_keyboard, mark_kboards):
24904 Update for terminal-local key-translation-map.
24905
24906 * Makefile.in (callproc.o): Update dependencies.
24907 (lisp, shortlisp): Add termdev.elc.
24908 (obj): Add terminal.o.
24909 (terminal.o): Add dependencies.
24910 [HAVE_CARBON]: Make terminal.o depend on macgui.h.
24911 (data.o, fns.o): Add termhooks.h dependency.
24912 (SOME_MACHINE_LISP): Add dnd.elc.
24913 (minibuf.o): Fix typo.
24914 Update dependencies.
24915
24916 * data.c (do_symval_forwarding, store_symval_forwarding)
24917 (find_symbol_value): Use the selected frame's keyboard, not
24918 current_kboard.
24919
24920 * .gdbinit (init_sys_modes): Use Vinitial_window_system instead of
24921 Vwindow_system.
24922
24923 * xmenu.c (Fx_menu_bar_open) [USE_X_TOOLKIT, USE_GTK]: Rename from
24924 Fmenu_bar_open.
24925 (syms_of_xmenu): Update defsubr.
24926 (mouse_position_for_popup, Fx_popup_menu)
24927 (Fx_popup_dialog, x_activate_menubar, update_frame_menubar)
24928 (set_frame_menubar, free_frame_menubar)
24929 (create_and_show_popup_menu, xmenu_show)
24930 (create_and_show_dialog, xdialog_show, xmenu_show): Abort if not
24931 an X frame.
24932
24933 * xselect.c (x_own_selection): Abort if not an X frame.
24934 (some_frame_on_display): Check if it is an X frame.
24935 (x_handle_selection_clear): Deal with MULTI_KBOARD.
24936
24937 * coding.c: Include frame.h and termhooks.h.
24938 (terminal_coding, keyboard_coding): Delete.
24939 (Fset_terminal_coding_system_internal)
24940 (Fset_keyboard_coding_system_internal)
24941 (Fkeyboard_coding_system)
24942 (Fterminal_coding_system): Add a terminal parameter.
24943 Get terminal_coding from the terminal.
24944 (init_coding_once): Don't call setup_coding_system here.
24945
24946 * dispextern.h (set_scroll_region, turn_off_insert)
24947 (turn_off_highlight, background_highlight, clear_end_of_line_raw)
24948 (tty_clear_end_of_line, tty_setup_colors)
24949 (delete_tty, updating_frame)
24950 (produce_special_glyphs, produce_glyphs, write_glyphs)
24951 (insert_glyphs): Remove.
24952 (raw_cursor_to, clear_to_end, tty_turn_off_insert)
24953 (tty_turn_off_highlight, get_tty_size): Add declaration.
24954 (tabs_safe_p, init_baud_rate, get_tty_terminal): Update prototypes.
24955
24956 * frame.h (enum output_method): Add output_initial.
24957 (struct x_output): Delete.
24958 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
24959 Access foreground_pixel and background_pixel directly from the frame.
24960 (tty_display): Delete.
24961 (struct frame): Add buried_buffer_list, foreground_pixel,
24962 background_pixel and terminal. Delete kboard.
24963 (union output_data): Add tty.
24964 (FRAME_KBOARD): Get the kboard from the terminal.
24965 (FRAME_INITIAL_P): New macro.
24966 (Qtty, Qtty_type, Qterminal, Qterminal_live_p, Qenvironment)
24967 (Qterm_environment_variable, Qdisplay_environment_variable)
24968 (make_terminal_frame, Qburied_buffer_list, Qwindow_system):
24969 New declarations.
24970
24971 * termchar.h (tty_output, tty_display_info): New structures.
24972 (tty_list): Declare.
24973 (FRAME_TTY, CURTTY): New macros.
24974 (must_write_spaces, min_padding_speed, fast_clear_end_of_line)
24975 (line_ins_del_ok, char_ins_del_ok, scroll_region_ok)
24976 (scroll_region_cost, memory_below_frame, fast_clear_end_of_line)
24977 (dont_calculate_costs, no_redraw_on_reenter): Remove declarations.
24978
24979 * callproc.c: Include frame.h and termhooks.h, for terminal
24980 parameters.
24981 (add_env): New function.
24982 (child_setup): Use it.
24983 (child_setup, getenv_internal): Handle the new Vprocess_environment.
24984 (getenv_internal): Fix get_terminal_param call.
24985 (Fgetenv_internal, egetenv): Update doc.
24986 (syms_of_callproc): Initialize Vprocess_environment to nil.
24987 Register and initialize them. Remove obsolete defvars. Update doc
24988 strings.
24989 (child_setup): Handle Vlocal_environment_variables.
24990 (getenv_internal): Add terminal parameter.
24991 Handle Vlocal_environment_variables.
24992 (Fgetenv_internal): Add terminal parameter.
24993 (child_setup, getenv_internal, Fgetenv_internal): Store the local
24994 environment in a frame (not terminal) parameter. Update doc strings.
24995 (set_initial_environment): Rename from set_global_environment.
24996 Store Emacs environment in initial frame parameter.
24997
24998 * xdisp.c (redisplay_internal): Update references to
24999 `previous_terminal_frame'.
25000 (display_mode_line, Fformat_mode_line): Replace calls to
25001 `push_frame_kboard' with `push_kboard'.
25002 (get_glyph_string_clip_rects): Add extra parentheses and
25003 braces to prevent compiler warnings.
25004 (calc_pixel_width_or_height): Add xassert to check that the
25005 frame is alive. Don't call `lookup_image' on a termcap frame.
25006 (message2_nolog, message3_nolog, redisplay_internal)
25007 (set_vertical_scroll_bar, redisplay_window, check_x_display_info)
25008 (x_set_scroll_bar_foreground, x_set_scroll_bar_background)
25009 (Fx_create_frame, Fxw_display_color_p, Fx_display_grayscale_p)
25010 (Fx_display_pixel_width, Fx_display_pixel_height)
25011 (Fx_display_planes, Fx_display_color_cells)
25012 (Fx_server_max_request_size, Fx_server_vendor, Fx_server_version)
25013 (Fx_display_screens, Fx_display_mm_height, Fx_display_mm_width)
25014 (Fx_display_backing_store, Fx_display_visual_class)
25015 (Fx_display_save_under, Fx_close_connection, x_create_tip_frame):
25016 Use FRAME_TERMINAL_P, FRAME_WINDOW_P, FRAME_TTY and FRAME_RIF.
25017
25018 * xfns.c (x_set_foreground_color x_set_background_color)
25019 (x_set_mouse_color, x_set_cursor_color, x_make_gc):
25020 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
25021 (Fx_create_frame, x_create_tip_frame, build_string, x_window)
25022 (Fx_create_frame, x_create_tip_frame): Don't create frames on a
25023 terminal that is being deleted.
25024 (Fx_create_frame): Use `store_frame_param' to set `window-system'
25025 frame parameter, and make sure it overrides any user-supplied setting.
25026 (Fx_close_connection, Fx_synchronize): Unify argument names with
25027 the rest of the DEFUNs.
25028
25029 * dispnew.c (Fsend_string_to_terminal): Update call to
25030 `get_tty_terminal'.
25031 (Fredraw_frame, Fsend_string_to_terminal)
25032 (Fsend_string_to_terminal, init_display): Use FRAME_RIF,
25033 FRAME_TERMCAP_P and FRAME_TTY.
25034 (window_change_signal): Don't believe width/height values that are
25035 impossibly small.
25036 (Vinitial_window_system): Rename from Vwindow_system.
25037 (termscript, Wcm, rif): Delete.
25038
25039 * termhooks.h (struct terminal): New struct containing the
25040 previously global text display hooks and new members NAME,
25041 DELETED and PARAM_ALIST.
25042 (FRAME_TERMINAL, TERMINAL_TERMINAL_CODING)
25043 (TERMINAL_KEYBOARD_CODING, TERMINAL_ACTIVE_P, FRAME_WINDOW_P)
25044 (FRAME_RIF): New macros.
25045 (get_terminal_param, get_device): New declarations.
25046 (termscript): Delete declaration.
25047
25048 * xterm.c (x_initialize): Use Fset_input_interrupt_mode.
25049 (XTflash, x_free_frame_resources, x_scroll_bar_create)
25050 (x_scroll_bar_set_handle): Use FRAME_BACKGROUND_PIXEL and
25051 FRAME_FOREGROUND_PIXEL.
25052 (x_fully_uncatch_errors): Disable definition.
25053 (x_scroll_bar_expose): Fix reference to foreground pixel.
25054 (XTread_socket): Disable loop on all X displays.
25055 (x_delete_terminal): Don't set terminal->deleted and let
25056 delete_terminal delete the frames on the terminal.
25057 (x_delete_display): Doc update to reflect changes in
25058 delete_terminal.
25059 (x_display_info) <terminal>: Move member earlier in the struct.
25060 (deleting_tty): Remove old variable.
25061 (Fsuspend_tty): Call clear_tty_hooks.
25062 (Fresume_tty, init_tty): Call set_tty_hooks.
25063 (Ftty_display_color_p, Ftty_display_color_cells): Don't throw
25064 errors on X frames.
25065 (x_catch_errors_unwind): Abort if x_error_message is NULL.
25066 (handle_one_xevent): Initialize `f' to NULL.
25067 (x_delete_terminal, x_create_terminal): New functions.
25068 (XTset_terminal_modes, XTreset_terminal_modes)
25069 (XTread_socket, x_connection_closed, x_term_init)
25070 (x_term_init, x_delete_display): Add terminal parameter.
25071 (x_term_init) [!HAVE_GTK_MULTIDISPLAY]: Refuse to create secondary
25072 X connections.
25073
25074 * frame.c: Include termchar.h.
25075 (Qterminal, Qterminal_live_p, Qburied_buffer_list, Qtty, Qtty_type)
25076 (Qwindow_system, Qenvironment, Qterm_environment_variable)
25077 (Qdisplay_environment_variable): New vars.
25078 (Fframep): Deal with output_initial.
25079 (Fframe-live-p): Doc fix.
25080 (Fwindow-system): New function.
25081 (x_set_screen_gamma, store_frame_param): Fix compilation errors.
25082 (make_terminal_frame): Don't create frames on a terminal that is
25083 being deleted. Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
25084 (store_frame_param): Check for found_for_frame before calling XFRAME.
25085 (Fmake_terminal_frame): Handle NULL tty names correctly.
25086 (syms_of_frame): Enhance doc string of `default-frame-alist'.
25087 (Fdelete_frame): Remove unused variable `count'. Don't allow other
25088 frames to refer to a deleted frame in their 'environment parameter.
25089 (Fframe_with_environment): New function.
25090 (syms_of_frame): Defsubr it. Initialize and staticpro Qenvironment.
25091 (get_future_frame_param): New function.
25092 (Fmake_terminal_frame): Use it.
25093 (x_set_frame_parameters, x_set_screen_gamma): Use FRAME_RIF.
25094
25095 * sysdep.c (init_sys_modes, reset_sys_modes): Update for renames.
25096 * sysdep.c (reset_sys_modes): Update for renames.
25097
25098 * keyboard.c (tty_read_avail_input): New function.
25099 (Fset_input_interrupt_mode, Fset_output_flow_control): New functions.
25100 (syms_of_keyboard): Defsubr them.
25101 (Fset_input_meta_mode, Fset_quit_char): New functions.
25102 (Fset_input_mode): Split to above functions.
25103 (read_char_minibuf_menu_prompt): Add wrong_kboard_jmpbuf
25104 parameter. Use it in call to `read_char'.
25105 (read_char): Declare. Update call to `read_char_minibuf_menu_prompt'.
25106 Set wrong_kboard_jmpbuf correctly in recursive calls.
25107 Use current_kboard to access Vkeyboard_translate_table.
25108 Enhance comment before extra longjmp to wrong_kboard_jmpbuf.
25109 Add wrong_kboard_jmpbuf parameter to allow for recursive calls.
25110 Update longjmp invocations. Remember the original current_kboard,
25111 and longjmp to `wrong_kboard_jmpbuf' when a filter, timer or sentinel
25112 changes it. Comment out unnecessary calls to
25113 `record_single_kboard_state' and `any_kboard_state'.
25114 Update recursive calls.
25115 (wrong_kboard_jmpbuf): Remove global variable.
25116 (read_key_sequence): Remove unused variable wrong_kboard_jmpbuf.
25117 Handle deleted interrupted_kboards correctly; that is a legal
25118 case. Add `wrong_kboard_jmpbuf' local variable. Update setjmp
25119 and read_char calls. Abort if interrupted_kboard died in read_char.
25120 (any_kboard_state, single_kboard_state)
25121 (push_frame_kboard): Remove function.
25122 (pop_kboard): Switch out of single_kboard mode if the kboard has
25123 been deleted. Remove unused variable. Help debugging by not
25124 changing current_kboard unnecessarily. Set current_kboard to the
25125 kboard of the selected frame when the stored kboard object has
25126 been deleted before pop_kboard.
25127 (temporarily_switch_to_single_kboard): Change first parameter to a
25128 frame pointer. Throw an error when caller wants to change kboards
25129 while in single_kboard mode. Don't push_kboard if we weren't in
25130 single kboard state. Don't pop_kboard if we popped into any
25131 kboard state.
25132 (restore_kboard_configuration): Abort if pop_kboard changed the
25133 kboard in single_kboard mode. Call pop_kboard only after setting
25134 up single_kboard mode.
25135 (Frecursive_edit): Switch to single_kboard mode only in nested
25136 command loops.
25137 (cmd_error, command_loop, command_loop_1, timer_check):
25138 Comment out unnecessary call to `any_kboard_state' and
25139 `record_single_kboard_state'.
25140 (delete_kboard): Exit single_kboard mode if we have just deleted
25141 that kboard. Use FRAME_KBOARD.
25142 (interrupt_signal): Use `Fkill_emacs' to exit Emacs, not
25143 `fatal_error_signal'.
25144 (record_single_kboard_state): Don't push_kboard if we weren't in
25145 single kboard state. Don't pop_kboard if we popped into any
25146 kboard state.
25147 (push_frame_kboard): Rename to push_kboard.
25148 (kbd_buffer_get_event): Use FRAME_TERMINAL.
25149 (read_avail_input): Read input from all terminals.
25150 (mark_kboards): Also mark Vkeyboard_translate_table.
25151 (kbd_buffer_store_event_hold): Simplify condition.
25152 (read_key_sequence): Reinitialize fkey and keytran at each replay.
25153 (Vkeyboard_translate_table): Move to struct kboard.
25154 (init_kboard): Initialize Vkeyboard_translate_table.
25155 (syms_of_keyboard): Use DEFVAR_KBOARD to define
25156 Vkeyboard_translate_table. Update doc strings. Update docs of
25157 local-function-key-map and function-key-map.
25158
25159 * terminal.c: New file.
25160
25161 * term.c: Include errno.h.
25162 (Vring_bell_function, device_list, initial_device)
25163 (next_device_id, ring_bell, update_begin, update_end)
25164 (set_terminal_window, cursor_to, raw_cursor_to)
25165 (clear_to_end, clear_frame, clear_end_of_line)
25166 (write_glyphs, insert_glyphs, delete_glyphs, ins_del_lines)
25167 (Fdisplay_name, create_device, delete_device): Move to terminal.c.
25168 (syms_of_term): Move their initialization to terminal.c.
25169 (get_tty_terminal, Fdisplay_tty_type, Ftty_display_color_p)
25170 (Ftty_display_color_cells)
25171 (Ftty_no_underline, Fsuspend_tty, Fresume_tty, create_tty_output)
25172 (clear_tty_hooks, set_tty_hooks)
25173 (init_tty, maybe_fatal): New functions.
25174 (Ftty_type): Return nil if terminal is not on a tty instead of
25175 throwing an error. Doc update.
25176 (syms_of_term) <Vsuspend_tty_functions, Vresume_tty_functions>:
25177 Doc update. Initialize new subrs and variables.
25178 (delete_tty): Use terminal->deleted.
25179 (tty_set_terminal_modes): Rename from set_terminal_modes.
25180 (tty_reset_terminal_modes): Rename from reset_terminal_modes.
25181 (set_scroll_region): Rename to `tty_set_scroll_region'.
25182 (turn_on_insert): Rename to `tty_turn_on_insert'.
25183 (turn_off_insert): Rename to `tty_turn_off_insert'.
25184 (turn_off_highlight): Rename to `tty_turn_off_highlight'.
25185 (turn_on_highlight): Rename to `tty_turn_on_highlight'.
25186 (toggle_highligh): Rename to `tty_toggle_highlight'.
25187 (background_highlight): Rename to `tty_background_highlight'.
25188 (highlight_if_desired): Rename to `tty_highlight_if_desired'.
25189 (tty_ring_bell, tty_update_end, tty_set_terminal_window)
25190 (tty_set_scroll_region, tty_background_highlight)
25191 (tty_cursor_to, tty_raw_cursor_to, tty_clear_to_end)
25192 (tty_clear_frame, tty_clear_end_of_line, tty_write_glyphs)
25193 (tty_insert_glyphs, tty_delete_glyphs, tty_ins_del_lines)
25194 (term_get_fkeys, tty_setup_colors, dissociate_if_controlling_tty):
25195 Add static modifier.
25196 (tty_reset_terminal_modes, tty_set_terminal_window)
25197 (tty_set_scroll_region, tty_background_highlight)
25198 (tty_highlight_if_desired, tty_cursor_to)
25199 (tty_raw_cursor_to, tty_clear_to_end, tty_clear_frame)
25200 (tty_clear_end_of_line, tty_write_glyphs, tty_insert_glyphs)
25201 (tty_delete_glyphs, tty_ins_del_lines, turn_on_face): Update for
25202 renames.
25203
25204 2007-08-28 Jan Djärv <jan.h.d@swipnet.se>
25205
25206 * keyboard.c: Qrtl is new.
25207 (parse_tool_bar_item): Handle :rtl keyword.
25208 (syms_of_keyboard): Intern :rtl keyword.
25209
25210 * dispextern.h (enum tool_bar_item_idx): Add TOOL_BAR_ITEM_RTL_IMAGE.
25211
25212 * gtkutil.c (xg_tool_bar_expose_callback): Just do SET_FRAME_GARBAGED
25213 so no Lisp code is executed.
25214 (file_for_image, find_rtl_image): New functions.
25215 (xg_get_image_for_pixmap): Use file_for_image.
25216 (update_frame_tool_bar): If direction is RTL, use RTL image if
25217 defined. Use Gtk stock images if defined.
25218
25219 2007-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25220
25221 * macterm.c (x_draw_composite_glyph_string_foreground): Draw rectangle
25222 for nonexistent or zero-width glyph in composition glyph.
25223
25224 2007-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
25225
25226 * m/amdx86-64.h: Redirect to intel386.h if compiling for i386.
25227
25228 * xdisp.c (Finvisible_p): New function.
25229 (syms_of_xdisp): defsubr it.
25230
25231 2007-08-24 Juanma Barranquero <lekktu@gmail.com>
25232
25233 * image.c (syms_of_image) <image-library-alist, cross-disabled-images>:
25234 Doc fixes.
25235
25236 2007-08-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25237
25238 * mac.c [MAC_OSX] (select_and_poll_event, sys_select): Fix last changes.
25239
25240 2007-08-24 Martin Rudalics <rudalics@gmx.at>
25241
25242 * fileio.c (Finsert_file_contents): Consult CHARS_MODIFF to tell
25243 whether decoding has modified buffer contents.
25244
25245 2007-08-24 Jason Rumney <jasonr@gnu.org>
25246
25247 * image.c [HAVE_NTGUI]: Define dynamic loaded functions for SVG.
25248 (Qgdk_pixbuf, Qglib) [HAVE_NTGUI]: New symbols.
25249 (syms_of_image) [HAVE_NTGUI]: Intern and staticpro them.
25250 (init_svg_functions) [HAVE_NTGUI]: New function.
25251 (fn_g_type_init, fn_g_object_unref, fn_g_error_free): New #defines.
25252 (svg_load_image): Use them.
25253 (svg_load_image) [HAVE_NTGUI]: Implement background.
25254
25255 2007-08-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25256
25257 * Makefile.in (RSVG_LIBS, RSVG_CFLAGS): New variables.
25258 (ALL_CFLAGS): Use ${RSVG_CFLAGS} instead of @RSVG_CFLAGS@.
25259 (LIBX): Remove @RSVG_LIBS@.
25260 (LIBES): Add $(RSVG_LIBS).
25261
25262 * image.c (svg_load_image): Blend with specified background if exists.
25263 Use IMAGE_BACKGROUND. Add Mac OS Support.
25264
25265 * mac.c (wakeup_from_rne_enabled_p) [MAC_OSX]: Remove variable.
25266 (ENABLE_WAKEUP_FROM_RNE, DISABLE_WAKEUP_FROM_RNE) [MAC_OSX]:
25267 Remove macros.
25268 [MAC_OSX] (socket_callback): Do nothing.
25269 [MAC_OSX] (select_and_poll_event): Use CFRunLoopRunInMode instead of
25270 ReceiveNextEvent.
25271 [MAC_OSX] (sys_select): Likewise. Don't set context as argument to
25272 socket_callback.
25273 (mac_wakeup_from_rne) [MAC_OSX]: Do nothing.
25274
25275 2007-08-22 Glenn Morris <rgm@gnu.org>
25276
25277 * image.c (x_find_image_file): Search in etc/images/ rather than etc/.
25278
25279 2007-08-22 Paul Pogonyshev <pogonyshev@gmx.net>
25280
25281 * Makefile.in (ALL_CFLAGS, LIBX): Add RSVG_LIBS.
25282
25283 * image.c: Add support for SVG images. Some additional comments
25284 by Joakim Verona <joakim@verona.se>. When HAVE_RSVG is defined:
25285 (svg_image_p): New function to test for SVG image.
25286 (svg_load): New function to load SVG image.
25287 (svg_load_image): New function, helper for svg_load.
25288 (Qsvg): New Lisp_object.
25289 (svg_keyword_index): New enum.
25290 (svg_format): New static `image_keyword' struct.
25291 (svg_type): New static `image_type' struct.
25292 (librsvg/rsvg.h): Include it.
25293
25294 2007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
25295
25296 * lread.c (load_warn_old_style_backquotes): Fix up array size typo.
25297
25298 2007-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
25299
25300 * lread.c (Qold_style_backquotes): New var.
25301 (syms_of_lread): Init and staticpro it.
25302 (load_warn_old_style_backquotes): New fun.
25303 (Fload): Use them to warn about old style backquotes.
25304 (end_of_file_error, Fload): Remove unused vars.
25305
25306 * lisp.h (Fclear_face_cache, Fx_send_client_event): Declare.
25307
25308 * lread.c (Vold_style_backquotes): New var.
25309 (syms_of_lread): Init and export it to Elisp.
25310 (read1): Set it when we find an old-style (back)quote.
25311
25312 2007-08-22 Jason Rumney <jasonr@gnu.org>
25313
25314 * w32reg.c (SYSTEM_DEFAULT_RESOURCES): Add missing NULL terminator.
25315
25316 2007-08-22 Katsumi Yamaoka <yamaoka@jpl.org>
25317
25318 * puresize.h (BASE_PURESIZE): Increase to 1140000.
25319
25320 2007-08-19 Richard Stallman <rms@gnu.org>
25321
25322 * eval.c (Ffunction, Fquote): Signal error if not 1 argument.
25323
25324 2007-08-19 Andreas Schwab <schwab@suse.de>
25325
25326 * alloc.c (pure): Round PURESIZE up.
25327
25328 2007-08-17 Jan Djärv <jan.h.d@swipnet.se>
25329
25330 * xterm.c (handle_one_xevent): Remove check that mouse click is in
25331 active frame.
25332
25333 2007-08-16 Richard Stallman <rms@gnu.org>
25334
25335 * eval.c (Fcommandp): Add parens to clarify.
25336
25337 * minibuf.c (Fall_completions): Use enum for type of table.
25338
25339 * emacs.c (USAGE2): Improve text.
25340
25341 2007-08-15 Philippe Waroquiers <philippe.waroquiers@eurocontrol.int>
25342
25343 * term.c (tty_default_color_capabilities): Declare static
25344 variables in file scope, to avoid HPUX compiler problem.
25345
25346 2007-08-13 Jan Djärv <jan.h.d@swipnet.se>
25347
25348 * gtkutil.c (update_frame_tool_bar): Use -1 as index
25349 to gtk_toolbar_insert.
25350
25351 2007-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
25352
25353 * fileio.c (Finsert_file_contents): Yet Another Int/Lisp_Object Mixup.
25354
25355 * insdel.c (reset_var_on_error): New fun.
25356 (signal_before_change, signal_after_change):
25357 Use it to reset (after|before)-change-functions to nil in case of error.
25358 Bind inhibit-modification-hooks to t.
25359 Don't bind (after|before)-change-functions to nil while they run.
25360
25361 2007-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25362
25363 * xterm.c (x_draw_image_glyph_string): Adjust stipple origin when
25364 filling pixmap with stippled background.
25365
25366 2007-08-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25367
25368 * macterm.c [TARGET_API_MAC_CARBON] (mac_handle_window_event):
25369 Don't use invisible frame as parent window for repositioning.
25370
25371 2007-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
25372
25373 * print.c (new_backquote_output): Rename from old_backquote_output.
25374 (print): Inverse its logic (according to its name) so as to match the
25375 behavior of new_backquote_flag in lread.c.
25376
25377 2007-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25378
25379 * gmalloc.c (posix_memalign): New function.
25380
25381 * macterm.c (frame_highlight, frame_unhighlight): Don't call
25382 ActivateControl/DeactivateControl here.
25383 [USE_MAC_TOOLBAR] (free_frame_tool_bar): Suppress animation when
25384 frame-notice-user-settings is non-nil.
25385 [USE_MAC_FONT_PANEL] (mac_handle_font_event): Also record parameter
25386 for kEventParamFMFontStyle.
25387 [TARGET_API_MAC_CARBON] (mac_handle_keyboard_event): Don't check
25388 mac_pass_command_to_system and mac_pass_control_to_system here.
25389 (XTread_socket): Call ActivateControl/DeactivateControl here.
25390 (XTread_socket) [TARGET_API_MAC_CARBON]:
25391 Check mac_pass_command_to_system and mac_pass_control_to_system here.
25392 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Add further workaround
25393 for window repositioning.
25394
25395 2007-08-08 Glenn Morris <rgm@gnu.org>
25396
25397 * Replace `iff' in doc-strings and comments.
25398
25399 2007-08-07 Chong Yidong <cyd@stupidchicken.com>
25400
25401 * xdisp.c (move_it_by_lines): Remove incorrect optimization.
25402
25403 2007-08-07 Martin Rudalics <rudalics@gmx.at>
25404
25405 * fileio.c (Finsert_file_contents): Run format-decode and
25406 after_insert_file_functions on entire buffer when REPLACE is
25407 non-nil and inhibit modification_hooks and point_motion_hooks.
25408 For consistency, run after_insert_file_functions iff something
25409 got inserted. Move signal_after_change and update_compositions
25410 after code running after_insert_file_functions. Make sure that
25411 undo_list doesn't record intermediate steps of the decoding process.
25412
25413 2007-08-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25414
25415 * emacs.c (main)
25416 [HAVE_GTK_AND_PTHREAD && !SYSTEM_MALLOC && !DOUG_LEA_MALLOC]:
25417 Call malloc_enable_thread on interactive startup.
25418
25419 * gmalloc.c (_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
25420 (LOCK, UNLOCK, LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS)
25421 [USE_PTHREAD]: Conditionalize with it.
25422 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
25423 (malloc_atfork_handler_child, malloc_enable_thread) [USE_PTHREAD]:
25424 New functions.
25425
25426 2007-08-06 Chong Yidong <cyd@stupidchicken.com>
25427
25428 * xdisp.c (redisplay_window): When restoring original buffer
25429 position, make sure it is still valid.
25430
25431 * image.c (png_load): Ignore png-supplied background color.
25432
25433 2007-08-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25434
25435 * mac.c [TARGET_API_MAC_CARBON] (cfdate_to_lisp): Obtain microsec value.
25436 Use kCFAbsoluteTimeIntervalSince1970.
25437
25438 * macmenu.c (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]:
25439 New variable.
25440 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Set it if dialog
25441 event loop should be quit.
25442 [TARGET_API_MAC_CARBON] (create_and_show_dialog) [!MAC_OSX]:
25443 Quit dialog event loop if quit_dialog_event_loop is set.
25444
25445 * macselect.c [!TARGET_API_MAC_CARBON]: Include Scrap.h.
25446 (Selection): New typedef. Use instead of ScrapRef.
25447 (mac_get_selection_from_symbol): Rename from get_scrap_from_symbol.
25448 (mac_valid_selection_target_p): Rename from valid_scrap_target_type_p.
25449 (mac_clear_selection): Rename from clear_scrap.
25450 (get_flavor_type_from_symbol): New argument SEL and subsume function of
25451 scrap_has_target_type. All uses changed.
25452 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
25453 (mac_selection_has_target_p): New functions.
25454 (mac_put_selection_value): Rename from put_scrap_string.
25455 (mac_get_selection_value): Rename from get_scrap_string.
25456 (mac_get_selection_target_list): Rename from get_scrap_target_type_list.
25457 (put_scrap_private_timestamp, scrap_has_target_type)
25458 (get_scrap_private_timestamp): Remove functions.
25459 (SCRAP_FLAVOR_TYPE_EMACS_TIMESTAMP): Remove define.
25460 (x_own_selection, x_get_local_selection):
25461 Use mac_valid_selection_value_p.
25462 (x_own_selection): Don't use put_scrap_private_timestamp.
25463 Record OWNERSHIP-INFO into Vselection_alist instead.
25464 (x_get_local_selection): Don't check type if request is local.
25465 (Fx_selection_owner_p): Don't use get_scrap_private_timestamp.
25466 Detect ownership change with OWNERSHIP-INFO in Vselection_alist instead.
25467
25468 2007-08-04 Jan Djärv <jan.h.d@swipnet.se>
25469
25470 * gtkutil.c (xg_tool_bar_callback): Generate two TOOL_BAR_EVENT:s,
25471 add comment explaining why.
25472
25473 2007-08-03 Richard Stallman <rms@gnu.org>
25474
25475 * fileio.c (Fvisited_file_modtime): Use make_time.
25476
25477 2007-08-01 Ryo Yoshitake <ryo@shiftmode.net> (tiny change)
25478
25479 * mac.c (init_mac_osx_environment): Adjust load-path on self-contained
25480 build.
25481
25482 2007-07-31 Stefan Monnier <monnier@iro.umontreal.ca>
25483
25484 * gtkutil.c (xg_tool_bar_callback): Generate a single TOOL_BAR_EVENT.
25485
25486 2007-07-30 Katsumi Yamaoka <yamaoka@jpl.org>
25487
25488 * puresize.h (BASE_PURESIZE): Increase to 1130000.
25489
25490 2007-07-30 Richard Stallman <rms@gnu.org>
25491
25492 * lread.c (readevalloop, read1): Treat NBSP as whitespace.
25493
25494 2007-07-29 Jan Djärv <jan.h.d@swipnet.se>
25495
25496 * gmalloc.c (__malloc_initialize): Remove pthread_once. Not needed.
25497
25498 2007-07-28 Nick Roberts <nickrob@snap.net.nz>
25499
25500 * xdisp.c (decode_mode_spec): Use '@' instead of 'R' to test for
25501 remote default-directory.
25502
25503 * buffer.c (mode-line-format): Update doc string.
25504
25505 2007-07-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25506
25507 * w32term.c (w32_draw_fringe_bitmap): Extend fringe background to
25508 scroll bar gap.
25509 (x_scroll_bar_create): Set bar->fringe_extended_p.
25510 (w32_set_vertical_scroll_bar): Put leftmost/rightmost scroll bars
25511 on frame edge. Check fringe background extension. Don't clear
25512 extended fringe background area.
25513
25514 * w32term.h (struct scroll_bar): New member fringe_extended_p.
25515 (w32_fill_area): Enclose multiple statements with do ... while (0).
25516
25517 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
25518 Extend fringe background to scroll bar gap.
25519 (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]:
25520 Set bar->fringe_extended_p.
25521 (XTset_vertical_scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
25522 Put leftmost/rightmost scroll bars on frame edge. Check fringe
25523 background extension. Don't clear extended fringe background area.
25524
25525 * xterm.h (struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
25526 New member fringe_extended_p.
25527
25528 2007-07-25 Glenn Morris <rgm@gnu.org>
25529
25530 * Relicense all FSF files to GPLv3 or later.
25531
25532 * COPYING: Switch to GPLv3.
25533
25534 2007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
25535
25536 * eval.c (Fcommandp): Pay attention to the `interactive-form' property.
25537
25538 * data.c (Finteractive_form): Check for the presence of an
25539 `interactive-form' symbol property more thoroughly.
25540
25541 * data.c (Finteractive_form): Use an `interactive-form' property if
25542 present, analogous to the function-documentation property.
25543
25544 2007-07-24 Jason Rumney <jasonr@gnu.org>
25545
25546 * w32fns.c (x_real_positions): Get real position from OS instead of
25547 calculating it.
25548
25549 2007-07-23 Jason Rumney <jasonr@gnu.org>
25550
25551 * filelock.c (current_lock_owner): Allow for @ sign in username.
25552
25553 2007-07-22 Nick Roberts <nickrob@snap.net.nz>
25554
25555 * xdisp.c (decode_mode_spec): Add case 'R' for to test for
25556 remote default-directory.
25557
25558 * buffer.c (mode-line-format): Describe above case in doc string.
25559
25560 2007-07-20 Eli Zaretskii <eliz@gnu.org>
25561
25562 * w32proc.c (IMAGE_NT_OPTIONAL_HDR32_MAGIC, IMAGE_OPTIONAL_HEADER32):
25563 Define if not defined.
25564
25565 2007-07-18 Jason Rumney <jasonr@gnu.org>
25566
25567 * w32proc.c (w32_executable_type): Handle 64 bit executables.
25568
25569 2007-07-18 Richard Stallman <rms@gnu.org>
25570
25571 * data.c (Fsetq_default): Doc fix.
25572
25573 * eval.c (Fsetq): Doc fix.
25574
25575 2007-07-18 Juanma Barranquero <lekktu@gmail.com>
25576
25577 * coding.c (Ffind_operation_coding_system):
25578 * eval.c (For, Fand): Doc fixes.
25579 Reported by Johan Bockgård.
25580
25581 2007-07-18 Jan Djärv <jan.h.d@swipnet.se>
25582
25583 * xfns.c (Fx_focus_frame): Call x_ewmh_activate_frame.
25584
25585 * xterm.h: Declare x_ewmh_activate_frame.
25586
25587 * xterm.c (x_ewmh_activate_frame): New function.
25588 (XTframe_raise_lower): Move code to x_ewmh_activate_frame.
25589
25590 2007-07-17 Martin Rudalics <rudalics@gmx.at>
25591
25592 * window.c (Fdisplay_buffer): If largest or LRU window is the
25593 only window, split it even if it is not eligible for splitting.
25594 This restores the original behavior broken by the 2007-07-15
25595 change.
25596
25597 2007-07-17 Glenn Morris <rgm@gnu.org>
25598
25599 * abbrev.c (abbrev_check_chars): New function.
25600 (Fdefine_global_abbrev, Fdefine_mode_abbrev):
25601 Call abbrev_check_chars to check abbrev characters are word
25602 constituents. Doc fix.
25603
25604 2007-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
25605
25606 * process.c (Fstart_process, Fmake_network_process)
25607 (read_process_output): Fix up last changes.
25608
25609 2007-07-16 Eli Zaretskii <eliz@gnu.org>
25610
25611 * makefile.w32-in (clean): Don't delete *~.
25612
25613 2007-07-16 Andreas Schwab <schwab@suse.de>
25614
25615 * window.c (Fdisplay_buffer): Use NILP.
25616 (Fset_window_scroll_bars): Likewise.
25617
25618 2007-07-15 Martin Rudalics <rudalics@gmx.at>
25619
25620 * window.c (window_min_size_2): New function.
25621 (window_min_size_1, size_window, Fdisplay_buffer)
25622 (Fsplit_window, adjust_window_trailing_edge): Use it to avoid
25623 windows without mode- or header-lines when window-min-height is
25624 too small.
25625 (size_window): Reset nodelete_p after testing it, following an
25626 earlier note by Kim F. Storm.
25627 (display_buffer): Do not set split_height_threshold to twice the
25628 value of window_min_height to avoid changing the value of a
25629 customizable variable. Rather explicitly check whether the
25630 height of the window that shall be splitted is at least as large
25631 as split_height_threshold.
25632 (Fwindow_full_width_p): New defun.
25633 (syms_of_window): Defsubr it.
25634
25635 * window.h: Add EXFUN for Fwindow_full_width_p.
25636
25637 2007-07-14 Jason Rumney <jasonr@gnu.org>
25638
25639 * process.c [WINDOWSNT]: Don't undefine AF_INET6.
25640
25641 2007-07-14 Richard Stallman <rms@gnu.org>
25642
25643 * eval.c (maybe_call_debugger): New function.
25644 (find_handler_clause): Use maybe_call_debugger.
25645 Call it when the handler says `debug'.
25646 Eliminate DEBUGGER_VALUE_PTR.
25647 (Fsignal): Eliminate debugger_value.
25648 (Qdebug): New variable.
25649 (syms_of_eval): Initialize it.
25650
25651 2007-07-14 Juanma Barranquero <lekktu@gmail.com>
25652
25653 * eval.c (Fprogn):
25654 * keyboard.c (Ftrack_mouse):
25655 * print.c (Fwith_output_to_temp_buffer):
25656 * window.c (Fsave_window_excursion): Doc fix.
25657
25658 2007-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
25659
25660 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 400.
25661
25662 2007-07-12 Stefan Monnier <monnier@iro.umontreal.ca>
25663
25664 * process.h (struct Lisp_Process): Turn slots infd, outfd,
25665 kill_without_query, pty_flag, tick, update_tick, decoding_carryover,
25666 inherit_coding_system_flag, filter_multibyte, adaptive_read_buffering,
25667 read_output_delay, and read_output_skip from Lisp_Objects to ints.
25668 Remove unused encoding_carryover.
25669 * process.c: Adjust all functions accordingly.
25670
25671 2007-07-12 Richard Stallman <rms@gnu.org>
25672
25673 * term.c: Include unistd.h only if HAVE_UNISTD_H.
25674
25675 2007-07-11 Jason Rumney <jasonr@gnu.org>
25676
25677 * makefile.w32-in (LIBS): Include OLE32.
25678
25679 * w32fns.c (w32_msg_pump) <WM_EMACS_CREATEWINDOW>: Initialize COM.
25680 (w32_msg_pump) <WM_DESTROY>: Uninitialize COM.
25681
25682 2007-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
25683
25684 * lisp.h (struct Lisp_Hash_Table): Turn next_weak into a bare pointer.
25685 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and turned
25686 from a Lisp_Object into a bare pointer.
25687 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
25688 Adjust the code correspondingly.
25689
25690 * alloc.c (emacs_blocked_free): Remove unused var `bytes_used_now'.
25691
25692 * term.c: Include unistd.h for ttyname, used in handle_one_term_event.
25693 (term_show_mouse_face): Remove unused var `j'.
25694 (handle_one_term_event): Remove unused vars `i' and `j'.
25695 Don't cast return value of ttyname since it's not necessary.
25696
25697 2007-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
25698
25699 * alloc.c (mark_maybe_pointer): Enforce mult-of-8 alignment when using
25700 USE_LSB_TAG. Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
25701
25702 * fns.c (map_char_table): Use an array of int for `indices' rather than
25703 an array of Lisp_Objects (which are only ever integers anyway).
25704 (Fmap_char_table): Update caller.
25705 * lisp.h: Update prototype.
25706 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap):
25707 * fontset.c (Ffontset_info):
25708 * casetab.c (set_case_table): Update callers.
25709
25710 * editfns.c (Ftranspose_regions): Use EMACS_INT for positions.
25711
25712 * keymap.c (struct accessible_keymaps_data)
25713 (struct where_is_internal_data): New structures.
25714 (accessible_keymaps_1, where_is_internal_1): Use them to change
25715 interface to adhere to the one used by map_keymap.
25716 (Faccessible_keymaps, where_is_internal): Use map_keymap.
25717 (accessible_keymaps_char_table, where_is_internal_2): Remove.
25718
25719 * keymap.h (map_keymap_function_t): More informative prototype.
25720
25721 2007-07-10 Guanpeng Xu <herberteuler@hotmail.com>
25722
25723 * search.c (Vinhibit_changing_match_data, search_regs_1): New vars.
25724 (looking_at_1): Don't change search_regs and last_thing_searched
25725 if `inhibit-changing-match-data' is non-nil.
25726 (string_match_1, search_buffer, set_search_regs): Likewise.
25727 (syms_of_search): Add Lisp level definition for
25728 `inhibit-changing-match-data' and set it to nil.
25729 (boyer_moore): If `inhibit-changing-match-data' is non-nil, compute
25730 start and end of the match, instead of using values in search_regs.
25731
25732 2007-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
25733
25734 * minibuf.c (Fcompleting_read): New value `confirm-only'
25735 for `require-match'.
25736
25737 2007-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
25738
25739 * fileio.c (Fdo_auto_save): Revert last patch installed unwillingly as
25740 part of the 2007-06-27 change to syms_of_fileio.
25741
25742 2007-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25743
25744 * macterm.c [USE_MAC_TSM] (mac_handle_text_input_event):
25745 Check WINDOWP before using XWINDOW. Consolidate return statements.
25746
25747 2007-06-27 Richard Stallman <rms@gnu.org>
25748
25749 * fileio.c (syms_of_fileio) <after-insert-file-functions>: Doc fix.
25750
25751 2007-06-27 Juanma Barranquero <lekktu@gmail.com>
25752
25753 * buffer.c (syms_of_buffer) <selective-display>: Fix typo in docstring.
25754
25755 2007-06-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25756
25757 * gmalloc.c [HAVE_GTK_AND_PTHREAD]: Check this after including config.h.
25758 (_aligned_blocks_mutex) [USE_PTHREAD]: New variable.
25759 (LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS): New macros.
25760 (_free_internal, memalign): Use them.
25761 (_malloc_mutex, _aligned_blocks_mutex) [USE_PTHREAD]:
25762 Initialize to PTHREAD_MUTEX_INITIALIZER.
25763 (malloc_initialize_1) [USE_PTHREAD]: Don't use recursive mutex.
25764 (morecore_nolock): Rename from morecore. All uses changed.
25765 Use only nolock versions of internal allocation functions.
25766 (_malloc_internal_nolock, _realloc_internal_nolock)
25767 (_free_internal_nolock): New functions created from
25768 _malloc_internal, _realloc_internal, and _free_internal.
25769 (_malloc_internal, _realloc_internal, _free_internal): Use them.
25770 Copy hook value to automatic variable before its use.
25771 (memalign): Copy hook value to automatic variable before its use.
25772
25773 2007-06-26 Kenichi Handa <handa@m17n.org>
25774
25775 * coding.c (Ffind_operation_coding_system): Docstring improved.
25776 (syms_of_coding): Docstring of `file-coding-system-alist' improved.
25777
25778 2007-06-25 David Kastrup <dak@gnu.org>
25779
25780 * keymap.c (Fcurrent_active_maps): Add `position' argument.
25781 (Fwhere_is_internal): Adjust call to `current-active-maps' to
25782 cater for additional parameter.
25783
25784 * keymap.h: Adjust number of parameters to `current-active-maps'.
25785
25786 * doc.c (Fsubstitute_command_keys): Adjust call of
25787 `current-active-maps'.
25788
25789 2007-06-25 David Kastrup <dak@gnu.org>
25790
25791 * callint.c (Fcall_interactively): Make the parsing of interactive
25792 specs somewhat more readable.
25793
25794 2007-06-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25795
25796 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe background
25797 to scroll bar gap also when bitmap fills fringe. Draw only foreground
25798 if extended background has already been filled.
25799
25800 2007-06-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25801
25802 * macgui.h (USE_CG_DRAWING): Don't require USE_ATSUI.
25803 (USE_MAC_TOOLBAR): Require USE_CG_DRAWING.
25804
25805 * macmenu.c (mac_dialog_modal_filter, Fx_popup_dialog) [MAC_OSX]:
25806 Put special treatment for Fmessage_box, Fyes_or_no_p, and Fy_or_n_p
25807 in #if 0 as it is not compatible with y-or-n-p-with-timeout.
25808 (timer_check) [TARGET_API_MAC_CARBON]: Add extern.
25809 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Use QuitEventLoop
25810 instead of QuitAppModalLoopForWindow. Consolidate QuitEventLoop calls.
25811 (pop_down_dialog) [TARGET_API_MAC_CARBON]: New function.
25812 [TARGET_API_MAC_CARBON] (create_and_show_dialog): Use it for unwind.
25813 Run timers during dialog popup.
25814 (Fmenu_or_popup_active_p) [TARGET_API_MAC_CARBON]: Use popup_activated.
25815
25816 2007-06-21 Jason Rumney <jasonr@gnu.org>
25817
25818 * image.c (convert_mono_to_color_image): Swap fore and background.
25819
25820 2007-06-20 Jason Rumney <jasonr@gnu.org>
25821
25822 * w32bdf.c (w32_BDF_to_x_font): Unmap memory when finished.
25823 (w32_free_bdf_font): Unmap memory not handle.
25824
25825 2007-06-20 Sam Steingold <sds@gnu.org>
25826
25827 * gmalloc.c (__morecore): Fix the declaration to comply with the
25828 definition.
25829
25830 2007-06-20 Juanma Barranquero <lekktu@gmail.com>
25831
25832 * w32term.c (w32_delete_display): Remove leftover declaration.
25833 (w32_define_cursor, w32_initialize): Make static.
25834
25835 * w32.c (_wsa_errlist): Fix typo in error message.
25836 (init_environment): Ignore any environment variable from the
25837 registry having a null value.
25838
25839 2007-06-20 Glenn Morris <rgm@gnu.org>
25840
25841 * Makefile.in (LIBGIF): Default to -lgif.
25842
25843 2007-06-17 Jason Rumney <jasonr@gnu.org>
25844
25845 * w32menu.c (add_menu_item): Don't use multibyte string functions on
25846 unicode strings.
25847
25848 2007-06-16 Juanma Barranquero <lekktu@gmail.com>
25849
25850 * xdisp.c (syms_of_xdisp) <auto-resize-tool-bars>:
25851 Fix typo in docstring.
25852
25853 2007-06-16 Eli Zaretskii <eliz@gnu.org>
25854
25855 * w32menu.c (add_menu_item): Escape `&' characters in menu items
25856 and their keybindings.
25857
25858 2007-06-15 Chong Yidong <cyd@stupidchicken.com>
25859
25860 * composite.c (update_compositions): Fix last fix.
25861
25862 2007-06-14 Jason Rumney <jasonr@gnu.org>
25863
25864 * w32.c (get_process_times_fn): New function pointer.
25865 (globals_of_w32): Intialize it if present in kernel32.dll.
25866 (w32_get_internal_run_time): New function.
25867
25868 * editfns.c (Fget_internal_run_time) [WINDOWSNT]: Use it.
25869
25870 2007-06-14 Kenichi Handa <handa@etlken.m17n.org>
25871
25872 * composite.c (update_compositions): Check the validness of
25873 compositions.
25874
25875 2007-06-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25876
25877 * frame.h (struct frame) [MAC_OS]: New member external_tool_bar.
25878 (FRAME_EXTERNAL_TOOL_BAR) [MAC_OS]: Use it.
25879
25880 * macfns.c (mac_window) [USE_MAC_TOOLBAR]: Set toolbar_win_gravity.
25881 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]: Set FRAME_EXTERNAL_TOOL_BAR.
25882
25883 * macgui.h (USE_MAC_TOOLBAR): New define.
25884
25885 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
25886 Return immediately unless popup is activated.
25887
25888 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe
25889 background to scroll bar gap.
25890 (x_scroll_bar_create) [MAC_OSX]: Set bar->fringe_extended_p.
25891 (XTset_vertical_scroll_bar) [MAC_OSX]: Put leftmost/rightmost
25892 scroll bars on frame edge. Check fringe background extension.
25893 Don't clear extended fringe background area.
25894 (TOOLBAR_IDENTIFIER, TOOLBAR_ICON_ITEM_IDENTIFIER)
25895 (TOOLBAR_ITEM_COMMAND_ID_OFFSET, TOOLBAR_ITEM_COMMAND_ID_P)
25896 (TOOLBAR_ITEM_COMMAND_ID_VALUE, TOOLBAR_ITEM_MAKE_COMMAND_ID):
25897 [USE_MAC_TOOLBAR]: New macros.
25898 (mac_move_window_with_gravity, mac_get_window_origin_with_gravity)
25899 (mac_handle_toolbar_event, mac_image_spec_to_cg_image)
25900 (mac_create_frame_tool_bar, update_frame_tool_bar, free_frame_tool_bar)
25901 (mac_tool_bar_note_mouse_movement, mac_handle_toolbar_command_event)
25902 [USE_MAC_TOOLBAR]: New functions.
25903 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Reposition window
25904 manually if previous repositioning has failed.
25905 (mac_handle_keyboard_event): Use precomputed event kind.
25906 (XTread_socket) [USE_MAC_TOOLBAR]: Handle click in structure region
25907 as tool bar item click. Handle mouse movement over tool bar items.
25908
25909 * macterm.h (struct mac_output) [USE_MAC_TOOLBAR]: New member
25910 toolbar_win_gravity.
25911 (struct scroll_bar) [MAC_OSX]: New member fringe_extended_p.
25912 (update_frame_tool_bar, free_frame_tool_bar) [USE_MAC_TOOLBAR]:
25913 Add externs.
25914
25915 * xdisp.c (update_tool_bar, redisplay_tool_bar, redisplay_window)
25916 [USE_MAC_TOOLBAR]: Sync with GTK+ tool bar display.
25917
25918 2007-06-14 Chong Yidong <cyd@stupidchicken.com>
25919
25920 * image.c (search_image_cache): Remove unused variable.
25921
25922 2007-06-13 Chong Yidong <cyd@stupidchicken.com>
25923
25924 * xfns.c, xmenu.c: Link to xaw3d if available.
25925
25926 2007-06-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25927
25928 * dispextern.h (struct image) [HAVE_WINDOW_SYSTEM]: New members
25929 frame_foreground and frame_background.
25930
25931 * image.c (lookup_image): Save frame foreground and background colors.
25932 (search_image_cache): Check if saved and current frame colors match.
25933
25934 2007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
25935
25936 * regex.c (regex_compile): Remove the `regnum' counter.
25937 Use bufp->re_nsub instead. Add support for \(?N:RE\).
25938
25939 2007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
25940
25941 * term.c: Include intervals.h to declare Fget_text_property.
25942
25943 2007-06-10 Jason Rumney <jasonr@gnu.org>
25944
25945 * w32fns.c (Fx_file_dialog): Take size from struct not pointer.
25946
25947 2007-06-08 Juanma Barranquero <lekktu@gmail.com>
25948
25949 * callint.c (Fcall_interactively):
25950 * editfns.c (Fdelete_and_extract_region):
25951 * fileio.c (Fread_file_name):
25952 * fns.c (Fmapconcat):
25953 * keyboard.c (cmd_error_internal):
25954 * keymap.c (Fkey_description):
25955 * lread.c (openp):
25956 * minibuf.c (read_minibuf):
25957 * search.c (wordify):
25958 * sunfns.c (sel_read):
25959 * xdisp.c (Fformat_mode_line, syms_of_xdisp):
25960 * xfns.c (x_default_scroll_bar_color_parameter):
25961 * xmenu.c (menu_help_callback):
25962 * xselect.c (Fx_get_atom_name):
25963 * xterm.c (x_term_init): Use empty_unibyte_string.
25964
25965 2007-06-08 Dmitry Antipov <dmantipov@yandex.ru> (tiny change)
25966
25967 * alloc.c (init_strings): Initialize canonical empty strings.
25968 (make_uninit_string, make_uninit_multibyte_string): Return appropriate
25969 canonical empty string when the requested size is 0.
25970
25971 * emacs.c (empty_unibyte_string): Rename from empty_string.
25972 (empty_multibyte_string): New canonical empty string.
25973 (syms_of_emacs): Don't initialize empty_string.
25974
25975 * lisp.h (STRING_SET_UNIBYTE): Return the canonical empty unibyte
25976 string, if appropriate.
25977 (empty_unibyte_string, empty_multibyte_string): New externs.
25978 (empty_string): Remove extern.
25979
25980 * lread.c (syms_of_lread): Use empty_unibyte_string.
25981
25982 2007-06-07 Jason Rumney <jasonr@gnu.org>
25983
25984 * s/ms-w32.h: Don't define HAVE_TZNAME.
25985
25986 * editfns.c (Fcurrent_time_zone): Remove hack for Japanese Windows.
25987
25988 2007-06-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25989
25990 * mac.c (xrm_get_preference_database): Remove BLOCK_INPUT.
25991
25992 * macfns.c (mac_get_window_bounds): Move extern to macterm.h.
25993 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use GetGlobalMouse.
25994
25995 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
25996 Don't call next handler.
25997 [TARGET_API_MAC_CARBON] (install_menu_target_item_handler):
25998 Remove argument. Install handler to application.
25999 (set_frame_menubar): Don't change deep_p.
26000 (mac_menu_show): Use FRAME_OUTER_TO_INNER_DIFF_X and
26001 FRAME_OUTER_TO_INNER_DIFF_Y.
26002 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
26003 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
26004 [HAVE_DIALOGS]: New macros.
26005 [HAVE_DIALOGS] (mac_handle_dialog_event, create_and_show_dialog):
26006 Use them.
26007 (fill_menubar) [TARGET_API_MAC_CARBON]: Use CFString.
26008
26009 * macselect.c [MAC_OSX] (install_service_handler): Rename from
26010 init_service_handler. All callers changed. Return OSStatus value.
26011
26012 * macterm.c (mac_begin_cg_clip): New arg F. Call SetPortWindowPort.
26013 All callers changed so as not to call SetPortWindowPort.
26014 (mac_begin_cg_clip) [USE_CG_DRAWING]: Call mac_prepare_for_quickdraw.
26015 (mac_draw_image_string_atsui) [USE_ATSUI]: New function created from
26016 mac_draw_string_common.
26017 (mac_draw_image_string_qd): Likewise.
26018 (mac_draw_string_common): Use them. Add INLINE.
26019 (XTmouse_position, x_scroll_bar_report_motion) [TARGET_API_MAC_CARBON]:
26020 Use FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y, and
26021 GetGlobalMouse.
26022 (x_set_mouse_pixel_position) [MAC_OSX]: Use FRAME_OUTER_TO_INNER_DIFF_X
26023 and FRAME_OUTER_TO_INNER_DIFF_Y.
26024 [TARGET_API_MAC_CARBON] (mac_handle_mouse_event): Likewise.
26025 [USE_MAC_TSM] (mac_handle_text_input_event): Likewise.
26026 (x_make_frame_visible) [TARGET_API_MAC_CARBON]: Move code for
26027 repositioning window to mac_handle_window_event.
26028 (x_make_frame_invisible) [TARGET_API_MAC_CARBON]: Move code for
26029 saving window location to mac_handle_window_event
26030 [USE_MAC_FONT_PANEL] (mac_show_hide_font_panel): Install handler here.
26031 (install_menu_target_item_handler): Remove argument in extern.
26032 [TARGET_API_MAC_CARBON] (mac_event_to_emacs_modifiers):
26033 Also accept command events.
26034 (do_keystroke): New function created from XTread_socket.
26035 (init_command_handler): Remove functions.
26036 [TARGET_API_MAC_CARBON] (mac_handle_window_event): Reposition window
26037 and save window location by kEventWindowShowing and kEventWindowHiding
26038 handlers here. Don't call next handler for window state change and
26039 focus events.
26040 (mac_handle_application_event, mac_handle_keyboard_event)
26041 [TARGET_API_MAC_CARBON]: New functions.
26042 (install_window_handler) [TARGET_API_MAC_CARBON]: Register handlers for
26043 kEventWindowShowing and kEventWindowHiding events. Move installation
26044 of mouse, font, text input and menu target item handlers to
26045 install_application_handler.
26046 (install_application_handler) [TARGET_API_MAC_CARBON]: New function.
26047 (mac_handle_cg_display_reconfig) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
26048 New function.
26049 (init_dm_notification_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
26050 Register it.
26051 (XTread_socket) [TARGET_API_MAC_CARBON]:
26052 Consolidate SendEventToEventTarget calls.
26053 Use FRAME_OUTER_TO_INNER_DIFF_X and FRAME_OUTER_TO_INNER_DIFF_Y.
26054 Move application activation handler to mac_handle_application_event.
26055 Move keyboard handler to mac_handle_keyboard_event.
26056 (XTread_socket) [!TARGET_API_MAC_CARBON]: Use do_keystroke.
26057 (mac_initialize) [TARGET_API_MAC_CARBON]: Don't call
26058 init_command_handler. Call install_application_handler.
26059
26060 * macterm.h (mac_get_window_bounds): Move extern from macfns.c.
26061 (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y): New macros.
26062
26063 2007-06-07 Glenn Morris <rgm@gnu.org>
26064
26065 * emacs.c (main): Use `emacs-copyright' in --version output.
26066
26067 2007-06-06 Chong Yidong <cyd@stupidchicken.com>
26068
26069 * image.c (xpm_load): Remove spurious call to xpm_init_color_cache.
26070
26071 2007-06-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
26072
26073 * macfns.c (mac_window): Replace WindowPtr with WindowRef.
26074
26075 * macgui.h: Replace WindowPtr with WindowRef.
26076
26077 * macmenu.c: Replace MenuHandle and GetMenuHandle with MenuRef and
26078 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
26079 Replace ControlHandle with ControlRef.
26080 (install_menu_quit_handler): Rename arg MENU_HANDLE to ROOT_MENU.
26081
26082 * macterm.c: Replace MenuHandle and GetMenuHandle with MenuRef and
26083 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
26084 Replace ControlHandle with ControlRef.
26085 (USE_CARBON_EVENTS): Remove. Use TARGET_API_MAC_CARBON instead.
26086 [MAC_OS8] (do_get_menus): Rename variable `menu_handle' to `menu'.
26087
26088 * macterm.h (struct scroll_bar): Rename member control_handle_low
26089 and control_handle_high to control_ref_low and control_ref_high.
26090 All uses changed.
26091 (SCROLL_BAR_CONTROL_REF, SET_SCROLL_BAR_CONTROL_REF): Rename from
26092 SCROLL_BAR_CONTROL_HANDLE and SET_SCROLL_BAR_CONTROL_HANDLE,
26093 respectively. All uses changed.
26094 (XCreatePixmap, XCreatePixmapFromBitmapData, XSetWindowBackground)
26095 (install_window_handler, remove_window_handler): Replace WindowPtr
26096 with WindowRef in externs.
26097
26098 2007-06-05 Juanma Barranquero <lekktu@gmail.com>
26099
26100 * xfaces.c (Finternal_lisp_face_p): Signal error for face alias loops.
26101
26102 2007-06-03 Nick Roberts <nickrob@snap.net.nz>
26103
26104 * keyboard.c (discard_mouse_events): Add GPM_CLICK_EVENT case.
26105
26106 * frame.c (Fmouse_position, Fmouse_pixel_position):
26107 Condition on HAVE_GPM too.
26108
26109 * term.c (term_mouse_highlight): Remove unused variables.
26110 (Fterm_open_connection): Set gpm_zerobased to 1.
26111 (term_mouse_movement, term_mouse_click, handle_one_term_event):
26112 Use zero based co-ordinates.
26113 (handle_one_term_event): Report a drag as mouse movement too.
26114
26115 * Makefile.in (MOUSE_SUPPORT): Define for HAVE_GPM.
26116
26117 2007-06-03 Chong Yidong <cyd@stupidchicken.com>
26118
26119 * image.c (search_image_cache): New function. Require background
26120 color match if background color is unspecified in the image spec.
26121 (uncache_image, lookup_image): Use it.
26122
26123 2007-06-01 Juanma Barranquero <lekktu@gmail.com>
26124
26125 * window.c (Fshrink_window): Reflow docstring.
26126
26127 2007-06-02 Chong Yidong <cyd@stupidchicken.com>
26128
26129 * Version 22.1 released.
26130
26131 2007-06-01 Richard Stallman <rms@gnu.org>
26132
26133 * xfns.c (x_encode_text): Add GCPRO.
26134
26135 2007-06-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
26136
26137 * xfns.c (x_set_name_internal): Save encoded name before
26138 x_encode_text in case string data is relocated.
26139
26140 2007-05-31 Richard Stallman <rms@gnu.org>
26141
26142 * buffer.c (syms_of_buffer): Doc fix.
26143
26144 2007-05-30 Nick Roberts <nickrob@snap.net.nz>
26145
26146 * sysdep.c (init_sys_modes): Add rather than replace with
26147 O_NONBLOCK.
26148
26149 * frame.c [HAVE_GPM] (Fset_mouse_pixel_position): Add call to
26150 term_mouse_moveto.
26151
26152 * termhooks.h (term_mouse_moveto): New extern.
26153
26154 * term.c (mouse_face_window): Rename...
26155 (Qmouse_face_window): ...to this.
26156 (term_show_mouse_face, term_clear_mouse_face)
26157 (term_mouse_highlight): Use Qmouse_face_window.
26158 (term_mouse_moveto): New function.
26159 (term_mouse_position): Make it work.
26160 (syms_of_term): Uncomment assignment to mouse_position_hook.
26161 Staticpro Qmouse_face_window.
26162
26163 2007-05-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
26164
26165 * xdisp.c (redisplay_internal): Bind inhibit-point-motion-hooks to t
26166 around current_column call.
26167
26168 2007-05-26 Dan Nicolaescu <dann@ics.uci.edu>
26169
26170 * xfaces.c (syms_of_xfaces): Delete stray semicolon.
26171 * xdisp.c (next_element_from_buffer):
26172 * window.c (delete_window):
26173 * term.c (term_mouse_highlight):
26174 * msdos.c (getdefdir):
26175 * macterm.c (mac_create_bitmap_from_bitmap_data)
26176 (init_font_name_table):
26177 * fns.c (Fsxhash):
26178 * data.c (Fmake_local_variable):
26179 * ccl.c (ccl_driver): Likewise.
26180
26181 2007-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
26182
26183 * macterm.c [USE_CARBON_EVENTS] (mac_handle_window_event):
26184 Call mac_wakeup_from_rne on window size change.
26185
26186 2007-05-25 Chong Yidong <cyd@stupidchicken.com>
26187
26188 * image.c (uncache_image): Fix typo.
26189
26190 2007-05-23 Johannes Weiner <hannes@saeurebad.de> (tiny change)
26191
26192 * keyboard.c (make_lispy_movement): Condition on HAVE_GPM too.
26193
26194 2007-05-22 Richard Stallman <rms@gnu.org>
26195
26196 * xterm.c (x_connection_closed): Remove NO_RETURN.
26197
26198 2007-05-22 Martin Rudalics <rudalics@gmx.at>
26199
26200 * syntax.c (scan_words): Fix arg to UPDATE_SYNTAX_TABLE_BACKWARD.
26201
26202 2007-05-21 Chong Yidong <cyd@stupidchicken.com>
26203
26204 * image.c (uncache_image): New function.
26205 (Fimage_refresh): New function.
26206
26207 2007-05-20 Jan Djärv <jan.h.d@swipnet.se>
26208
26209 * Makefile.in: Move GPM check outside HAVE_X_WINDOWS.
26210
26211 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
26212
26213 * config.in, keyboard.c, Makefile.in, sysdep.c, term.c,
26214 * termhooks.h: Use HAVE_GPM instead of HAVE_GPM_H.
26215
26216 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
26217
26218 * keyboard.c (make_lispy_event): Make case GPM_CLICK_EVENT
26219 conditional on [HAVE_GPM_H].
26220
26221 2007-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
26222
26223 * syntax.c (skip_chars): Update syntax-table only after we checked that
26224 the new location is valid.
26225
26226 2007-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
26227
26228 * macterm.c (x_calc_absolute_position): Add BLOCK_INPUT around
26229 mac_get_window_bounds.
26230
26231 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
26232
26233 * Makefile.in (LIBGPM): Allow it to be set from configure.
26234 If set then link Emacs with it.
26235
26236 * config.in: Regenerate.
26237
26238 * lisp.h (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
26239 New externs.
26240
26241 * termhooks.h [HAVE_GPM_H] (enum event_kind): Add GPM_CLICK_EVENT.
26242 Include gpm.h.
26243 (handle_one_term_event, term_gpm): New externs.
26244
26245 * sysdep.c [HAVE_GPM_H] (init_sys_modes): Make gpm_fd nonblocking
26246 and allow it to be interrupted by SIGIO.
26247
26248 * process.c (gpm_wait_mask, max_gpm_desc): New variables.
26249 (wait_reading_process_output): Wait on gpm_fd too.
26250 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor)): New functions.
26251 (add_gpm_wait_descriptor_called_flag): New variable.
26252 (delete_keyboard_wait_descriptor): Check gpm_wait_mask.
26253
26254 * keyboard.c [HAVE_GPM_H] (Qmouse_fixup_help_message)
26255 (make_lispy_movement, tracking_off, Ftrack_mouse, some_mouse_moved)
26256 (show_help_echo, readable_events, kbd_buffer_get_event, init_keyboard):
26257 Extend HAVE_MOUSE ifdefs to HAVE_GPM_H.
26258 (make_lispy_event): Add case GPM_CLICK_EVENT.
26259 (read_avail_input): Handle mouse input.
26260
26261 * term.c (write_glyphs_with_face): New function.
26262 [HAVE_GPM_H]: Include buffer.h, sys/fcntl.h.
26263 (mouse_face_beg_row, mouse_face_beg_col, mouse_face_end_row)
26264 (mouse_face_end_col, mouse_face_past_end, mouse_face_window)
26265 (mouse_face_face_id, term_gpm, pos_x, pos_y)
26266 (last_mouse_x, last_mouse_y): New variables.
26267 (term_show_mouse_face, term_clear_mouse_face, fast_find_position)
26268 (term_mouse_highlight, term_mouse_movement, term_mouse_position)
26269 (term_mouse_click, handle_one_term_event, Fterm_open_connection)
26270 (Fterm_close_connection): New functions.
26271 (term_init): Initialise mouse_face_window.
26272
26273 2007-05-19 Chong Yidong <cyd@stupidchicken.com>
26274
26275 * xdisp.c (redisplay_window): If first window line is a
26276 continuation line, recompute the new window start instead of
26277 recentering.
26278
26279 2007-05-18 Glenn Morris <rgm@gnu.org>
26280
26281 * m/alpha.h (ORDINARY_LINK): No longer define on OpenBSD.
26282 Suggested by Alfred M. Szmidt <ams@gnu.org>.
26283
26284 2007-05-17 Glenn Morris <rgm@gnu.org>
26285
26286 * m/macppc.h (ORDINARY_LINK): No longer define on OpenBSD.
26287
26288 2007-05-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
26289
26290 * macterm.c [USE_CARBON_EVENTS] (mac_convert_event_ref): Also convert
26291 dead key repeat and up events.
26292
26293 2007-05-14 Chong Yidong <cyd@stupidchicken.com>
26294
26295 * image.c (pbm_load): Check image size for monochrome pbm.
26296
26297 2007-05-13 Chong Yidong <cyd@stupidchicken.com>
26298
26299 * xterm.c (XTread_socket): Revert last change.
26300
26301 2007-05-12 Chong Yidong <cyd@stupidchicken.com>
26302
26303 * image.c (pbm_load): Correctly check image size for greyscale pbm.
26304
26305 * xterm.c (XTread_socket): Yet Another Uncaught X Error Crash (YAUXEC).
26306
26307 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
26308
26309 * editfns.c (Ftranspose_regions): Yet another int/Lisp_Object
26310 mixup (YAILOM).
26311
26312 2007-05-07 Andreas Schwab <schwab@suse.de>
26313
26314 * keymap.c (Flookup_key): Fix typo in last change.
26315
26316 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
26317
26318 * keymap.c (Fdefine_key, Flookup_key): Only do the 0x80->meta_modifier
26319 mapping for unibyte strings.
26320
26321 2007-05-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
26322
26323 * macmenu.c (mac_dialog_show): Apply 2007-04-27 change for xmenu.c.
26324 (Fx_popup_dialog) [MAC_OSX]: Likewise.
26325
26326 2007-04-29 Richard Stallman <rms@gnu.org>
26327
26328 * insdel.c (replace_range): For undo, record insertion first.
26329
26330 2007-04-29 Andreas Schwab <schwab@suse.de>
26331
26332 * lisp.h (VECSIZE): Use OFFSETOF.
26333
26334 2007-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
26335
26336 * xdisp.c (try_window_reusing_current_matrix): Fix number of
26337 disabled lines.
26338
26339 2007-04-28 Richard Stallman <rms@gnu.org>
26340
26341 * lread.c (read_escape): In a string, \s is always space.
26342
26343 2007-04-27 Jan Djärv <jan.h.d@swipnet.se>
26344
26345 * xmenu.c (xdialog_show): Call Fredisplay before showing the dialog.
26346
26347 * gtkutil.c (xg_update_menubar, create_menus): Create empty
26348 submenu for menu bar items.
26349
26350 See ChangeLog.10 for earlier changes.
26351
26352 ;; Local Variables:
26353 ;; coding: utf-8
26354 ;; add-log-time-zone-rule: t
26355 ;; End:
26356
26357 Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
26358
26359 This file is part of GNU Emacs.
26360
26361 GNU Emacs is free software: you can redistribute it and/or modify
26362 it under the terms of the GNU General Public License as published by
26363 the Free Software Foundation, either version 3 of the License, or
26364 (at your option) any later version.
26365
26366 GNU Emacs is distributed in the hope that it will be useful,
26367 but WITHOUT ANY WARRANTY; without even the implied warranty of
26368 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26369 GNU General Public License for more details.
26370
26371 You should have received a copy of the GNU General Public License
26372 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26373
26374 ;; arch-tag: dfb6ad96-1550-4905-9e53-d2059ee84c40