Constify functions taking char *
[bpt/emacs.git] / src / ChangeLog
1 2010-07-11 Andreas Schwab <schwab@linux-m68k.org>
2
3 * alloc.c (pending_malloc_warning, malloc_warning): Add const.
4 * callproc.c (relocate_fd, getenv_internal_1, getenv_internal)
5 (egetenv): Likewise.
6 * doprnt.c (doprnt): Likewise.
7 * editfns.c (set_time_zone_rule, format2): Likewise.
8 * emacs.c (decode_env_path): Likewise.
9 * eval.c (signal_error, error): Likewise.
10 * insdel.c (replace_range_2): Likewise.
11 * keyboard.c (cmd_error_internal): Likewise.
12 * lread.c (isfloat_string, make_symbol, dir_warning): Likewise.
13 * print.c (write_string, write_string_1, print_error_message):
14 Likewise.
15 * vm-limit.c (warn_function, memory_warnings): Likewise.
16 * xdisp.c (message1, message1_nolog, message_with_string)
17 (vmessage, message, message_nolog): Likewise.
18 * emacs.c: Remove duplicate declaration.
19 * keyboard.h: Likewise.
20 * lisp.h: Update prototypes.
21
22 * eval.c: Fix indentation problem.
23
24 * keyboard.c: Include "process.h"
25
26 * eval.c: Remove obsolete noinline declaration.
27 * fns.c: Likewise.
28
29 2010-07-11 Ken Raeburn <raeburn@raeburn.org>
30
31 * doprnt.c (doprnt): Take a va_list argument instead of count and
32 pointer.
33 * eval.c (error): Change to a standard-C variadic function.
34 * xdisp.c (vmessage): Renamed from message, made static, and
35 changed to take a va_list argument.
36 (message): New variadic wrapper.
37 (message_nolog): Now a variadic function, calling vmessage.
38 * lisp.h: Include stdarg.h for va_list.
39 (doprnt, error, message, message_nolog): Decls updated.
40
41 2010-07-11 Eli Zaretskii <eliz@gnu.org>
42
43 * process.c (syms_of_process) <delete-exited-processes>: Define
44 even if !subprocesses.
45 (delete_exited_processes): Ditto.
46
47 * msdos.c (syms_of_msdos) <delete-exited-processes>: Remove DEFVAR.
48 (delete_exited_processes): Don't define.
49
50 2010-07-10 Chong Yidong <cyd@stupidchicken.com>
51
52 * frame.c (make_frame): Initialize menu_bar_lines and
53 tool_bar_lines members.
54 (make_initial_frame, make_terminal_frame): Initialize
55 menu_bar_lines using value of menu-bar-mode.
56
57 * msdos.c (IT_set_frame_parameters): Don't set menu-bar-lines.
58
59 2010-07-10 Eli Zaretskii <eliz@gnu.org>
60
61 * process.c: Reshuffle #include's. Condition some of the global
62 and static variables on `subprocesses'.
63 (hold_keyboard_input, unhold_keyboard_input, kbd_on_hold_p):
64 Leave only one implementation.
65 (Fget_buffer_process, Fprocess_inherit_coding_system_flag)
66 (kill_buffer_processes, Flist_system_processes)
67 (Fprocess_attributes, init_process, syms_of_process): Unify the
68 implementations for with subprocesses and without them.
69
70 2010-07-09 Jan Djärv <jan.h.d@swipnet.se>
71
72 * xmenu.c (set_frame_menubar): Must realize menubar_widget to get the
73 correct size for Motif.
74 (free_frame_menubar): Call x_set_window_size to update frame size.
75
76 * xfns.c (x_window): Set borderWidth to 0 for pane and
77 EmacsFrame. Frame size calculation is wrong otherwise.
78
79 2010-07-09 Michael Albinus <michael.albinus@gmx.de>
80
81 * dbusbind.c (xd_initialize): Add new argument RAISE_ERROR, which
82 allows to suppress errors when polling in Emacs' main loop.
83 (Fdbus_init_bus, Fdbus_get_unique_name, Fdbus_call_method)
84 (Fdbus_call_method_asynchronously, Fdbus_method_return_internal)
85 (Fdbus_method_error_internal, Fdbus_send_signal)
86 (xd_get_dispatch_status, xd_read_message, Fdbus_register_signal)
87 (Fdbus_register_method): Use it. (Bug#6579)
88
89 2010-07-08 Dan Nicolaescu <dann@ics.uci.edu>
90
91 * alloc.c: Convert DEFUNs to standard C.
92 * buffer.c:
93 * bytecode.c:
94 * callint.c:
95 * callproc.c:
96 * casefiddle.c:
97 * casetab.c:
98 * category.c:
99 * character.c:
100 * charset.c:
101 * chartab.c:
102 * cmds.c:
103 * coding.c:
104 * composite.c:
105 * data.c:
106 * dbusbind.c:
107 * dired.c:
108 * dispnew.c:
109 * doc.c:
110 * dosfns.c:
111 * editfns.c:
112 * emacs.c:
113 * eval.c:
114 * fileio.c:
115 * filelock.c:
116 * floatfns.c:
117 * fns.c:
118 * font.c:
119 * fontset.c:
120 * frame.c:
121 * fringe.c:
122 * image.c:
123 * indent.c:
124 * insdel.c:
125 * keyboard.c:
126 * keymap.c:
127 * lread.c:
128 * macros.c:
129 * marker.c:
130 * menu.c:
131 * minibuf.c:
132 * msdos.c:
133 * nsfns.m:
134 * nsmenu.m:
135 * nsselect.m:
136 * print.c:
137 * process.c:
138 * search.c:
139 * sound.c:
140 * syntax.c:
141 * term.c:
142 * terminal.c:
143 * textprop.c:
144 * undo.c:
145 * w16select.c:
146 * w32console.c:
147 * w32fns.c:
148 * w32font.c:
149 * w32menu.c:
150 * w32proc.c:
151 * w32select.c:
152 * window.c:
153 * xdisp.c:
154 * xfaces.c:
155 * xfns.c:
156 * xmenu.c:
157 * xselect.c:
158 * xsettings.c:
159 * xsmfns.c: Likewise.
160
161
162 2010-07-08 Eli Zaretskii <eliz@gnu.org>
163
164 * process.c (kbd_is_on_hold, hold_keyboard_input)
165 (unhold_keyboard_input, kbd_on_hold_p) [!subprocesses]: Define.
166
167 2010-07-08 Jan Djärv <jan.h.d@swipnet.se>
168
169 * xmenu.c (set_frame_menubar, create_and_show_popup_menu)
170 (create_and_show_dialog): Don't call apply_systemfont_to_(menu|dialog)
171 unless USE_LUCID.
172
173 2010-07-08 Dan Nicolaescu <dann@ics.uci.edu>
174
175 * xdisp.c (store_mode_line_noprop_char): Remove K&R alternative declaration.
176
177 Clean up include guards.
178 * tparam.c: Remove include guards for config.h, string.h and code
179 that assumes #ifndef emacs.
180 * termcap.c:
181 * unexalpha.c:
182 * sysdep.c:
183 * filemode.c:
184 * filelock.c:
185 * bidi.c: Likewise.
186
187 Remove prefix-args.c
188 * prefix-args.c: Remove file.
189 * autodeps.mk (ALLOBJS): Remove reference to prefix-args.
190 * Makefile.in (temacs${EXEEXT}): Remove references to
191 PRE_EDIT_LDFLAGS and POST_EDIT_LDFLAGS.
192 (mostlyclean): Remove reference to prefix-args.
193 (prefix-args): Remove.
194
195 Simplify cstart_of_data, start_of_code and related code.
196 * mem-limits.h: Remove !emacs and _LIBC conditional code.
197 (start_of_data): Merge into start_of_data function.
198 * sysdep.c (start_of_text): Remove. Move simplified versions of
199 it in the only users: unexaix.c and unexec.c.
200 (read_input_waiting): Remove local declaration of quit_char.
201 (start, etext): Remove declarations.
202 (start_of_data): Merge with the version in mem-limits.h and move
203 to vm-limits.c.
204 * vm-limit.c (start_of_data): Merged and simplified version of the
205 code formerly in mem-limits.h and sysdep.c.
206 * unexec.c (start): New declaration, moved from sysdep.c.
207 (start_of_text): Simplified version of the code formerly in sysdep.c.
208 * unexaix.c (start_of_text): Simplified version of the code
209 formerly in sysdep.c.
210 * m/alpha.h (HAVE_TEXT_START): Remove.
211 (TEXT_START): Move ...
212 * unexalpha.c (TEXT_START): ... here.
213 * s/hpux10-20.h (TEXT_START): Remove.
214 * s/darwin.h (TEXT_START):
215 * m/mips.h (TEXT_START):
216 * m/macppc.h (HAVE_TEXT_START):
217 * m/m68k.h (TEXT_START):
218 * m/iris4d.h (TEXT_START):
219 * m/intel386.h (TEXT_START):
220 * m/ibmrs6000.h (TEXT_START):
221 * m/ia64.h (HAVE_TEXT_START):
222 * s/msdos.h (TEXT_START): Likewise.
223
224 2010-07-07 Andreas Schwab <schwab@linux-m68k.org>
225
226 * alloc.c (overrun_check_malloc, overrun_check_realloc)
227 (overrun_check_free, xstrdup, allocate_string)
228 (allocate_string_data, compact_small_strings, Fmake_string)
229 (make_unibyte_string, make_multibyte_string)
230 (make_string_from_bytes, make_specified_string, make_float)
231 (Fcons, allocate_terminal, allocate_frame, make_pure_string)
232 (Fgarbage_collect): Replace bcopy, safe_bcopy, bzero, bcmp by
233 memcpy, memmove, memset, memcmp.
234 * atimer.c (start_atimer, set_alarm): Likewise.
235 * buffer.c (clone_per_buffer_values, report_overlay_modification)
236 (mmap_realloc, init_buffer_once): Likewise.
237 * callint.c (Fcall_interactively): Likewise.
238 * callproc.c (Fcall_process, Fcall_process_region, child_setup)
239 (getenv_internal_1): Likewise.
240 * casefiddle.c (casify_object): Likewise.
241 * ccl.c (ccl_driver): Likewise.
242 * character.c (str_as_multibyte, str_to_multibyte): Likewise.
243 * charset.c (load_charset_map_from_file)
244 (load_charset_map_from_file, load_charset_map_from_vector)
245 (Fdefine_charset_internal): Likewise.
246 * cm.c (Wcm_clear): Likewise.
247 * coding.c (decode_eol, decode_coding_object)
248 (Fset_coding_system_priority, make_subsidiaries): Likewise.
249 * data.c (Faset): Likewise.
250 * dired.c (directory_files_internal, file_name_completion_stat):
251 Likewise.
252 * dispnew.c (new_glyph_matrix, adjust_glyph_matrix)
253 (clear_glyph_row, copy_row_except_pointers)
254 (copy_glyph_row_contents, new_glyph_pool, realloc_glyph_pool)
255 (save_current_matrix, restore_current_matrix)
256 (build_frame_matrix_from_leaf_window, mirrored_line_dance)
257 (mirror_line_dance, scrolling_window): Likewise.
258 * doc.c (Fsnarf_documentation, Fsubstitute_command_keys):
259 Likewise.
260 * doprnt.c (doprnt): Likewise.
261 * editfns.c (Fuser_full_name, make_buffer_string_both)
262 (Fmessage_box, Fformat, Ftranspose_regions): Likewise.
263 * emacs.c (sort_args): Likewise.
264 * eval.c (Fapply, Ffuncall): Likewise.
265 * fileio.c (Ffile_name_directory, make_temp_name)
266 (Fexpand_file_name, search_embedded_absfilename)
267 (Fsubstitute_in_file_name, Ffile_symlink_p, Finsert_file_contents)
268 (auto_save_error): Likewise.
269 * fns.c (Fstring_equal, Fcopy_sequence, concat)
270 (string_to_multibyte, Fstring_as_unibyte, Fstring_as_multibyte)
271 (internal_equal, Fclear_string, larger_vector, copy_hash_table)
272 (Fmake_hash_table): Likewise.
273 * fringe.c (Fdefine_fringe_bitmap): Likewise.
274 * ftfont.c (ftfont_text_extents): Likewise.
275 * getloadavg.c (getloadavg): Likewise.
276 * image.c (define_image_type, make_image, make_image_cache)
277 (x_create_x_image_and_pixmap, xbm_image_p)
278 (w32_create_pixmap_from_bitmap_data, xbm_load, xpm_lookup_color)
279 (xpm_image_p, x_create_bitmap_from_xpm_data, xpm_load)
280 (init_color_table, x_build_heuristic_mask, pbm_image_p, pbm_load)
281 (png_image_p, png_read_from_memory, png_load, jpeg_image_p)
282 (tiff_image_p, tiff_read_from_memory, gif_image_p)
283 (gif_read_from_memory, gif_load, svg_image_p, gs_image_p):
284 Likewise.
285 * indent.c (scan_for_column, compute_motion): Likewise.
286 * insdel.c (gap_left, gap_right, make_gap_smaller, copy_text)
287 (insert_1_both, insert_from_gap, replace_range_2): Likewise.
288 * intervals.c (reproduce_tree, reproduce_tree_obj): Likewise.
289 * keyboard.c (echo_char, save_getcjmp, restore_getcjmp)
290 (kbd_buffer_store_event_hold, apply_modifiers_uncached)
291 (store_user_signal_events, menu_bar_items, tool_bar_items)
292 (process_tool_bar_item, append_tool_bar_item)
293 (read_char_minibuf_menu_prompt, read_key_sequence)
294 (Fread_key_sequence, Fread_key_sequence_vector, Frecent_keys):
295 Likewise.
296 * keymap.c (current_minor_maps, Fdescribe_buffer_bindings):
297 Likewise.
298 * lisp.h (STRING_COPYIN): Likewise.
299 * lread.c (Fload, read1, oblookup): Likewise.
300 * msdos.c (Frecent_doskeys): Likewise.
301 * nsfns.m (Fx_create_frame): Likewise.
302 * nsfont.m (nsfont_open, nsfont_text_extents, ns_glyph_metrics):
303 Likewise.
304 * nsimage.m (EmacsImage-initFromSkipXBM:width:height:)
305 (EmacsImage-initForXPMWithDepth:width:height:flip:length:):
306 Likewise.
307 * nsmenu.m (ns_update_menubar): Likewise.
308 * nsterm.m (ns_draw_fringe_bitmap, ns_term_init): Likewise.
309 * print.c (print_unwind, printchar, strout, print_string)
310 (print_error_message): Likewise.
311 * process.c (conv_lisp_to_sockaddr, set_socket_option)
312 (Fmake_network_process, Fnetwork_interface_list)
313 (Fnetwork_interface_info, read_process_output, Fprocess_send_eof)
314 (init_process): Likewise.
315 * ralloc.c (resize_bloc, r_alloc_sbrk, r_alloc_init): Likewise.
316 * regex.c (init_syntax_once, regex_compile, re_compile_fastmap):
317 Likewise.
318 * scroll.c (do_scrolling, do_direct_scrolling)
319 (scrolling_max_lines_saved): Likewise.
320 * search.c (search_buffer, wordify, Freplace_match): Likewise.
321 * sound.c (wav_init, au_init, Fplay_sound_internal): Likewise.
322 * syntax.c (skip_chars, skip_syntaxes): Likewise.
323 * sysdep.c (child_setup_tty, sys_subshell, emacs_get_tty)
324 (emacs_set_tty): Likewise.
325 * term.c (encode_terminal_code, calculate_costs)
326 (produce_special_glyphs, create_tty_output, init_tty, delete_tty):
327 Likewise.
328 * termcap.c (tgetst1, gobble_line): Likewise.
329 * termhooks.h (EVENT_INIT): Likewise.
330 * tparam.c (tparam1): Likewise.
331 * unexalpha.c (unexec): Likewise.
332 * unexec.c (write_segment): Likewise.
333 * unexmacosx.c (unexec_write_zero): Likewise.
334 * w32fns.c (w32_wnd_proc, Fx_create_frame, x_create_tip_frame)
335 (Fx_file_dialog, Fsystem_move_file_to_trash): Likewise.
336 * w32font.c (w32font_list_family, w32font_text_extents)
337 (w32font_list_internal, w32font_match_internal)
338 (w32font_open_internal, compute_metrics, Fx_select_font):
339 Likewise.
340 * w32menu.c (set_frame_menubar, add_menu_item)
341 (w32_menu_display_help, w32_free_submenu_strings): Likewise.
342 * w32term.c (XCreateGC, w32_initialize_display_info): Likewise.
343 * w32uniscribe.c (uniscribe_list_family): Likewise.
344 * w32xfns.c (get_next_msg, post_msg, prepend_msg): Likewise.
345 * window.c (make_window, replace_window, set_window_buffer)
346 (Fsplit_window): Likewise.
347 * xdisp.c (init_iterator, RECORD_OVERLAY_STRING, reseat_to_string)
348 (add_to_log, message3, x_consider_frame_title)
349 (append_space_for_newline, extend_face_to_end_of_line)
350 (decode_mode_spec_coding, init_glyph_string): Likewise.
351 * xfaces.c (x_create_gc, get_lface_attributes_no_remap)
352 (Finternal_copy_lisp_face, Finternal_merge_in_global_face)
353 (face_attr_equal_p, make_realized_face, make_face_cache)
354 (free_realized_faces, lookup_named_face, smaller_face)
355 (face_with_height, lookup_derived_face)
356 (x_supports_face_attributes_p, Finternal_set_font_selection_order)
357 (Finternal_set_font_selection_order, realize_default_face)
358 (compute_char_face, face_at_buffer_position)
359 (face_for_overlay_string, face_at_string_position, merge_faces):
360 Likewise.
361 * xfns.c (xic_create_fontsetname, Fx_create_frame)
362 (Fx_window_property, x_create_tip_frame)
363 (Fx_backspace_delete_keys_p): Likewise.
364 * xfont.c (xfont_list, xfont_match, xfont_list_family)
365 (xfont_text_extents): Likewise.
366 * xmenu.c (set_frame_menubar, xmenu_show): Likewise.
367 * xrdb.c (magic_file_p, x_get_resource): Likewise.
368 * xselect.c (x_queue_event, x_get_window_property)
369 (receive_incremental_selection): Likewise.
370 * xsmfns.c (x_session_check_input): Likewise.
371 * xterm.c (x_send_scroll_bar_event, SET_SAVED_MENU_EVENT)
372 (handle_one_xevent, x_check_errors, xim_initialize, x_term_init):
373 Likewise.
374 * character.h (BCOPY_SHORT): Removed.
375 * config.in: Regenerate.
376 * dispnew.c (safe_bcopy): Only define as dummy if PROFILING.
377 * emacs.c (main) [PROFILING]: Don't declare
378 dump_opcode_frequencies.
379 * lisp.h (safe_bcopy): Remove declaration.
380 (memset) [!HAVE_MEMSET]: Declare.
381 (memcpy) [!HAVE_MEMCPY]: Likewise.
382 (memmove) [!HAVE_MEMMOVE]: Likewise.
383 (memcmp) [!HAVE_MEMCMP]: Likewise.
384 * s/ms-w32.h (bzero, bcopy, bcmp, GAP_USE_BCOPY)
385 (BCOPY_UPWARD_SAFE, BCOPY_DOWNWARD_SAFE, HAVE_BCOPY, HAVE_BCMP):
386 Don't define.
387 (HAVE_MEMCMP, HAVE_MEMCPY, HAVE_MEMMOVE, HAVE_MEMSET): Define.
388 * s/msdos.h (GAP_USE_BCOPY, BCOPY_UPWARD_SAFE)
389 (BCOPY_DOWNWARD_SAFE): Don't define.
390 * sysdep.c (memset) [!HAVE_MEMSET]: Define.
391 (memcpy) [!HAVE_MEMCPY]: Define.
392 (memmove) [!HAVE_MEMMOVE]: Define.
393 (memcmp) [!HAVE_MEMCMP]: Define.
394
395 2010-07-07 Jan Djärv <jan.h.d@swipnet.se>
396
397 * process.c (kbd_is_on_hold): New variable.
398 (hold_keyboard_input, unhold_keyboard_input, kbd_on_hold_p): New
399 functions.
400 (wait_reading_process_output): If kbd_on_hold_p returns non-zero,
401 select on empty input mask.
402 (init_process): Initialize kbd_is_on_hold to 0.
403
404 * process.h (hold_keyboard_input, unhold_keyboard_input)
405 (kbd_on_hold_p): Declare.
406
407 * keyboard.c (input_available_signal): Declare.
408 (kbd_buffer_nr_stored): New function.
409 (kbd_buffer_store_event_hold): If kbd_buffer_nr_stored returns
410 more than KBD_BUFFER_SIZE/2, stop reding input (Bug#6571).
411 (kbd_buffer_get_event): If input is suspended and kbd_buffer_nr_stored
412 returns less than KBD_BUFFER_SIZE/4, resume reding input (Bug#6571).
413 (tty_read_avail_input): If input is on hold, return.
414 Don't read more that free slots in kbd_buffer (Bug#6571).
415
416 2010-07-07 Eli Zaretskii <eliz@gnu.org>
417
418 * msdos.h:
419 * msdos.c:
420 * dosfns.c:
421 * w16select.c: Convert function definitions to ANSI C.
422
423 * msdos.h (ctrl_break_func, install_ctrl_break_check): Remove
424 unused prototypes.
425
426 2010-07-07 Juanma Barranquero <lekktu@gmail.com>
427
428 * coding.c, sysdep.c: Convert some more functions to standard C.
429
430 2010-07-07 Juanma Barranquero <lekktu@gmail.com>
431
432 * coding.c (decode_coding_gap, encode_coding_gap, decode_coding_object)
433 (encode_coding_object): Use SPECPDL_INDEX.
434 (syms_of_coding): Use DOS_NT.
435
436 2010-07-07 Dan Nicolaescu <dann@ics.uci.edu>
437
438 * intervals.h (interval): Use EMACS_UINT instead of unsigned EMACS_INT.
439
440 Make the function member of Lisp_Subr use standard C prototypes.
441 * lisp.h (struct Lisp_Subr): Use a union for the function member.
442 (DECL_ALIGN): Add a cast for the function.
443 * eval.c (Feval, Ffuncall): Use the proper type for each type
444 function call.
445
446 2010-07-06 Chong Yidong <cyd@stupidchicken.com>
447
448 * fringe.c (draw_fringe_bitmap_1): Use lookup_named_face to get
449 fringe face id, so face-remapping-alist works (Bug#6091).
450
451 2010-07-06 Juanma Barranquero <lekktu@gmail.com>
452
453 * w32.c, w32console.c, w32fns.c, w32font.c, w32heap.c, w32inevt.c
454 * w32menu.c, w32proc.c, w32reg.c, w32select.c, w32term.c
455 * w32uniscribe.c, w32xfns.c: Convert function definitions to standard C.
456
457 2010-07-06 Andreas Schwab <schwab@linux-m68k.org>
458
459 * xterm.c (x_get_keysym_name): Change type of parameter to int.
460 * lisp.h: Declare x_get_keysym_name.
461 * keyboard.c (modify_event_symbol): Don't declare
462 x_get_keysym_name here.
463
464 2010-07-06 Dan Nicolaescu <dann@ics.uci.edu>
465
466 * ecrt0.c: Revert conversion to standard C.
467
468 2010-07-05 Dan Nicolaescu <dann@ics.uci.edu>
469
470 * vm-limit.c (memory_warnings):
471 * keyboard.c (modify_event_symbol):
472 * floatfns.c (rounding_driver, ceiling2, floor2, truncate2)
473 (round2, emacs_rint):
474 * process.c (send_process, old_sigpipe): Convert function
475 definitions and declarations to standard C.
476
477 2010-07-05 Juanma Barranquero <lekktu@gmail.com>
478
479 * buffer.c, cm.c, eval.c, keyboard.c, process.c, term.c, vm-limit.c,
480 * xdisp.c: Convert function definitions to standard C.
481
482 * cm.c (cmputc): Arg C is now int, not char.
483 * process.c (Fmake_network_process): Cast sockaddr_in* to sockaddr*.
484
485 2010-07-05 James Cloos <cloos@jhcloos.com>
486
487 * xterm.h (Xatom_net_wm_name, Xatom_net_wm_icon_name): New.
488
489 * xterm.c (x_term_init): Intern the _NET_WM_NAME and
490 _NET_WM_ICON_NAME atoms.
491
492 * xfns.c (x_set_name_internal): Set the EWMH _NET_WM_NAME
493 and _NET_WM_ICON_NAME properties, too, matching what is
494 done in the Gtk+ case.
495
496 2010-07-05 Jan Djärv <jan.h.d@swipnet.se>
497
498 * xterm.c (XTring_bell, XTset_terminal_window): Fix wrong prototype.
499
500 * xsmfns.c (SSDATA): New macro.
501 (smc_save_yourself_CB, x_session_initialize): Use SSDATA for strings
502 passed to strlen/strcpy/strcat.
503 (create_client_leader_window): Surround with #ifndef USE_GTK. Cast
504 7:th arg to XChangeProperty to (unsigned char *)
505
506 * xsettings.c (something_changedCB, parse_settings)
507 (apply_xft_settings): Reformat prototype.
508 (something_changedCB, init_gconf): Remove unused variable i.
509 (read_settings): Remove unused variable long_len.
510
511 * gtkutil.c (xg_get_pixbuf_from_pix_and_mask)
512 (xg_get_image_for_pixmap, create_dialog)
513 (xg_get_file_with_selection, xg_get_file_name, update_cl_data)
514 (menuitem_highlight_callback, make_menu_item)
515 (xg_create_one_menuitem, create_menus, xg_update_menu_item)
516 (xg_create_scroll_bar, xg_update_scrollbar_pos)
517 (xg_set_toolkit_scroll_bar_thumb, xg_tool_bar_button_cb)
518 (xg_tool_bar_proxy_help_callback, xg_tool_bar_detach_callback)
519 (xg_tool_bar_attach_callback, xg_tool_bar_help_callback)
520 (xg_tool_bar_item_expose_callback): Reformat prototype.
521 (xg_update_menubar): GList *group => GSList *group.
522 (xg_modify_menubar_widgets): Initialize witem to 0, check witem != 0
523 before use.
524 (update_frame_tool_bar): 4:th param to xg_get_image_for_pixmap changed
525 to GTK_IMAGE (wimage).
526
527 2010-07-05 Dan Nicolaescu <dann@ics.uci.edu>
528
529 * atimer.c: Use "" instead of <> for local includes for
530 consistency with the rest of the code.
531
532 * xsmfns.c (smc_save_yourself_CB, smc_error_handler):
533 * xrdb.c (get_system_name):
534 * window.c (shrink_windows):
535 * syntax.c (forw_comment):
536 * scroll.c (calculate_scrolling, calculate_direct_scrolling)
537 (ins_del_costs):
538 * mem-limits.h (start_of_data):
539 * lread.c (readevalloop):
540 * gtkutil.c (xg_dialog_response_cb, xg_get_file_with_chooser)
541 (xg_get_file_with_selection, xg_update_menubar, xg_update_submenu):
542 * frame.c (x_get_focus_frame):
543 * floatfns.c (fmod_float):
544 * fileio.c (choose_write_coding_system):
545 * emacs.c (fatal_error_signal, init_cmdargs, argmatch)
546 (malloc_initialize_hook, sort_args, synchronize_locale):
547 * doprnt.c (doprnt):
548 * dired.c (compile_pattern):
549 * data.c (fmod_float):
550 * chartab.c (map_sub_char_table, map_sub_char_table_for_charset)
551 (map_char_table_for_charset):
552 * charset.c (define_charset_internal):
553 * alloc.c (Fgarbage_collect): Convert declarations or definitions
554 to standard C.
555
556 2010-07-04 Tetsurou Okazaki <okazaki@be.to> (tiny change)
557 Stefan Monnier <monnier@iro.umontreal.ca>
558
559 * lread.c (read1): Fix up last change to not mess up `c'.
560
561 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
562
563 * strftime.c: Revert conversion to standard C (2010-07-04T07:50:25Z!dann@ics.uci.edu).
564
565 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
566
567 Fix prototypes.
568
569 * atimer.c (start_atimer): Use EMACS_TIME, not struct timeval.
570 * dired.c (file_name_completion_stat): Use DIRENTRY, not struct dirent.
571 * fileio.c (read_non_regular, read_non_regular_quit): Add Lisp_Object
572 arg, as required by internal_condition_case_1.
573 * print.c (strout): Use const char* for arg PTR.
574 * regex.c (bcmp_translate): Use RE_TRANSLATE_TYPE, not Lisp_Object.
575 (analyse_first): Fix "const const".
576 * sysdep.c (set_file_times): Use EMACS_TIME, not struct timeval.
577 * unexelf.c (round_up, find_section): Use ElfW macro for arguments.
578 * xgselect.c (xg_select): Use SELECT_TYPE, EMACS_TIME.
579
580 2010-07-04 Dan Nicolaescu <dann@ics.uci.edu>
581
582 * alloc.c: Convert function definitions to standard C.
583 * atimer.c:
584 * bidi.c:
585 * bytecode.c:
586 * callint.c:
587 * callproc.c:
588 * casefiddle.c:
589 * casetab.c:
590 * category.c:
591 * ccl.c:
592 * character.c:
593 * charset.c:
594 * chartab.c:
595 * cmds.c:
596 * coding.c:
597 * composite.c:
598 * data.c:
599 * dbusbind.c:
600 * dired.c:
601 * dispnew.c:
602 * doc.c:
603 * doprnt.c:
604 * ecrt0.c:
605 * editfns.c:
606 * fileio.c:
607 * filelock.c:
608 * filemode.c:
609 * fns.c:
610 * font.c:
611 * fontset.c:
612 * frame.c:
613 * fringe.c:
614 * ftfont.c:
615 * ftxfont.c:
616 * gtkutil.c:
617 * indent.c:
618 * insdel.c:
619 * intervals.c:
620 * keymap.c:
621 * lread.c:
622 * macros.c:
623 * marker.c:
624 * md5.c:
625 * menu.c:
626 * minibuf.c:
627 * prefix-args.c:
628 * print.c:
629 * ralloc.c:
630 * regex.c:
631 * region-cache.c:
632 * scroll.c:
633 * search.c:
634 * sound.c:
635 * strftime.c:
636 * syntax.c:
637 * sysdep.c:
638 * termcap.c:
639 * terminal.c:
640 * terminfo.c:
641 * textprop.c:
642 * tparam.c:
643 * undo.c:
644 * unexelf.c:
645 * window.c:
646 * xfaces.c:
647 * xfns.c:
648 * xfont.c:
649 * xftfont.c:
650 * xgselect.c:
651 * xmenu.c:
652 * xrdb.c:
653 * xselect.c:
654 * xsettings.c:
655 * xsmfns.c:
656 * xterm.c: Likewise.
657
658 2010-07-03 Eli Zaretskii <eliz@gnu.org>
659
660 * msdos.c (IT_set_frame_parameters): Fix setting of colors in
661 frames other than the initial one. Fix reversal of colors when
662 `reverse' is specified in the frame parameters. Call
663 update_face_from_frame_parameter instead of
664 internal-set-lisp-face-attribute. Initialize screen colors from
665 initial_screen_colors[] when f->default_face_done_p is zero,
666 instead of depending on being called with default-frame-alist as
667 the alist argument.
668
669 * xfaces.c (update_face_from_frame_parameter): Move out of
670 HAVE_WINDOW_SYSTEM portion. Condition window-system only parts
671 with HAVE_WINDOW_SYSTEM.
672
673 * msdos.c (IT_set_frame_parameters): Set menu-bar-lines according
674 to menu-bar-mode, if not set in the frame parameters or in
675 default-frame-alist.
676
677 * w32console.c (sys_tputs): Adjust argument list to prototype in
678 term.c.
679
680 2010-07-03 Juanma Barranquero <lekktu@gmail.com>
681
682 * lisp.h (memory_warnings): Fix prototype.
683
684 * cm.h (evalcost): Fix prototype.
685
686 * cm.c (evalcost): Fix arg type.
687
688 2010-07-02 Dan Nicolaescu <dann@ics.uci.edu>
689
690 * term.c (term_clear_mouse_face, Fidentity):
691 * syssignal.h (signal_handler_t):
692 * lisp.h (memory_warnings):
693 * coding.h (preferred_coding_system):
694 * cm.h (evalcost):
695 * blockinput.h (reinvoke_input_signal): Convert to standard C prototypes.
696
697 2010-07-02 Eli Zaretskii <eliz@gnu.org>
698
699 * dosfns.h (msdos_stdcolor_idx, msdos_stdcolor_name): Remove P_
700 from prototypes.
701
702 * msdos.h (load_pixmap): Don't define away.
703
704 2010-07-02 Jan Djärv <jan.h.d@swipnet.se>
705
706 * lisp.h:
707 * atimer.h: Remove define for P_.
708
709 * alloc.c: Remove __P and P_ from .c and .m files.
710 * atimer.c:
711 * buffer.c:
712 * callint.c:
713 * category.c:
714 * charset.c:
715 * chartab.c:
716 * cm.c:
717 * coding.c:
718 * composite.c:
719 * data.c:
720 * dired.c:
721 * dispnew.c:
722 * doc.c:
723 * editfns.c:
724 * emacs.c:
725 * eval.c:
726 * fileio.c:
727 * filelock.c:
728 * fns.c:
729 * font.c:
730 * fontset.c:
731 * frame.c:
732 * ftfont.c:
733 * ftxfont.c:
734 * gmalloc.c:
735 * gtkutil.c:
736 * image.c:
737 * indent.c:
738 * intervals.c:
739 * keyboard.c:
740 * keymap.c:
741 * lread.c:
742 * marker.c:
743 * menu.c:
744 * minibuf.c:
745 * print.c:
746 * process.c:
747 * scroll.c:
748 * search.c:
749 * sound.c:
750 * strftime.c:
751 * syntax.c:
752 * sysdep.c:
753 * term.c:
754 * terminal.c:
755 * textprop.c:
756 * unexalpha.c:
757 * w32console.c:
758 * w32fns.c:
759 * w32font.c:
760 * w32menu.c:
761 * w32term.c:
762 * w32uniscribe.c:
763 * window.c:
764 * xdisp.c:
765 * xfaces.c:
766 * xfns.c:
767 * xfont.c:
768 * xftfont.c:
769 * xmenu.c:
770 * xselect.c:
771 * xterm.c: Likewise.
772
773 Remove P_ and __P macros.
774 * atimer.h: Remove P_ and __P macros.
775 * buffer.h:
776 * category.h:
777 * ccl.h:
778 * character.h:
779 * charset.h:
780 * cm.h:
781 * coding.h:
782 * composite.h:
783 * dispextern.h:
784 * disptab.h:
785 * dosfns.h:
786 * font.h:
787 * fontset.h:
788 * frame.h:
789 * gtkutil.h:
790 * indent.h:
791 * intervals.h:
792 * keyboard.h:
793 * keymap.h:
794 * lisp.h:
795 * macros.h:
796 * md5.h:
797 * menu.h:
798 * msdos.h:
799 * nsterm.h:
800 * puresize.h:
801 * region-cache.h:
802 * syntax.h:
803 * syssignal.h:
804 * systime.h:
805 * termhooks.h:
806 * w32font.h:
807 * w32term.h:
808 * widget.h:
809 * window.h:
810 * xgselect.h:
811 * xsettings.h:
812 * xterm.h: Likewise.
813
814 2010-07-02 Dan Nicolaescu <dann@ics.uci.edu>
815
816 * lisp.h: Document that USE_LISP_UNION_TYPE is now enabled using autoconf.
817
818 Cleanup old code.
819 * dired.c (BSD4_3): Remove all uses, redundant with BSD4_2.
820 * syssignal.h: Remove code for Lynx, not supported anymore.
821 * vm-limit.c: Remove unused code the depends on emacs not being
822 defined and NO_LIM_DATA being defined.
823 * mem-limits.h: Remove dead code.
824
825 2010-07-01 Jan Djärv <jan.h.d@swipnet.se>
826
827 * window.c (Fwindow_absolute_pixel_edges): Doc fix.
828
829 * window.c (calc_absolute_offset, Fwindow_absolute_pixel_edges)
830 (Fwindow_inside_absolute_pixel_edges): New functions (bug#5721).
831
832 * nsfns.m (compute_tip_xy): Do not convert coordinates from frame
833 parameters, they are already absolute.
834
835 * nsterm.m (x_set_window_size, initFrameFromEmacs): Renamed
836 FRAME_NS_TOOLBAR_HEIGHT to FRAME_TOOLBAR_HEIGHT.
837
838 * nsterm.h (FRAME_NS_TOOLBAR_HEIGHT): Rename to FRAME_TOOLBAR_HEIGH
839
840 * nsmenu.m (update_frame_tool_bar, free_frame_tool_bar): Update
841 FRAME_TOOLBAR_HEIGHT.
842
843 * nsmenu.m (free_frame_tool_bar, update_frame_tool_bar): Add
844 BLOCK/UNBLOCK_INPUT so asserts don't trigger.
845
846 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
847
848 * frame.c (get_future_frame_param, Fmake_terminal_frame): Don't
849 check default-frame-alist.
850
851 2010-06-30 Andreas Schwab <schwab@linux-m68k.org>
852
853 * process.c (create_process): Avoid using invalid file descriptors.
854
855 * callproc.c (child_setup): Avoid closing a file descriptor twice.
856
857 2010-06-30 Jan Djärv <jan.h.d@swipnet.se>
858
859 * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font):
860 Improve documentation. Return font regardless of use_system_font.
861 (syms_of_xsettings): Improve documentation for font-use-system-font.
862
863 2010-07-10 Chong Yidong <cyd@stupidchicken.com>
864
865 * xfaces.c (realize_face): Garbage the frame if a face is removed
866 (Bug#6593).
867
868 2010-07-05 Andreas Schwab <schwab@linux-m68k.org>
869
870 * keyboard.c: Remove duplicate <setjmp.h>.
871 (read_key_sequence): Remove volatile qualifiers.
872
873 2010-07-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
874
875 * dispextern.h (FRINGE_HEIGHT_BITS): New define.
876 (struct glyph_row): New members left_fringe_offset and
877 right_fringe_offset.
878
879 * xterm.c (x_draw_fringe_bitmap): Don't clip bottom aligned bitmap
880 specially.
881 * w32term.c (w32_draw_fringe_bitmap): Likewise.
882 * nsterm.m (ns_draw_fringe_bitmap): Likewise.
883
884 * fringe.c (draw_fringe_bitmap_1): Don't clip bitmap here.
885 Take account of bitmap offset.
886 (draw_window_fringes): Take account of window vscroll.
887 (update_window_fringes): Likewise. Extend top-aligned top indicator
888 or bottom-aligned bottom indicator to adjacent rows if it doesn't fit
889 in one row. Don't set redraw_fringe_bitmaps_p outside row comparison.
890 Set left_fringe_offset and right_fringe_offset (Bug#5634, Bug#6325).
891
892 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
893
894 * w32fns.c (Qtooltip): Declare.
895 Suggested by Andy Moreton <andrewjmoreton@gmail.com>.
896
897 2010-07-03 Jan Djärv <jan.h.d@swipnet.se>
898
899 * xmenu.c (x_activate_menubar): Send Press/Release for Gtk+ to avoid
900 grab on just Press (Bug#6499).
901
902 2010-07-02 Chong Yidong <cyd@stupidchicken.com>
903
904 * frame.c (Qtooltip): New var.
905 (delete_frame): Use it. Fix faulty if statement. Don't update
906 mode line for tooltip frames. Suggested by Martin Rudalics.
907
908 * xfns.c (x_create_tip_frame):
909 * w32fns.c (x_create_tip_frame): Use it.
910
911 2010-06-17 Naohiro Aota <naota@elisp.net> (tiny change)
912
913 * xftfont.c (xftfont_open): Check font width one by one also when
914 spacing is dual.
915
916 * ftfont.c (ftfont_open): Ditto.
917
918 2010-06-30 Glenn Morris <rgm@gnu.org>
919
920 * s/sol2-6.h (INHIBIT_X11R6_XIM): Remove, handled by configure now.
921
922 * Makefile.in (CANNOT_DUMP): Update for configure name change.
923
924 * s/freebsd.h (USE_MMAP_FOR_BUFFERS):
925 * s/irix6-5.h (USE_MMAP_FOR_BUFFERS):
926 * s/darwin.h (SYSTEM_MALLOC):
927 * s/sol2-10.h (SYSTEM_MALLOC): Move to configure.
928
929 2010-06-29 Jan Djärv <jan.h.d@swipnet.se>
930
931 * nsfns.m: extern declare Vmenu_bar_mode, Vtool_bar_mode.
932 (ns_get_screen): Don't assign integer to f.
933 (Fx_display_color_cells): Declarations before statements.
934
935 2010-06-28 Jan Djärv <jan.h.d@swipnet.se>
936
937 * xfns.c (x_default_font_parameter): Remove got_from_system
938 (Bug#6526).
939
940 * xterm.h (gtk_widget_get_window, gtk_widget_get_mapped)
941 (gtk_adjustment_get_page_size, gtk_adjustment_get_upper): New
942 defines based on what configure finds.
943
944 * xterm.c (XTflash): Use gtk_widget_get_window.
945 (xg_scroll_callback): Use gtk_adjustment_get_upper and
946 gtk_adjustment_get_page_size.
947 (handle_one_xevent): Use gtk_widget_get_mapped.
948 (x_term_init): Remove HAVE_GTK_MULTIDISPLAY and associated error
949 messages.
950
951 * xmenu.c (create_and_show_popup_menu): Call gtk_widget_get_mapped.
952
953 * gtkutil.h: Replace HAVE_GTK_FILE_BOTH with
954 HAVE_GTK_FILE_SELECTION_NEW.
955
956 * gtkutil.c (xg_display_open, xg_display_close): Remove
957 HAVE_GTK_MULTIDISPLAY, it is always defined.
958 (xg_display_open): Return type is void.
959 (gtk_widget_set_has_window)
960 (gtk_dialog_get_action_area, gtk_dialog_get_content_area)
961 (gtk_widget_get_sensitive, gtk_adjustment_set_page_size)
962 (gtk_adjustment_set_page_increment)
963 (gtk_adjustment_get_step_increment): #define these if not found
964 by configure.
965 (remove_submenu): New define based on Gtk+ version.
966 (xg_set_cursor, xg_frame_resized, xg_event_is_for_scrollbar): Use
967 gtk_widget_get_window.
968 (xg_frame_resized, xg_update_frame_menubar): Use gtk_widget_get_mapped.
969 (xg_create_frame_widgets): Use gtk_widget_set_has_window.
970 (create_dialog): Use gtk_dialog_get_action_area and
971 gtk_dialog_get_content_area.
972 (xg_uses_old_file_dialog, xg_get_file_name): Remove HAVE_GTK_FILE_BOTH
973 and HAVE_GTK_FILE_CHOOSER_DIALOG_NEW. File chooser is always
974 available, so checking for HAVE_GTK_FILE_SELECTION_NEW is enough.
975 (xg_update_menubar, xg_update_submenu, xg_show_toolbar_item): Use
976 g_object_ref and g_object_unref.
977 (xg_update_menu_item, xg_tool_bar_menu_proxy): Use
978 gtk_widget_get_sensitive.
979 (xg_update_submenu): Use remove_submenu.
980 (xg_update_scrollbar_pos): Don't use GtkFixedChild, use child
981 properties instead to get old x and y position.
982 (xg_set_toolkit_scroll_bar_thumb): Use gtk_adjustment_get_page_size,
983 gtk_adjustment_get_step_increment, gtk_adjustment_set_page_size,
984 gtk_adjustment_set_step_increment and gtk_adjustment_set_page_increment.
985 (xg_get_tool_bar_widgets): New function.
986 (xg_tool_bar_menu_proxy, xg_show_toolbar_item)
987 (update_frame_tool_bar): Call xg_get_tool_bar_widgets.
988 (toolbar_set_orientation): New #define based on if configure
989 finds gtk_orientable_set_orientation.
990 (xg_create_tool_bar): Call toolbar_set_orientation.
991 (xg_make_tool_item, xg_show_toolbar_item): Call gtk_box_pack_start
992 instead of gtk_box_pack_start_defaults.
993
994 2010-06-28 Chong Yidong <cyd@stupidchicken.com>
995
996 * cmds.c (Fdelete_backward_char): Move into Lisp.
997
998 2010-06-27 Dan Nicolaescu <dann@ics.uci.edu>
999
1000 * s/freebsd.h (BSD4_2): Remove redundant definition.
1001 bsd-common.h defines it already.
1002
1003 2010-06-27 Chong Yidong <cyd@stupidchicken.com>
1004
1005 * xfns.c (Fx_create_frame): Don't consult X resouces when setting
1006 menu-bar-lines and tool-bar-lines. Use menu-bar-mode and
1007 tool-bar-mode, which are now set using these X resources at
1008 startup, to determine the defaults (Bug#2249).
1009
1010 * w32fns.c (Fx_create_frame):
1011 * nsfns.m (Fx_create_frame): Likewise.
1012
1013 * frame.c (Vmenu_bar_mode, Vtool_bar_mode): New vars.
1014
1015 2010-06-24 Juanma Barranquero <lekktu@gmail.com>
1016
1017 * gtkutil.c (xg_update_scrollbar_pos):
1018 Avoid C99 mid-block variable declaration.
1019
1020 2010-06-22 Jan Djärv <jan.h.d@swipnet.se>
1021
1022 * xterm.c (x_scroll_bar_create): Remove call to xg_show_scroll_bar.
1023
1024 * gtkutil.h (xg_show_scroll_bar): Remove.
1025
1026 * gtkutil.c (xg_update_scrollbar_pos): Show/hide scroll bar as needed
1027 if height is less than scroll bar min size.
1028 (xg_show_scroll_bar): Remove, show moved to xg_update_scrollbar_pos.
1029
1030 * xfns.c (x_default_font_parameter): Try to open font from system
1031 before using it (bug#6478). Rename got_from_gconf to got_from_system.
1032
1033 2010-06-22 Keith Packard <keithp@keithp.com> (tiny change)
1034
1035 * font.c (font_parse_fcname): Allow . for sizes like 7.5 (bug#6437).
1036
1037 2010-06-20 Eli Zaretskii <eliz@gnu.org>
1038
1039 * xdisp.c (try_scrolling): When scroll-conservatively is set to
1040 most-positive-fixnum, be extra accurate when scrolling window
1041 start, to avoid missing the cursor line.
1042
1043 2010-06-19 Eli Zaretskii <eliz@gnu.org>
1044
1045 * xdisp.c (try_scrolling): Compute the limit for searching point
1046 in forward scroll from scroll_max, instead of an arbitrary limit
1047 of 10 screen lines. See
1048 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00766.html
1049 and
1050 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00773.html
1051 for details.
1052
1053 2010-06-16 Glenn Morris <rgm@gnu.org>
1054
1055 * editfns.c (Fbyte_to_string): Pacify compiler.
1056
1057 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
1058
1059 * lread.c (read1): Phase out old-style backquotes a bit more.
1060
1061 2010-06-12 Eli Zaretskii <eliz@gnu.org>
1062
1063 * makefile.w32-in ($(BLD)/bidi.$(O)): Depend on biditype.h and
1064 bidimirror.h.
1065
1066 * deps.mk (bidi.o): Depend on biditype.h and bidimirror.h.
1067
1068 * bidi.c (bidi_initialize): Remove explicit initialization of
1069 bidi_type_table; include biditype.h instead. Don't support
1070 entries whose second codepoint is zero. Initialize bidi_mirror_table.
1071 (bidi_mirror_char): Use bidi_mirror_table.
1072
1073 * biditype.h: New file.
1074
1075 * bidimirror.h: New file.
1076
1077 * window.c (syms_of_window): Doc fix (bug#6409).
1078
1079 2010-06-12 Romain Francoise <romain@orebokech.com>
1080
1081 * Makefile.in (lisp, shortlisp): Use new location of vc-hooks and
1082 ediff-hook.
1083
1084 2010-06-10 Glenn Morris <rgm@gnu.org>
1085
1086 * editfns.c (Fbyte_to_string): Pacify compiler.
1087
1088 * m/ibms390x.h: Rather than duplicating ibms390.h, just include it.
1089
1090 2010-06-26 Andreas Schwab <schwab@linux-m68k.org>
1091
1092 * alloc.c (Fmake_byte_code): Don't access undefined argument
1093 (Bug#6517).
1094
1095 2010-06-25 Chong Yidong <cyd@stupidchicken.com>
1096
1097 * xdisp.c (next_element_from_image): Ensure that after-strings are
1098 read the next time we hit handle_stop (Bug#1336).
1099
1100 2010-06-23 Andreas Schwab <schwab@linux-m68k.org>
1101
1102 * lread.c (read1): Signal error if #s is not followed by paren.
1103
1104 2010-06-19 Chong Yidong <cyd@stupidchicken.com>
1105
1106 * image.c (free_image): Mark frame as garbaged (Bug#6426).
1107
1108 * keymap.c (Fdefine_key): Doc fix (Bug#6460).
1109
1110 2010-06-15 Glenn Morris <rgm@gnu.org>
1111
1112 * editfns.c (Fbyte_to_string): Pacify compiler.
1113
1114 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
1115
1116 * dbusbind.c (xd_append_arg): Don't "make-unibyte" the string.
1117 Check `object's type before accessing its guts.
1118
1119 2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
1120
1121 * s/usg5-4.h: Fix previous change.
1122 Suggested by Lawrence Mitchell <wence@gmx.li>
1123
1124 2010-06-08 Andreas Schwab <schwab@linux-m68k.org>
1125
1126 * minibuf.c (Fall_completions): Add more checks.
1127
1128 2010-06-08 Juanma Barranquero <lekktu@gmail.com>
1129
1130 * minibuf.c (Fall_completions): Check COLLECTION's size (bug#6378).
1131
1132 2010-06-08 Dan Nicolaescu <dann@ics.uci.edu>
1133
1134 * lread.c (X_OK): Remove, unused.
1135
1136 * dispnew.c: Remove obsolete comment.
1137
1138 Remove INCLUDED_FCNTL.
1139 * xterm.c (INCLUDED_FCNTL):
1140 * callproc.c (INCLUDED_FCNTL):
1141 * alloc.c (INCLUDED_FCNTL):
1142 * systty.h (INCLUDED_FCNTL): Remove all uses, not needed anymore.
1143 (emacs_get_tty, emacs_set_tty): Declare unconditionally.
1144
1145 2010-06-07 Martin Rudalics <rudalics@gmx.at>
1146
1147 * window.c (Fselect_window): Move `record_buffer' up to the
1148 beginning of this function, so the buffer gets recorded
1149 even if the selected window does not change.
1150 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00137.html
1151
1152 2010-06-07 Juanma Barranquero <lekktu@gmail.com>
1153
1154 * cmds.c (Fforward_char, Fbackward_char): Fix typos in docstrings.
1155 (Fforward_line, Fbeginning_of_line): Reflow docstrings.
1156
1157 2010-06-06 Dan Nicolaescu <dann@ics.uci.edu>
1158
1159 Remove BSTRING related code, all platforms define it.
1160 * s/usg5-4.h (BSTRING): Remove definition.
1161 * s/template.h (BSTRING):
1162 * s/msdos.h (BSTRING):
1163 * s/ms-w32.h (BSTRING):
1164 * s/hpux10-20.h (BSTRING):
1165 * s/gnu-linux.h (BSTRING):
1166 * s/darwin.h (BSTRING):
1167 * s/cygwin.h (BSTRING):
1168 * s/bsd-common.h (BSTRING):
1169 * s/aix4-2.h (BSTRING): Likewise.
1170 * sysdep.c: Remove code depending on BSTRING not being defined.
1171
1172 2010-06-05 Juanma Barranquero <lekktu@gmail.com>
1173
1174 Remove obsolete macro BASE_LEADING_CODE_P.
1175 * character.h (BASE_LEADING_CODE_P): Remove.
1176 * regex.c [!emacs] (BASE_LEADING_CODE_P): Remove.
1177 * buffer.c (Fset_buffer_multibyte):
1178 * indent.c (scan_for_column, compute_motion):
1179 * insdel.c (count_combining_before, count_combining_after):
1180 Use LEADING_CODE_P instead of BASE_LEADING_CODE_P.
1181
1182 2010-06-04 Juanma Barranquero <lekktu@gmail.com>
1183
1184 Turn `directory-sep-char' into a noop.
1185
1186 * lisp.h [WINDOWSNT] (Vdirectory_sep_char): Don't declare.
1187 (DIRECTORY_SEP): Define unconditionally.
1188
1189 * s/ms-w32.h (DIRECTORY_SEP): Remove.
1190
1191 * emacs.c (decode_env_path): Don't check DIRECTORY_SEP,
1192 call dostounix_filename directly.
1193
1194 * fileio.c (CORRECT_DIR_SEPS): Remove.
1195 (Ffile_name_directory, directory_file_name, Fexpand_file_name)
1196 (Fsubstitute_in_file_name): Use dostounix_filename instead.
1197 (file_name_as_directory): Use dostounix_filename, DIRECTORY_SEP.
1198 (syms_of_fileio) <directory-sep-char>: Move to subr.el.
1199
1200 * w32proc.c (CORRECT_DIR_SEPS): Remove.
1201 (Fw32_short_file_name, Fw32_long_file_name): Use dostounix_filename.
1202
1203 2010-06-03 Andreas Schwab <schwab@linux-m68k.org>
1204
1205 * process.c (conv_lisp_to_sockaddr): Fix conversion of IPv4
1206 address. (Bug#6346)
1207
1208 2010-06-03 Juanma Barranquero <lekktu@gmail.com>
1209
1210 * ccl.c (Fccl_program_p): Fix typo in docstring.
1211
1212 2010-06-03 Dan Nicolaescu <dann@ics.uci.edu>
1213
1214 Move UNEXEC definition to autoconf.
1215 * s/usg5-4.h (UNEXEC): Remove, move to configure.in.
1216 * s/sol2-10.h (UNEXEC):
1217 * s/irix6-5.h (UNEXEC):
1218 * s/hpux10-20.h (UNEXEC):
1219 * s/gnu-linux.h (UNEXEC):
1220 * s/darwin.h (UNEXEC):
1221 * s/cygwin.h (UNEXEC):
1222 * s/bsd-common.h (UNEXEC):
1223 * s/aix4-2.h (UNEXEC):
1224 * m/alpha.h (UNEXEC): Likewise.
1225 * Makefile.in (UNEXEC_OBJ): Define using @UNEXEC_OBJ@.
1226
1227 2010-06-03 Juanma Barranquero <lekktu@gmail.com>
1228
1229 Remove obsolete pre-unicode2 macros.
1230 * character.h (MULTIBYTE_FORM_LENGTH, PARSE_MULTIBYTE_SEQ): Remove.
1231 * composite.c (composition_reseat_it):
1232 * data.c (Faset):
1233 * fns.c (Ffillarray):
1234 * regex.c (re_search_2): Use BYTES_BY_CHAR_HEAD.
1235 [!emacs] (BYTES_BY_CHAR_HEAD): Define instead of MULTIBYTE_FORM_LENGTH.
1236
1237 2010-06-03 Juri Linkov <juri@jurta.org>
1238
1239 * buffer.c (Fother_buffer): Add CHECK_FRAME.
1240 (Fswitch_to_buffer): Remove unused variable `err'.
1241
1242 2010-06-03 Glenn Morris <rgm@gnu.org>
1243
1244 * m/template.h (NO_SOCK_SIGIO): Remove, no longer used.
1245
1246 * m/hp800.h (alloca) [__NetBSD__ && __GNUC__]: No need to define it,
1247 now that AH_BOTTOM does it.
1248
1249 * m/hp800.h (HAVE_ALLOCA):
1250 * m/ibms390x.h (HAVE_ALLOCA): Do not define, no longer needed.
1251
1252 * m/ia64.h, s/gnu-linux.h, s/gnu.h, s/netbsd.h, s/usg5-4.h:
1253 Remove NOT_C_CODE tests, it is always true now.
1254
1255 2010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
1256
1257 Fix config.h includes.
1258 * xsettings.c:
1259 * xgselect.c:
1260 * nsterm.m:
1261 * nsselect.m:
1262 * nsimage.m:
1263 * nsfont.m:
1264 * nsfns.m:
1265 * dbusbind.c: Use #include <config.h> instead of "config.h" as all
1266 other files do.
1267
1268 * gmalloc.c: Remove BROKEN_PROTOTYPES reference, unused.
1269
1270 * s/sol2-6.h: Remove obsolete comments.
1271
1272 Remove unnecessary alloca.h includes.
1273 * keymap.c: Do not include alloca.h, config.h does that.
1274 * sysdep.c: Likewise. Do not define fwrite, not used.
1275
1276 2010-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
1277
1278 * sysdep.c (child_setup_tty): Move the non-canonical initialization to
1279 the HAVE_TERMIO where it belongs (bug#6149).
1280
1281 2010-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
1282
1283 * keymap.c (Fwhere_is_internal): Fix handling of remapping (in thread
1284 of bug#6305).
1285
1286 2010-05-30 Eli Zaretskii <eliz@gnu.org>
1287
1288 * bidi.c (bidi_move_to_visually_next): Make sure the sentinel
1289 state is always cached (bug#6306).
1290
1291 2010-05-29 Eli Zaretskii <eliz@gnu.org>
1292
1293 Fix cursor motion in bidi-reordered continued lines.
1294 * xdisp.c (try_cursor_movement): Backup to non-continuation line
1295 only after finding point's row. Fix the logic. Rewrite the loop
1296 over continuation lines in bidi-reordered buffers. Return
1297 CURSOR_MOVEMENT_MUST_SCROLL upon failure to find a suitable row,
1298 rather than CURSOR_MOVEMENT_CANNOT_BE_USED.
1299
1300 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
1301
1302 * fileio.c (Fdelete_file): Pass TRASH arg to handler call.
1303
1304 2010-05-28 Kenichi Handa <handa@m17n.org>
1305
1306 * font.c (font_delete_unmatched): Check Vface_ignored_fonts.
1307 Don't sheck SPEC if it is nil.
1308 (font_list_entities): Call font_delete_unmatched if
1309 Vface_ignored_fonts is non-nil. (Bug#6287)
1310
1311 2010-05-28 Glenn Morris <rgm@gnu.org>
1312
1313 * Makefile.in (LIBES): Remove $LOADLIBES, it is never set.
1314
1315 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
1316
1317 * fileio.c (Fdelete_file): Change meaning of optional arg to mean
1318 whether to trash.
1319 (internal_delete_file, Frename_file): Callers changed.
1320 (delete_by_moving_to_trash): Doc fix.
1321 (Fdelete_directory_internal): Don't move to trash.
1322
1323 * callproc.c (delete_temp_file):
1324 * buffer.c (Fkill_buffer): Callers changed.
1325
1326 * lisp.h: Update prototype.
1327
1328 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
1329
1330 * xdisp.c (redisplay_window): After redisplay, check if point is
1331 still valid before setting it (Bug#6177).
1332
1333 2010-05-27 Glenn Morris <rgm@gnu.org>
1334
1335 * Makefile.in, autodeps.mk, deps.mk, ns.mk:
1336 Convert comments to Makefile format.
1337
1338 * Makefile.in (bootstrap-clean): No more Makefile.c.
1339
1340 2010-05-26 Glenn Morris <rgm@gnu.org>
1341
1342 * Makefile.in (YMF_PASS_LDFLAGS): Remove.
1343 (temacs${EXEEXT}): Use PRE_EDIT_LDFLAGS, POST_EDIT_LDFLAGS.
1344
1345 * Makefile.in (NS_IMPL_GNUSTEP_INC, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS):
1346 Remove.
1347 (TEMACS_LDFLAGS): Do not use NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
1348
1349 2010-05-26 Kenichi Handa <handa@m17n.org>
1350
1351 * composite.c (composition_compute_stop_pos): Fix condition for
1352 backward scanning.
1353
1354 2010-05-25 Glenn Morris <rgm@gnu.org>
1355
1356 * Makefile.in (@NS_IMPL_GNUSTEP_INC@, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS):
1357 Move before TEMACS_LDFLAGS.
1358 (TEMACS_LDFLAGS): Use $NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
1359 (temacs${EXEEXT}): Do not use $NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
1360
1361 * Makefile.in (NOT_C_CODE): No longer define.
1362 (config.h): No longer include.
1363
1364 * Makefile.in (LD_SWITCH_SYSTEM_TEMACS): Move definition after some
1365 variables it may reference.
1366
1367 * Makefile.in (LD_SWITCH_SYSTEM_EXTRA): Remove.
1368 (TEMACS_LDFLAGS): Remove LD_SWITCH_SYSTEM_EXTRA.
1369
1370 2010-05-25 Kenichi Handa <handa@m17n.org>
1371
1372 * dispextern.h (struct composition_it): New members rule_idx and
1373 charpos.
1374
1375 * xdisp.c (set_iterator_to_next): While scanning backward, assume
1376 that the character positions of IT point the last character of the
1377 current grapheme cluster.
1378 (next_element_from_composition): Don't change character positions
1379 of IT.
1380 (append_composite_glyph): Set glyph->charpos to
1381 it->cmp_it.charpos.
1382
1383 * composite.c (autocmp_chars): Change the first argument to RULE,
1384 and try composition with RULE only.
1385 (composition_compute_stop_pos): Record the index number of the
1386 composition rule in CMP_IT->rule_idx.
1387 (composition_reseat_it): Call autocmp_chars repeatedly until the
1388 correct rule of the composition is found.
1389 (composition_update_it): Set CMP_IT->charpos. Assume the CHARPOS
1390 is at the last character of the current grapheme cluster when
1391 CMP_IT->reversed_p is nonzero.
1392
1393 2010-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
1394
1395 * editfns.c (Fbyte_to_string): New function.
1396
1397 2010-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
1398
1399 * process.c (Fmake_network_process): Set :host to nil if it's not used.
1400 Suggested by Masatake YAMATO <yamato@redhat.com>.
1401
1402 2010-05-23 Eli Zaretskii <eliz@gnu.org>
1403
1404 * dispextern.h (init_iterator): Sync prototype with changed definition.
1405
1406 2010-05-20 enami tsugutomo <tsugutomo.enami@jp.sony.com>
1407
1408 * s/netbsd.h: If terminfo is found, use it in preference to
1409 termcap. (Bug#6190) [Backport from trunk]
1410
1411 2010-05-19 Eli Zaretskii <eliz@gnu.org>
1412
1413 Redesign and reimplement bidi-aware edge positions of glyph rows.
1414
1415 * dispextern.h (struct glyph_row): New members minpos and maxpos.
1416 (MATRIX_ROW_START_CHARPOS, MATRIX_ROW_START_BYTEPOS)
1417 (MATRIX_ROW_END_CHARPOS, MATRIX_ROW_END_BYTEPOS): Reference minpos
1418 and maxpos members instead of start.pos and end.pos, respectively.
1419
1420 * xdisp.c (display_line): Compare IT_CHARPOS with the position in
1421 row->start.pos, rather than with MATRIX_ROW_START_CHARPOS.
1422 (cursor_row_p): Use row->end.pos rather than MATRIX_ROW_END_CHARPOS.
1423 (try_window_reusing_current_matrix, try_window_id):
1424 Use ROW->minpos rather than ROW->start.pos.
1425 (init_from_display_pos, init_iterator): Use EMACS_INT for
1426 character and byte positions.
1427 (find_row_edges): Rename from find_row_end. Accept additional
1428 arguments for minimum and maximum buffer positions seen by
1429 display_line for this row. Don't use iterator to find the
1430 position following the maximum one; instead, increment the
1431 position found by display_line directly. Fix logic; eol_pos
1432 should be tested before the rest. Handle the case of characters
1433 delivered from display vector (bug#6036). Fix tests related to
1434 it->method. Handle the truncated_on_right_p rows.
1435 (RECORD_MAX_MIN_POS): New macro.
1436 (display_line): Use it to record the minimum and maximum buffer
1437 positions for glyphs in the row being assembled. Record the
1438 position of the newline that terminates the line. If word wrap is
1439 in effect, restore minimum and maximum positions seen up to the
1440 wrap point, when iterator returns to it.
1441 (try_window_reusing_current_matrix): Give up if in bidi-reordered
1442 row and cursor not already at point. Restore original pre-bidi
1443 code for unidirectional buffers.
1444
1445 * dispnew.c (increment_row_positions, check_matrix_invariants):
1446 Increment and check row->start.pos and row->end.pos, in addition
1447 to MATRIX_ROW_START_CHARPOS and MATRIX_ROW_END_CHARPOS.
1448
1449 * .gdbinit (prowlims): Display row->minpos and row->maxpos.
1450 Display truncated_on_left_p and truncated_on_right_p flags.
1451 Formatting fixes.
1452 (pmtxrows): Display the ordinal number of each row. Don't display
1453 rows beyond the last one.
1454
1455 * bidi.c (bidi_cache_iterator_state): Don't zero out new_paragraph:
1456 it is not copied by bidi_copy_it.
1457
1458 2010-05-22 Eli Zaretskii <eliz@gnu.org>
1459
1460 * w32.c (sys_write): Break writes into chunks smaller than 32MB.
1461 (Bug#6237)
1462
1463 2010-05-22 Chong Yidong <cyd@stupidchicken.com>
1464
1465 * image.c (Fimage_flush): Rename from image-refresh.
1466
1467 2010-05-21 Chong Yidong <cyd@stupidchicken.com>
1468
1469 * xdisp.c (redisplay_internal): Clear caches even if redisplaying
1470 just one window.
1471
1472 * image.c (Vimage_cache_eviction_delay): Decrease to 300.
1473 (clear_image_cache): If the number of cached images is unusually
1474 large, decrease the cache eviction delay (Bug#6230).
1475
1476 2010-05-21 Glenn Morris <rgm@gnu.org>
1477
1478 * Makefile.in (${ns_appdir}, ${ns_appbindir}Emacs, ns-app):
1479 Move these rules to ns.mk.
1480 * ns.mk: New file.
1481
1482 * Makefile.in (../src/$(OLDXMENU), $(OLDXMENU)): Always define rules.
1483
1484 * Makefile.in (CANNOT_DUMP): New, set by configure.
1485 (emacs${EXEEXT}, bootstrap-emacs${EXEEXT}): Use $CANNOT_DUMP.
1486
1487 2010-05-20 Juri Linkov <juri@jurta.org>
1488
1489 * fileio.c (Fdelete_file): Change interative spec to use
1490 `read-file-name' like in `find-file-read-args' where the default
1491 value is `default-directory' instead of `buffer-file-name'.
1492 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00533.html
1493
1494 2010-05-20 Kevin Ryde <user42@zip.com.au>
1495
1496 * keyboard.c (Vlast_command, Vkeyboard_translate_table)
1497 (Voverriding_terminal_local_map, Vsystem_key_alist)
1498 (Vlocal_function_key_map): Fix manual link in docstring (Bug#6224).
1499
1500 2010-05-20 Glenn Morris <rgm@gnu.org>
1501
1502 * Makefile.in (DEPDIR): New constant.
1503 (DEPFLAGS): Set with configure, not cpp.
1504 (MKDEPDIR): New, set by configure.
1505 (.c.o, .m.o, ecrt0.o): Use $MKDEPDIR.
1506 (clean): Use $DEPDIR.
1507 (deps_frag): Include from configure.
1508 Move static/dynamic dependency stuff to deps.mk/autodeps.mk.
1509 * deps.mk, autodeps.mk: New files, extracted from Makefile.in.
1510
1511 * bidi.c (bidi_cache_shrink, bidi_cache_iterator_state): Fix
1512 reallocation of the cache. (Bug#6210)
1513
1514 2010-05-19 Glenn Morris <rgm@gnu.org>
1515
1516 * s/msdos.h (ORDINARY_LINK): Move to sed2v2.inp.
1517
1518 * Makefile.in (LD, YMF_PASS_LDFLAGS): Set with configure, not cpp.
1519 (GNULIB_VAR): Remove.
1520 (LIBES): Use LIB_GCC instead of GNULIB_VAR.
1521
1522 * m/ibms390x.h (LINKER):
1523 * m/macppc.h (LINKER) [GNU_LINUX]:
1524 * s/aix4-2.h (ORDINARY_LINK):
1525 * s/cygwin.h (LINKER):
1526 * s/darwin.h (ORDINARY_LINK):
1527 * s/gnu.h (ORDINARY_LINK):
1528 * s/netbsd.h (LINKER):
1529 * s/usg5-4.h (ORDINARY_LINK):
1530 Move to configure.
1531
1532 * s/aix4-2.h (LINKER): Remove; this file sets ORDINARY_LINK.
1533
1534 2010-05-18 Chong Yidong <cyd@stupidchicken.com>
1535
1536 * character.c (Fstring, Funibyte_string): Use SAFE_ALLOCA to
1537 prevent stack overflow if number of arguments is too large
1538 (Bug#6214).
1539
1540 2010-05-18 Juanma Barranquero <lekktu@gmail.com>
1541
1542 * charset.c (load_charset_map_from_file): Don't call close after fclose.
1543
1544 2010-05-18 Glenn Morris <rgm@gnu.org>
1545
1546 * s/gnu-linux.h: Combine two conditionals.
1547
1548 * Makefile.in (otherobj): Include $(VMLIMIT_OBJ) separately from
1549 $(POST_ALLOC_OBJ).
1550
1551 * Makefile.in (RALLOC_OBJ): New, set by configure.
1552 (rallocobj): Replace with the previous variable.
1553 (otherobj): Use $RALLOC_OBJ.
1554
1555 * s/gnu.h (REL_ALLOC) [DOUG_LEA_MALLOC]:
1556 * s/gnu-linux.h (REL_ALLOC) [DOUG_LEA_MALLOC]: Move undef to configure.
1557
1558 * Makefile.in (GMALLOC_OBJ, VMLIMIT_OBJ): New, set by configure.
1559 (gmallocobj, vmlimitobj): Replace with previous two variables.
1560 (otherobj): Use $GMALLOC_OBJ, $VMLIMIT_OBJ.
1561
1562 2010-05-17 Glenn Morris <rgm@gnu.org>
1563
1564 * Makefile.in (OLDXMENU_DEPS): New, set by configure.
1565 (stamp-oldxmenu): Use $OLDXMENU_DEPS.
1566
1567 2010-05-16 Glenn Morris <rgm@gnu.org>
1568
1569 * Makefile.in (${ns_appbindir}Emacs, ns-app): Always define these rules.
1570
1571 * Makefile.in (clean): Get rid of HAVE_NS conditional.
1572
1573 * Makefile.in (ns_appdir, ns_appbindir): Now configure adds the
1574 trailing "/".
1575
1576 * Makefile.in (TEMACS_LDFLAGS2): New, set by configure.
1577 (temacs${EXEEXT}): Combine the NS_IMPL_GNUSTEP case with the default.
1578
1579 * Makefile.in (GNUSTEP_SYSTEM_LIBRARIES): Remove, unused.
1580 (NS_IMPL_GNUSTEP_TEMACS_LDFLAGS): New, set by configure.
1581 (LD) [NS_IMPL_GNUSTEP]: Set to $(CC) -rdynamic.
1582 (temacs${EXEEXT}): Remove $LOCALCPP, never defined or referenced.
1583 Make most of the NS_IMPL_GNUSTEP case the same as the default case.
1584
1585 * Makefile.in (temacs${EXEEXT}) [!NS_IMPL_GNUSTEP]:
1586 Remove ${STARTFLAGS}, nothing ever sets it.
1587
1588 2010-05-16 Dan Nicolaescu <dann@ics.uci.edu>
1589
1590 * m/ia64.h (UNEXEC): Remove, set in s/*.h.
1591
1592 2010-05-16 Glenn Morris <rgm@gnu.org>
1593
1594 * Makefile.in (LIBX_BASE): Always define.
1595
1596 * Makefile.in (LIBX_OTHER): Move out of cpp section.
1597
1598 * Makefile.in (LIBXT): Always define.
1599
1600 2010-05-15 Glenn Morris <rgm@gnu.org>
1601
1602 * Makefile.in (OLDXMENU, LIBXMENU, LIBX_OTHER): Always define.
1603
1604 * Makefile.in (FONT_DRIVERS): Remove, replace with $FONT_OBJ.
1605 (obj, SOME_MACHINE_OBJECTS): Use $FONT_OBJ.
1606
1607 2010-05-15 Ken Raeburn <raeburn@raeburn.org>
1608
1609 * lisp.h (XFLOAT_DATA): Use "0?x:x" to generate an rvalue. (Bug#5916)
1610 (LISP_MAKE_RVALUE) [!USE_LISP_UNION_TYPE && !__GNUC__]: Likewise.
1611
1612 * emacs.c (main): Initialize initial-environment and
1613 process-environment before generating from env, not after.
1614
1615 Handle --version reasonably in CANNOT_DUMP configuration.
1616 * emacs.c (emacs_version, emacs_copyright): New string variables.
1617 (Vemacs_version, Vemacs_copyright): New Lisp_Object variables.
1618 (syms_of_emacs): Defvar them, and initialize them from the C
1619 string variables.
1620 (main): If initialization hasn't been done, print initial version
1621 info from the C strings, instead of starting an interactive session.
1622
1623 2010-05-15 Eli Zaretskii <eliz@gnu.org>
1624
1625 * bidi.c (bidi_paragraph_init): Don't leave alone garbage values
1626 of bidi_it->paragraph_dir. Call bidi_initialize if needed.
1627 (bidi_paragraph_init): Remove redundant assertion that we are at
1628 the beginning of a line after call to bidi_find_paragraph_start.
1629
1630 * xdisp.c (Fcurrent_bidi_paragraph_direction): New function.
1631 (syms_of_xdisp): Defsubr it.
1632
1633 * cmds.c (Fforward_char, Fbackward_char): Doc fix.
1634
1635 * Makefile.in: Fix MSDOS-related comments.
1636
1637 2010-05-15 Glenn Morris <rgm@gnu.org>
1638
1639 * Makefile.in (OLDXMENU_TARGET): New, set by configure.
1640 (really-lwlib, really-oldXMenu): Always define.
1641 ($OLDXMENU): Depend on $OLDXMENU_TARGET.
1642
1643 * Makefile.in: Simplify cpp conditional.
1644
1645 * Makefile.in (${ns_appdir}): Simplify using umask.
1646
1647 * Makefile.in (${ns_appdir}): Remove references to CVS-related files.
1648
1649 2010-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
1650
1651 * eval.c (specbind): Remove left-over duplicate test.
1652 Disallow let-binding frame-local vars. Add comment.
1653
1654 2010-05-14 Eli Zaretskii <eliz@gnu.org>
1655
1656 Make the cache of bidi iterator states dynamically allocated.
1657 * bidi.c (bidi_cache_shrink): New function.
1658 (bidi_init_it): Call it.
1659 (bidi_cache_iterator_state): Enlarge the cache if needed.
1660
1661 * bidi.c (bidi_move_to_visually_next): Rename from
1662 bidi_get_next_char_visually. All callers changed.
1663
1664 2010-05-14 Kenichi Handa <handa@m17n.org>
1665
1666 * dispextern.h (struct composition_it): New member reversed_p.
1667
1668 * composite.c (composition_compute_stop_pos): Search backward if
1669 ENDPOS < CHARPOS.
1670 (composition_reseat_it): Handle the case that ENDPOS < CHARPOS.
1671 Set CMP_IT->reversed_p.
1672 (composition_update_it): Pay attention to CMP_IT->reversed_p.
1673
1674 * xdisp.c (set_iterator_to_next):
1675 Call composition_compute_stop_pos with negative ENDPOS if we are
1676 scanning backward. Call composition_compute_stop_pos if scan
1677 direction is changed.
1678 (next_element_from_buffer): Call composition_compute_stop_pos with
1679 negative ENDPOS if we are scanning backward.
1680 (next_element_from_composition): Pay attention to
1681 IT->cmp_it.reversed_p.
1682
1683 2010-05-14 Kenichi Handa <handa@m17n.org>
1684
1685 * font.c (font_range): Return the range for the font found at first.
1686
1687 2010-05-14 Glenn Morris <rgm@gnu.org>
1688
1689 * Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Always define.
1690
1691 * Makefile.in (mktime, X11, register): Move undefs to configure.
1692
1693 * Makefile.in (MSDOS_OBJ): Default to empty, let msdos scripts set it.
1694 (MSDOS_X_OBJ): New variable.
1695 (MSDOS_SUPPORT_REAL): New constant.
1696 (MSDOS_SUPPORT): Set as a variable, not with cpp.
1697 (obj): Use MSDOS_X_OBJ.
1698 (lisp): Use MSDOS_SUPPORT as a variable.
1699
1700 * Makefile.in (REAL_MOUSE_SUPPORT): New constant.
1701 (GPM_MOUSE_SUPPORT): Now it's a constant.
1702 (MOUSE_SUPPORT, TOOLTIP_SUPPORT, WINDOW_SUPPORT): Set with configure,
1703 not cpp.
1704
1705 * Makefile.in (@NS_IMPL_GNUSTEP_INC@): Use in place of #ifdef.
1706 (ns_appresdir): Remove, unused.
1707
1708 * Makefile.in (SHELL): Move outside cpp section.
1709
1710 * s/netbsd.h (AMPERSAND_FULL_NAME): Remove (defined in AH_BOTTOM).
1711
1712 2010-05-13 Glenn Morris <rgm@gnu.org>
1713
1714 * Makefile.in (FONT_DRIVERS): Place with other HAVE_X_WINDOWS stuff.
1715 (TOOLTIP_SUPPORT): Place with other HAVE_WINDOW_SYSTEM stuff.
1716
1717 * Makefile.in (FONT_DRIVERS): If HAVE_X_WINDOWS is defined,
1718 HAVE_WINDOW_SYSTEM must be too.
1719
1720 * Makefile.in (WINNT_SUPPORT): Remove, nt build does not use this file.
1721 (lisp): Remove WINNT_SUPPORT.
1722
1723 * Makefile.in (OLDXMENU, LIBXMENU) [!HAVE_MENUS]:
1724 Let configure set these variables (to empty) in this case as well.
1725
1726 * Makefile.in (LD_SWITCH_X_SITE): Define as a variable, not via cpp.
1727 (LIBX_BASE): Use $LD_SWITCH_X_SITE.
1728
1729 * Makefile.in (C_SWITCH_X_SYSTEM, C_SWITCH_X_SITE, LIB_STANDARD)
1730 (LIB_MATH, FONTCONFIG_CFLAGS, FONTCONFIG_LIBS, FREETYPE_CFLAGS)
1731 (FREETYPE_LIBS, LIBOTF_CFLAGS, LIBOTF_LIBS, M17N_FLT_CFLAGS)
1732 (M17N_FLT_LIBS, GNU_OBJC_CFLAGS, GNUSTEP_SYSTEM_LIBRARIES, LIBGPM)
1733 (LIBRESOLV, UNEXEC_OBJ): For clarity, define variables to hold
1734 the values output by configure.
1735 (ALL_CFLAGS, obj, LIBES, temacs${EXEEXT}): Use the above variables.
1736
1737 2010-05-12 Glenn Morris <rgm@gnu.org>
1738
1739 * Makefile.in (YMF_PASS_LDFLAGS, LD, LINKER): Simplify the logic.
1740 (LINKER_WAS_SPECIFIED): Remove.
1741
1742 * Makefile.in (LIB_GCC): Set using configure, not cpp.
1743 (GNULIB_VAR) [!ORDINARY_LINK]: Always set to $LIB_GCC.
1744 * m/arm.h (LIB_GCC) [GNU_LINUX]:
1745 * s/cygwin.h (LIB_GCC):
1746 * s/freebsd.h (LIB_GCC):
1747 * s/gnu-linux.h (LIB_GCC):
1748 * s/msdos.h (LIB_GCC):
1749 * s/netbsd.h (LIB_GCC):
1750 Move to configure.
1751
1752 2010-05-11 Karel Klic <kklic@redhat.com>
1753
1754 * ftfont.c: Fix incorrect parentheses of #if condition for
1755 definining M17N_FLT_USE_NEW_FEATURE.
1756
1757 2010-05-11 Glenn Morris <rgm@gnu.org>
1758
1759 * Makefile.in (LIBS_SYSTEM) [MSDOS]: Do not reset.
1760 * s/msdos.h (MSDOS_LIBS_SYSTEM): Remove.
1761
1762 2010-05-10 Eli Zaretskii <eliz@gnu.org>
1763
1764 * xdisp.c (init_iterator): Don't turn on bidi reordering in
1765 unibyte buffers. See
1766 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00263.html.
1767
1768 2010-05-10 Glenn Morris <rgm@gnu.org>
1769
1770 * Makefile.in (LIBS_SYSTEM): Set using configure, not cpp.
1771 (LIBS_SYSTEM) [MSDOS]: Reset with MSDOS_LIBS_SYSTEM.
1772 (LIBES): Use LIBS_SYSTEM as a variable.
1773 * s/msdos.h (LIBS_SYSTEM): Rename to MSDOS_LIBS_SYSTEM. Always define.
1774 * s/aix4-2.h (LIBS_SYSTEM):
1775 * s/freebsd.h (LIBS_SYSTEM):
1776 * s/hpux10-20.h (LIBS_SYSTEM):
1777 * s/sol2-6.h (LIBS_SYSTEM):
1778 * s/unixware.h (LIBS_SYSTEM):
1779 Move to configure.
1780
1781 * s/aix4-2.h (MAIL_USE_LOCKF):
1782 * s/bsd-common.h (MAIL_USE_FLOCK):
1783 * s/darwin.h (MAIL_USE_FLOCK):
1784 * s/gnu-linux.h (MAIL_USE_FLOCK):
1785 * s/irix6-5.h (MAIL_USE_FLOCK):
1786 * s/template.h (MAIL_USE_FLOCK):
1787 Move to configure.
1788
1789 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
1790
1791 * Version 23.2 released.
1792
1793 2010-05-08 Andreas Schwab <schwab@linux-m68k.org>
1794
1795 * composite.c (autocmp_chars): Save point as marker before calling
1796 auto-composition-function (Bug#5984).
1797
1798 * lisp.h (restore_point_unwind): Add prototype.
1799
1800 * fileio.c (restore_point_unwind): Remove static attribute.
1801
1802 2010-05-08 Kenichi Handa <handa@m17n.org>
1803
1804 * ftfont.c (M17N_FLT_USE_NEW_FEATURE): Define it if we can use the
1805 new feature of libotf and m17n-flt.
1806 (ftfont_check_otf) [M17N_FLT_USE_NEW_FEATURE]:
1807 Call OTF_check_features even if no specific feature is given.
1808 (PACK_OTF_TAG) [M17N_FLT_USE_NEW_FEATURE]: New macro.
1809 (ftfont_drive_otf) [M17N_FLT_USE_NEW_FEATURE]: Handle the case
1810 that OUT is NULL. Use OTF_drive_gsub_with_log and
1811 OTF_drive_gpos_with_log instead of OTF_drive_gsub and
1812 OTF_drive_gpos.
1813 (ftfont_try_otf) [M17N_FLT_USE_NEW_FEATURE]: New function.
1814 (ftfont_shape_by_flt) [M17N_FLT_USE_NEW_FEATURE]:
1815 Setup mflt_enable_new_feature and mflt_try_otf.
1816
1817 2010-05-08 Jan Djärv <jan.h.d@swipnet.se>
1818
1819 * xsettings.c (Ftool_bar_get_system_style): Correct comment.
1820
1821 * gtkutil.c (xg_pack_tool_bar): Change show_all to show for handle
1822 box and toolbar (Bug #6139).
1823 (xg_create_tool_bar): Remove comment (Bug #6139).
1824 (xg_make_tool_item): Remove gtk_widget_show_all (Bug #6139).
1825 (xg_show_toolbar_item): Add gtk_widget_show for weventbox (Bug #6139).
1826
1827 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
1828
1829 * makefile.w32-in ($(BLD)/eval.$(O), $(BLD)/w32fns.$(O)):
1830 Update dependencies.
1831
1832 2010-05-08 Eli Zaretskii <eliz@gnu.org>
1833
1834 * fringe.c (update_window_fringes): Set up truncation bitmaps for
1835 R2L lines.
1836
1837 2010-05-08 Glenn Morris <rgm@gnu.org>
1838
1839 * Makefile.in (THIS_IS_MAKEFILE): Remove, unused.
1840
1841 * Makefile.in (LIBS_TERMCAP): Set with configure, not cpp.
1842 (TERMCAP_OBJ): New, set by configure, replacing termcapobj.
1843 (termcapobj): Replace with TERMCAP_OBJ.
1844 (otherobj): Use $TERMCAP_OBJ instead of $termcapobj.
1845 (LIBES): Use LIBS_TERMCAP as a variable.
1846
1847 * s/freebsd.h (osreldate.h): No longer include, since this file
1848 does not use __FreeBSD_version any more.
1849
1850 * s/aix4-2.h (TERMINFO):
1851 * s/cygwin.h (TERMINFO):
1852 * s/darwin.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
1853 * s/freebsd.h (TERMINFO, LIBS_TERMCAP):
1854 * s/gnu-linux.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
1855 * s/gnu.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
1856 * s/hpux10-20.h (TERMINFO, LIBS_TERMCAP):
1857 * s/irix6-5.h (TERMINFO):
1858 * s/netbsd.h (LIBS_TERMCAP):
1859 * s/openbsd.h (TERMINFO, LIBS_TERMCAP):
1860 * s/sol2-6.h (LIBS_TERMCAP) [!TERMINFO]:
1861 * s/usg5-4.h (TERMINFO):
1862 Move to configure.
1863
1864 2010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
1865
1866 * eval.c (unbind_to): Don't unbind a local binding into the global
1867 binding when the local binding disappeared. Inversely, don't unbind
1868 a global binding into a newly created local binding.
1869 * data.c (set_internal): Make its `buf' arg into a `where' arg so we
1870 can specify the frame to use, when applicable. Adjust callers.
1871
1872 2010-05-07 Vincent Belaïche <vincent.belaiche@gmail.com>
1873 Stefan Monnier <monnier@iro.umontreal.ca>
1874
1875 * floatfns.c (Fisnan, Fcopysign, Ffrexp, Fldexp): New functions.
1876
1877 2010-05-07 Eli Zaretskii <eliz@gnu.org>
1878
1879 * w32fns.c: Include w32.h.
1880 (Fw32_shell_execute): Decode the error message before passing it
1881 to `error'. (Bug#6126)
1882
1883 * msdos.c (dos_set_window_size):
1884 * w16select.c (Fx_selection_exists_p): Use `Fsymbol_value (foo)'
1885 instead of `XSYMBOL (foo)->value'.
1886
1887 2010-05-07 Eli Zaretskii <eliz@gnu.org>
1888
1889 Fix the MS-DOS build, broken by autoconfiscation.
1890
1891 * Makefile.in: Don't use Make-style comments past the "start of
1892 cpp stuff" line.
1893 (MSDOS_OBJ): Remove xmenu.o (it is now defined by XMENU_OBJ).
1894
1895 * s/msdos.h (UNEXEC): Don't define (@unexec@ in Makefile.in is
1896 edited directly by msdos/sed1v2.inp).
1897
1898 2010-05-07 Glenn Morris <rgm@gnu.org>
1899
1900 * Makefile.in (LD_SWITCH_SYSTEM): Set with configure, not cpp.
1901 (LD_SWITCH_SYSTEM_EXTRA): New variable, set by configure.
1902 (TEMACS_LDFLAGS): Use $LD_SWITCH_SYSTEM and $LD_SWITCH_SYSTEM_EXTRA,
1903 move out of cpp section.
1904 * s/freebsd.h (LD_SWITCH_SYSTEM):
1905 * s/gnu-linux.h (LD_SWITCH_SYSTEM):
1906 * s/netbsd.h (LD_SWITCH_SYSTEM):
1907 * s/openbsd.h (LD_SWITCH_SYSTEM): Move to configure.in.
1908
1909 2010-05-07 Dan Nicolaescu <dann@ics.uci.edu>
1910
1911 Define LIB_STANDARD and START_FILES using autoconf.
1912 * s/usg5-4.h (LIB_STANDARD):
1913 * s/netbsd.h (START_FILES):
1914 * s/irix6-5.h (LIB_STANDARD):
1915 * s/hpux10-20.h (LIB_STANDARD, START_FILES):
1916 * s/gnu-linux.h (START_FILES, LIB_STANDARD):
1917 * s/freebsd.h (START_FILES):
1918 * s/darwin.h (START_FILES):
1919 * s/cygwin.h (START_FILES):
1920 * s/aix4-2.h (LIB_STANDARD):
1921 * m/ibmrs6000.h (START_FILES): Remove, move logic to configure.in.
1922 * Makefile.in (STARTFILES): Rename to START_FILES, define using
1923 autoconf, not cpp.
1924
1925 2010-05-06 Dan Nicolaescu <dann@ics.uci.edu>
1926
1927 Remove NEED_BSDTTY and NEED_UNISTD_H.
1928 * s/hpux10-20.h (NEED_BSDTTY): Remove.
1929 * s/aix4-2.h (NEED_UNISTD_H): Remove.
1930 * systty.h: Simplify conditionals for including <sys/bsdtty.h>,
1931 <sys/ptyio.h> and <unistd.h>.
1932
1933 * emacs.c (main): Remove NO_DIR_LIBRARY conditional, unused.
1934
1935 * Makefile.in (STARTFILES): Conditionally define to make the usage clear.
1936 * s/gnu.h (START_FILES): Remove empty definition.
1937
1938 2010-05-06 Jan Djärv <jan.h.d@swipnet.se>
1939
1940 * xterm.c (x_draw_image_relief): Move declaration of extra to beginning.
1941
1942 2010-05-06 Glenn Morris <rgm@gnu.org>
1943
1944 * Makefile.in (CPP, LN_S): Remove unused variables.
1945
1946 2010-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
1947
1948 * syntax.c (Fchar_syntax): Check the arg is a character (bug#6080).
1949
1950 2010-05-05 Lawrence Mitchell <wence@gmx.li>
1951
1952 * m/sparc.h: Fix typo in earlier change.
1953
1954 2010-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
1955
1956 Misc tweaks.
1957 * eval.c (Fdefvaralias): Remove unintended nested if.
1958 (internal_condition_case_2, internal_condition_case_n): Use ANSI type.
1959
1960 2010-05-04 Bernhard Herzog <bh@intevation.de> (tiny change)
1961
1962 * xsmfns.c (smc_save_yourself_CB): strlen(client_id) => strlen(cwd).
1963
1964 2010-05-04 Dan Nicolaescu <dann@ics.uci.edu>
1965
1966 Remove BSD_PGRPS.
1967 * s/bsd-common.h (BSD_PGRPS): Remove undef.
1968 * s/gnu-linux.h (BSD_PGRPS): Remove.
1969 * term.c (dissociate_if_controlling_tty):
1970 * sysdep.c (narrow_foreground_group, widen_foreground_group)
1971 (init_sys_modes, reset_sys_modes):
1972 * emacs.c (main):
1973 * callproc.c (Fcall_process, child_setup): Remove code depending
1974 on BSD_PGRPS.
1975
1976 Remove POSIX_SIGNALS.
1977 * s/usg5-4.h (POSIX_SIGNALS):
1978 * s/netbsd.h (POSIX_SIGNALS):
1979 * s/msdos.h (POSIX_SIGNALS):
1980 * s/ms-w32.h (POSIX_SIGNALS):
1981 * s/hpux11.h (POSIX_SIGNALS):
1982 * s/gnu.h (POSIX_SIGNALS):
1983 * s/gnu-linux.h (POSIX_SIGNALS):
1984 * s/freebsd.h (POSIX_SIGNALS):
1985 * s/darwin.h (POSIX_SIGNALS):
1986 * s/cygwin.h (POSIX_SIGNALS):
1987 * s/aix4-2.h (POSIX_SIGNALS): Remove definition.
1988 * s/unixware.h:
1989 * s/sol2-6.h: Remove comments on POSIX_SIGNALS.
1990 * process.c (create_process):
1991 * syssignal.h:
1992 * sysdep.c (wait_for_termination, init_signals):
1993 * process.c (create_process):
1994 * msdos.c: POSIX_SIGNALS is always defined on all platforms,
1995 remove all code that assumes the contrary.
1996
1997 2010-05-04 Glenn Morris <rgm@gnu.org>
1998
1999 * s/gnu-linux.h (LD_SWITCH_SYSTEM): Use LD_SWITCH_X_SITE_AUX as a shell
2000 variable.
2001 * s/netbsd.h (LD_SWITCH_SYSTEM_tmp): Remove.
2002 (LD_SWITCH_SYSTEM): Use $LD_SWITCH_X_SITE_AUX_RPATH.
2003 * s/openbsd.h (LD_SWITCH_SYSTEM_tmp): Remove.
2004 (LD_SWITCH_SYSTEM): Use $LD_SWITCH_X_SITE_AUX_RPATH instead of
2005 LD_SWITCH_SYSTEM_tmp.
2006 * Makefile.in (LD_SWITCH_X_SITE_AUX, LD_SWITCH_X_SITE_AUX_RPATH):
2007 New variables, set by configure.
2008
2009 * s/aix4-2.h (LD_SWITCH_SYSTEM_TEMACS): Move to configure.in.
2010 * s/darwin.h (HEADERPAD_EXTRA, LIBS_NSGUI): Remove.
2011 (LD_SWITCH_SYSTEM_TEMACS): Move to configure.in.
2012 * Makefile.in (LD_SWITCH_SYSTEM_TEMACS): New variable, set by configure.
2013 (TEMACS_LDFLAGS): Use $LD_SWITCH_SYSTEM_TEMACS.
2014
2015 * s/aix4-2.h (C_SWITCH_SYSTEM):
2016 * m/alpha.h (C_SWITCH_MACHINE):
2017 Move to configure.in.
2018 * Makefile.in (C_SWITCH_MACHINE, C_SWITCH_SYSTEM):
2019 New variables, set by configure.
2020 (ALL_CFLAGS): Use $C_SWITCH_MACHINE and $C_SWITCH_SYSTEM in place of
2021 $c_switch_machine and $c_switch_system.
2022
2023 2010-05-04 Dan Nicolaescu <dann@ics.uci.edu>
2024
2025 * s/hpux10-20.h (LIB_STANDARD): New definition.
2026 * Makefile.in (ORDINARY_LINK): Remove setting LIB_STANDARD based
2027 on it, not used anymore.
2028
2029 2010-05-03 Chong Yidong <cyd@stupidchicken.com>
2030
2031 * eval.c (internal_condition_case_n): Rename from
2032 internal_condition_case_2.
2033 (internal_condition_case_2): New function.
2034
2035 * xdisp.c (safe_call): Use internal_condition_case_n.
2036
2037 * fileio.c (Fdelete_file, internal_delete_file): New arg FORCE.
2038 (internal_delete_file, Frename_file): Callers changed.
2039
2040 * buffer.c (Fkill_buffer):
2041 * callproc.c (delete_temp_file): Callers changed (Bug#6070).
2042
2043 * lisp.h: Update prototypes.
2044
2045 2010-05-03 Glenn Morris <rgm@gnu.org>
2046
2047 * Makefile.in (LIBX_EXTRA, LIBX_BASE): New variables.
2048 (LIBXT_OTHER, LIBX_OTHER): New, set by configure.
2049 (LIBXT): Set with configure, not cpp.
2050 (LIBX): Remove.
2051 (LIBES): Replace $LIBX with $LIBX_BASE and $LIBX_OTHER.
2052
2053 2010-05-02 Dan Nicolaescu <dann@ics.uci.edu>
2054
2055 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Remove.
2056 The FreeBSD is not needed, the default works, Solaris version is
2057 not needed, and the remaining case is not supported by configure.
2058
2059 2010-05-02 Jan Djärv <jan.h.d@swipnet.se>
2060
2061 * xsmfns.c (CHDIR_OPT): New define.
2062 (smc_save_yourself_CB): Add CHDIR_OPT to options to use when
2063 restarting emacs.
2064
2065 * xterm.c (x_connection_closed): Call Fkill_emacs instead of
2066 shut_down_emacs.
2067
2068 * emacs.c (USAGE1): Mention --chdir.
2069 (main): Handle --chdir.
2070 (standard_args): Add --chdir.
2071 (fatal_error_signal): Call Fkill_emacs for SIGTERM and SIGHUP (Bug
2072 #5552).
2073
2074 2010-05-01 Dan Nicolaescu <dann@ics.uci.edu>
2075
2076 Remove LD_SWITCH_MACHINE.
2077 * Makefile.in (LD_SWITCH_MACHINE): Remove definition, unused.
2078 (TEMACS_LDFLAGS): Do not use LD_SWITCH_MACHINE.
2079
2080 Clean up IRIX code.
2081 * m/iris4d.h (TERMINFO, FIRST_PTY_LETTER): Move definitions ...
2082 * s/irix6-5.h (TERMINFO, FIRST_PTY_LETTER): ... here.
2083
2084 Clean up AIX code.
2085 * m/ibmrs6000.inp: Remove file, unused.
2086 * m/ibmrs6000.h (IBMR2AIX): Remove, unused.
2087 (LD_SWITCH_MACHINE): Rename to LD_SWITCH_SYSTEM_TEMACS, and move
2088 definition ...
2089 * s/aix4-2.h (LD_SWITCH_SYSTEM_TEMACS): ... here.
2090
2091 * sysdep.c (child_setup_tty, init_sys_modes): Remove !IBMR2AIX code,
2092 unused.
2093
2094 2010-05-01 Eli Zaretskii <eliz@gnu.org>
2095
2096 Emulate POSIX_SIGNALS on MS-Windows.
2097
2098 * s/ms-w32.h (POSIX_SIGNALS, struct sigaction, SIG_BLOCK)
2099 (SIG_SETMASK, SIG_UNBLOCK): Define.
2100
2101 * sysdep.c (sys_signal) [WINDOWSNT]: #ifdef away.
2102 (wait_for_termination) [WINDOWSNT]: Move MS-Windows specific code
2103 from non-POSIX_SIGNALS section to POSIX_SIGNALS section.
2104
2105 * w32.c (sigemptyset, sigaddset, sigfillset, sigprocmask):
2106 New stubs.
2107
2108 Miscellaneous fixes of bidi display.
2109
2110 * xdisp.c (find_row_end): New function, refactored from display_line.
2111 (display_line): Use it.
2112 (extend_face_to_end_of_line): In almost-filled rows, extend only
2113 if the row is R2L and not continued.
2114 (display_line): Fix prepending of truncation glyphs to R2L rows.
2115 Preserve overlay and string info in row->end.
2116 (insert_left_trunc_glyphs): Support addition of left truncation
2117 glyphs to R2L rows.
2118 (set_cursor_from_row): Don't place cursor on the vertical border
2119 glyph between adjacent windows. Fix a crash when a display string
2120 is continued to the next line. Don't return zero if cursor was
2121 found by `cursor' property of a display string.
2122 (try_cursor_movement): Don't assume that row->end == (row+1)->start,
2123 test for that explicitly.
2124
2125 2010-05-01 Glenn Morris <rgm@gnu.org>
2126
2127 * Makefile.in (gmallocobj, rallocobj, vmlimitobj): Initialize to null,
2128 for clarity.
2129 (OTHER_OBJ): Remove.
2130 (PRE_ALLOC_OBJ, POST_ALLOC_OBJ): New, set by configure.
2131 (otherobj): Use PRE_ALLOC_OBJ, POST_ALLOC_OBJ rather than OTHER_OBJ.
2132
2133 2010-05-01 Karel Klíč <kklic@redhat.com>
2134
2135 * fileio.c (Ffile_selinux_context): Context functions may return null.
2136
2137 2010-04-30 Dan Nicolaescu <dann@ics.uci.edu>
2138
2139 * s/gnu.h (POSIX_SIGNALS, START_FILES): New definitions.
2140
2141 2010-04-30 Glenn Morris <rgm@gnu.org>
2142
2143 * Makefile.in (vmlimitobj) [!SYSTEM_MALLOC]: New variable. (Bug#6065)
2144 (OTHER_OBJ): Define as a separate variable, for clarity.
2145
2146 2010-04-30 Jan Djärv <jan.h.d@swipnet.se>
2147
2148 * xsettings.c: include limits.h and update file comment.
2149
2150 2010-04-30 Glenn Morris <rgm@gnu.org>
2151
2152 * Makefile.in (OLDXMENU, LIBXMENU) [HAVE_MENUS]:
2153 Set with configure, not cpp.
2154 (LIBW): Remove, replace with $TOOLKIT_LIBW.
2155
2156 * Makefile.in (mallocobj): Remove.
2157 (otherobj): Simplify using @OTHER_OBJ@.
2158
2159 * Makefile.in (dispnew.o, frame.o, fringe.o, font.o, fontset.o)
2160 (keyboard.o, window.o, xdisp.o, xfaces.o, menu.o):
2161 Don't bother making nsgui.h dependency platform-specific.
2162
2163 * Makefile.in (nsfns.o): Remove duplicate nsgui.h dependency.
2164
2165 2010-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
2166
2167 * process.c (read_process_output, exec_sentinel): Don't burp if the
2168 sentinel/filter kills the current buffer (bug#6060).
2169
2170 Fix wrong-docstring problem introduced with hash-consing. (Bug#6008)
2171 * eval.c (Fautoload): Set doc to a unique number rather than to 0.
2172 Remove unused var `args'.
2173 * lisp.h (XSETCARFASTINT, XSETCDRFASTINT): Remove.
2174 (LOADHIST_ATTACH): Wrap with do...while to avoid surprises for callers.
2175 * doc.c (store_function_docstring): Use XSETCAR.
2176
2177 2010-04-28 Glenn Morris <rgm@gnu.org>
2178
2179 * Makefile.in (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT): New variables.
2180 (WINDOW_SUPPORT) [HAVE_WINDOW_SYSTEM]: Use them.
2181
2182 * Makefile.in (CYGWIN_OBJ): Set with configure, not cpp.
2183
2184 * Makefile.in (GPM_MOUSE_SUPPORT): New, set by configure.
2185 (MOUSE_SUPPORT) [!HAVE_MOUSE]: Use $GPM_MOUSE_SUPPORT.
2186
2187 * Makefile.in (FONT_OBJ): New, set by configure.
2188 (FONT_DRIVERS): Use $FONT_OBJ.
2189
2190 * Makefile.in (LIBXMU): Set with configure, not cpp.
2191 * s/aix4-2.h (LIBXMU):
2192 * s/hpux10-20.h (LIBXMU):
2193 Remove definition, now set in configure.
2194
2195 * Makefile.in (NS_OBJ, NS_SUPPORT): Set with configure, not cpp.
2196
2197 * m/amdx86-64.h [i386]: Move this test to configure.in.
2198
2199 2010-04-27 Glenn Morris <rgm@gnu.org>
2200
2201 * Makefile.in (LIBXTR6): Set with configure, not cpp.
2202 * s/unixware.h (NEED_LIBW): Remove definition.
2203
2204 * Makefile.in (LUCID_LIBW, MOTIF_LIBW): Remove, replacing by...
2205 (TOOLKIT_LIBW): New, set by configure.
2206 (@X_TOOLKIT_TYPE@): No longer define it.
2207
2208 * Makefile.in (LIBXP): Remove, since included in MOTIF_LIBW.
2209 (MOTIF_LIBW): Set with configure, not cpp.
2210 * s/aix4-2.h (LIB_MOTIF):
2211 * s/gnu-linux.h (LIB_MOTIF):
2212 * s/unixware.h (LIB_MOTIF): Move to configure.in.
2213
2214 2010-04-27 Dan Nicolaescu <dann@ics.uci.edu>
2215
2216 Reduce CPP usage.
2217 * Makefile.in (LIB_X11_LIB): Remove, inline in the only user.
2218 (obj): Use autoconf for unexec instead of cpp.
2219 (C_SWITCH_SYSTEM, C_SWITCH_MACHINE, C_SWITCH_X_SITE): Remove
2220 definitions and undefs. Inline definitions in the only user.
2221 (ALL_CFLAGS): Substitute C_SWITCH_X_SYSTEM using autoconf.
2222
2223 2010-04-27 Glenn Morris <rgm@gnu.org>
2224
2225 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Change the logic around,
2226 since the defaults (set by the system file) are fine in most cases.
2227 [GNU_LINUX, __OpenBSD__, __NetBSD__, __APPLE__]: Remove sections.
2228 * m/ibms390x.h (START_FILES, LIB_STANDARD):
2229 * m/macppc.h (START_FILES, LIB_STANDARD) [GNU_LINUX]:
2230 * m/sparc.h (START_FILES, LIB_STANDARD) [__linux__]:
2231 Remove definitions, since they are set correctly in s/gnu-linux.h.
2232 * s/freebsd.h (START_FILES, LIB_STANDARD):
2233 * s/gnu-linux.h (START_FILES, LIB_STANDARD):
2234 * s/hpux10-20.h (START_FILES):
2235 * s/netbsd.h (START_FILES, LIB_STANDARD, START_FILES_1, END_FILES_1):
2236 Use $CRT_DIR in place of fixed /usr/lib, /lib directories.
2237
2238 * Makefile.in (LIBXP, LUCID_LIBW, WIDGET_OBJ): Set via configure.
2239 (MOTIF_LIBW): Use $LIBXP.
2240 (otherobj): Use $WIDGET_OBJ.
2241
2242 2010-04-26 Dan Nicolaescu <dann@ics.uci.edu>
2243
2244 * Makefile.in (LIBS_MACHINE): Remove, unused.
2245
2246 Use autoconf instead of cpp for LIB_MATH.
2247 * s/darwin.h (LIB_MATH): Do not define here, move to configure.
2248 * s/cygwin.h (LIB_MATH): Likewise.
2249 * Makefile.in (LIB_MATH): Do not define with cpp.
2250 (LIBES): Use autoconf for LIB_MATH.
2251
2252 2010-04-26 Kenichi Handa <handa@m17n.org>
2253
2254 * composite.c (Ffind_composition_internal): Fix the return value
2255 for an automatic composition.
2256
2257 2010-04-25 Dan Nicolaescu <dann@ics.uci.edu>
2258
2259 Remove all NO_ARG_ARRAY uses.
2260 * fns.c (concat2, concat3, nconc2):
2261 * eval.c (apply1, call1, call2, call3, call4, call5, call6)
2262 (call7): Remove NO_ARG_ARRAY usage, assume it's always true.
2263 * m/xtensa.h (NO_ARG_ARRAY):
2264 * m/template.h (NO_ARG_ARRAY):
2265 * m/sparc.h (NO_ARG_ARRAY):
2266 * m/sh3.h (NO_ARG_ARRAY):
2267 * m/mips.h (NO_ARG_ARRAY):
2268 * m/macppc.h (NO_ARG_ARRAY):
2269 * m/iris4d.h (NO_ARG_ARRAY):
2270 * m/intel386.h (NO_ARG_ARRAY):
2271 * m/ibms390x.h (NO_ARG_ARRAY):
2272 * m/ibms390.h (NO_ARG_ARRAY):
2273 * m/ibmrs6000.h (NO_ARG_ARRAY):
2274 * m/ia64.h (NO_ARG_ARRAY):
2275 * m/hp800.h (NO_ARG_ARRAY):
2276 * m/arm.h (NO_ARG_ARRAY):
2277 * m/amdx86-64.h (NO_ARG_ARRAY):
2278 * m/alpha.h (NO_ARG_ARRAY): Remove definition.
2279
2280 2010-04-25 Eli Zaretskii <eliz@gnu.org>
2281
2282 * xdisp.c (display_line): Don't assume 2nd call to
2283 get_next_display_element cannot return zero. (Bug#6030)
2284 (iterate_out_of_display_property): New function, body from pop_it.
2285 (pop_it): Use it.
2286
2287 2010-04-24 Glenn Morris <rgm@gnu.org>
2288
2289 * m/amdx86-64.h (START_FILES, LIB_STANDARD) [__OpenBSD__]:
2290 For clarity, revert to using fixed /usr/lib rather than $CRT_DIR.
2291 (START_FILES, LIB_STANDARD) [__FreeBSD__]: Merge into the generic case,
2292 since CRT_DIR defaults to /usr/lib. Suggested by Dan Nicolaescu.
2293
2294 2010-04-24 Eli Zaretskii <eliz@gnu.org>
2295
2296 * xdisp.c (display_line): Use `reseat' instead of `reseat_1', and
2297 use `get_next_display_element' and `set_iterator_to_next' to
2298 advance to the next character, when looking for the character that
2299 begins the next row.
2300
2301 * .gdbinit: Add a "set Fmake_symbol" line to force GDB to load the
2302 definition of "struct Lisp_Symbol".
2303
2304 2010-04-24 Glenn Morris <rgm@gnu.org>
2305
2306 * Makefile.in (CRT_DIR): New variable, set by configure.
2307 * m/amdx86-64.h, m/ibms390x.h (START_FILES, LIB_STANDARD):
2308 Use $CRT_DIR rather than HAVE_LIB64_DIR. (Bug#5655)
2309
2310 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
2311
2312 * Makefile.in: Remove C_SWITCH_X_MACHINE, unused.
2313
2314 * s/cygwin.h (LIBS_DEBUG): Remove, unused.
2315
2316 Remove redundant flags.
2317 * s/freebsd.h (C_SWITCH_SYSTEM):
2318 * s/hpux10-20.h (C_SWITCH_X_SYSTEM, LD_SWITCH_X_DEFAULT):
2319 * s/netbsd.h (C_SWITCH_SYSTEM):
2320 * s/openbsd.h (LD_SWITCH_X_DEFAULT): Remove, configure takes care
2321 of these.
2322
2323 Simplify m/intel386.h.
2324 * m/intel386.h (CRT0_DUMMIES): Remove, inline value in the only
2325 user: ecrt0.c.
2326 (SOLARIS2): Remove LOAD_AVE_TYPE, LOAD_AVE_CVT, LIBS_MACHINE, unused.
2327 (USG5_4): Move LOAD_AVE_TYPE, LOAD_AVE_CVT, FSCALE definitions to
2328 the only user: s/unixware.h.
2329 * ecrt0.c: Remove #ifndef static. Inline CRT0_DUMMIES definition
2330 from m/intel386.h.
2331 * s/unixware.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, FSCALE): Definitions
2332 moved here from m/intel386.h.
2333
2334 * m/mips.h: Remove #if 0 code.
2335
2336 2010-04-23 Eli Zaretskii <eliz@gnu.org>
2337
2338 Fix display of composed characters from L2R scripts in bidi buffers.
2339 * xdisp.c (set_iterator_to_next, next_element_from_composition):
2340 After advancing IT past the composition, resync the bidi iterator
2341 with IT's position. (Bug#5977)
2342
2343 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
2344
2345 * Makefile.in (LD_SWITCH_MACHINE_TEMACS): Remove, unused.
2346 (TEMACS_LDFLAGS): Don't use LD_SWITCH_SYSTEM_TEMACS.
2347
2348 2010-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
2349
2350 * gtkutil.c: Include xsettings.h for Ftool_bar_get_system_style.
2351
2352 2010-04-23 Eli Zaretskii <eliz@gnu.org>
2353
2354 Support `display' text properties and overlay strings in bidi buffers.
2355 * xdisp.c (pop_it): When the stack is popped after displaying
2356 from a string, bidi-iterate to exit from the text portion covered
2357 by the `display' property or overlay. (Bug#5988, bug#5920)
2358
2359 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
2360
2361 * m/macppc.h (LD_SWITCH_SYSTEM_TEMACS): Remove #undef.
2362 (LD_SWITCH_MACHINE_TEMACS): Remove, configure sets nocombreloc.
2363
2364 * s/netbsd.h (LD_SWITCH_SYSTEM_TEMACS): Remove, configure sets nocombreloc.
2365 * s/openbsd.h (LD_SWITCH_SYSTEM_TEMACS): Remove.
2366
2367 Simplify STARTFILES definition.
2368 * s/hpux10-20.h (START_FILES): Explicitly define here instead of
2369 relying on Makefile.in to define it.
2370 * s/cygwin.h (START_FILES): Likewise.
2371 * Makefile.in (STARTFILES): Remove conditional code, not needed anymore.
2372
2373 Clean up Solaris code.
2374 * s/sol2-6.h (LD_SWITCH_SYSTEM_TEMACS, C_SWITCH_X_SYSTEM)
2375 (LIB_MOTIF): Remove, configure takes care of this.
2376 (NOT_USING_MOTIF): Remove, unused.
2377 * xrdb.c: Remove #if 0-ed #include.
2378 (SYSV): Remove conditional for old SysV.
2379 * sysdep.c (closedir): Remove conditional code for Solaris,
2380 Solaris has closedir.
2381
2382 2010-04-22 Jan Djärv <jan.h.d@swipnet.se>
2383
2384 * xsettings.c (read_and_apply_settings): Check if current_font is
2385 NULL before strcmp (Bug#6001).
2386
2387 2010-04-21 Dan Nicolaescu <dann@ics.uci.edu>
2388
2389 Clean up HP-UX files.
2390 * m/hp800.h (NO_REMAP, VIRT_ADDR_VARIES, DATA_SEG_BITS)
2391 (DATA_START, TEXT_START, LOAD_AVE_TYPE, LOAD_AVE_CVT)
2392 (LDAV_SYMBOL, index, rindex): Move definitions only used in HP-UX ...
2393 * s/hpux10-20.h: ... to the only user, here.
2394
2395 2010-04-21 Eli Zaretskii <eliz@gnu.org>
2396
2397 * bidi.c (bidi_find_paragraph_start, bidi_at_paragraph_end): Don't
2398 use buffer-local values of paragraph-start and paragraph-separate.
2399 <paragraph_start_re, paragraph_separate_re>: Rename from
2400 fallback_paragraph_start_re and fallback_paragraph_separate_re.
2401 (Bug#5992)
2402
2403 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
2404
2405 * xsettings.c: Qmonospace_font_name, Qtool_bar_style and
2406 current_tool_bar_style are new.
2407 (store_config_changed_event): Rename from store_font_changed_event.
2408 (XSETTINGS_TOOL_BAR_STYLE): New define.
2409 (SEEN_FONT, SEEN_TB_STYLE): New enum values.
2410 (struct xsettings): Add font and tb_style, set xft stuff inside #ifdef
2411 HAVE_XFT.
2412 (something_changedCB): store_font_changed_event is now
2413 store_config_changed_event
2414 (parse_settings): Rename from parse_xft_settings. Read
2415 non-xft xsettings outside #ifdef HAVE_XFT.
2416 (read_settings): Renamed from read_xft_settings.
2417 (apply_xft_settings): Take current settings as parameter. Do not
2418 call read_(xft)_settings.
2419 (read_and_apply_settings): New function.
2420 (xft_settings_event): Do non-xft stuff out of HAVE_XFT. Call
2421 read_and_apply_settings if there are settings to be read.
2422 (init_xsettings): Renamed from init_xfd_settings.
2423 Call read_and_apply_settings unconditionally.
2424 (xsettings_initialize): Call init_xsettings.
2425 (Ftool_bar_get_system_style): New function.
2426 (syms_of_xsettings): Define Qmonospace_font_name and
2427 Qtool_bar_style. Initialize current_tool_bar_style to nil.
2428 defsubr Stool_bar_get_system_style. Fprovide on
2429 dynamic-setting.
2430 Move misplaced HAVE_GCONF
2431
2432 * xsettings.h (Ftool_bar_get_system_style): Declare.
2433
2434 * xdisp.c: Vtool_bar_style, tool_bar_max_label_size,
2435 Qtext, Qboth, Qboth_horiz are new.
2436 (syms_of_xdisp): Intern Qtext, Qboth, Qboth_horiz, DEFVAR
2437 Vtool_bar_style, tool_bar_max_label_size.
2438
2439 * lisp.h: Extern declare Qtext, Qboth, Qboth_horiz.
2440
2441 * keyboard.c: QClabel is new.
2442 (parse_tool_bar_item): Take out QClabel from tool bar items.
2443 Try to construct a label if ther is no QClabel.
2444 (syms_of_keyboard): Intern :label as QClabel.
2445
2446 * dispextern.h (tool_bar_item_idx): TOOL_BAR_ITEM_LABEL is new.
2447 (Vtool_bar_style, tool_bar_max_label_size, DEFAULT_TOOL_BAR_LABEL_SIZE):
2448 New.
2449
2450 * Makefile.in (SOME_MACHINE_LISP): font-setting.el renamed to
2451 dynamic-setting.el.
2452
2453 * gtkutil.c (xg_tool_bar_menu_proxy): Handle label in tool bar item.
2454 (xg_make_tool_item, xg_show_toolbar_item): New function.
2455 (update_frame_tool_bar): Take label from TOOL_BAR_ITEM_LABEL.
2456 Call xg_make_tool_item to make a tool bar item.
2457 Call xg_show_toolbar_item. Use wtoolbar instead of x->toolbar_widget.
2458
2459 * xterm.c (x_draw_image_relief): Take Vtool_bar_button_margin
2460 into account for toolbars.
2461
2462 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
2463
2464 * data.c (make_blv): Declarations before code (Bug#5993).
2465
2466 2010-04-21 Glenn Morris <rgm@gnu.org>
2467
2468 * Makefile.in (DBUS_OBJ, GTK_OBJ, XMENU_OBJ, XOBJ):
2469 Define using autoconf, not cpp.
2470 (LIBXSM): New variable, set by autoconf.
2471 (LIBXT): Use $LIBXSM.
2472
2473 2010-04-21 Dan Nicolaescu <local_user@dannlt>
2474
2475 Remove NOMULTIPLEJOBS, unused.
2476 * s/template.h (NOMULTIPLEJOBS):
2477 * s/msdos.h (NOMULTIPLEJOBS): Remove, unused.
2478
2479 Simplify LD_SWITCH_SYSTEM_TEMACS usage.
2480 * s/freebsd.h (LD_SWITCH_SYSTEM_TEMACS):
2481 * s/gnu-linux.h (LD_SWITCH_SYSTEM_TEMACS): Remove, configure
2482 detects -znocombreloc and passes it to the linker
2483 * s/hpux10-20.h (LD_SWITCH_SYSTEM_TEMACS): Remove, empty.
2484
2485 2010-04-21 Glenn Morris <rgm@gnu.org>
2486
2487 * Makefile.in (LIBSELINUX_LIBS): Move out of #ifdef.
2488
2489 2010-04-21 Karel Klíč <kklic@redhat.com>
2490
2491 * Makefile.in (LIBSELINUX_LIBS): New.
2492 (LIBES): Add $LIBSELINUX_LIBS.
2493 * eval.c, lisp.h (call7): New function.
2494 * fileio.c [HAVE_LIBSELINUX]: Include selinux headers.
2495 (Ffile_selinux_context, Fset_file_selinux_context):
2496 New functions.
2497 (Fcopy_file): New parameter preserve-selinux-context.
2498 (Frename_file): Preserve selinux context when renaming by copy-file.
2499
2500 2010-04-21 Juanma Barranquero <lekktu@gmail.com>
2501 Eli Zaretskii <eliz@gnu.org>
2502
2503 Don't depend on cm.c or termcap.c on Windows, use stubs.
2504 * makefile.w32-in (OBJ1): Remove cm.$(O) and termcap.$(O).
2505 ($(BLD)/cm.$(O), $(BLD)/termcap.$(O)): Remove.
2506 * w32console.c (current_tty, cost): New vars; lifted from cm.c.
2507 (evalcost, cmputc, cmcheckmagic, cmcostinit, cmgoto, Wcm_clear)
2508 (sys_tputs, sys_tgetstr): New stubs.
2509 * s/ms-w32.h (chcheckmagic, cmcostinit, cmgoto, cmputc, Wcm_clear)
2510 (tputs, tgetstr): New; define to sys_*.
2511
2512 2010-04-20 Juanma Barranquero <lekktu@gmail.com>
2513
2514 * buffer.c (syms_of_buffer) <bidi-display-reordering>: Doc fix.
2515
2516 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
2517
2518 * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
2519 Just signal a warning rather than an error when inside a let.
2520 (Fmake_variable_frame_local): Add the same test.
2521
2522 * font.c (syms_of_font): Make the style table vars read-only.
2523
2524 * buffer.h (struct buffer): Remove unused var `direction_reversed'.
2525 * buffer.c (init_buffer_once, syms_of_buffer): Remove its initialization.
2526
2527 * bidi.c (bidi_initialize): Simplify fallback_paragraph_*_re init.
2528
2529 2010-04-20 Eli Zaretskii <eliz@gnu.org>
2530
2531 Fix R2L paragraph display on TTY.
2532
2533 * xdisp.c (unproduce_glyphs): New function.
2534 (display_line): Use it when produced glyphs are discarded from R2L
2535 glyph rows.
2536 (append_composite_glyph): In R2L rows, prepend the glyph rather
2537 than appending it.
2538
2539 * term.c (append_composite_glyph): In R2L rows, prepend the glyph
2540 rather than append it. Set up the resolved_level and bidi_type
2541 attributes of the appended glyph.
2542 (produce_special_glyphs): Mirror the backslash continuation
2543 character in R2L lines.
2544
2545 Implement display of R2L paragraphs in GUI sessions.
2546
2547 * xdisp.c [HAVE_WINDOW_SYSTEM]: Add prototype for
2548 append_stretch_glyph.
2549 (set_cursor_from_row) <cursor_x>: Remove unused variable. Fix
2550 off-by-one error in computing x at end of text in the row.
2551 (append_stretch_glyph): In reversed row, prepend the glyph rather
2552 than append it. Set resolved_level and bidi_type of the glyph.
2553 (extend_face_to_end_of_line): If the row is reversed, prepend a
2554 stretch glyph whose width is such that the rightmost glyph will be
2555 drawn at the right margin of the window. Fix off-by-one error on
2556 TTY frames in testing whether a line needs face extension. Fix
2557 face extension at ZV. If this is the last glyph row, use
2558 DEFAULT_FACE_ID, to avoid painting the rest of the window with the
2559 region face.
2560 (set_cursor_from_row, display_line): Use
2561 MATRIX_ROW_CONTINUATION_LINE_P instead of testing value of
2562 row->continuation_lines_width.
2563 (next_element_from_buffer): Don't call bidi_paragraph_init if we
2564 are at ZV. Fixes a crash when reseated to ZV by
2565 try_window_reusing_current_matrix.
2566 (display_and_set_cursor, erase_phys_cursor): Handle negative HPOS,
2567 which happens with R2L glyph rows. Fixes a crash when inserting a
2568 character at end of an R2L line.
2569 (set_cursor_from_row): Don't be fooled by truncated rows: don't
2570 treat them as having zero-width characters. Improve comments.
2571 Don't reverse pos_before and pos_after for reversed glyph rows.
2572 Set cursor.x to negative value when the cursor might be on the
2573 left fringe.
2574 (IT_OVERFLOW_NEWLINE_INTO_FRINGE): For R2L lines, consider the
2575 left fringe, not the right one.
2576 (notice_overwritten_cursor, draw_phys_cursor_glyph)
2577 (erase_phys_cursor): For reversed cursor_row, support cursor on
2578 the left fringe.
2579
2580 * fringe.c (update_window_fringes): For R2L rows, swap the bitmaps
2581 of continuation indicators on the fringes.
2582 (draw_fringe_bitmap): For reversed glyph rows, allow cursor on the
2583 left fringe.
2584
2585 * w32term.c (w32_draw_window_cursor): For reversed glyph rows,
2586 draw cursor on the left fringe.
2587
2588 * xterm.c (x_draw_window_cursor): For reversed glyph rows, draw
2589 cursor on the left fringe.
2590
2591 * dispnew.c (update_text_area): Handle reversed desired rows when
2592 the cursor is on the left fringe.
2593 (set_window_cursor_after_update): Limit cursor's hpos by -1 from
2594 below, not by 0, for when the cursor is on the left fringe.
2595
2596 2010-04-20 Jan Djärv <jan.h.d@swipnet.se>
2597
2598 * gtkutil.c (xg_event_is_for_scrollbar): Check if grabbed
2599 widget is a scrollbar.
2600
2601 2010-04-20 Kenichi Handa <handa@m17n.org>
2602
2603 * charset.c (char_charset): Consider Vcharset_non_preferred_head
2604 only when the arg CHARSET_LIST is nil.
2605
2606 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
2607
2608 Make variable forwarding explicit rather the using special values.
2609 Basically, this makes the structure of buffer-local values and object
2610 forwarding explicit in the type of Lisp_Symbols rather than use
2611 special Lisp_Objects for that. This tends to lead to slightly more
2612 verbose code, but is more C-like, simpler, and makes it easier to make
2613 sure we handled all cases, among other things by letting the compiler
2614 help us check it.
2615 * lisp.h (enum Lisp_Misc_Type, union Lisp_Misc):
2616 Removing forwarding objects.
2617 (enum Lisp_Fwd_Type, enum symbol_redirect, union Lisp_Fwd): New types.
2618 (struct Lisp_Symbol): Make the various forms of variable-forwarding
2619 explicit rather than hiding them inside Lisp_Object "values".
2620 (XFWDTYPE): New macro.
2621 (XINTFWD, XBOOLFWD, XOBJFWD, XKBOARD_OBJFWD): Redefine.
2622 (XBUFFER_LOCAL_VALUE): Remove.
2623 (SYMBOL_VAL, SYMBOL_ALIAS, SYMBOL_BLV, SYMBOL_FWD, SET_SYMBOL_VAL)
2624 (SET_SYMBOL_ALIAS, SET_SYMBOL_BLV, SET_SYMBOL_FWD): New macros.
2625 (SYMBOL_VALUE, SET_SYMBOL_VALUE): Remove.
2626 (struct Lisp_Intfwd, struct Lisp_Boolfwd, struct Lisp_Objfwd)
2627 (struct Lisp_Buffer_Objfwd, struct Lisp_Kboard_Objfwd):
2628 Remove the Lisp_Misc_* header.
2629 (struct Lisp_Buffer_Local_Value): Redefine.
2630 (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): New macros.
2631 (struct Lisp_Misc_Any): Add filler to get the right size.
2632 (struct Lisp_Free): Use struct Lisp_Misc_Any rather than struct
2633 Lisp_Intfwd.
2634 (DEFVAR_LISP, DEFVAR_LISP_NOPRO, DEFVAR_BOOL, DEFVAR_INT)
2635 (DEFVAR_KBOARD): Allocate a forwarding object.
2636 * data.c (do_blv_forwarding, store_blv_forwarding): New macros.
2637 (let_shadows_global_binding_p): New function.
2638 (union Lisp_Val_Fwd): New type.
2639 (make_blv): New function.
2640 (swap_in_symval_forwarding, indirect_variable, do_symval_forwarding)
2641 (store_symval_forwarding, swap_in_global_binding, Fboundp)
2642 (swap_in_symval_forwarding, find_symbol_value, Fset)
2643 (let_shadows_buffer_binding_p, set_internal, default_value)
2644 (Fset_default, Fmake_variable_buffer_local, Fmake_local_variable)
2645 (Fkill_local_variable, Fmake_variable_frame_local)
2646 (Flocal_variable_p, Flocal_variable_if_set_p)
2647 (Fvariable_binding_locus):
2648 * xdisp.c (select_frame_for_redisplay):
2649 * lread.c (Fintern, Funintern, init_obarray, defvar_int)
2650 (defvar_bool, defvar_lisp_nopro, defvar_lisp, defvar_kboard):
2651 * frame.c (store_frame_param):
2652 * eval.c (Fdefvaralias, Fuser_variable_p, specbind, unbind_to):
2653 * bytecode.c (Fbyte_code) <varref, varset>: Adapt to the new symbol
2654 value structure.
2655 * buffer.c (PER_BUFFER_SYMBOL): Move from buffer.h.
2656 (clone_per_buffer_values): Only adjust markers into the current buffer.
2657 (reset_buffer_local_variables): PER_BUFFER_IDX is never -2.
2658 (Fbuffer_local_value, set_buffer_internal_1)
2659 (swap_out_buffer_local_variables):
2660 Adapt to the new symbol value structure.
2661 (DEFVAR_PER_BUFFER): Allocate a Lisp_Buffer_Objfwd object.
2662 (defvar_per_buffer): Take a new arg for the fwd object.
2663 (buffer_lisp_local_variables): Return a proper alist (different fix
2664 for bug#4138).
2665 * alloc.c (Fmake_symbol): Use SET_SYMBOL_VAL.
2666 (Fgarbage_collect): Don't handle buffer_defaults specially.
2667 (mark_object): Handle new symbol value structure rather than the old
2668 special Lisp_Misc_* objects.
2669 (gc_sweep) <symbols>: Free also the buffer-local-value objects.
2670 * term.c (set_tty_color_mode):
2671 * bidi.c (bidi_initialize): Don't access the ->value field directly.
2672 * buffer.h (PER_BUFFER_VAR_OFFSET): Don't bother with
2673 a buffer_local_flags.
2674 * print.c (print_object): Get rid of impossible forwarding objects.
2675
2676 2010-04-19 Eli Zaretskii <eliz@gnu.org>
2677
2678 * bidi.c (bidi_get_type, bidi_get_category)
2679 (bidi_at_paragraph_end, bidi_resolve_weak, bidi_resolve_neutral)
2680 (bidi_type_of_next_char, bidi_level_of_next_char):
2681 Declare static. Use `INLINE' rather than `inline'.
2682
2683 2010-04-19 Juanma Barranquero <lekktu@gmail.com>
2684
2685 * dired.c (Ffile_attributes): Fix typo in docstring.
2686
2687 2010-04-19 Adrian Robert <Adrian.B.Robert@gmail.com>
2688
2689 * nsmenu.m (EmacsDialog-runDialogAt:): Declare ret as
2690 NSInteger (Bug#5811).
2691
2692 2010-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2693
2694 * s/darwin.h (PTY_ITERATION, PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF)
2695 (PTY_OPEN): New defines. Use openpty (Bug#726, Bug#5819).
2696
2697 2010-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2698
2699 * frame.h (FRAME_LINE_TO_PIXEL_Y): Add missing parenthesis.
2700
2701 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
2702
2703 * xdisp.c (prepare_menu_bars): Don't call ns_set_doc_edited for
2704 terminal frames (Bug#5837).
2705
2706 2010-04-19 Eli Zaretskii <eliz@gnu.org>
2707
2708 * .gdbinit (xsubchartable): New command.
2709
2710 2010-04-19 Eli Zaretskii <eliz@gnu.org>
2711
2712 * xdisp.c (display_line): Don't write beyond the last glyph row in
2713 the desired matrix. Fixes a crash in "emacs -nw" (bug#5972), see
2714 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00075.html
2715 and
2716 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00213.html
2717
2718 2010-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
2719
2720 * alloc.c (Fpurecopy): Hash-cons if requested.
2721 (syms_of_alloc): Update purify-flag docstring.
2722
2723 2010-04-18 Jan Djärv <jan.h.d@swipnet.se>
2724
2725 * gtkutil.c (xg_set_geometry): Set size in geometry string also.
2726 (x_wm_set_size_hint): Set USER_POS in hint_flags (Bug#5968).
2727
2728 2010-04-17 Eli Zaretskii <eliz@gnu.org>
2729
2730 Fix a crash when an NSM character is inserted at BEGV.
2731
2732 * bidi.c (bidi_init_it): Fix initialization of bidi_it->prev.
2733 (bidi_resolve_weak): Don't use prev.type_after_w1 if it is
2734 NEUTRAL_B or UNKNOWN_BT.
2735
2736 2010-04-16 Eli Zaretskii <eliz@gnu.org>
2737
2738 * xdisp.c (set_cursor_from_row): Don't consider possibility of
2739 other rows with cursor unless they are different from this row and
2740 this row is part of a continued line. (Bug#5943)
2741
2742 2010-04-16 Dan Nicolaescu <dann@ics.uci.edu>
2743
2744 * s/freebsd.h: Restore osreldate.h include.
2745 Suggested by Naohiro Aota.
2746
2747 2010-04-16 Jan Djärv <jan.h.d@swipnet.se>
2748
2749 * xmenu.c (apply_systemfont_to_menu): *childs was incorrectly used.
2750
2751 2010-04-16 Ken Brown <kbrown@cornell.edu> (tiny change)
2752
2753 * s/cygwin.h: Avoid linking against static libgcc.
2754
2755 2010-04-15 Juri Linkov <juri@jurta.org>
2756
2757 * window.c: Add Qscroll_command.
2758 Remove Vscroll_preserve_screen_position_commands.
2759 (window_scroll_pixel_based, window_scroll_line_based): Check the
2760 `scroll-command' property on the last command instead of searching
2761 the last command in Vscroll_preserve_screen_position_commands.
2762 (syms_of_window): Initialize and staticpro `Qscroll_command'.
2763 Put Qscroll_command property on Qscroll_up and Qscroll_down.
2764 (scroll-preserve-screen-position): Doc fix.
2765 (Vscroll_preserve_screen_position_commands): Remove variable.
2766
2767 2010-04-15 Dan Nicolaescu <dann@ics.uci.edu>
2768
2769 * xdisp.c (message): Do not use NO_ARG_ARRAY.
2770
2771 2010-04-14 Dan Nicolaescu <dann@ics.uci.edu>
2772
2773 Reduce cpp use in Makefile.in.
2774 * Makefile.in (DBUS_CFLAGS, DBUS_LIBS, GCONF_CFLAGS, GCONF_LIBS)
2775 (LIBSOUND, CFLAGS_SOUND, RSVG_LIBS, RSVG_CFLAGS, INTERVALS_H)
2776 (GETLOADAVG_LIBS, RUN_TEMACS): Move to the autoconf section.
2777 (ORDINARY_LINK): Remove, defined in src/s/gnu.h.
2778 (CRT0_COMPILE): Remove, inline it in the only user.
2779
2780 2010-04-14 Juri Linkov <juri@jurta.org>
2781
2782 * window.c (keys_of_window): Rebind `C-v' from `scroll-up' to
2783 `scroll-up-command' and `M-v' from `scroll-down' to
2784 `scroll-down-command'.
2785
2786 2010-04-14 Juri Linkov <juri@jurta.org>
2787
2788 * window.c (Vscroll_preserve_screen_position_commands): New variable
2789 with the default value as the list of Qscroll_down and Qscroll_up.
2790 (window_scroll_pixel_based, window_scroll_line_based): Search the
2791 last command in the list Vscroll_preserve_screen_position_commands
2792 instead of comparing with Qscroll_up and Qscroll_down.
2793
2794 2010-04-13 Jan Djärv <jan.h.d@swipnet.se>
2795
2796 * gtkutil.c (xg_set_geometry): Set geometry for PPosition also.
2797 (x_wm_set_size_hint): Dont set position flags, gtk_window_parse_geometry
2798 does that.
2799
2800 * xfns.c (Fx_create_frame, x_create_tip_frame): Set default border width
2801 to zero.
2802
2803 2010-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
2804
2805 * term.c (init_tty): Move common text outside of #ifdef TERMINFO.
2806
2807 Try to solve the problem of spurious EOF chars in long lines of text
2808 sent to interactive subprocesses.
2809 * sysdep.c (child_setup_tty): Do not enable ICANON any more.
2810 (system_process_attributes): Remove unused var `ttotal'.
2811 * process.c (send_process): Don't bother breaking long line with EOF
2812 chars when talking to ttys any more.
2813 (wait_reading_process_output): Output a warning when called in such
2814 a way that it could block without being interruptible.
2815
2816 Try to detect file modification within the same second.
2817 * buffer.h (struct buffer): New field modtime_size.
2818 * buffer.c (reset_buffer): Initialize it.
2819 * fileio.c (Finsert_file_contents, Fwrite_region): Set it.
2820 (Fverify_visited_file_modtime): Check it.
2821 (Fclear_visited_file_modtime, Fset_visited_file_modtime): Clear it.
2822 (Fset_visited_file_modtime): Set (or clear) it.
2823
2824 2010-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
2825
2826 * process.c (status_notify): Remove unused var `ro'.
2827
2828 2010-04-12 Jan Djärv <jan.h.d@swipnet.se>
2829
2830 * xfns.c (select_visual): Don't call error if XGetVisualInfo returns
2831 more than one visual (Bug#5938).
2832
2833 2010-04-12 Dan Nicolaescu <dann@ics.uci.edu>
2834
2835 * Makefile.in (C_SWITCH_SYSTEM,C_SWITCH_MACHINE,C_SWITCH_X_SITE):
2836 Undefine.
2837
2838 2010-04-11 Dan Nicolaescu <dann@ics.uci.edu>
2839
2840 Remove C_SWITCH_SYSTEM_TEMACS.
2841 * s/darwin.h (C_SWITCH_SYSTEM_TEMACS): Remove.
2842 (malloc, realloc, free): Use emacs, not temacs for conditional
2843 definition.
2844
2845 * Makefile.in (C_SWITCH_SYSTEM_TEMACS): Remove.
2846 (ALL_CFLAGS): Do not use C_SWITCH_SYSTEM_TEMACS.
2847
2848 Use autoconf, not cpp for some variables.
2849 * Makefile.in (C_SWITCH_SYSTEM, C_SWITCH_MACHINE)
2850 (C_SWITCH_X_SITE): Define using autoconf, not cpp.
2851 (ALL_CFLAGS): Use them as make variables.
2852 (really-lwlib, really-oldXMenu): Do not pass them.
2853
2854 2010-04-11 Jan Djärv <jan.h.d@swipnet.se>
2855
2856 * xmenu.c (apply_systemfont_to_dialog): New.
2857 (create_and_show_dialog): Call apply_systemfont_to_dialog if HAVE_XFT.
2858
2859 2010-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
2860
2861 * process.c (exec_sentinel): Preserve current-buffer.
2862
2863 * process.c (read_process_output): Move the save-current-buffer to
2864 apply to both the filter and the non-filter branches.
2865
2866 2010-04-10 Dan Nicolaescu <dann@ics.uci.edu>
2867
2868 * s/msdos.h (UNEXEC): New definition.
2869
2870 2010-04-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2871
2872 * dispextern.h (TRY_WINDOW_CHECK_MARGINS)
2873 (TRY_WINDOW_IGNORE_FONTS_CHANGE): New defines.
2874
2875 * xdisp.c (try_window): Change arg from CHECK_MARGINS to FLAGS.
2876 Don't abort with fonts change if TRY_WINDOW_IGNORE_FONTS_CHANGE is
2877 set in FLAGS. Callers with non-zero CHECK_MARGINS changed to use
2878 TRY_WINDOW_CHECK_MARGINS.
2879
2880 * xfns.c (Fx_show_tip): Undo last change. Call try_window with
2881 TRY_WINDOW_IGNORE_FONTS_CHANGE (Bug#2423). Subtract last glyph's
2882 width only when it is for padding.
2883
2884 2010-04-09 Jan Djärv <jan.h.d@swipnet.se>
2885
2886 * xfns.c (Fx_show_tip): Call try_window in a loop until
2887 fonts_changed_p is zero (Bug#2423).
2888
2889 2010-04-08 Eli Zaretskii <eliz@gnu.org>
2890
2891 * xdisp.c (set_cursor_from_row): Don't dereference glyphs beyond
2892 the end of TEXT_AREA. (Bug#5856)
2893
2894 2010-04-08 Jan Djärv <jan.h.d@swipnet.se>
2895
2896 * xsettings.c (XSETTINGS_FONT_NAME): Move XSETTINGS_FONT_NAME out of
2897 HAVE_GCONF.
2898
2899 2010-04-08 Eli Zaretskii <eliz@gnu.org>
2900
2901 * bidi.c (bidi_resolve_weak): Use prev.type_after_w1, instead of
2902 prev.orig_type, for resolving type of NSM. (Bug#5858)
2903
2904 2010-04-08 Jan Djärv <jan.h.d@swipnet.se>
2905
2906 * xsettings.c (current_font, SYSTEM_FONT, XSETTINGS_FONT_NAME): New.
2907 (parse_xft_settings): Also check for XSETTINGS_FONT_NAME and save that
2908 in current_font.
2909 (init_gconf): Read value of SYSTEM_FONT and save it in current_font.
2910 (Ffont_get_system_normal_font, xsettings_get_system_normal_font):
2911 New functions.
2912 (syms_of_xsettings): Initialize current_font.
2913 defsubr Sfont_get_system_normal_font.
2914
2915 * xsettings.h (Ffont_get_system_normal_font,
2916 xsettings_get_system_normal_font): Declare.
2917
2918 * xfns.c (extern xlwmenu_default_font): Remove.
2919 (Fx_create_frame): Remove setting of xlwmenu_default_font, moved
2920 to xlwmenu.c.
2921
2922 * menu.c (digest_single_submenu): If USE_LUCID and HAVE_XFT, encode
2923 menu items in UTF-8.
2924
2925 * xmenu.c: include xsettings.h and xlwmenu.h if USE_LUCID.
2926 (apply_systemfont_to_menu): New function.
2927 (set_frame_menubar, create_and_show_popup_menu): Call
2928 apply_systemfont_to_menu.
2929
2930 2010-04-07 Jan Djärv <jan.h.d@swipnet.se>
2931
2932 * frame.h (FRAME_TEXT_LINES_TO_PIXEL_HEIGHT): Don't use
2933 FRAME_LINE_TO_PIXEL_Y.
2934
2935 * xterm.c (x_set_window_size_1): Don't add border_width/height to
2936 pixelwidth/height.
2937
2938 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
2939
2940 Simplify code for HP machines.
2941 * m/hp800.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, NO_REMAP): Do not define
2942 for GNU_LINUX, not needed.
2943 (UNEXEC, NEED_BSDTTY): Move definitions...
2944 * s/hpux10-20.h (UNEXEC, NEED_BSDTTY): ... here.
2945
2946 * m/iris4d.h (UNEXEC): Move definition ...
2947 * s/irix6-5.h (UNEXEC): ... here.
2948
2949 2010-04-04 Jan Djärv <jan.h.d@swipnet.se>
2950
2951 * xfns.c (set_machine_and_pid_properties): New function.
2952 (Fx_create_frame): Call set_machine_and_pid_properties.
2953
2954 2010-04-03 Eli Zaretskii <eliz@gnu.org>
2955
2956 * bidi.c (bidi_resolve_explicit, bidi_level_of_next_char): Check
2957 bidi_it->bytepos against ZV_BYTE instead of bidi_it->ch against
2958 BIDI_EOB. Fixes infloop with vertical cursor motion at ZV.
2959
2960 * w32fns.c (x_create_tip_frame): Copy `parms' before we modify it
2961 in this function. (Bug#5703)
2962
2963 2010-04-03 Chong Yidong <cyd@stupidchicken.com>
2964
2965 * nsterm.h: Fix last change.
2966
2967 2010-04-03 Dan Nicolaescu <dann@ics.uci.edu>
2968
2969 * m/intel386.h (NO_REMAP): Move definition ...
2970 * s/msdos.h (NO_REMAP): ... here.
2971
2972 * m/vax.h (CRT0_DUMMIES): Remove, unused.
2973
2974 * ecrt0.c: Remove MSDOS, m68k and __sparc__ conditionals, file not
2975 used on those platforms.
2976
2977 2010-04-02 Dan Nicolaescu <dann@ics.uci.edu>
2978
2979 Remove extern errno declarations.
2980 * xterm.c:
2981 * xrdb.c:
2982 * w32term.c:
2983 * unexec.c:
2984 * unexaix.c:
2985 * sysdep.c:
2986 * process.c:
2987 * lread.c:
2988 * keyboard.c:
2989 * floatfns.c:
2990 * filelock.c:
2991 * fileio.c:
2992 * emacs.c (main):
2993 * ecrt0.c:
2994 * dispnew.c:
2995 * callproc.c:
2996 * buffer.c: Remove errno extern declarations.
2997 * s/netbsd.h (NEED_ERRNO): Remove.
2998
2999 2010-04-01 Dan Nicolaescu <dann@ics.uci.edu>
3000
3001 Remove all uses of LIBX11_SYSTEM.
3002 * Makefile.in (LIBX11_SYSTEM): Remove.
3003 * s/msdos.h (LIBX11_SYSTEM): Do not define, define LIBS_SYSTEM
3004 instead.
3005
3006 2010-04-01 Eli Zaretskii <eliz@gnu.org>
3007
3008 Remove support for DJGPP v1.x (bug#5813).
3009
3010 * w16select.c (__dpmi_int): Remove DJGPP v1.x compatibility.
3011 * s/msdos.h:
3012 * unexec.c (make_hdr, copy_text_and_data):
3013 * sysdep.c (wait_for_termination, sys_subshell):
3014 * msdos.c (dos_set_window_size, msdos_set_cursor_shape)
3015 (IT_set_terminal_modes, __write, _rename, gethostname)
3016 (gettimeofday, alarm, fork, kill, dos_ttraw, dos_ttcooked)
3017 (run_msdos_command, abort): Remove DJGPP v1.x code and tests of
3018 the value of __DJGPP__.
3019 (nice, pause, sigsetmask, sigblock): Remove DJGPP v1.x
3020 compatibility code.
3021 * lread.c:
3022 * gmalloc.c (memalign):
3023 * fileio.c (Fcopy_file, check_executable, Ffile_modes):
3024 * emacs.c (main):
3025 * dosfns.c (init_dosfns):
3026 * dired.c (file_name_completion_stat): Remove tests of __DJGPP__.
3027
3028 2010-04-01 Eli Zaretskii <eliz@gnu.org>
3029
3030 * xdisp.c (set_cursor_from_row): Fix cursor positioning when the
3031 string with `cursor' property comes from an `after-string'
3032 overlay. (Bug#5816)
3033
3034 2010-04-01 Glenn Morris <rgm@gnu.org>
3035
3036 * Makefile.in (LIBTIFF, LIBJPEG, LIBPNG, LIBGIF, LIBXPM, XFT_LIBS):
3037 Define as Makefile variables.
3038 (LIBX): Use above variables rather than directly using autoconf.
3039
3040 2010-03-31 Dan Nicolaescu <dann@ics.uci.edu>
3041
3042 Clean up BSD_SYSTEM use.
3043 * xterm.c:
3044 * process.c:
3045 * emacs.c: Use HAVE_SYS_IOCTL_H instead of BSD_SYSTEM as a guard
3046 for including <sys/ioctl.h>.
3047 * sysdep.c (wait_without_blocking): Remove BSD_SYSTEM case, this
3048 code is only used for MSDOS.
3049
3050 2010-03-31 Juri Linkov <juri@jurta.org>
3051
3052 * image.c: Add `Qextension_data'.
3053 (syms_of_image): Initialize and staticpro `Qextension_data'.
3054 (Fimage_metadata): Rename from `Fimage_extension_data'.
3055 (gif_load): Put GIF extension data to the property
3056 `Qextension_data'.
3057
3058 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
3059
3060 * nsfns.m (ns_set_doc_edited): Remove unused arg OLDVAL.
3061 * nsterm.h: Fix prototype.
3062
3063 2010-03-31 Eli Zaretskii <eliz@gnu.org>
3064
3065 * xdisp.c (highlight_trailing_whitespace): Support highlight of
3066 trailing whitespace in right-to-left rows.
3067
3068 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
3069
3070 Get rid of the direct_output optimizations.
3071 * keyboard.c (nonundocount): Remove extern declaration.
3072 (command_loop_1): Remove brittle optimisation for cheap and
3073 common operations.
3074 * xdisp.c (redisplay_internal): Don't bother checking
3075 redisplay_performed_directly_p any more.
3076 * sysdep.c (init_sys_modes): Don't call direct_output_forward_char
3077 any more.
3078 * dispnew.c (redisplay_performed_directly_p)
3079 (direct_output_for_insert, direct_output_forward_char):
3080 * dispextern.h (redisplay_performed_directly_p)
3081 (direct_output_for_insert, direct_output_forward_char): Remove.
3082 * cmds.c (nonundocount): Make it static.
3083
3084 2010-03-31 Bernhard Herzog <bh@intevation.de> (tiny change)
3085
3086 * menu.c (Fx_popup_menu): Use last_event_timestamp (Bug#4930).
3087
3088 2010-03-31 Jan Djärv <jan.h.d@swipnet.se>
3089
3090 * xdisp.c (note_mouse_highlight): Don't do highlight if pointer is
3091 invisible (Bug#5766).
3092
3093 2010-03-31 Adrian Robert <adrian.b.robert@gmail.com>
3094
3095 * xdisp.c (x_consider_frame_title, update_window_cursor):
3096 Remove HAVE_NS conditionals.
3097 (prepare_menu_bars) [HAVE_NS]: Call ns_set_doc_edited.
3098
3099 * nsfns.m (x_implicitly_set_name): If frame-title-format is t, use
3100 filename for the title.
3101 (ns_set_doc_edited): Do nothing if the selected window is a
3102 minibuffer window.
3103
3104 * nsterm.h: Add prototypes for ns_set_name_as_filename and
3105 ns_set_doc_edited.
3106
3107 * nsterm.m: Remove unneeded prototype.
3108
3109 2010-03-31 Glenn Morris <rgm@gnu.org>
3110
3111 * Makefile.in (SOME_MACHINE_OBJECTS): Ensure dbus stuff is always
3112 in the DOC file. (Bug#5336)
3113
3114 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
3115
3116 * xdisp.c (pos_visible_p): Revert 2008-01-25 change (Bug#5730).
3117
3118 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
3119
3120 * window.c (keys_of_window): Remove redundant/overridden bindings.
3121
3122 2010-03-30 Eli Zaretskii <eliz@gnu.org>
3123
3124 * xdisp.c (BUFFER_POS_REACHED_P, move_it_in_display_line_to):
3125 Restore original behavior when the iterator is not bidi_p.
3126
3127 2010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
3128
3129 * xdisp.c (syms_of_xdisp): Use intern_c_string instead of intern.
3130
3131 2010-03-30 Eli Zaretskii <eliz@gnu.org>
3132
3133 * bidi.c (bidi_cache_iterator_state): Invalidate the cache if we
3134 are outside the range of cached character positions.
3135
3136 2010-03-30 Juanma Barranquero <lekktu@gmail.com>
3137
3138 * makefile.w32-in ($(BLD)/bidi.$(O)): Add dependency on w32gui.h.
3139
3140 2010-03-30 Eli Zaretskii <eliz@gnu.org>
3141
3142 Initial support for bidirectional editing.
3143
3144 * Makefile.in (obj): Include bidi.o.
3145 (bidi.o): New target.
3146
3147 * makefile.w32-in (OBJ1): Add $(BLD)/bidi.$(O).
3148 ($(BLD)/bidi.$(O)): New target.
3149
3150 * bidi.c: New file.
3151
3152 * buffer.h (struct buffer): New members bidi_display_reordering
3153 and bidi_paragraph_direction.
3154
3155 * buffer.c (init_buffer_once): Initialize bidi_display_reordering
3156 and bidi_paragraph_direction.
3157 (syms_of_buffer): Declare Lisp variables bidi-display-reordering
3158 and bidi-paragraph-direction.
3159 (Fbuffer_swap_text): Swap the values of
3160 bidi_display_reordering and bidi_paragraph_direction.
3161
3162 * dispextern.h (BIDI_MAXLEVEL, BIDI_AT_BASE_LEVEL): New macros.
3163 (bidi_type_t, bidi_dir_t): New types.
3164 (bidi_saved_info, bidi_stack, bidi_it): New structures.
3165 (struct it): New members bidi_p, bidi_it, paragraph_embedding,
3166 prev_stop, base_level_stop, and eol_pos.
3167 (bidi_init_it, bidi_get_next_char_visually): New prototypes.
3168 (IT_STACK_SIZE): Enlarge to 5.
3169 (struct glyph_row): New member reversed_p.
3170 <string_buffer_position>: Update prototype.
3171 (PRODUCE_GLYPHS): Set the reversed_p flag in the iterator's
3172 glyph_row if bidi_it.paragraph_dir == R2L.
3173 (struct glyph): New members resolved_level and bidi_type.
3174
3175 * dispnew.c (direct_output_forward_char): Give up if we need bidi
3176 processing or buffer's direction is right-to-left.
3177 (prepare_desired_row): Preserve the reversed_p flag.
3178 (row_equal_p): Compare the reversed_p attributes as well.
3179
3180 * xdisp.c (init_iterator): Initialize it->bidi_p. Call
3181 bidi_init_it and set it->paragraph_embedding from the current
3182 buffer's value of bidi_paragraph_direction.
3183 (reseat_1): Initialize bidi_it.first_elt.
3184 (set_iterator_to_next, next_element_from_buffer): Use the value of
3185 paragraph_embedding to determine the paragraph direction.
3186 (set_iterator_to_next): Under bidi reordering, call
3187 bidi_get_next_char_visually. Call bidi_paragraph_init if the
3188 new_paragraph flag is set in the bidi iterator.
3189 (next_element_from_buffer): If bidi_it.first_elt is set,
3190 initialize paragraph direction and find the first character to
3191 display in the visual order. If reseated to a middle of a line,
3192 prime the bidi iterator starting at the line's beginning. Handle
3193 the situation where we overstepped stop_charpos due to
3194 non-linearity of the bidi iteration. Likewise for when we back up
3195 beyond the previous stop_charpos. When moving across stop_charpos,
3196 record it in prev_stop.
3197 (display_line): Set row->end and it->start for the next row to the
3198 next character in logical order. Always extend reversed_p rows to
3199 the end of line, even if they end at ZV. Copy the reversed_p flag
3200 to the next glyph row. Keep calling set_cursor_from_row for
3201 bidi-reordered rows even if we already have a possible candidate
3202 for cursor position. Set row_end after all the row's glyphs have
3203 been produced, by looping over the glyphs. Record the position
3204 after EOL in it->eol_pos, and use it to set end_pos of the last
3205 row produced for a continued line.
3206 <Qright_to_left, Qleft_to_right>: New variables.
3207 (syms_of_xdisp): Initialize and staticpro them.
3208 (string_buffer_position_lim): New function.
3209 (string_buffer_position): Most of code moved to
3210 string_buffer_position_lim. Last argument and return value are
3211 now EMACS_INT; all callers changed.
3212 (set_cursor_from_row): Rewritten to support bidirectional text and
3213 reversed glyph rows.
3214 (text_outside_line_unchanged_p, try_window_id): Disable
3215 optimizations if we are reordering bidirectional text and the
3216 paragraph direction can be affected by the change.
3217 (append_glyph, append_composite_glyph)
3218 (produce_image_glyph, append_stretch_glyph): Set the
3219 resolved_level and bidi_type members of each glyph.
3220 (append_glyph): If the glyph row is reversed, prepend the glyph
3221 rather than appending it.
3222 (handle_stop_backwards): New function.
3223 (reseat_1, pop_it, push_it): Set prev_stop and base_level_stop.
3224 (reseat): call handle_stop_backwards to recompute prev_stop and
3225 base_level_stop for the new position.
3226 (handle_invisible_prop): Under bidi iteration, skip invisible text
3227 using bidi_get_next_char_visually. If we are `reseat'ed, init the
3228 paragraph direction. Update IT->prev_stop after skipping
3229 invisible text.
3230 (move_it_in_display_line_to): New variables prev_method
3231 and prev_pos. Compare for strict equality in
3232 BUFFER_POS_REACHED_P.
3233 (try_cursor_movement): Examine all the candidate rows that occlude
3234 point, to return the best match. If rows are bidi-reordered
3235 and point moved backwards, back up to the row that is not a
3236 continuation line, and start looking for a suitable row from
3237 there.
3238
3239 * term.c (append_glyph): Reverse glyphs by pre-pending them,
3240 rather than appending, if the glyph_row's reversed_p flag is set.
3241 Set the resolved_level and bidi_type members of each glyph.
3242
3243 * .gdbinit (pbiditype): New command.
3244 (pgx): Use it to display bidi level and type of the glyph.
3245 (pitx): Display some bidi information about the iterator.
3246 (prowlims, pmtxrows): New commands.
3247
3248 2010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
3249
3250 Remove all uses of C_DEBUG_SWITCH and LIBS_DEBUG.
3251 * s/usg5-4.h (LIBS_DEBUG):
3252 * s/irix6-5.h (C_DEBUG_SWITCH):
3253 * s/gnu-linux.h (LIBS_DEBUG):
3254 * s/darwin.h (LIBS_DEBUG):
3255 * s/bsd-common.h (LIBS_DEBUG):
3256 * s/aix4-2.h (LIBS_DEBUG, C_DEBUG_SWITCH):
3257 * m/iris4d.h (LIBS_DEBUG):
3258 * m/hp800.h (LIBS_DEBUG): Remove definitions.
3259
3260 * Makefile.in (LIBES): Remove reference to LIBS_DEBUG.
3261 (LIBS_DEBUG): Remove definition.
3262
3263 2010-03-27 Chong Yidong <cyd@stupidchicken.com>
3264
3265 * process.c (Fmake_network_process): Don't apply Bug#5173 fix for
3266 Windows.
3267
3268 2010-03-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3269
3270 * process.c (Fmake_network_process): Don't call turn_on_atimers around
3271 `connect' (Bug#5723).
3272
3273 2010-03-25 Helmut Eller <eller.helmut@gmail.com>
3274
3275 * process.c (Fmake_network_process): Call `select' for interrupted
3276 `connect' rather than creating new socket (Bug#5173).
3277
3278 2010-03-24 Jan Djärv <jan.h.d@swipnet.se>
3279
3280 * frame.c (x_get_arg): Handle RES_TYPE_BOOLEAN_NUMBER (bug #5736).
3281
3282 * xfns.c (Fx_create_frame): Make menuBar a RES_TYPE_BOOLEAN_NUMBER.
3283
3284 * dispextern.h (resource_types): RES_TYPE_BOOLEAN_NUMBER is new.
3285
3286 2010-03-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3287
3288 * xfns.c (Fx_create_frame) [USE_LUCID]: Add BLOCK_INPUT around
3289 XLoadQueryFont.
3290
3291 2010-03-24 Kenichi Handa <handa@m17n.org>
3292
3293 * coding.c (decode_coding_ccl): Fix previous change for the
3294 multibyte case.
3295 (encode_coding_ccl): Don't setup ccl program here. Fix for the
3296 case that the output buffer is fullfilled.
3297 (encode_coding): Setup ccl program here.
3298
3299 2010-03-23 Dan Nicolaescu <dann@ics.uci.edu>
3300
3301 * s/gnu-linux.h (LIBS_SYSTEM): Remove, same as default.
3302
3303 Simplify LIBS_MACHINE definitions.
3304 * m/hp800.h (LIBS_MACHINE): Remove, same as default.
3305 * m/iris4d.h (LIBS_MACHINE): Likewise.
3306 * m/ibmrs6000.h (LIBS_MACHINE): Rename to LIBS_SYSTEM and move ...
3307 * s/aix4-2.h (LIBS_SYSTEM): ... here.
3308 * s/netbsd.h: Remove commented out code.
3309
3310 2010-03-22 Dan Nicolaescu <dann@ics.uci.edu>
3311
3312 Remove dead code dealing with POSIX_SIGNALS.
3313 * atimer.c (set_alarm): Remove dead code, all USG systems define
3314 POSIX_SIGNALS.
3315 * data.c (arith_error): Likewise.
3316 * keyboard.c (input_available_signal, handle_user_signal)
3317 (interrupt_signal): Likewise.
3318 * process.c (sigchld_handler): Likewise.
3319 (create_process): Remove if 0 code. Remove HPUX conditional when
3320 !defined (POSIX_SIGNALS), it cannot be true.
3321 * syssignal.h: Remove USG5_4 and USG conditionals when
3322 !POSIX_SIGNALS, they cannot be true.
3323
3324 * keyboard.c (Fset_input_interrupt_mode): Remove code depending on
3325 NO_SOCK_SIGIO, not used anymore.
3326
3327 2010-03-21 Dan Nicolaescu <dann@ics.uci.edu>
3328
3329 * m/vax.h (BSD_SYSTEM, BSD4_2): Remove conditionals, we only
3330 support vax on BSDs.
3331
3332 * m/ibmrs6000.h (ORDINARY_LINK): Move definition ...
3333 * s/aix4-2.h (ORDINARY_LINK): ... here.
3334
3335 2010-03-21 Andreas Schwab <schwab@linux-m68k.org>
3336
3337 * Makefile.in (abs_builddir): Define.
3338 (bootstrap_exe): Use it.
3339 (VPATH): Use $(srcdir) instead of @srcdir@.
3340
3341 2010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
3342
3343 * Makefile.in (bootstrap_exe): Use an absolute name.
3344
3345 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
3346
3347 Remove support for old GNU/Linux using libc version 5.
3348 * m/alpha.h (LINUX_SBRK_BUG): Remove definition.
3349 * emacs.c (main): Remove code depending on LINUX_SBRK_BUG.
3350
3351 Consolidate redundant definitions in s/bsd-common.h.
3352 * s/bsd-common.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
3353 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
3354 (LDAV_SYMBOL, KERNEL_FILE): Define (or undefine) here instead of
3355 doing it in all files that include this one.
3356 * s/gnu.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
3357 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
3358 (LDAV_SYMBOL, KERNEL_FILE): Remove.
3359 * s/freebsd.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
3360 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
3361 (LDAV_SYMBOL, KERNEL_FILE): Remove.
3362 * s/netbsd.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
3363 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
3364 (LDAV_SYMBOL, KERNEL_FILE): Remove.
3365
3366 Consolidate redundant definitions.
3367 * s/usg5-4.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not define,
3368 it's undefined in all files that include this one.
3369 (POSIX_SIGNALS): Define here instead of doing it in all files that
3370 include this one.
3371 * s/irix6-5.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
3372 (POSIX_SIGNALS): Do not define.
3373 * s/sol2-6.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
3374 (POSIX_SIGNALS): Do not define.
3375 * s/unixware.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
3376 (POSIX_SIGNALS): Do not define.
3377
3378 Remove support for old UNIX System V systems.
3379 * s/unixware.h: Add the contents of s/usg-5-4-2.h.
3380 * s/usg-5-4-2.h: Remove.
3381
3382 Remove support for Solaris on PPC and for old versions.
3383 * s/sol2-6.h: Add the contents of s/sol-2.3.h, s/sol-2.4.h, s/sol-2.5.h.
3384 (LD_SWITCH_SYSTEM, USE_MMAP_FOR_BUFFERS): Remove #defines/#undef
3385 that cancel each other.
3386 * s/sol2-3.h:
3387 * s/sol2-4.h:
3388 * s/sol2-5.h: Remove.
3389 * m/ibmrs6000.h: Remove code for USG5_4, this file is only used on AIX.
3390 (NO_REMAP): Remove, unused.
3391 (UNEXEC): Move definition ...
3392 * s/aix4-2.h (UNEXEC): ... here.
3393
3394 * s/openbsd.h: Remove support for non-ELF and for systems that do
3395 not support shared libraries.
3396 * s/netbsd.h:
3397 * s/freebsd.h: Likewise.
3398
3399 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
3400
3401 Remove non-working support for lynxos 3.0.
3402 * s/lynxos.h: Remove file.
3403
3404 * unexec.c (unexec, adjust_lnnoptrs): Do not depend on
3405 COFF_BSD_SYMBOLS, nothing defines it anymore.
3406
3407 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
3408
3409 Remove obsolete uses of HAVE_SHM.
3410 * emacs.c (standard_args):
3411 (Fdump_emacs):
3412 (syms_of_emacs): Remove code depending on HAVE_SHM.
3413
3414 * alloc.c: Remove HAVE_SHM dependent definition.
3415
3416 * Makefile.in (RUN_TEMACS): Do not depend on HAVE_SHM.
3417
3418 2010-03-18 Glenn Morris <rgm@gnu.org>
3419
3420 * emacs.c (USAGE4): Hard-code bug address.
3421 (REPORT_EMACS_BUG_ADDRESS, REPORT_EMACS_BUG_PRETEST_ADDRESS): Remove.
3422 (bug_reporting_address): Remove.
3423 (main): Don't call bug_reporting_address.
3424
3425 * Makefile.in (XFT_LIBS, LIBXPM, LIBJPEG, LIBPNG, LIBTIFF, LIBGIF)
3426 (LIBGPM, LIBRESOLV): Set using autoconf rather than cpp.
3427
3428 2010-03-15 Chong Yidong <cyd@stupidchicken.com>
3429
3430 * xfns.c (Fx_create_frame):
3431 * frame.c (Vdefault_frame_scroll_bars): Put non-GTK X scroll-bars
3432 on left.
3433
3434 2010-03-13 Andreas Politz <politza@fh-trier.de> (tiny change)
3435
3436 * editfns.c (Fformat): Account for string precision when computing
3437 field width (Bug#5710).
3438
3439 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
3440
3441 * xfns.c (Fx_create_frame): Set default to Qright.
3442
3443 * frame.c (Vdefault_frame_scroll_bars): Set default to Qright for
3444 all window systems.
3445
3446 2010-03-12 Eli Zaretskii <eliz@gnu.org>
3447
3448 These changes remove termcap.c from the build on Posix platforms.
3449 * Makefile.in (termcapobj): Move termcap.o from here...
3450 (MSDOS_OBJ): ...to here.
3451 (termcapobj) [!LIBS_TERMCAP]: Remove specialized value, as it is
3452 now identical to when LIBS_TERMCAP is defined.
3453
3454 * term.c: Remove (ifdef'ed away) inclusion of termcap.h.
3455
3456 * cm.c: Remove (ifdef'ed away) inclusion of termcap.h.
3457
3458 * config.in: Regenerated. (See top-level ChangeLog.)
3459
3460 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
3461
3462 * Branch for 23.2.
3463
3464 2010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
3465
3466 Cleanup setup of gl_state in various parts of the code.
3467 * syntax.h (SETUP_BUFFER_SYNTAX_TABLE): New macro.
3468 (SETUP_SYNTAX_TABLE, SETUP_SYNTAX_TABLE_FOR_OBJECT):
3469 * syntax.c (find_defun_start, Fchar_syntax, Fmatching_paren)
3470 (skip_chars):
3471 * regex.c (regex_compile): Use it.
3472 (re_compile_pattern): Don't set gl_state.current_syntax_table since
3473 it's now set in regex_compile when/if we need it.
3474
3475 2010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
3476
3477 Make it possible to C-g in a tight bytecode loop again (bug#5680).
3478 * lisp.h (ELSE_PENDING_SIGNALS): New macro.
3479 (QUIT): Use it to consolidate code and remove redundancy.
3480 * bytecode.c (BYTE_CODE_QUIT): Use it as well.
3481
3482 * regex.c (regex_compile): Setup gl_state as well.
3483
3484 * syntax.c (skip_chars): Setup gl_state (bug#3823).
3485 (in_classes): Use CONSP before XCAR/XCDR.
3486
3487 2010-03-03 Chong Yidong <cyd@stupidchicken.com>
3488
3489 * keymap.c (Fwhere_is_internal): Use Fequal to compare
3490 definitions, so that keyboard macros are correctly handled
3491 (Bug#5481).
3492
3493 2010-03-02 Eli Zaretskii <eliz@gnu.org>
3494
3495 * coding.c (decode_coding_emacs_mule): Fixup pointers to buffer
3496 text that could be relocated inside the call to emacs_mule_char.
3497 (emacs_mule_char): Use CODING_DECODE_CHAR instead of DECODE_CHAR.
3498 (CODING_DECODE_CHAR): Add a comment describing its purpose.
3499
3500 2010-03-02 Kenichi Handa <handa@m17n.org>
3501
3502 * character.c (parse_str_as_multibyte): Fix handling of the
3503 multibyte form of raw-bytes.
3504 (str_as_multibyte): Likewise.
3505
3506 * buffer.c (Fset_buffer_multibyte): Fix handling of the multibyte
3507 form of raw-bytes.
3508
3509 2010-02-28 Chong Yidong <cyd@stupidchicken.com>
3510
3511 * charset.c (load_charset_map_from_file)
3512 (load_charset_map_from_vector): Zero out allocated
3513 charset_map_entries before using them.
3514
3515 2010-02-27 Andreas Schwab <schwab@linux-m68k.org>
3516
3517 * w32uniscribe.c (uniscribe_check_otf): Fix length check.
3518
3519 2010-02-27 Chong Yidong <cyd@stupidchicken.com>
3520
3521 * font.c (font_parse_fcname): Recognize "Book", "Condensed",
3522 "Medium", and "Semi-Condensed" keywords in GTK names (Bug#5646).
3523
3524 2010-02-26 Kenichi Handa <handa@m17n.org>
3525
3526 * ftfont.c (ftfont_get_open_type_spec): Fix parsing of otf_spec.
3527
3528 * xdisp.c (reseat_to_string): Fix previous change.
3529
3530 2010-02-26 David Reitter <david.reitter@gmail.com>
3531
3532 * nsfont.m (nsfont_draw): ns_antialias_text should be a
3533 Lisp_Object (Bug#4736).
3534
3535 2010-02-25 Kenichi Handa <handa@m17n.org>
3536
3537 * xdisp.c (reseat_to_string): Fix previous change (bug#5609).
3538
3539 2010-02-24 Jan Djärv <jan.h.d@swipnet.se>
3540
3541 * xterm.c (XTflash): Move declarations before statements.
3542
3543 * gtkutil.c (xg_get_gdk_display): Remove (unused).
3544 (xg_get_pixbuf_from_pix_and_mask, xg_create_frame_widgets)
3545 (xg_toggle_notify_cb, xg_set_toolkit_scroll_bar_thumb)
3546 (xg_create_tool_bar): Remove unused variables.
3547 (x_wm_set_size_hint): Move declarations before statements.
3548 (xg_create_frame_widgets): Remove variable grav.
3549
3550 2010-02-21 Chong Yidong <cyd@stupidchicken.com>
3551
3552 * m/arm.h: Define the LIB_GCC flag to be -lgcc_s (Bug#5518).
3553
3554 2010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
3555
3556 * term.c (fatal): Add a final \n if needed (bug#5596).
3557
3558 2010-02-18 Chong Yidong <cyd@stupidchicken.com>
3559
3560 * nsterm.m (ns_ring_bell): Revert last change (Bug#5569).
3561
3562 2010-02-18 Glenn Morris <rgm@gnu.org>
3563
3564 * callint.c (Finteractive): Doc fix.
3565
3566 2010-02-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
3567
3568 * coding.c (record_conversion_result):
3569 Handle CODING_RESULT_INSUFFICIENT_DST.
3570 (decode_coding_object): Record CODING_RESULT_INSUFFICIENT_MEM on
3571 memory allocation error.
3572
3573 2010-02-17 Kenichi Handa <handa@m17n.org>
3574
3575 * coding.c (decode_coding_ccl): Don't setup ccl program here.
3576 Fix for the case that the output buffer is fullfilled.
3577 (decode_coding): Setup ccl program here. Keep looping when the
3578 decoder stopped because the output buffer is
3579 fullfilled (bug#5534).
3580
3581 * ccl.c (ccl_driver): Never reset ic to CCL_HEADER_MAIN.
3582
3583 2010-02-13 Jan Djärv <jan.h.d@swipnet.se>
3584
3585 * xterm.c (x_clear_frame_area): Call gtk_widget_queue_draw if USE_GTK,
3586 bug #5571.
3587 (XTflash): Use Gdk-routines if USE_GTK so scroll bars don't get
3588 overdrawn.
3589
3590 2010-02-10 Jan Djärv <jan.h.d@swipnet.se>
3591
3592 * xsmfns.c (x_session_initialize): Move initialization of ice_fd and
3593 doing_interact here.
3594 (ice_connection_closed): New function.
3595 (x_session_check_input, smc_die_CB, ice_io_error_handler)
3596 (ice_conn_watch_CB, x_session_close): Call ice_connection_closed.
3597 (x_session_check_input): Call IceCloseConnection if IceProcessMessages
3598 returns I/O error.
3599 (ice_conn_watch_CB): Call add_keyboard_wait_descriptor on ice_fd,
3600 bug #5512.
3601
3602 2010-02-08 Francis Devereux <francis@devrx.org> (tiny change)
3603
3604 * nsfont.m (nsfont_open): The system's value for the font descent
3605 is negative, so round it down to avoid clipping.
3606
3607 2010-02-06 Chong Yidong <cyd@stupidchicken.com>
3608
3609 * charset.c (load_charset_map_from_file)
3610 (load_charset_map_from_vector): Fix last change to use SAFE_ALLOCA
3611 instead of xmalloc (Bug#5526). Suggested by Vivek Dasmohapatra.
3612
3613 2010-02-05 Chong Yidong <cyd@stupidchicken.com>
3614
3615 * charset.c (load_charset_map_from_file): Allocate large
3616 charset_map_entries structure on the heap rather than the stack.
3617 (Bug#5526).
3618
3619 2010-01-31 Kenichi Handa <handa@m17n.org>
3620
3621 * font.c (font_parse_xlfd): If FONT is a font-entity and pixel
3622 size in NAME is invalid, return -1 (Bug#5396).
3623
3624 2010-01-31 Chong Yidong <cyd@stupidchicken.com>
3625
3626 * nsterm.m (ns_defined_color): Block input. Suggested by Mike
3627 <deactivated@gmail.com> (Bug#3605).
3628
3629 2010-01-31 David De La Harpe Golden <david@harpegolden.net>
3630
3631 * fileio.c (Frename_file): Correctly rename symlinks to
3632 directories (Bug#5496).
3633
3634 2010-01-31 Filipe Cabecinhas <filcab@gmail.com> (tiny change)
3635
3636 * nsterm.m (ns_ring_bell): Handle visible bell like X.
3637
3638 2010-01-30 Andreas Schwab <schwab@linux-m68k.org>
3639
3640 * character.h (CHAR_PRINTABLE_P): Reparenthesize to avoid warning.
3641
3642 2010-01-29 Chong Yidong <cyd@stupidchicken.com>
3643
3644 * frame.c (DEFAULT_ROWS): Change default to 35.
3645
3646 * xfns.c (x_default_font_parameter): Change default XFT font to
3647 monospace-10 (Bug#3643).
3648
3649 2010-01-29 Eli Zaretskii <eliz@gnu.org>
3650
3651 * w32inevt.c (key_event): Remove unnecessary comparison of
3652 event->uChar.AsciiChar with 128.
3653
3654 2010-01-28 Chong Yidong <cyd@stupidchicken.com>
3655
3656 * fileio.c (Frename_file): Fix last change (Bug#5487).
3657
3658 * m/mips.h: Remove DATA_START. Suggested by Dan Nicolaescu.
3659
3660 * m/alpha.h: Don't define DATA_START on NetBSD (Bug#4629).
3661
3662 2010-01-28 Jan Djärv <jan.h.d@swipnet.se>
3663
3664 * xfns.c (Fx_create_frame): Remove window size matching code from
3665 2010-01-15.
3666 (x_get_current_desktop, x_get_desktop_workarea): Remove.
3667
3668 2010-01-27 Jason Rumney <jasonr@gnu.org>
3669
3670 * w32inevt.c (w32_kbd_patch_key): Save the unicode character.
3671 (key_event): Use unicode for characters 128 and higher (Bug#4567).
3672
3673 2010-01-27 Kenichi Handa <handa@m17n.org>
3674
3675 * regex.c (analyse_first): Fix setting of fastmap for unibyte
3676 pattern string (Bug#4209).
3677
3678 2010-01-27 David De La Harpe Golden <david@harpegolden.net>
3679
3680 * fileio.c (Frename_file): Call copy-directory and
3681 delete-directory for directories, in order to handle cross-device
3682 renaming (Bug#3353).
3683
3684 2010-01-25 Jan Djärv <jan.h.d@swipnet.se>
3685
3686 * xfns.c (Fx_create_frame): If frame height is too big, try
3687 sizes 24 and 10. Bug #3643.
3688
3689 2010-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
3690
3691 Try and fix bug#788, hopefully for real this time.
3692 * keymap.c (shadow_lookup): Add `remap' arg.
3693 (describe_map, describe_vector): Update calls to shadow_lookup.
3694 (Fwhere_is_internal): Fix up handling of `remapped_sequences' and
3695 `remapped' so this flag is applicable to `sequence'. Be careful to
3696 perform remapping during shadow_lookup check of remapped_sequences.
3697
3698 2010-01-24 Eric Bélanger <snowmaniscool@gmail.com> (tiny change)
3699
3700 * image.c (png_load): Use png_sig_cmp instead of the obsolete
3701 png_check_sig, which has been removed in libpng 1.4.
3702
3703 2010-01-23 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
3704
3705 * filelock.c: Include utmp.h only when HAVE_UTMP_H (FreeBSD 9.x
3706 lacks this header file).
3707
3708 2010-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3709
3710 * xdisp.c (draw_glyphs): Update `start' for left_overwritten case
3711 as in Emacs 22.
3712
3713 2010-01-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3714
3715 * lisp.h (make_pure_string): String pointer arg now points to const.
3716
3717 * alloc.c (find_string_data_in_pure, make_pure_string): String pointer
3718 args now point to const.
3719
3720 2010-01-22 Eli Zaretskii <eliz@gnu.org>
3721
3722 * lread.c (Fload): Don't treat files without .elc extension as
3723 byte-compiled if they are ``magic'', i.e. `openp' returned -2 for
3724 them. (bug#5303)
3725
3726 2010-01-20 Kenichi Handa <handa@m17n.org>
3727
3728 * coding.c (consume_chars): If ! multibyte and the encoder is ccl,
3729 treat the source as actual byte sequence.
3730
3731 2010-01-19 Alan Mackenzie <acm@muc.de>
3732
3733 Fix spurious before-change-functions invocation from (insert ?\n).
3734 * textprop.c (set_text_properties): Rename parameter
3735 `signal_after_change_p' to `coherent_change_p', and make the
3736 invocation of `modify_region' conditional on it.
3737
3738 2010-01-19 Jan Djärv <jan.h.d@swipnet.se>
3739
3740 * xsettings.c (apply_xft_settings): Save settings in Vxft_settings
3741 for debug purpose.
3742 (syms_of_xsettings): Declare xft-settings.
3743
3744 2010-01-18 Chong Yidong <cyd@stupidchicken.com>
3745
3746 * editfns.c (Fcurrent_time_string): Doc fix (Bug#5408).
3747
3748 2010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
3749
3750 * xterm.c (event_handler_gdk): Block input (Bug#5037).
3751
3752 2010-01-16 Chong Yidong <cyd@stupidchicken.com>
3753
3754 * emacs.c (standard_args): Adjust arg priorities to reflect how
3755 they are processed in startup.el.
3756
3757 2010-01-16 Andreas Schwab <schwab@linux-m68k.org>
3758
3759 * Makefile.in (lisp, shortlisp): Update.
3760
3761 2010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
3762
3763 * xterm.c (x_term_init): Instead of inhibiting GC while running Lisp
3764 code, link the new kboard into all_kboard before running Lisp code,
3765 and protect the new terminal with GCPRO (Bug#5365).
3766 (x_term_init): Remove unused var `atom'.
3767 (x_delete_display, x_delete_terminal): Remove unused var `i'.
3768
3769 2010-01-15 Jan Djärv <jan.h.d@swipnet.se>
3770
3771 * xfns.c (x_get_current_desktop, x_get_desktop_workarea): New functions.
3772 (Fx_create_frame): Call x_get_current_desktop and x_get_desktop_workarea
3773 to find out usable size of the desktop. Don't make frames larger than
3774 this. Bug #3643.
3775
3776 2010-01-15 Kenichi Handa <handa@m17n.org>
3777
3778 * xdisp.c (CHAR_COMPOSED_P): New arg END_CHARPOS. Callers changed.
3779
3780 2010-01-15 Chong Yidong <cyd@stupidchicken.com>
3781
3782 * nsterm.m (Qnone): Define.
3783
3784 * nsfns.m (Qnone): Move definition to nsterm.m.
3785
3786 2010-01-14 Kenichi Handa <handa@m17n.org>
3787
3788 * coding.c (detect_coding_iso_2022): Fix handling of euc-xx coding
3789 systems.
3790
3791 2010-01-14 Kenichi Handa <handa@m17n.org>
3792
3793 Make auto-composition work on all buffers even if they are
3794 fundamental mode.
3795
3796 * composite.c (Vauto_composition_mode): New variable.
3797 (composition_compute_stop_pos): Check Vauto_composition_mode
3798 instead of Vauto_composition_function.
3799 (composition_adjust_point, Ffind_composition_internal): Likewise.
3800 (syms_of_composite): Declare Lisp variable
3801 "auto-composition-mode" here.
3802
3803 2010-01-13 Chong Yidong <cyd@stupidchicken.com>
3804
3805 * xterm.c (x_term_init): Avoid garbage-collecting the new terminal
3806 during call to vendor-specific-keysyms (Bug#5365).
3807
3808 2010-01-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3809
3810 * keyboard.c (input_available_signal) [SYNC_INPUT]:
3811 Call SIGNAL_THREAD_CHECK (Bug#5333).
3812
3813 * atimer.c (alarm_signal_handler) [!SYNC_INPUT]:
3814 Call SIGNAL_THREAD_CHECK.
3815
3816 2010-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
3817
3818 Try to fix bug#5314. This is probably not the final word, tho.
3819 * buffer.c (Fset_buffer_modified_p): Try and be careful not to modify
3820 recent-auto-save-p as a side-effect.
3821 * buffer.h (BUF_AUTOSAVE_MODIFF): New macro.
3822 * buffer.c (Fkill_buffer, reset_buffer):
3823 * editfns.c (Fsubst_char_in_region):
3824 * fileio.c (Finsert_file_contents, Fdo_auto_save)
3825 (Fset_buffer_auto_saved, Frecent_auto_save_p): Use it.
3826
3827 2010-01-13 Kenichi Handa <handa@m17n.org>
3828
3829 Display buffer name, etc. in mode line by composing correctly.
3830
3831 * xdisp.c (reseat_to_string): Call composition_compute_stop_pos if
3832 STRING is not nil.
3833 (display_mode_element): Adjust for the change of
3834 decode_mode_spec and display_line.
3835 (decode_mode_spec): Change arg MULTIBYTE to STRING.
3836 (display_string): Handle the case that STRING is non-null and
3837 LISP_STRING is not nil.
3838
3839 * xterm.c (x_draw_composite_glyph_string_foreground):
3840 Pay attention to s->face->overstrike.
3841
3842 * composite.c (composition_reseat_it): Don't check PT if STRING is
3843 non nil.
3844
3845 2010-01-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3846
3847 * keyboard.c (read_char): Don't apply previous change when current
3848 buffer is unchanged by command execution.
3849
3850 2010-01-12 Jan Djärv <jan.h.d@swipnet.se>
3851
3852 * keyboard.c (read_char): Return after executing from special map.
3853
3854 2010-01-12 Glenn Morris <rgm@gnu.org>
3855
3856 * emacs.c (REPORT_EMACS_BUG_PRETEST_ADDRESS): Set it to
3857 bug-gnu-emacs rather than emacs-pretest-bug.
3858
3859 2010-01-11 Chong Yidong <cyd@stupidchicken.com>
3860
3861 * nsterm.m (syms_of_nsterm): Initialize Qcontrol etc. before
3862 initializing the Lisp variables that depend on them.
3863
3864 2010-01-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3865
3866 * xfns.c (x_set_menu_bar_lines) [!USE_X_TOOLKIT && !USE_GTK]:
3867 Clear areas that will not be updated after change of menu bar lines.
3868 Clear the menu bar window's current matrix when the window gets empty.
3869
3870 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
3871
3872 * intervals.h, textprop.c (extend_property_ranges): Return value
3873 and args changed. Discard properties that begin at or after the
3874 new end (Bug#5306).
3875
3876 * editfns.c (Fformat): Caller changed.
3877
3878 * nsterm.m (ns_set_default_prefs): Delete function.
3879 (syms_of_nsterm): Initialize ns_command_modifier,
3880 ns_control_modifier, ns_function_modifier, ns_antialias_text, and
3881 ns_antialias_threshold here, not in ns_term_init (Bug#4113).
3882
3883 * xdisp.c (pos_visible_p): Check for invisible text at the correct
3884 position (Bug#4040).
3885
3886 2010-01-09 Eli Zaretskii <eliz@gnu.org>
3887
3888 * editfns.c (Ffloat_time): Doc fix.
3889
3890 2010-01-09 Jan Djärv <jan.h.d@swipnet.se>
3891
3892 * xfns.c (Fx_create_frame): Don't create frame larger than display
3893 by default bug#3643.
3894
3895 2010-01-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3896
3897 * frame.h (FRAME_TOP_MARGIN_HEIGHT): New macro.
3898 (FRAME_LINE_TO_PIXEL_Y, FRAME_PIXEL_Y_TO_LINE): Take account of pseudo
3899 windows above internal border.
3900
3901 * window.h (WINDOW_MENU_BAR_P, WINDOW_TOOL_BAR_P): New macros.
3902 (WINDOW_TOP_EDGE_Y, WINDOW_BOTTOM_EDGE_Y): Take account of pseudo
3903 windows above internal border.
3904
3905 * xdisp.c (get_glyph_string_clip_rects, init_glyph_string): Don't treat
3906 tool bar windows specially.
3907
3908 * xfns.c (x_set_tool_bar_lines): Take account of menu bar height.
3909
3910 * xterm.c (x_after_update_window_line): Don't treat tool bar windows
3911 specially.
3912 (XTflash): Take account of menu bar height.
3913
3914 * w32term.c (x_after_update_window_line): Don't treat tool bar windows
3915 specially.
3916
3917 2010-01-08 Jan Djärv <jan.h.d@swipnet.se>
3918
3919 * dispnew.c (change_frame_size_1): newwidth == FRAME_COLS (f) must
3920 also be true before we can return early (bug #5339).
3921
3922 2010-01-06 David Reitter <david.reitter@gmail.com>
3923
3924 * nsfns.m (ns_get_screen): Rewrite, returning NULL for non-NS.
3925 (Fns_display_usable_bounds): Rewrite, computing bounds properly
3926 (Bug#3233).
3927
3928 2010-01-06 Jan Djärv <jan.h.d@swipnet.se>
3929
3930 * font.c (font_open_entity): Enable chache and call cached_font_ok
3931 for the driver if defined.
3932 (QCuser_spec): New symbol.
3933 (font_spec_from_name): Save name as user-spec.
3934 (font_load_for_lface): Keep user-spec instead of name.
3935 (font_open_by_name): Save name as user-spec.
3936 (syms_of_font): Initialize QCuser_spec.
3937 (font_clear_prop): Clear name if it exists in font (bug#5157).
3938
3939 * xftfont.c (xftfont_open): Call xftfont_add_rendering_parameters.
3940 (xftfont_add_rendering_parameters, xftfont_cached_font_ok): New.
3941 (syms_of_xftfont): Initialize xftfont_driver.cached_font_ok.
3942
3943 * font.h (struct font_driver): Add cached_font_ok.
3944
3945 * xterm.c (x_clear_frame): Queue draw for scroll bars.
3946
3947 2010-01-05 Jan Djärv <jan.h.d@swipnet.se>
3948
3949 * xterm.c (x_new_font): Move code for setting rows/cols before
3950 resizing ...
3951 (x_set_window_size): ... to here. Bug #2568.
3952
3953 * gtkutil.c (xg_clear_under_internal_border): New function.
3954 (xg_frame_resized, xg_frame_set_char_size):
3955 Call xg_clear_under_internal_border.
3956 (xg_update_scrollbar_pos): Clear under old scroll bar position.
3957
3958 2010-01-05 Chong Yidong <cyd@stupidchicken.com>
3959
3960 * keyboard.c (read_key_sequence): Catch keyboard switch after
3961 making a new tty frame (Bug#5095).
3962
3963 2010-01-05 Kenichi Handa <handa@m17n.org>
3964
3965 * fontset.c (fontset_find_font): Fix getting the frame pointer.
3966
3967 2010-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
3968
3969 * dbusbind.c (xd_remove_watch): Avoid trying to convert a void* to
3970 Lisp_Object, preferring to convert a lisp_Object to a void* instead.
3971 (Fdbus_init_bus): Use XHASH to get a scalar value from a Lisp_Object.
3972
3973 2010-01-03 Michael Albinus <michael.albinus@gmx.de>
3974
3975 * dbusbind.c (xd_add_watch): Improve debug message.
3976 (xd_remove_watch): Improve debug message. If DATA is the session
3977 bus, unset D-Bus session environment.
3978 (Fdbus_init_bus): Pass the bus as argument to
3979 dbus_connection_set_watch_functions. (Bug#5283)
3980
3981 2010-01-01 Chong Yidong <cyd@stupidchicken.com>
3982
3983 * nsterm.m (ns_get_color): Fix buffer overflow (Bug#4763).
3984
3985 * lread.c (syms_of_lread): Make it clearer that these are the
3986 names of loaded files (Bug#5068).
3987
3988 * eval.c (run_hook_with_args): Handle the case where the global
3989 value has the obsolete single-function form (Bug#5026).
3990
3991 2009-12-27 Chong Yidong <cyd@stupidchicken.com>
3992
3993 * minibuf.c (Fall_completions): Minor optimization.
3994
3995 2009-12-26 Eli Zaretskii <eliz@gnu.org>
3996
3997 * .gdbinit (pgx): Fix display of composite glyphs.
3998 Display cmp.from and cmp.to as well.
3999 (pitx): Fix last change.
4000
4001 2009-12-25 Kenichi Handa <handa@m17n.org>
4002
4003 * composite.h (composition_adjust_point): Update prototype.
4004
4005 * composite.c (composition_reseat_it): Don't make a composition
4006 spanning over point.
4007 (CHAR_COMPOSABLE_P): Treat U+200C (ZWNJ) and U+200D (ZWJ) as
4008 composable characters.
4009 (composition_adjust_point): New arg NEW_PT. Callers changed.
4010
4011 * keyboard.c (command_loop_1): Force redisplay if the last point
4012 was within a composition.
4013 (adjust_point_for_property): Don't adjust point for automatic
4014 composition when called after buffer modification.
4015
4016 2009-12-19 Eli Zaretskii <eliz@gnu.org>
4017
4018 * .gdbinit (pitx): Don't use enum names, use their values.
4019 Remove reference to non-existing value GET_FROM_COMPOSITION.
4020 (pgx): Don't use enum names, use their values.
4021 (pitmethod): New helper command.
4022 (pitx): Use it to display iteration method.
4023 (pgrowit): New command.
4024
4025 * makefile.w32-in ($(BLD)/cmds.$(O)): Depend on frame.h.
4026
4027 Update dependencies in Makefile.in.
4028
4029 * Makefile.in (alloc.o): Depend on termhooks.h.
4030 (atimer.o): Depend on blockinput.h.
4031 (buffer.o): Depend on indent.h, keyboard.h, coding.h, keymap.h,
4032 and frame.h.
4033 (callint.o): Depend on systime.h, coding.h, and composite.h.
4034 (callproc.o): Depend on buffer.h.
4035 (casefiddle.o): Don't depend on charset.h.
4036 (casetab.o): Depend on character.h.
4037 (ccl.o): Depend on composite.h.
4038 (chartab.o): Depend on ccl.h.
4039 (cm.o): Depend on dispextern.h.
4040 (cmds.o): Depend on systime.h, coding.h, frame.h, and composite.h.
4041 (coding.o): Don't depend on $(INTERVALS_H).
4042 (composite.o): Don't depend on dispextern.h explicitly (it's in
4043 $(INTERVALS_H)). Depend on ccl.h.
4044 (data.o): Depend on systime.h, coding.h, composite.h,
4045 dispextern.h, font.h, and ccl.h.
4046 (dired.o): Depend on composite.h.
4047 (dispnew.o): Depend on coding.h. Don't depend explicitly on
4048 composite.h (it's in $(INTERVALS_H)).
4049 (doc.o): Depend on systime.h, coding.h, and composite.h.
4050 (editfns.o): Don't depend explicitly on dispextern.h.
4051 (emacs.o): Depend on frame.h and coding.h.
4052 (eval.o): Depend on coding.h, composite.h, and xterm.h.
4053 (fileio.o): Depend on frame.h and commands.h. Don't depend
4054 explicitly on dispextern.h.
4055 (filelock.o): Don't depend on epaths.h and charset.h. Depend on
4056 composite.h.
4057 (fns.o): Don't depend on termhooks.h.
4058 (font.o): Depend on buffer.h, composite.h, fontset.h, and xterm.h.
4059 (fontset.o): Depend on blockinput.h, atimer.h, systime.h,
4060 coding.h, $(INTERVALS_H), window.h, xterm.h.
4061 (frame.o): Depend on coding.h, composite.h, termhooks.h, and ccl.h.
4062 (fringe.o): Depend on blockinput.h, atimer.h, and systime.h.
4063 (ftfont.o): Depend on blockinput.h, atimer.h, systime.h, coding.h,
4064 fontset.h, ccl.h, and ftfont.h.
4065 (ftxfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
4066 (gtkutil.o): Depend on dispextern.h and composite.h.
4067 (image.o): Depend on epaths.h, character.h, coding.h, composite.h,
4068 termhooks.h, and ccl.h.
4069 (indent.o): Depend on systime.h, coding.h, and $(INTERVALS_H).
4070 (intervals.o): Depend on systime.h and coding.h.
4071 (keyboard.o): Depend on composite.h and coding.h.
4072 (keymap.o): Depend on coding.h and frame.h.
4073 (lread.o): Depend on systime.h, frame.h, blockinput.h, and atimer.h.
4074 (macros.o): Depend on systime.h, coding.h, and composite.h.
4075 (menu.o): Depend on systime.h, coding.h, composite.h, window.h,
4076 and atimer.h.
4077 (minibuf.o): Depend on systime.h and coding.h. Don't depend on
4078 dispextern.h explicitly.
4079 (print.o): Depend on termhooks.h, coding.h, and ccl.h.
4080 Don't depend explicitly on dispextern.h and composite.h.
4081 (process.o): Depend on character.h, xgselect.h, and sysselect.h.
4082 (regex.o): Don't depend on charset.h.
4083 (scroll.o): Depend on systime.h, coding.h, composite.h, and window.h.
4084 (search.o): Don't depend explicitly on composite.h.
4085 (sound.o): Depend on atimer.h and systime.h.
4086 (syntax.o): Don't depend explicitly on composite.h.
4087 (sysdep.o): Depend on coding.h and composite.h.
4088 (term.o): Depend on xterm.h and buffer.h.
4089 (terminal.o): Depend on dispextern.h, composite.h, and systime.h.
4090 (textprop.o): Don't depend on dispextern.h explicitly.
4091 (undo.o): Depend on dispextern.h.
4092 (window.o): Depend on coding.h and termhooks.h. Don't depend on
4093 dispextern.h and composite.h explicitly.
4094 (xdisp.o): Depend on ccl.h.
4095 (xfaces.o): Depend on coding.h and ccl.h.
4096 (xfns.o): Depend on $(INTERVALS_H) and ccl.h.
4097 (xfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
4098 (xftfont.o): Depend on atimer.h, systime.h, fontset.h, ccl.h, and
4099 ftfont.h.
4100 (xgselect.o): New dependency.
4101 (xmenu.o): Depend on composite.h, keymap.h, and sysselect.h.
4102 (xselect.o): Depend on keyboard.h, coding.h, and composite.h.
4103 (xsettings.o): Depend on dispextern.h, keyboard.h, systime.h,
4104 coding.h, composite.h, blockinput.h, atimer.h, and termopts.h.
4105 (xsmfns.o): Depend on frame.h and dispextern.h.
4106 (xterm.o): Depend on intervals.h, keymap.h, xgselect.h, and
4107 sysselect.h.
4108
4109 2009-12-19 Andreas Schwab <schwab@linux-m68k.org>
4110
4111 * font.c (Fclear_font_cache): Pass correct cache argument to
4112 font_clear_cache.
4113
4114 2009-12-16 Andreas Schwab <schwab@linux-m68k.org>
4115
4116 * Makefile.in (prefix-args${EXEEXT}): Don't compile prefix-args.c
4117 twice.
4118
4119 2009-12-15 Chong Yidong <cyd@stupidchicken.com>
4120
4121 * xdisp.c (decode_mode_spec): Inhibit garbage collection when
4122 calling file-remote-p. Reported by Jim Meyering.
4123
4124 2009-12-15 Michael Albinus <michael.albinus@gmx.de>
4125
4126 * dbusbind.c (xd_retrieve_arg): Reorder declarations in order to
4127 avoid compiler warnings. (Bug #5217)
4128
4129 2009-12-14 Kenichi Handa <handa@m17n.org>
4130
4131 * coding.c (decode_coding_iso_2022): Ignore ISO_CODE_SS2_7 (0x19)
4132 in 8-bit encoding.
4133
4134 2009-12-13 Pat Thoyts <patthoyts@users.sourceforge.net> (tiny change)
4135
4136 * xfns.c (x_create_tip_frame): Set the extended window manager hint for
4137 tooltip windows.
4138
4139 2009-12-13 Jan Djärv <jan.h.d@swipnet.se>
4140
4141 * xterm.h (struct x_display_info): Add Xatom_net_window_type_tooltip and
4142 Xatom_net_window_type.
4143
4144 * xterm.c (x_term_init): Initialize Xatom_net_window_type_tooltip and
4145 Xatom_net_window_type.
4146
4147 * xterm.c (my_log_handler): New function.
4148 (x_term_init): Set my_log_handler as log handler during gtk_init
4149 so we can filter out buggy messages. (Bug #5120).
4150
4151 * xterm.c (xg_scroll_callback): Parameter list changed,
4152 use parameter GtkScrollType to determine scroll/line/page.
4153 Only allow dragging if a button < 4 is grabbed (bug #5177).
4154 (xg_end_scroll_callback): New function.
4155 (x_create_toolkit_scroll_bar): Pass xg_end_scroll_callback to
4156 xg_create_scroll_bar.
4157
4158 * gtkutil.c (xg_gtk_scroll_destroy): Remove XG_LAST_SB_DATA handling.
4159 (scroll_end_callback): Remove.
4160 (xg_create_scroll_bar): Add parameter end_callback, bind it to
4161 button-release-event. Replace value-changed event with change-value,
4162 bug #5177,
4163 (xg_event_is_for_scrollbar): Only return true if button is less than 4,
4164 bug #5177.
4165
4166 * gtkutil.h (XG_LAST_SB_DATA): Remove.
4167 (xg_create_scroll_bar): Add GCallback end_callback.
4168
4169 * xftfont.c (QClcdfilter): New variable.
4170 (xftfont_open): Parse constant names for RGBA, HINT_STYLE and LCDFILTER.
4171 (syms_of_xftfont): Initialize QClcdfilter.
4172
4173 2009-12-12 Jan Djärv <jan.h.d@swipnet.se>
4174
4175 * xsettings.c (struct xsettings): Add member seen.
4176 (parse_xft_settings): Update member seen with what we have read.
4177 Return non-zero if Xft-settings have been parsed, 0 otherwise.
4178 (apply_xft_settings): Only update Xft settings with what member seen
4179 indicates as new.
4180
4181 2009-12-12 Eli Zaretskii <eliz@gnu.org>
4182
4183 * dispextern.h (struct text_pos): Use EMACS_INT;
4184 (struct glyph): Use EMACS_INT for charpos.
4185 (struct it): Use EMACS_INT for stop_charpos, end_charpos,
4186 region_beg_charpos, region_end_charpos,
4187 redisplay_end_trigger_charpos, and also for
4188 iterator_stack_entry.end_charpos and
4189 iterator_stack_entry.stop_charpos.
4190
4191 2009-12-12 Jan Djärv <jan.h.d@swipnet.se>
4192
4193 * gtkutil.c (scroll_end_callback): New function (bug #5177).
4194 (xg_create_scroll_bar): Call scroll_end_callback on button release
4195 event (bug #5177).
4196 (xg_event_is_for_scrollbar): != replaced with ==.
4197
4198 2009-12-12 Kenichi Handa <handa@m17n.org>
4199
4200 * ftfont.c (struct ftfont_info): New member matrix.
4201 (ftfont_open): Setup xftfont_info->matrix.
4202 (MFLTFontFT): New member matrix.
4203 (FLOOR, CEIL, ROUND): New macros.
4204 (ftfont_get_metrics): Handle matrix transformation.
4205 (ftfont_shape_by_flt): New arg matrix. Callers changed.
4206
4207 * xftfont.c (struct xftfont_info): New member matrix.
4208 (xftfont_open): Setup xftfont_info->matrix.
4209
4210 2009-12-10 Kenichi Handa <handa@m17n.org>
4211
4212 * xdisp.c (append_space_for_newline): Consider face-remapping.
4213
4214 2009-12-09 Andreas Schwab <schwab@linux-m68k.org>
4215
4216 * xsettings.c: Include "keyboard.h".
4217
4218 * gtkutil.c (xg_tool_bar_proxy_help_callback): Fix missing return.
4219
4220 Fix implicit function declarations.
4221 * cmds.c: Include "frame.h".
4222 * frame.c: Include "font.h" also if !HAVE_WINDOW_SYSTEM.
4223 * frame.h: Move declaration of delete_frame outside of
4224 HAVE_WINDOW_SYSTEM.
4225
4226 2009-12-09 Ken Brown <kbrown@cornell.edu> (tiny change)
4227
4228 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC): New variable.
4229
4230 * emacs.c (main): Set the G_SLICE environment variable for Cygwin
4231 GTK builds.
4232
4233 2009-12-07 Andreas Schwab <schwab@linux-m68k.org>
4234
4235 * unexelf.c (unexec): Don't search for .data twice.
4236
4237 2009-12-05 Chong Yidong <cyd@stupidchicken.com>
4238
4239 * xdisp.c (push_display_prop): Don't set avoid_cursor_p. Return 0
4240 if push failed.
4241 (handle_line_prefix): Set avoid_cursor_p here. Check return value
4242 of push_display_prop (Bug#5000).
4243
4244 * xfaces.c (Fx_family_fonts): Handle 2009-07-14 change to return
4245 value of font_list_entities (Bug#5085).
4246
4247 2009-12-04 Juanma Barranquero <lekktu@gmail.com>
4248
4249 Fix `string-to-number' to deal consistently with integers and floats.
4250 * lread.c (isfloat_string): New argument ignore_trailing to accept all
4251 trailing characters, not just whitespace.
4252 (read1): Pass new arg 0 to keep old behavior.
4253 * data.c (Fstring_to_number): Pass 1 to isfloat_string to ignore
4254 trailing chars, as it is already done for integers. Doc fixes.
4255 * lisp.h (isfloat_string): Add new arg to declaration of isfloat_string.
4256
4257 2009-12-04 Eli Zaretskii <eliz@gnu.org>
4258
4259 * dispextern.h (enum prop_idx) <AUTO_COMPOSED_PROP_IDX>:
4260 Delete unused enumeration value.
4261
4262 2009-12-03 Eli Zaretskii <eliz@gnu.org>
4263
4264 * Makefile.in (lisp, shortlisp): Replace indian.el with indian.elc.
4265
4266 2009-12-03 Daniel Hackney <dan@haxney.org> (tiny change)
4267
4268 * process.c (Fmake_network_process): Fix up the tests for
4269 "connectionless socket", so they DTRT for seqpacket sockets as well.
4270
4271 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
4272
4273 * process.c (Qseqpacket): New symbol.
4274 (HAVE_SEQPACKET): New macro.
4275 (Fmake_network_process): Accept new :type `seqpacket'.
4276 (init_process): Add `seqpacket' feature when applicable.
4277 (syms_of_process): Initialize Qseqpacket.
4278
4279 2009-12-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4280
4281 * font.c (font_load_for_lface, font_open_by_name): Don't store name
4282 if entity is Qnil.
4283
4284 2009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
4285
4286 * print.c (print_preprocess): Preprocess the key_and_value table of
4287 hashtables, even tho they're "hidden" (bug#5082).
4288
4289 2009-11-29 Jan Djärv <jan.h.d@swipnet.se>
4290
4291 * frame.c (frame_make_pointer_invisible)
4292 (frame_make_pointer_visible): Declare f before statements.
4293
4294 2009-11-28 Eli Zaretskii <eliz@gnu.org>
4295
4296 * Makefile.in [!AUTO_DEPEND]: Remove outdated comment about
4297 omitted dependencies on lisp.h.
4298
4299 2009-11-27 Jan Djärv <jan.h.d@swipnet.se>
4300
4301 * xftfont.c (xftfont_end_for_frame): Just return if dpyinfo->display
4302 is NULL.
4303
4304 * xterm.c (x_delete_terminal): Set dpyinfo->display to NULL.
4305
4306 * frame.c (frame_make_pointer_invisible)
4307 (frame_make_pointer_visible): Just return if there isn't any selected
4308 frame.
4309
4310 * search.c (simple_search): Remove warning by making *p const.
4311
4312 2009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
4313
4314 * xdisp.c (power_letter): Remove duplicate const.
4315
4316 2009-11-25 Jan Djärv <jan.h.d@swipnet.se>
4317
4318 * term.c (delete_tty): Remove check for last terminal (bug#4970).
4319
4320 * xsettings.c: Revert changes from 2009-11-23. Just use Xft
4321 defaults (bug #5025).
4322
4323 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
4324
4325 * insdel.c (adjust_markers_for_delete): Move it in the
4326 right direction! (bug#4803)
4327
4328 2009-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4329
4330 * font.c (font_open_entity): Don't use ASET if font_object is Qnil.
4331
4332 * xterm.c (x_new_font): Update f->scroll_bar_actual_width.
4333
4334 2009-11-24 Glenn Morris <rgm@gnu.org>
4335
4336 * frame.c (focus-follows-mouse): Mention mouse-autoselect-window.
4337
4338 2009-11-23 Jan Djärv <jan.h.d@swipnet.se>
4339
4340 * Makefile.in: Must create deps for ecrt0.o in its rule.
4341
4342 * xfns.c (Fx_select_font): Try to convert Fontconfig name to Gtk name
4343 because that is what Gtk+ font dialog understands.
4344
4345 * font.c (font_make_object, Fcopy_font_spec): Use Fcopy_alist instead
4346 of Fcopy_sequence.
4347 (font_open_by_name): Put name given into QCname for font-object returned.
4348
4349 * frame.c (x_set_font): Save original font name as frame parameter
4350 font-parameter.
4351
4352 * xsettings.c (set_default_xft_settings): New function.
4353 (init_xfd_settings): Call set_default_xft_settings if no XSETTINGS window
4354 is found.
4355
4356 2009-11-22 Andreas Schwab <schwab@linux-m68k.org>
4357
4358 * search.c (simple_search): Avoid CHAR_TO_BYTE in inner loop when
4359 searching backwards through multibyte buffer.
4360
4361 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
4362
4363 * xterm.c: #include xgselect.h.
4364 (x_initialize): Call xgselect_initialize.
4365
4366 * xsettings.c (something_changedCB): C++ comments => C comments.
4367 (init_gconf): Do not deal with any GLib file descriptors, xg_select
4368 does that now.
4369
4370 * gtkutil.c (xg_timer, xg_process_timeouts, xg_start_timer)
4371 (xg_stop_timer, menu_grab_callback_cnt, menu_grab_callback)
4372 (scroll_bar_button_cb): Remove.
4373 (create_menus): C++ comments => C comments. Don't bind grab-notify
4374 event.
4375 (xg_create_scroll_bar): Don't bind button-press-event and
4376 button-release-event.
4377
4378 * process.c: Include xgselect.h if defined (USE_GTK) ||
4379 defined (HAVE_GCONF).
4380 (wait_reading_process_output): Call xg_select for the same condition.
4381
4382 * xgselect.c (xg_select): New function to better integrate with
4383 GLib/Gtk event handling. Needed if GConf daemon dies/restarts.
4384
4385 * xgselect.h: New file, declare xg_select, xgselect_initialize.
4386
4387 * Makefile.in (XOBJ): Add xgselect.o.
4388
4389 2009-11-21 Andreas Schwab <schwab@linux-m68k.org>
4390
4391 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH):
4392 Remove ignored second argument. All callers changed.
4393 * regex.c (STRING_CHAR, STRING_CHAR_AND_LENGTH, RE_STRING_CHAR)
4394 (RE_STRING_CHAR_AND_LENGTH): Likewise.
4395 * xdisp.c (string_char_and_length): Likewise.
4396
4397 2009-11-21 Dan Nicolaescu <dann@ics.uci.edu>
4398
4399 * xterm.c (x_new_font):
4400 * print.c (print_object):
4401 * cmds.c (Fself_insert_command): Move declarations before statements.
4402
4403 2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
4404
4405 * s/cygwin.h: Remove unneeded linker flags.
4406
4407 2009-11-20 Jan Djärv <jan.h.d@swipnet.se>
4408
4409 * xfns.c (x_default_font_parameter): Call xsettings_get_system_font.
4410
4411 * xsettings.h: Declare xsettings_get_system_font.
4412
4413 * xsettings.c (xsettings_get_system_font): New function.
4414 (init_gconf): No use initiating gconf unless we have Xft also.
4415 (syms_of_xsettings): Only provide system-font-setting if HAVE_XFT and
4416 HAVE_GCONF.
4417
4418 * gtkutil.c (xg_modify_menubar_widgets): If menubar is totally empty
4419 add a blank entry so it doesn't collapse into nothing.
4420
4421 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
4422
4423 * lread.c (Funintern): Comment out last change.
4424
4425 2009-11-19 Richard Stallman <rms@gnu.org>
4426
4427 * lread.c (Funintern): Error if symbol is t or nil.
4428
4429 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
4430
4431 * insdel.c (make_gap_larger): Don't make as many assumptions about the
4432 representation of Lisp integers.
4433 Reported by MJ Chan <mjchan.inbox@gmail.com>.
4434
4435 2009-11-17 Andreas Schwab <schwab@linux-m68k.org>
4436
4437 * lisp.h: Remove declaration of Ffont_get_system_font.
4438 * xfns.c: Move include of "xsettings.h".
4439 * xsettings.h: Use EXFUN to declare Ffont_get_system_font.
4440
4441 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
4442
4443 * xsettings.c (something_changedCB, Ffont_get_system_font):
4444 Check use_system_font.
4445 (syms_of_xsettings): DEFVAR font-use-system-font.
4446
4447 2009-11-17 Andreas Schwab <schwab@linux-m68k.org>
4448
4449 * xfns.c (x_default_font_parameter): Remove dead assignment.
4450
4451 * lisp.h (Fbyteorder, init_font, Ffont_get_system_font): Declare.
4452
4453 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
4454
4455 * xftfont.c (xftfont_fix_match): Older versions of fontconfig do
4456 not have FC_LCD_*. #define them if not there.
4457
4458 * xsettings.c (parse_xft_settings, apply_xft_settings): Ditto.
4459
4460 * xterm.h (struct x_display_info): Add atoms and Window for xsettings.
4461
4462 * xterm.c (handle_one_xevent): Call xft_settings_event for
4463 ClientMessage, PropertyNotify and DestroyNotify.
4464 (x_term_init): If we have XFT, get DPI from Xft.dpi.
4465 Call xsettings_initialize.
4466
4467 * xftfont.c (xftfont_fix_match): New function.
4468 (xftfont_open): Call XftDefaultSubstitute before XftFontMatch.
4469 Call xftfont_fix_match after XftFontMatch.
4470
4471 * xfont.c (xfont_driver): Initialize all members.
4472
4473 * xfns.c (x_default_font_parameter):
4474 Try font from Ffont_get_system_font.
4475 Do not get font from x_default_parameter if we got one from
4476 Ffont_get_system_font.
4477 (Fx_select_font): Get the defaut font name from :name of FRAME_FONT(f).
4478
4479 * w32font.c (w32font_driver): Initialize all members.
4480
4481 * termhooks.h (enum event_kind): CONFIG_CHANGED_EVENT is new.
4482
4483 * lisp.h: Declare syms_of_xsettings.
4484
4485 * keyboard.c (kbd_buffer_get_event, make_lispy_event):
4486 Handle CONFIG_CHANGED_EVENT.
4487
4488 * ftfont.c (ftfont_filter_properties): New function.
4489
4490 * frame.c (x_set_font): Remove unused variable lval.
4491
4492 * font.h (struct font_driver): Add filter_properties.
4493
4494 * font.c (font_put_extra): Don't return if val is nil, it means
4495 boolean option is off.
4496 (font_parse_fcname): Collect all extra properties in extra_props
4497 and call filter_properties for all drivers with extra_props and
4498 font as parameter.
4499 (font_open_entity): Do not use cache, it does not pick up new
4500 fontconfig settings like hinting.
4501 (font_load_for_lface): If spec had a name in it, store it in entity.
4502
4503 * emacs.c (main): Call syms_of_xsettings.
4504
4505 * config.in: HAVE_GCONF is new.
4506
4507 * Makefile.in (GCONF_CFLAGS, GCONF_LIBS): New variables for HAVE_GCONF.
4508 xsettings.o is new.
4509
4510 2009-11-17 Kenichi Handa <handa@m17n.org>
4511
4512 * xdisp.c (x_produce_glyphs): Consider face-remapping when falling
4513 back to the default font in case that no suitable font is found.
4514
4515 2009-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
4516
4517 * menu.c (Fx_popup_menu) [HAVE_NS]: Use generic code for window edge.
4518 Suggested by Chad Brown <yandros@mit.edu>.
4519 (push_menu_item): Use MENU_ITEMS_ITEM_* names.
4520
4521 2009-11-16 Jan Djärv <jan.h.d@swipnet.se>
4522
4523 * xmenu.c (x_menu_wait_for_event): Call XFlush before select.
4524
4525 2009-11-14 Andreas Schwab <schwab@linux-m68k.org>
4526
4527 * Makefile.in: Ignore errors from mkdir when creating deps directory.
4528
4529 2009-11-14 Jan Djärv <jan.h.d@swipnet.se>
4530
4531 * gtkutil.c (xg_update_frame_menubar): Do nothing if menubar already
4532 has a parent.
4533
4534 * Makefile.in: If AUTO_DEPEND is defined, make gcc generate
4535 dependency files in deps/. Include those files into Makefile.
4536
4537 * config.in: Generated (AUTO_DEPEND).
4538
4539 2009-11-13 Michael Albinus <michael.albinus@gmx.de>
4540
4541 * dbusbind.c (Vdbus_registered_objects_table): Rename from
4542 Vdbus_registered_functions_table, because it contains also
4543 properties. Fix docstring.
4544 (Fdbus_call_method, Fdbus_call_method_asynchronously): Fix docstring.
4545
4546 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
4547
4548 * alloc.c (mark_object): Don't reprocess marked strings.
4549 Check vector's markbit earlier. Adjust calls to mark_vectorlike.
4550 (mark_vectorlike, mark_char_table): Assume the object is unmarked.
4551
4552 2009-11-13 Kenichi Handa <handa@m17n.org>
4553
4554 * category.c (word_boundary_p): Adjust for the change of the
4555 semantics of Vword_combining_categories.
4556 (Vword_combining_categories): Describe the slight change of the
4557 semantics.
4558
4559 2009-11-13 Eli Zaretskii <eliz@gnu.org>
4560
4561 * menu.c (Fx_popup_menu): Call Fx_hide_tip only if HAVE_WINDOW_SYSTEM.
4562
4563 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Revert last change.
4564
4565 2009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
4566
4567 * xdisp.c (syms_of_xdisp): Fix typo in last change.
4568
4569 2009-11-12 Juanma Barranquero <lekktu@gmail.com>
4570
4571 * makefile.w32-in: Update dependencies; add dependencies to lisp.h.
4572
4573 2009-11-11 David Reitter <david.reitter@gmail.com>
4574
4575 * menu.c (Fx_popup_menu): Remove left-over debugging code and rename
4576 variables to fix 2009-11-09 change.
4577
4578 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
4579
4580 * process.c (ifflag_def): Make flag_sym constant.
4581 (Fnetwork_interface_info): Use a constant pointer.
4582 (ifflag_table):
4583 * xfns.c (cursor_bits):
4584 * xdisp.c (power_letter):
4585 * termcap.c (speeds, esctab):
4586 * sysdep.c (baud_convert):
4587 * keyboard.c (lispy_accent_codes, modifier_names):
4588 * image.c (xbm_format, xpm_format, pbm_format, png_format)
4589 (jpeg_format, tiff_format, gif_format, svg_format)
4590 (interlace_start, interlace_increment, gs_format):
4591 * gtkutil.c (separator_names):
4592 * fringe.c (swap_nibble):
4593 * fns.c (base64_value_to_char, base64_char_to_value):
4594 * fileio.c (make_temp_name_tbl):
4595 * coding.c (suffixes): Make constant.
4596
4597 * frame.c (make_initial_frame):
4598 * buffer.c (init_buffer_once): Use make_pure_c_string instead of
4599 build_string.
4600 * alloc.c (syms_of_alloc): Build Vmemory_signal_data in pure memory.
4601
4602 * s/freebsd.h:
4603 * s/netbsd.h: Remove code referring to non-existent file: unexsunos4.o.
4604
4605 * Makefile.in: Add dependencies to lisp.h. Remove dependencies
4606 for non-existent files: unexmips.c, unexnext.c, abbrev.c, malloc.c.
4607
4608 * xfns.c (syms_of_xfns): Use make_pure_string instead of build_string.
4609 * xterm.c (syms_of_xterm):
4610 * xfaces.c (syms_of_xfaces):
4611 * xdisp.c (syms_of_xdisp):
4612 * lread.c (syms_of_lread):
4613 * keyboard.c (syms_of_keyboard): Use make_pure_c_string instead of
4614 build_string.
4615
4616 * doc.c (Fsnarf_documentation): Purecopy Vbuild_files.
4617
4618 2009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
4619
4620 * fns.c (Fplist_get): Merge the active and the commented out code.
4621
4622 2009-11-10 Jan Djärv <jan.h.d@swipnet.se>
4623
4624 * keyboard.h: Declare timer_check.
4625
4626 * keyboard.c (timer_check_2): New function that does what the old
4627 timer_check did.
4628 (timer_check): Call timer_check_2 until -1 or a non-zero time is
4629 returned, i.e. don't return -1 with timers pending.
4630
4631 * process.c: Remove extern declaration of timer_check.
4632
4633 * xmenu.c (x_menu_wait_for_event): Remove code that did a timeout
4634 even if timer_check returned -1.
4635
4636 * gtkutil.c (xg_dialog_response_cb): Data is now a struct
4637 xg_dialog_data.
4638 (pop_down_dialog): Destroy widget (if any), cancel timer and unref
4639 the event loop.
4640 (xg_maybe_add_timer, xg_dialog_run): New functions (bug #4574).
4641 (xg_get_file_name, xg_get_font_name): Call xg_dialog_run (bug #4574).
4642 Destroy the dialog after xg_dialog_run.
4643
4644 2009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
4645
4646 * menu.c (Fx_popup_menu) [HAVE_NS]: Remove unused vars.
4647
4648 2009-11-10 Jan Djärv <jan.h.d@swipnet.se>
4649
4650 * xmenu.c (xmenu_show): Must not be static after 2009-11-09 changes.
4651
4652 2009-11-09 Juanma Barranquero <lekktu@gmail.com>
4653
4654 * menu.c [HAVE_NTGUI]: Declare current_popup_menu.
4655
4656 2009-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
4657
4658 * menu.c (Fx_popup_menu): Consolidate versions from xmenu.c,
4659 w32menu.c, and nsmenu.m.
4660 Simplify the obsolete case where position is nil.
4661 (cleanup_popup_menu): New function, moved from nsmenu.m.
4662 (struct skp): Remove slot `notreal'.
4663 (single_keymap_panes, keymap_panes): Remove arg `notreal' and
4664 adjust callers.
4665 (single_menu_item): Adjust call to parse_menu_item.
4666 (syms_of_menu): Defsubr x-popup-menu.
4667 * menu.h (Vmenu_updating_frame): Consolidate declarations from *menu.c.
4668 (keymap_panes): Don't export any more.
4669 (mouse_position_for_popup, w32_menu_show, ns_menu_show)
4670 (xmenu_show): Declare.
4671 * keyboard.c (parse_menu_item): Remove arg `notreal'.
4672 (menu_bar_item, read_char_minibuf_menu_prompt): Adjust callers.
4673 * keyboard.h (parse_menu_item): Update declaration.
4674 * xmenu.c (Fx_popup_menu): Remove.
4675 (syms_of_xmenu): Don't defsubr x-popup-menu.
4676 * w32menu.c (Fx_popup_menu): Remove.
4677 (syms_of_w32menu): Don't defsubr x-popup-menu.
4678 * nsmenu.m (cleanup_popup_menu): Remove.
4679 (ns_menu_show): Rename from ns_popup_menu and remove all the code
4680 moved to menu.c's Fx_popup_menu.
4681 (Fx_popup_menu): Remove.
4682 (syms_of_nsmenu): Don't defsubr x-popup-menu, and don't initialize
4683 menu_items (it's done in menu.c already).
4684
4685 2009-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
4686
4687 * keyboard.c (parse_menu_item): Handle `notreal' a bit earlier.
4688 Use `tem' less. Make sure KEYEQ holds a string or nil (bug#4879).
4689
4690 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
4691
4692 * xmenu.c (Fx_popup_menu): Extract event timestamp. Pass it to
4693 xmenu_show. Hide any tooltip before opening a menu.
4694 (xmenu_show): New arg. Pass it to create_and_show_popup_menu.
4695 (create_and_show_popup_menu): New arg. Pass it to gtk_menu_popup.
4696
4697 2009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
4698
4699 Let integers use up 2 tags to give them one extra bit and thus double
4700 their range.
4701 * lisp.h (USE_2_TAGS_FOR_INTS): New macro.
4702 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P):
4703 New macros.
4704 (enum Lisp_Type): Use them. Give explicit values.
4705 (Lisp_Type_Limit): Remove.
4706 (XINT, XUINT, make_number) [!USE_LISP_UNION_TYPE]:
4707 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
4708 Pay attention to USE_2_TAGS_FOR_INTS.
4709 (INTEGERP): Use LISP_INT_TAG_P.
4710 * fns.c (internal_equal): Simplify the default case.
4711 (sxhash): Use case_Lisp_Int.
4712 * data.c (wrong_type_argument): Don't check against Lisp_Type_Limit
4713 any more.
4714 (Ftype_of): Use case_Lisp_Int.
4715 (store_symval_forwarding): Take into account the fact that Ints can
4716 now have more than one tag.
4717 * buffer.c (syms_of_buffer): Use LISP_INT_TAG.
4718 buffer_slot_type_mismatch):
4719 * xfaces.c (face_attr_equal_p):
4720 * print.c (print_object):
4721 * alloc.c (mark_maybe_object, mark_object, survives_gc_p):
4722 Use case_Lisp_Int.
4723
4724 2009-11-06 Eli Zaretskii <eliz@gnu.org>
4725
4726 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Reduce by further 30K.
4727
4728 * alloc.c (make_pure_c_string): Fix last change to avoid compiler
4729 warning.
4730
4731 2009-11-06 Jan Djärv <jan.h.d@swipnet.se>
4732
4733 * gtkutil.c (xg_event_is_for_scrollbar): New function (bug#4870).
4734
4735 * gtkutil.h: Declare xg_event_is_for_scrollbar (bug#4870).
4736
4737 * xterm.c (handle_one_xevent): Call xg_event_is_for_scrollbar for
4738 ButtonPressRelease and MotionNotify (bug#4870).
4739
4740 2009-11-06 Dan Nicolaescu <dann@ics.uci.edu>
4741
4742 * keymap.c (syms_of_keymap): Construct exclude_keys in pure memory.
4743
4744 * xterm.c (syms_of_xterm):
4745 * xselect.c (syms_of_xselect):
4746 * xmenu.c (syms_of_xmenu):
4747 * xfns.c (syms_of_xfns):
4748 * xfaces.c (syms_of_xfaces):
4749 * xdisp.c (syms_of_xdisp):
4750 * window.c (syms_of_window):
4751 * w32fns.c (syms_of_w32fns):
4752 * undo.c (syms_of_undo):
4753 * textprop.c (syms_of_textprop):
4754 * terminal.c (syms_of_terminal):
4755 * syntax.c (syms_of_syntax):
4756 * sound.c (syms_of_sound):
4757 * search.c (syms_of_search):
4758 * print.c (syms_of_print):
4759 * minibuf.c (syms_of_minibuf):
4760 * macros.c (syms_of_macros):
4761 * keymap.c (syms_of_keymap, initial_define_key)
4762 (initial_define_lispy_key):
4763 * keyboard.c (syms_of_keyboard):
4764 * insdel.c (syms_of_insdel):
4765 * image.c (syms_of_image):
4766 * fringe.c (syms_of_fringe):
4767 * frame.c (syms_of_frame):
4768 * fontset.c (syms_of_fontset):
4769 * fns.c (syms_of_fns):
4770 * fns.c (syms_of_fns):
4771 * fileio.c (syms_of_fileio):
4772 * fileio.c (syms_of_fileio):
4773 * eval.c (syms_of_eval):
4774 * doc.c (syms_of_doc):
4775 * dispnew.c (syms_of_display):
4776 * dired.c (syms_of_dired):
4777 * dbusbind.c (syms_of_dbusbind):
4778 * data.c (syms_of_data):
4779 * composite.c (syms_of_composite):
4780 * coding.c (syms_of_coding):
4781 * cmds.c (syms_of_cmds):
4782 * charset.c (define_charset_internal, syms_of_character):
4783 * ccl.c (syms_of_ccl):
4784 * category.c (syms_of_category, init_category_once):
4785 * casetab.c (syms_of_casetab):
4786 * casefiddle.c (syms_of_casefiddle):
4787 * callint.c (syms_of_callint):
4788 * bytecode.c (syms_of_bytecode):
4789 * buffer.c (keys_of_buffer, syms_of_buffer):
4790 * alloc.c (syms_of_alloc):
4791 * process.c (syms_of_process, init_process):
4792 * lread.c (syms_of_lread, init_obarray):
4793 * font.c (build_style_table):
4794 * emacs.c (syms_of_emacs, main): Replace calls to intern with
4795 intern_c_string, calls to make_pure_string with
4796 make_pure_c_string. Use pure_cons instead of Fcons.
4797
4798 * process.c (socket_options): Make it const.
4799 (set_socket_option, init_process): Use a const pointer.
4800
4801 * lread.c (intern_c_string): New function.
4802 (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
4803 (defvar_int): Uset it. Make the name const char*.
4804
4805 * lisp.h (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
4806 (defvar_int): Update prototypes.
4807 (DEFUN, EXFUN): Support for prototypes is now required.
4808 (intern_c_string): New prototype.
4809 (struct Lisp_Subr): Make symbol_name constant.
4810
4811 * font.c (struct table_entry): Remove unused member. Make NAMES
4812 constant.
4813 (weight_table, slant_table, width_table): Make constant.
4814
4815 * emacs.c (struct standard_args): Make name and longname constant.
4816
4817 * character.h (DEFSYM): Use intern_c_string.
4818
4819 2009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
4820
4821 * alloc.c (make_pure_c_string): New function.
4822
4823 * eval.c (Fautoload): Purecopy all arguments.
4824
4825 2009-11-05 Kenichi Handa <handa@m17n.org>
4826
4827 * fileio.c (Finsert_file_contents): Be sure set coding-system of
4828 the buffer in case of replace.
4829
4830 2009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
4831
4832 * puresize.h (BASE_PURESIZE): Increase to 1620000.
4833
4834 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
4835
4836 * editfns.c (save_restriction_restore): Update the (pt/begv/vz)_markers
4837 when applicable (bug#4851).
4838
4839 * lisp.h: Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
4840 (P_): Support for prototypes is now required.
4841
4842 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
4843
4844 * frame.c (Fmake_frame_invisible, Fframe_visible_p): Doc fix
4845 (Bug#4827).
4846
4847 2009-10-30 Eli Zaretskii <eliz@gnu.org>
4848
4849 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Redefine to waste less pure space.
4850
4851 2009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
4852
4853 * puresize.h (BASE_PURESIZE): Increase to 1470000.
4854
4855 * lread.c (Fload): Purecopy the file name when building
4856 Vpreloaded_file_list.
4857
4858 2009-10-29 Jason Rumney <jasonr@wanchan.jasonrumney.net>
4859
4860 * w32fns.c (syms_of_w32fns): Change default value of
4861 w32-scroll-lock-modifier to nil. (Bug#2827)
4862
4863 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
4864
4865 * minibuf.c (Fall_completions): Fix typos in docstring.
4866
4867 2009-10-26 Andreas Schwab <schwab@redhat.com>
4868
4869 * puresize.h (PURESIZE_RATIO): Increase back to 10/6.
4870
4871 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
4872
4873 * window.c (grow_mini_window): Comment out "delta >= 0" assertion.
4874 For delta < 0, skip check that only makes sense when the mini-window
4875 is going to be enlarged. (Bug#4534)
4876
4877 2009-10-25 Chong Yidong <cyd@stupidchicken.com>
4878
4879 * keyboard.c (read_char_x_menu_prompt): Don't demand a prompt
4880 string in menu maps (Bug#4471).
4881
4882 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
4883
4884 * nsfns.m (ns_set_name, ns_set_name_as_filename): Don't call
4885 FRAME_NS_VIEW on terminal frames (Bug#4765).
4886
4887 2009-10-24 Andreas Schwab <schwab@linux-m68k.org>
4888
4889 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_INTnn and
4890 DBUS_TYPE_UINTnn separately to get proper sign extension.
4891
4892 * dired.c (Ffile_attributes): Simplify now that FIXNUM_OVERFLOW_P
4893 can properly handle unsigned types.
4894 (make_uid, make_gid): Remove.
4895
4896 * lisp.h (FIXNUM_OVERFLOW_P): Fix last change to handle unsigned
4897 types again.
4898
4899 * sysdep.c (procfs_ttyname): Fix sprintf format to match argument type.
4900 (system_process_attributes): Likewise.
4901
4902 2009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
4903
4904 * keymap.c (Fmake_sparse_keymap): Purecopy the name.
4905
4906 * eval.c (Fautoload): Purecopy the filename. Simplify.
4907
4908 * category.c (Fdefine_category): Purecopy docstring.
4909
4910 2009-10-23 Andreas Schwab <schwab@linux-m68k.org>
4911
4912 * lisp.h (FIXNUM_OVERFLOW_P): Remove cast to avoid overflow.
4913
4914 * puresize.h (PURESIZE_RATIO): Decrease to 11/7.
4915
4916 2009-10-23 Chong Yidong <cyd@stupidchicken.com>
4917
4918 * window.c (Fwindow_edges, Fwindow_pixel_edges)
4919 (Fwindow_inside_edges, Fwindow_inside_pixel_edges): Doc fix
4920 (Bug#4775).
4921
4922 2009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
4923
4924 * fileio.c (syms_of_fileio): Initialize Vdirectory_sep_char.
4925 (init_fileio_once):
4926 * lisp.h (init_fileio_once): Remove.
4927 * emacs.c (main): Don't call init_fileio_once.
4928
4929 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
4930
4931 * puresize.h (BASE_PURESIZE): Increase to 1430000.
4932
4933 2009-10-21 Andreas Schwab <schwab@linux-m68k.org>
4934
4935 * doprnt.c (doprnt): Fix overflow check.
4936
4937 2009-10-21 Jan Djärv <jan.h.d@swipnet.se>
4938
4939 * xterm.c (x_term_init): Remove XSynchronize call done for debugging.
4940
4941 * xterm.h (x_wait_for_event): Declare it.
4942
4943 * xterm.c (pending_event_wait): New variable.
4944 (handle_one_xevent): Set pending_event_wait.eventtype to 0 if we
4945 see pending_event_wait.eventtype.
4946 (handle_one_xevent): Don't change gravity when parent changes.
4947 (x_new_font): Call change_frame_size with new rows/columns before we
4948 try to resize the frame.
4949 (x_wait_for_event): New function.
4950 (x_set_window_size_1): Don't change gravity unless change_gravity
4951 is set.
4952 Call XResizeWindow with FRAME_OUTER_WINDOW. If we are visible,
4953 don't change frame size, instead wait for the ConfigureNotify.
4954 (x_set_window_size): Call x_set_window_size_1 for USE_X_TOOLKIT also.
4955 (x_wm_set_size_hint): Remove ifdefs for USE_X_TOOLKIT.
4956 (x_initialize): Initialize pending_event_wait.
4957
4958 * xmenu.c (set_frame_menubar): Add internal border width to menu bar
4959 size.
4960
4961 * widget.c (EmacsFrameSetValues): Add comment.
4962 (EmacsFrameSetCharSize): Just call x_set_window_size.
4963
4964 * gtkutil.c (xg_frame_set_char_size): Flush events and call
4965 x_wait_for_event.
4966 (flush_and_sync): Remove again.
4967 (xg_get_font_name): Suggest monospace if no previous font is known.
4968
4969 2009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
4970
4971 * character.c (char_resolve_modifier_mask): Don't resolve meta to the
4972 8th bit, since that only made sense in the ASCII world (bug#4751).
4973
4974 2009-10-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4975
4976 * xterm.c (XTread_socket) [!USE_GTK && HAVE_X_I18N]: Don't quit
4977 processing pending events when event is filtered for input method.
4978 (Bug#3681)
4979
4980 2009-10-20 Juanma Barranquero <lekktu@gmail.com>
4981
4982 * fns.c: Add #endif accidentally removed in previous change.
4983
4984 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
4985
4986 * fns.c: Remove code for unsupported system: MAC_OS.
4987 * image.c: Likewise. Include setjmp.h.
4988
4989 2009-10-19 Jan Djärv <jan.h.d@swipnet.se>
4990
4991 * xterm.c (x_create_toolkit_scroll_bar): Don't allocate color for
4992 pixel -1 (bug #4742).
4993
4994 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
4995
4996 * process.c (create_pty): Remove conditionals for no longer
4997 supported systems: UNIPLUS and RTU.
4998
4999 * xterm.c:
5000 * xfns.c: Remove always true condition: XtSpecificationRelease >= 5.
5001
5002 * alloc.c: Do not define struct catchtag.
5003 * eval.c: Move struct catchtag definition ...
5004 * lisp.h: ... here.
5005
5006 * image.c: Move png.h #include earlier to avoid warnings.
5007
5008 * xterm.c:
5009 * xsmfns.c:
5010 * xselect.c:
5011 * xrdb.c:
5012 * xmenu.c:
5013 * xftfont.c:
5014 * xfont.c:
5015 * xfns.c:
5016 * xfaces.c:
5017 * xdisp.c:
5018 * window.c:
5019 * widget.c:
5020 * w32xfns.c:
5021 * w32uniscribe.c:
5022 * w32term.c:
5023 * w32select.c:
5024 * w32reg.c:
5025 * w32proc.c:
5026 * w32menu.c:
5027 * w32inevt.c:
5028 * w32heap.c:
5029 * w32font.c:
5030 * w32fns.c:
5031 * w32console.c:
5032 * w32.c:
5033 * w16select.c:
5034 * vm-limit.c:
5035 * unexsol.c:
5036 * unexec.c:
5037 * unexcw.c:
5038 * unexaix.c:
5039 * undo.c:
5040 * tparam.c:
5041 * textprop.c:
5042 * terminfo.c:
5043 * terminal.c:
5044 * termcap.c:
5045 * term.c:
5046 * syntax.c:
5047 * sound.c:
5048 * sheap.c:
5049 * search.c:
5050 * scroll.c:
5051 * region-cache.c:
5052 * regex.c:
5053 * ralloc.c:
5054 * process.c:
5055 * print.c:
5056 * nsterm.m:
5057 * nsselect.m:
5058 * nsmenu.m:
5059 * nsimage.m:
5060 * nsfont.m:
5061 * nsfns.m:
5062 * msdos.c:
5063 * minibuf.c:
5064 * menu.c:
5065 * marker.c:
5066 * macros.c:
5067 * keymap.c:
5068 * keyboard.c:
5069 * intervals.c:
5070 * insdel.c:
5071 * indent.c:
5072 * gtkutil.c:
5073 * ftxfont.c:
5074 * ftfont.c:
5075 * fringe.c:
5076 * frame.c:
5077 * fontset.c:
5078 * font.c:
5079 * fns.c:
5080 * floatfns.c:
5081 * filelock.c:
5082 * fileio.c:
5083 * emacs.c:
5084 * editfns.c:
5085 * dosfns.c:
5086 * doprnt.c:
5087 * doc.c:
5088 * dispnew.c:
5089 * dired.c:
5090 * dbusbind.c:
5091 * data.c:
5092 * composite.c:
5093 * coding.c:
5094 * cmds.c:
5095 * cm.c:
5096 * chartab.c:
5097 * charset.c:
5098 * character.c:
5099 * ccl.c:
5100 * category.c:
5101 * casetab.c:
5102 * casefiddle.c:
5103 * callproc.c:
5104 * callint.c:
5105 * bytecode.c:
5106 * buffer.c:
5107 * atimer.c: Include setjmp.h. (Bug#4643)
5108
5109 2009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
5110
5111 Remove leftover table unibyte_to_multibyte_table.
5112 * character.c (unibyte_to_multibyte_table): Remove.
5113 (Funibyte_char_to_multibyte): Use MAKE_CHAR_MULTIBYTE.
5114 * charset.c (init_charset_once): Don't init unibyte_to_multibyte_table.
5115 * character.h (UNIBYTE_TO_CHAR): New macro.
5116 (MAKE_CHAR_MULTIBYTE): Use it.
5117 (unibyte_to_multibyte_table, unibyte_char_to_multibyte): Remove.
5118 * xdisp.c (get_next_display_element): USE ASCII_CHAR_P.
5119 (message_dolog, set_message_1):
5120 * search.c (Freplace_match):
5121 * editfns.c (Fcompare_buffer_substrings):
5122 * fns.c (Fcompare_strings): Use MAKE_CHAR_MULTIBYTE.
5123 (concat):
5124 * insdel.c (copy_text, count_size_as_multibyte):
5125 Use ASCII_CHAR_P and BYTE8_TO_CHAR.
5126 * term.c (produce_glyphs):
5127 * syntax.c (skip_chars): Use BYTE8_TO_CHAR.
5128 * regex.c (RE_CHAR_TO_MULTIBYTE):
5129 * cmds.c (internal_self_insert):
5130 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use UNIBYTE_TO_CHAR.
5131
5132 * cmds.c (internal_self_insert): `c' is already in "multibyte" form.
5133
5134 2009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
5135
5136 * puresize.h (BASE_PURESIZE): Increase to 1310000.
5137
5138 2009-10-16 Juanma Barranquero <lekktu@gmail.com>
5139
5140 * buffer.c (Fbuffer_name): Doc fix. (Bug#4728)
5141
5142 2009-10-15 Adrian Robert <Adrian.B.Robert@gmail.com>
5143
5144 * nsterm.h (NS_HAVE_NSINTEGER): Back out and augment with CGFloat,
5145 still needed under Tiger.
5146
5147 * nsterm.m (EmacsView-conversationIdentifier): Arg is long.
5148
5149 * m/amdx86-64.h: Don't set LIB_STANDARD and START_FILES under
5150 __Apple__.
5151
5152 * m/intel386.h: Remove DARWIN_OS/_LP64 special case.
5153
5154 2009-10-15 Kenichi Handa <handa@m17n.org>
5155
5156 * print.c (print_object): Escape a symbol like "2E10" too.
5157
5158 2009-10-11 Adrian Robert <Adrian.B.Robert@gmail.com>
5159
5160 Cleanups and changes for 64-bit compile under Snow Leopard.
5161 Based on suggestions by Erik Charlebois.
5162
5163 * nsfns.m (xw-color-values): Use CGFloat where appropriate.
5164
5165 * nsfont.m (ns_char_width): Replace deprecated call.
5166 (ns_findfonts, nsfont_list_family): Use long format in printf, and
5167 cast argument.
5168 (nsfont_open): Use ns_char_width() everywhere.
5169 (ns_uni_to_glyphs, NSGlyphStorage): Use NS[U]Integer where appropriate.
5170
5171 * nsgui.h (NSPoint, NSSize) [!__OBJC__]: Define and use CGFloat.
5172
5173 * nsimage.m (EmacsImage-setXBMColor:,-getPixelAtX:Y:): Use CGFloat
5174 where appropriate.
5175
5176 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Use NSInteger
5177 where appropriate.
5178 (EmacsToolbar-addDisplayItemWithImage:idx:helpText:enabled:):
5179 Use stringWithUTF8String.
5180 (EmacsDialogPanel-initWithContentRect:styleMask:): Fix signature.
5181
5182 * nsterm.h (EmacsView, EmacsMenu, EmacsToolbar, EmacsTooltip):
5183 Add formal protocol mention to inheritance.
5184 [NS_HAVE_NSINTEGER]: Drop conditional and contents.
5185
5186 * nsterm.m (ns_color_to_lisp): Use CGFloat where appropriate.
5187 Fix printf format.
5188 (ns_query_color): Use CGFloat where appropriate.
5189 (EmacsView<NSTextInput>, EmacsScroller): Fix method signatures.
5190 (EmacsScroller-mouseDown:): Use long format in printf, and cast
5191 argument.
5192
5193 * config.in (NS_HAVE_NSINTEGER): Drop.
5194
5195 * dbusbind.c (dbus-method-return-internal)
5196 (dbus-method-error-internal): Use long format in printf, and cast
5197 argument.
5198
5199 * font.c (font_unparse_xlfd, font_unparse_fcname): Use long format
5200 in printf, and cast argument.
5201
5202 * process.c (list_processes_1): Use long format in printf, and
5203 cast argument.
5204
5205 2009-10-11 Glenn Morris <rgm@gnu.org>
5206
5207 * frame.c (Fframe_pixel_height): Doc fix. (Bug#4535)
5208
5209 2009-10-08 Jan Djärv <jan.h.d@swipnet.se>
5210
5211 * gtkutil.c (create_menus): Call gtk_widget_set_size_request for
5212 menu bar with a small width so it doesn't enlarge the frame.
5213
5214 2009-10-08 Juanma Barranquero <lekktu@gmail.com>
5215
5216 * fontset.c (Fset_fontset_font): Fix typos in error messages.
5217
5218 2009-10-06 Glenn Morris <rgm@gnu.org>
5219
5220 * Makefile.in (emacs${EXEEXT}): Remove direct dependence on
5221 SOME_MACHINE_LISP (this enters indirectly via DOC).
5222
5223 2009-10-05 Eli Zaretskii <eliz@gnu.org>
5224
5225 * dired.c (Ffile_attributes): Doc fix. (Bug#4638)
5226
5227 2009-10-04 Eli Zaretskii <eliz@gnu.org>
5228
5229 * xdisp.c (syms_of_xdisp) <unibyte-display-via-language-environment>:
5230 Doc fix.
5231
5232 2009-10-03 Martin Rudalics <rudalics@gmx.at>
5233
5234 * window.c (Fdelete_window): Check WINDOW argument. (Bug#4618)
5235
5236 2009-10-02 Michael Albinus <michael.albinus@gmx.de>
5237
5238 * lisp.h (Qdelete_directory_internal): Remove, because it is not
5239 used anymore outside fileio.c.
5240
5241 * w32fns.c (Fsystem_move_file_to_trash): Use delete-directory.
5242
5243 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
5244
5245 * lisp.h (Qdelete_directory_internal):
5246 Declare, instead of Qdelete_directory.
5247
5248 * w32fns.c (Fsystem_move_file_to_trash): Use it.
5249
5250 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
5251
5252 * eval.c (Fcalled_interactively_p): Add `kind' argument.
5253
5254 2009-10-01 Michael Albinus <michael.albinus@gmx.de>
5255
5256 * fileio.c (Fdelete_directory_internal): Rename from
5257 Fdelete_directory. It is not a command anymore. It has no file
5258 name handler.
5259
5260 2009-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
5261
5262 * xdisp.c (get_next_display_element): Use an enum in last change.
5263
5264 2009-09-28 Kenichi Handa <handa@m17n.org>
5265
5266 * xdisp.c (get_next_display_element): Pay attention to
5267 unibyte_display_via_language_environment in handling
5268 Vnobreak_char_display.
5269
5270 2009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
5271
5272 * nsterm.h (ns_app_name): New extern variable.
5273
5274 * nsterm.m (ns_app_name): New variable.
5275 (ns_term_init): Set and use it.
5276 (ns_term_shutdown): Use it.
5277
5278 * nsmenu.m (ns_update_menubar): Use ns_app_name. Sync with xmenu.c.
5279 (EmacsMenu-clear:, ns_popup_dialog): Use ns_app_name.
5280
5281 * nsfns.m (ns_set_name_iconic, ns_set_name)
5282 (ns_set_name_as_filename, x-create-frame, ns-get-resource)
5283 (ns-set-resource): Use ns_app_name instead of NSProcessInfo call.
5284
5285 * menu.c (find_and_return_menu_selection) [HAVE_NS]:
5286 Remove double-casting in client_data comparison.
5287
5288 2009-09-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5289
5290 * keyboard.c (make_lispy_event): Remember last wheel direction.
5291 (syms_of_keyboard) <wheel_syms>: Compute array size at compile time.
5292
5293 2009-09-26 Glenn Morris <rgm@gnu.org>
5294
5295 * Makefile.in (MSDOS_SUPPORT) [MSDOS]: Remove unneeded '/' in
5296 internal.elc. Add term/pc-win.elc.
5297 (WINDOW_SUPPORT) [HAVE_X_WINDOWS]: Add term/common-win.elc and
5298 term/x-win.elc.
5299 (WINNT_SUPPORT) [WINDOWSNT]: Add term/common-win.elc and
5300 term/w32-win.elc.
5301 (NS_SUPPORT): New.
5302 (lisp): Add NS_SUPPORT.
5303 (SOME_MACHINE_LISP): Add term/w32-win.elc and emacs-lisp/easymenu.elc.
5304
5305 2009-09-25 David Reitter <david.reitter@gmail.com>
5306
5307 * nsmenu.m (EmacsMenu-clear): Recognize application menu
5308 on Mac OS X 10.6+ (bug#4513).
5309
5310 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
5311
5312 * frame.c (xrdb_get_resource): Return nil for empty string resources;
5313 some parts of Emacs code (like font selection) don't grok them.
5314 See http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00528.html
5315
5316 2009-09-24 Andreas Schwab <schwab@redhat.com>
5317
5318 * coding.c (decode_coding_iso_2022): Fix operator precedence.
5319
5320 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
5321
5322 * dired.c (Fdirectory_files): Fix typo in docstring.
5323
5324 2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
5325
5326 * nsterm.m (EV_TIMESTAMP, x_set_window_size)
5327 (EmacsApp-application:openFiles:): Remove GNUstep conditionals.
5328 (EmacsScroller-setPosition:portion:whole:): Remove -display call
5329 under GNUstep.
5330 (EmacsView-initFrameFromEmacs:): Set autoresizing mask.
5331
5332 * nsfont.m (ns_glyph_metrics): Remove GNUstep conditional for
5333 glyph advancement.
5334
5335 2009-09-22 Adrian Robert <Adrian.B.Robert@gmail.com>
5336
5337 * nsterm.m (CGContextSetFontRenderingMode): Drop declaration.
5338 (EmacsScroller-mouseDown:): Use SCROLL_BAR_FIRST_DELAY.
5339
5340 * nsmenu.m (EmacsMenu-menuNeedsUpdate): Ignore if frame has been
5341 deleted (bug #4492).
5342
5343 * nsfont.m (Vns_reg_to_script): New lisp variable.
5344 (syms_of_nsfont): Declare it.
5345 (ns_registry_to_script): New function.
5346 (ns_get_req_script): Call it.
5347 (ns_findfonts): Don't give up on non-unicode registry.
5348
5349 * font.c (DEFAULT_ENCODING) [HAVE_NS]: Remove special case.
5350
5351 2009-09-20 Tom Tromey <tromey@redhat.com>
5352
5353 * eval.c (find_handler_clause): Make stack-trace-on-error work in
5354 batch mode (bug#4228).
5355
5356 2009-09-18 Rob Christie <robchristie@gmail.com> (tiny change)
5357
5358 * nsmenu.m (EmacsMenu-parseKeyEquiv:): Parse key equivalent more
5359 carefully. (Bug #4339)
5360
5361 2009-09-18 Chong Yidong <cyd@stupidchicken.com>
5362
5363 * syntax.c (Fchar_syntax): Minor doc fix (Bug#4400).
5364
5365 2009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
5366
5367 * emacs.c (inhibit_x_resources): Update doc string for NS.
5368 (main) [HAVE_NS]: Don't process --no-init-file option. Remove
5369 legacy code for -NXHost. Fix error printf in daemon case.
5370
5371 * nsterm.h (ns_no_defaults): Remove.
5372
5373 * nsterm.m (ns_no_defaults): Remove.
5374 (ns_term_init): Switch ns_no_defaults -> inhibit_x_resources.
5375 (ns_use_qd_smoothing): Remove legacy variable.
5376 (EmacsView-windowShouldZoom:): Set frame left_pos, top_pos and
5377 don't update the NSWindow itself.
5378 (EmacsView-windowWillUseStandardFrame:defaultFrame:): Improve
5379 state detection and store user rect ourselves. (Bug #3581)
5380
5381 * nsfont.m (nsfont_draw) [NS_IMPL_COCOA]: Don't use
5382 ns_use_qd_smoothing.
5383
5384 * nsfns.m (x_get_string_resource): Ape just-previous changes to other
5385 platform versions. Drop support for emacs-20-style face specs.
5386 (x-close-connection): Drop PSFlush() under OS X.
5387 (x-focus-frame): Activate the app first. (Bug #4180)
5388
5389 2009-09-17 Juanma Barranquero <lekktu@gmail.com>
5390
5391 * emacs.c (inhibit_x_resources): New variable.
5392 (main) [HAVE_NS]: Don't process --quick command line option.
5393 (syms_of_emacs) <inhibit-x-resources>: DEFVAR_BOOL it.
5394
5395 * lisp.h (inhibit_x_resources): Declare it extern.
5396
5397 * w32reg.c (x_get_string_resource):
5398 * xrdb.c (x_get_string_resource): Obey inhibit_x_resources.
5399
5400 2009-09-17 Eli Zaretskii <eliz@gnu.org>
5401
5402 * Makefile.in (MSDOS_SUPPORT, SOME_MACHINE_LISP):
5403 Add lisp/term/internal.elc.
5404
5405 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
5406
5407 * frame.c (x_get_resource_string): Re-add for non-toolkit builds
5408 (bug#4461).
5409
5410 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
5411
5412 * puresize.h (BASE_PURESIZE): Increase to 1290000.
5413
5414 * Makefile.in (OTHER_FILES): Define using autoconf, not cpp.
5415 (OBJECTS_MACHINE): Remove, unused.
5416
5417 2009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
5418
5419 * frame.c (x_get_resource_string): Remove unused.
5420
5421 2009-09-15 Jan Djärv <jan.h.d@swipnet.se>
5422
5423 * xterm.c (x_new_font): Call change_frame_size before calling
5424 x_set_window_size, in case frame size won't change.
5425
5426 * frame.c (x_set_font): Remove dead code.
5427
5428 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
5429
5430 * lread.c (Fload): Also run do-after-load-evaluation while dumping.
5431
5432 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
5433
5434 * lread.c (Fload): Don't output a message after loading an obsolete
5435 package any more (done in Lisp now).
5436
5437 2009-09-12 Chong Yidong <cyd@stupidchicken.com>
5438
5439 * fns.c (syms_of_fns): Doc fix (Bug#4227).
5440
5441 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
5442
5443 * keymap.c (Fwhere_is_internal): Use nconc2.
5444
5445 2009-09-11 Alan Mackenzie <acm@muc.de>
5446
5447 * dispnew.c (Fsend_string_to_terminal): Amend doc string to cover
5448 batch mode.
5449
5450 2009-09-11 Andreas Schwab <schwab@linux-m68k.org>
5451
5452 * xdisp.c (display_mode_element): Detect cycles.
5453
5454 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
5455
5456 * keymap.c (where_is_internal): Don't erroneously return nil right after
5457 filling the cache.
5458 (where_is_internal_1): Fix up typo.
5459
5460 2009-09-11 Glenn Morris <rgm@gnu.org>
5461
5462 * frame.c (Fx_parse_geometry): Unify the X and NS versions so that they
5463 share a common doc-string.
5464
5465 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
5466
5467 * keymap.c (get_keymap): Return the actual keymap symbol rather than
5468 t for autoloaded keymaps when autoloading is not allowed (bug#4393).
5469
5470 * keymap.c (QCadvertised_binding): New constant.
5471 (syms_of_keymap): Initialize it.
5472 (Fwhere_is_internal): Try and use bindings from :advertised-binding
5473 if applicable.
5474
5475 2009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
5476
5477 * keyboard.c (Qmenu_alias, Vdefine_key_rebound_commands): Remove.
5478 (parse_menu_item): Streamline since bindings are recomputed all the
5479 time anyway. Don't bother checking Vdefine_key_rebound_commands any
5480 more and don't support lmenu's menu-alias any more either.
5481
5482 * keymap.c (where_is_internal_data): Make noindirect a boolean.
5483 (where_is_internal): Strip it down to only traverse the keymaps.
5484 Move the cache handling from Fwhere_is_internal to here.
5485 (Fwhere_is_internal): Move the handling of remapping and the choice of
5486 the best binding from where_is_internal to here.
5487 Unify the cached/noncached paths, so remapping is also handled
5488 correctly when the cache is used, and so the cache can be used to
5489 speed up remap-handling when applicable.
5490 Give preference to non-remapped bindings.
5491 * doc.c (Fsubstitute_command_keys): Let Fwhere_is_internal's prefer
5492 non-remapped bindings.
5493 * keyboard.c (parse_menu_item): Let Fwhere_is_internal handle
5494 command remapping.
5495
5496 * xdisp.c (display_mode_element): Move list length limit from 50 to
5497 5000 (see thread starting with <xbaik5174uqu.fsf@cam.ac.uk>).
5498
5499 2009-09-09 Adrian Robert <Adrian.B.Robert@gmail.com>
5500
5501 * nsfont.m (ns_get_family): Don't force first letter to uppercase.
5502
5503 2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
5504
5505 * xdisp.c (Vtruncate_partial_width_windows): Improve docstring.
5506 (Bug#4334)
5507
5508 * keymap.c (where_is_internal): Filter out shadowed remappings.
5509 Assume that where_is_internal returns unshadowed bindings to simplify
5510 the code and get rid of the gotos. Use ASIZE.
5511
5512 2009-09-04 Jan Djärv <jan.h.d@swipnet.se>
5513
5514 * xterm.c (x_focus_changed): If we get a focusout and pointer
5515 is invisible, make it visible.
5516
5517 * xterm.h: Remove condition for declaration of
5518 x_*_window_to_frame.
5519
5520 2009-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
5521
5522 * dispnew.c (Fsend_string_to_terminal): Make it work again on the
5523 initial terminal as well.
5524
5525 2009-09-02 Jan Djärv <jan.h.d@swipnet.se>
5526
5527 * xterm.h: Rename x_non_menubar_window_to_frame to
5528 x_menubar_window_to_frame.
5529
5530 * xterm.c: Remove declarations also in xterm.h.
5531 (XTmouse_position): Do not return valid positions
5532 for clicks in the menubar and the toolbar for Gtk+.
5533
5534 * xfns.c (x_any_window_to_frame): Assume less about Gtk+ internals,
5535 if the widget for the event has the same top level as a frame,
5536 return the frame.
5537 (x_menubar_window_to_frame): Detect menu bar even with Gtk+
5538 internal windows, bug #4122.
5539 (x_non_menubar_window_to_frame): Remove.
5540
5541 2009-09-02 Glenn Morris <rgm@gnu.org>
5542
5543 * buffer.c (default-major-mode): Move most of the doc from here...
5544 (major-mode): ... to here.
5545
5546 2009-08-30 Nick Roberts <nickrob@snap.net.nz>
5547
5548 * process.c (wait_reading_process_output): Keep the descriptor
5549 when pty is used by a non-child process, e.g., in I/O buffer of
5550 GDB this allows inferior to be restarted.
5551
5552 2009-08-29 Eli Zaretskii <eliz@gnu.org>
5553
5554 * xdisp.c (redisplay_internal): Remove redundant test and collapse
5555 both branches into one.
5556
5557 2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
5558
5559 * emacs.c (USAGE1): Remove --(no-)multibyte, --(no-)unibyte.
5560 (main): Use enable-multibyte-characters rather than
5561 default-enable-multibyte-characters. Output a warning message when
5562 running a unibyte session.
5563
5564 2009-08-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5565
5566 * unexmacosx.c (print_load_command_name) [LC_DYLD_INFO]: Add cases
5567 LC_DYLD_INFO and LC_DYLD_INFO_ONLY.
5568 (copy_data_segment): Also copy __program_vars section.
5569 (copy_dyld_info) [LC_DYLD_INFO]: New function.
5570 (dump_it) [LC_DYLD_INFO]: Use it.
5571
5572 * s/darwin.h [temacs]: Undef HAVE_POSIX_MEMALIGN.
5573
5574 2009-08-28 Eli Zaretskii <eliz@gnu.org>
5575
5576 * makefile.w32-in ($(BLD)/doc.$(O)): Depend on buildobj.h, not on
5577 $(SRC)/buildobj.h.
5578 (buildobj.h): Renamed from $(SRC)/buildobj.h.
5579 (make-buildobj-CMD, make-buildobj-SH): Create buildobj.h, not
5580 $(SRC)/buildobj.h.
5581 (clean): Add buildobj.h.
5582
5583 2009-08-28 Teodor Zlatanov <tzz@lifelogs.com>
5584
5585 * print.c (print_object): Set escapeflag to 1 when printing
5586 hashtable keys and values.
5587
5588 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
5589
5590 * lread.c (read_integer): Use doubles (and potentially return a float
5591 number) as we do in string-to-number.
5592 (read1): Use strtol to read integers, signal errors on strtol's
5593 overflow and use floats if strtol's output is too large for
5594 Elisp integers.
5595
5596 2009-08-27 Eli Zaretskii <eliz@gnu.org>
5597
5598 * makefile.w32-in ($(SRC)/buildobj.h, make-buildobj-CMD)
5599 (make-buildobj-SH): Fix last change.
5600 (SRC): Move to before where it's first used.
5601
5602 2009-08-27 Kenichi Handa <handa@m17n.org>
5603
5604 * process.c (send_process): Use encode_coding_object instead of
5605 encode_coding_string to perform eol-conversion even if the string
5606 is unibyte.
5607
5608 * coding.c (encode_coding_utf_16): Fix checking of a Unicode
5609 character.
5610
5611 * cmds.c (Fself_insert_command): Avoid unnecessay
5612 unibyte->multibyte conversion. (Bug#4240) (Bug#4037)
5613
5614 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
5615
5616 * callproc.c (Fcall_process): Remove always true #if.
5617
5618 * lisp.h: Replace #if 0 code for checking with text pointing to
5619 the --enable-checking configure flag.
5620
5621 * emacs.c (main): Mention the --enable-profiling configure flag
5622 instead of using CFLAGS.
5623
5624 2009-08-26 Ken Raeburn <raeburn@raeburn.org>
5625
5626 * Makefile.in (buildobj.h): New target.
5627 (doc.o): Depend on it.
5628 (temacs${EXEEXT}): Don't generate buildobj.lst.
5629 (mostlyclean): Delete buildobj.h, not buildobj.lst.
5630 * makefile.w32-in ($(SRC)/buildobj.h): New target.
5631 ($(BLD)/doc.$(O)): Depend on it.
5632 (make-buildobj-CMD, make-buildobj-SH): New targets. (Syntax help
5633 provided by Eli Zaretskii.)
5634 ($(TEMACS)): Don't generate buildobj.lst.
5635 * doc.c: Include buildobj.h.
5636 (buildobj): New static variable.
5637 (Fsnarf_documentation): Use it, instead of opening and reading
5638 buildobj.lst.
5639
5640 2009-08-25 Michael Albinus <michael.albinus@gmx.de>
5641
5642 * dbusbind.c (Fdbus_call_method)
5643 (Fdbus_call_method_asynchronously): Use English numeric format for
5644 timeout values in doc string.
5645
5646 2009-08-25 Kenichi Handa <handa@m17n.org>
5647
5648 * alloc.c (mark_char_table): New function.
5649 (mark_object): Use mark_char_table for a char-table.
5650
5651 * lisp.h (CHAR_TABLE_REF_ASCII): New macro.
5652 (CHAR_TABLE_REF): Use it.
5653
5654 2009-08-23 Ken Raeburn <raeburn@raeburn.org>
5655
5656 * Makefile.in (emacs${EXEEXT}) [CANNOT_DUMP]: Set EMACSLOADPATH
5657 before invoking the newly build emacs to check for load-path
5658 shadowing.
5659
5660 2009-08-22 Glenn Morris <rgm@gnu.org>
5661
5662 * Makefile.in (bootstrap_exe): New variable.
5663 (.el.elc, ${lispsource}loaddefs.el, bootstrap-emacs${EXEEXT}):
5664 Use ${bootstrap_exe}.
5665
5666 2009-08-22 Eli Zaretskii <eliz@gnu.org>
5667
5668 * coding.h (encode_coding_string): Don't encode unibyte strings.
5669 (Bug#4047)
5670
5671 2009-08-22 Michael Albinus <michael.albinus@gmx.de>
5672
5673 * config.in (HAVE_DBUS_WATCH_GET_UNIX_FD): Add.
5674
5675 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): Remove. It was
5676 intended as hotfix only.
5677 (xd_add_watch, xd_remove_watch): Use HAVE_DBUS_WATCH_GET_UNIX_FD.
5678
5679 2009-08-21 Adrian Robert <Adrian.B.Robert@gmail.com>
5680
5681 * nsterm.m (ns_get_color): Update documentation properly for last
5682 change, and clean up loose ends in the code left by it. Fix
5683 longstanding bug with 16-bit hex parsing, and add support for
5684 yet another X11 format (rgb:r/g/b) for compatibility.
5685 * nsfns.m (EmacsDialogPanel-runDialogAt): Add declaration of
5686 timer_check() to avoid crash on Leopard/PPC. Bug #2154.
5687
5688 2009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
5689
5690 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 500 for js.el.
5691
5692 2009-08-20 Michael Albinus <michael.albinus@gmx.de>
5693
5694 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): New macro.
5695 (xd_add_watch, xd_remove_watch): Use it. Print debug messages.
5696 (xd_initialize, xd_pending_messages): Check, whether
5697 $DBUS_SESSION_BUS_ADDRESS is set.
5698
5699 2009-08-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5700
5701 * nsfns.m (Fxw_color_values): Return 3-element list. Doc fix.
5702
5703 * nsterm.m (ns_get_color): Remove incompatible color formats again.
5704
5705 2009-08-20 Glenn Morris <rgm@gnu.org>
5706
5707 * emacs.c (system-type): Doc fix.
5708
5709 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
5710
5711 * keyboard.c (syms_of_keyboard): Default to 5 buttons, which should be
5712 enough for the most common situations. Avoid SET_SYMBOL_VALUE.
5713
5714 2009-08-18 Michael Albinus <michael.albinus@gmx.de>
5715
5716 * dbusbind.c (xd_add_watch, xd_remove_watch, Fdbus_init_bus):
5717 New functions.
5718 (xd_initialize): Revert change from 2009-08-16.
5719
5720 2009-08-18 Kenichi Handa <handa@m17n.org>
5721
5722 * fontset.c (Ffontset_font): If a nil element is found in a
5723 font-group vector, return nil.
5724
5725 2009-08-17 Chong Yidong <cyd@stupidchicken.com>
5726
5727 * process.c (status_notify): Don't perform redisplay.
5728 (Fdelete_process, list_processes_1, process_send_signal):
5729 Expliticly perform redisplay.
5730 (wait_reading_process_output): Always check process status, but
5731 don't perform redisplay unless DO_DISPLAY is non-zero (Bug#2930).
5732
5733 2009-08-17 Ken Raeburn <raeburn@raeburn.org>
5734
5735 * lisp.h (XFLOAT_DATA): Produce an rvalue by adding 0 to the value.
5736 (XFLOAT_INIT): New macro for storing a float value.
5737 * alloc.c (make_float, make_pure_float): Use XFLOAT_INIT.
5738 * fns.c (sxhash): Copy out the value of a float in order to
5739 examine its bytes.
5740 * dbusbind.c (xd_append_arg): Likewise.
5741
5742 * emacs.c (main): Don't call syms_of_data twice.
5743
5744 2009-08-16 Michael Albinus <michael.albinus@gmx.de>
5745
5746 * dbusbind.c (xd_initialize): Add connection file descriptor to
5747 input_wait_mask, in order to let select() detect, whether a new
5748 message has been arrived.
5749 (Fdbus_call_method_asynchronously): Allow nil HANDLER.
5750
5751 2009-08-15 Michael Albinus <michael.albinus@gmx.de>
5752
5753 * dbusbind.c (xd_get_dispatch_status, xd_pending_messages):
5754 New functions.
5755
5756 * lisp.h (xd_pending_messages): Declare.
5757
5758 * keyboard.c (readable_events): Call xd_pending_messages.
5759
5760 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
5761
5762 * eval.c (Fcalled_interactively_p, Finteractive_p): Doc fix (Bug#3936).
5763
5764 * xdisp.c (pop_it): Don't pop into a display vector (Bug#4131).
5765
5766 * buffer.c (set_buffer_internal_1)
5767 (swap_out_buffer_local_variables): Check for unbound local
5768 variables (Bug#4138).
5769
5770 2009-08-14 Eli Zaretskii <eliz@gnu.org>
5771
5772 * process.c (create_pty): Fix last change.
5773
5774 2009-08-13 Chong Yidong <cyd@stupidchicken.com>
5775
5776 * image.c (xbm_read_bitmap_data): New arg inhibit_image_error.
5777 (xbm_load_image): Caller changed.
5778 (xbm_file_p): Avoid signalling an image_error (Bug#4107).
5779
5780 2009-08-13 Nick Roberts <nickrob@snap.net.nz>
5781
5782 * process.c (create_pty): New function.
5783 (Fstart_process): Use it to allow Emacs to just associate a pty
5784 with the buffer. See associated change in gdb-mi.el.
5785 (list_processes_1): Deal with no program name.
5786 (start_process_unwind): Use pid == -2 to mean no process.
5787
5788 2009-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
5789
5790 * cmds.c (nonundocount): New global variable.
5791 (keys_of_cmds): Initialize it.
5792 (Fself_insert_command): Use it to combine upto 20 sequential chars
5793 into a single undo entry, just like the Qself_insert_command code in
5794 keyboard.c does.
5795 Call frame_make_pointer_invisible, also like the Qself_insert_command
5796 code in keyboard.c does.
5797 * keyboard.c (command_loop_1): Use the new global nonundocount rather
5798 than its own local replacement for it.
5799
5800 2009-08-10 Ken Raeburn <raeburn@raeburn.org>
5801
5802 * fns.c (concat): Don't re-set string length to its current value.
5803
5804 * coding.h (decode_coding_string, encode_coding_string):
5805 Use SBYTES macro.
5806
5807 * doprnt.c (doprnt_lisp): Delete unused function.
5808 (doprnt): Merge with doprnt1, discarding lispstrings code.
5809 * lisp.h (doprnt_lisp): Don't declare.
5810
5811 2009-08-07 Juri Linkov <juri@jurta.org>
5812
5813 * puresize.h (BASE_PURESIZE): Increase to 1270000.
5814
5815 2009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
5816
5817 * print.c (syms_of_print): Undo previous change.
5818
5819 2009-08-05 Teodor Zlatanov <tzz@lifelogs.com>
5820
5821 * lread.c (read1, syms_of_lread): Read hashtables back from the
5822 readable format.
5823
5824 * print.c (print_preprocess, print_object): Print hashtables fully
5825 and readably.
5826 (syms_of_print): Provide 'hashtable-print-readable.
5827
5828 2009-08-02 Adrian Robert <Adrian.B.Robert@gmail.com>
5829
5830 * nsfont.m (ns_descriptor_to_entity): Handle case when descriptor has
5831 no family set.
5832 (nsfont_open): Handle case when entity has no family.
5833
5834 2009-07-29 Adrian Robert <Adrian.B.Robert@gmail.com>
5835
5836 * nsfont.m (ns_findfonts): Fix 2009-07-24 change to return only one
5837 element, not a list, for match case.
5838
5839 2009-07-28 Kenichi Handa <handa@m17n.org>
5840
5841 * font.c (font_parse_xlfd): Check DPI and AVGWIDTH properties more
5842 rigidly.
5843
5844 * xfont.c (xfont_list_pattern): Don't ignore the return value of
5845 font_parse_xlfd. Check font properties more rigidly.
5846
5847 2009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
5848
5849 * s/netbsd.h (SIGNALS_VIA_CHARACTERS): Remove, already defined in
5850 bsd-common.h.
5851
5852 2009-07-27 Kenichi Handa <handa@m17n.org>
5853
5854 * xfaces.c (face_with_height): Call font_clear_prop.
5855
5856 2009-07-26 Chong Yidong <cyd@stupidchicken.com>
5857
5858 * dispnew.c (init_display): Use Qx, Qw32, and Qns.
5859
5860 * xterm.c (x_term_init): Use Qx.
5861
5862 * nsfont.m (nsfont_draw): Revert 2009-07-15 change.
5863
5864 * nsterm.m (ns_maybe_dumpglyphs_background): Revert 2009-07-15 change.
5865 (ns_get_color): Revert 2009-07-16 change.
5866
5867 2009-07-25 Eli Zaretskii <eliz@gnu.org>
5868
5869 * lread.c (syms_of_lread) <force_load_messages>: New variable.
5870 (Fload): Use it to force load messages, even if NOMESSAGES is non-nil.
5871
5872 2009-07-25 Ken Raeburn <raeburn@raeburn.org>
5873
5874 * coding.h (decode_coding_string, encode_coding_string):
5875 Use SCHARS macro.
5876
5877 * lread.c: Rewrite 2009-07-21 changes.
5878 (load_depth): Delete.
5879 (Qload_in_progress): New variable.
5880 (load_unwind): Don't reference load_depth or load_in_progress.
5881 (Fload): Likewise; specbind Qload_in_progress instead.
5882 (init_lread): Don't initialize load_depth.
5883 (syms_of_lread): Initialize and protect Qload_in_progress.
5884
5885 2009-07-24 Adrian Robert <Adrian.B.Robert@gmail.com>
5886
5887 * nsfont.m (ns_findfonts): Correctly return fallback in match case.
5888
5889 2009-07-23 Yavor Doganov <yavor@gnu.org>
5890
5891 * nsfont.m (NSFontDescriptor.h): Explicitly include under GNUstep.
5892
5893 2009-07-23 Adrian Robert <Adrian.B.Robert@gmail.com>
5894
5895 * nsterm.m (EmacsView-keyUp:): Only act when running under Tiger.
5896 Bugs 3792, 3720, 2402.
5897 (ns_lookup_indexed_color): Check for bad index.
5898 (ns_index_color): Init unused slot to 0.
5899 (ns_dumpglyphs_box_or_relief): Replace useless xassert with an if().
5900 Bug 3714, possibly 3082.
5901
5902 2009-07-22 Jason Rumney <jasonr@gnu.org>
5903
5904 * w32fns.c (w32_wnd_proc) [WM_IME_STARTCOMPOSITION]:
5905 Position IME window at cursor (Bug#2570).
5906 (w32_wnd_proc) [WM_IME_CHAR]: Release context when finished.
5907 (globals_of_w32fns): Dynamically load functions required above.
5908
5909 * w32term.c (w32_draw_window_cursor): Send message to reposition
5910 any IME window.
5911
5912 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
5913
5914 * fileio.c: Revert 2009-07-16 changes.
5915 (Vauto_save_include_big_deletions): New variable.
5916 (Fdo_auto_save): Disable auto-save only if
5917 auto-save-include-big-deletions is nil.
5918
5919 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
5920
5921 * xdisp.c (move_it_to): For continued lines ending in a tab, take
5922 the overflowed pixels into account (Bug#3879).
5923
5924 2009-07-21 Ken Raeburn <raeburn@raeburn.org>
5925
5926 * lread.c (load_depth): New variable.
5927 (Fload, load_unwind, init_lread): Set it to the load recursion
5928 depth; set load_in_progress as a simple boolean based on the
5929 current load_depth. (Bug#3892)
5930
5931 2009-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
5932
5933 * nsfont.m (ns_has_attribute): Remove.
5934 (ns_findfonts, nsfont_open): Use ns_attribute_fvalue() instead.
5935
5936 2009-07-18 Juri Linkov <juri@jurta.org>
5937
5938 * process.c (Fset_process_query_on_exit_flag): Mention killing
5939 a buffer in docstring.
5940
5941 2009-07-17 Kenichi Handa <handa@m17n.org>
5942
5943 * casetab.c (shuffle): Fix the logic of setting up the cycle.
5944
5945 2009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5946
5947 * nsfns.m (Fns_set_alpha): Remove function.
5948 (syms_of_nsfns): Don't defsubr it.
5949
5950 * nsterm.m (ns_get_color): Remove incompatible color formats.
5951 (ns_color_to_lisp): Generate #rrggbb color format string.
5952
5953 2009-07-16 Richard Stallman <rms@gnu.org>
5954
5955 * fileio.c (Fwrite_region, Fdo_auto_save): Handle save_length = -2.
5956 (Fset_buffer_auto_saved): Handle save_length = -2.
5957
5958 2009-07-16 Chong Yidong <cyd@stupidchicken.com>
5959
5960 * xterm.c (Qx_gtk_map_stock): New var.
5961
5962 * gtkutil.c (update_frame_tool_bar): Use Qx_gtk_map_stock instead
5963 of calling intern each time.
5964
5965 2009-07-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5966
5967 * nsfont.m (nsfont_draw): Remove code for stippling, which actually
5968 does tiling.
5969
5970 * nsterm.m (ns_maybe_dumpglyphs_background): Likewise.
5971
5972 2009-07-14 Kenichi Handa <handa@m17n.org>
5973
5974 * font.c (font_vconcat_entity_vectors): New function.
5975 (struct font_sort_data): New member font_driver_preference.
5976 (font_compare): Check font_driver_preference.
5977 (font_sort_entities): The format of the first argument changed.
5978 (font_delete_unmatched): Likewise.
5979 (font_list_entities): The return type changed.
5980 (font_select_entity): The format of the second argument changed.
5981 (font_find_for_lface): Adjuste for the above changes.
5982 Don't suppress the checking of C even if the repertory supports it.
5983 (Flist_fonts): Adjust for the above changes.
5984
5985 * ftfont.c (ftfont_spec_pattern): New arg langname. Change caller.
5986 (ftfont_list): Adjust for the change of ftfont_spec_pattern.
5987 Reject a font who has adstyle property that is different from a
5988 langname derived from registry property.
5989 (ftfont_match): Adjust for the change of ftfont_spec_pattern.
5990
5991 2009-07-13 Eli Zaretskii <eliz@gnu.org>
5992
5993 * dired.c (directory_files_internal) [WINDOWSNT]: Don't make a
5994 local copy of dirfilename.
5995
5996 2009-07-13 Kenichi Handa <handa@m17n.org>
5997
5998 * chartab.c (sub_char_table_ref_and_range): Fix the range check
5999 against max_char.
6000
6001 * cmds.c (internal_self_insert): Check sym by SYMBOLP before
6002 calling XSYMBOL (sym).
6003
6004 2009-07-11 Eli Zaretskii <eliz@gnu.org>
6005
6006 * dired.c (directory_files_internal_w32_unwind) [WINDOWSNT]:
6007 New function.
6008 (directory_files_internal) [WINDOWSNT]:
6009 Bind w32-get-true-file-attributes to either t or nil, depending whether
6010 the filesystem of the directory is fast or slow.
6011
6012 * w32.c (logon_network_drive): Don't assume PATH is an absolute
6013 file name.
6014 (is_slow_fs): New function.
6015 (stat): Use it to determine whether to issue more system calls to
6016 get accurate file attributes, when w32-get-true-file-attributes is
6017 `local'.
6018
6019 2009-07-10 Jan Djärv <jan.h.d@swipnet.se>
6020
6021 * xfns.c (Fx_select_font): Remember last font selected in
6022 x_last_font_name and use that the next time. Also try the frame
6023 parameter font-parameter as default to the font dialog.
6024
6025 2009-07-10 Kenichi Handa <handa@m17n.org>
6026
6027 * xftfont.c (xftfont_open): Fix typo: FC_RGBA->FC_HINT_STYLE.
6028
6029 2009-07-09 Eli Zaretskii <eliz@gnu.org>
6030
6031 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
6032
6033 * w32.c (stat): Treat UNC file names as residing on remote
6034 drives. (Bug#3542)
6035
6036 2009-07-09 Kenichi Handa <handa@m17n.org>
6037
6038 * fontset.c (fontset_find_font): Fix previous change.
6039
6040 2009-07-08 Michael Albinus <michael.albinus@gmx.de>
6041
6042 * dbusbind.c (xd_initialize, Fdbus_call_method, xd_read_message)
6043 (Fdbus_register_signal, Fdbus_register_method): Cleanup memory of
6044 error flag.
6045
6046 2009-07-08 Kenichi Handa <handa@m17n.org>
6047
6048 * fontset.c (fontset_find_font): Fix the logic of handling
6049 charset_matched.
6050 (font_for_char): Delete unused var.
6051 (generate_ascii_font_name): Delete it.
6052
6053 * coding.h (JIS_TO_SJIS2): Fix the code range check.
6054
6055 * coding.c (detect_coding_sjis): Handle shift_jis-2004 correctly.
6056 (encode_coding_sjis): Fix the code range check.
6057
6058 2009-07-07 Chong Yidong <cyd@stupidchicken.com>
6059
6060 * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
6061 (Fexpand_file_name): Copy string data properly (Bug#3772).
6062
6063 2009-07-07 Jan Djärv <jan.h.d@swipnet.se>
6064
6065 * xterm.c (handle_one_xevent): Only call x_check_fullscreen on the
6066 first MapNotify.
6067
6068 2009-07-07 Kenichi Handa <handa@m17n.org>
6069
6070 * character.h (unibyte_has_multibyte_table): Delete extern.
6071 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): Delete it.
6072
6073 * charset.c (Fset_charset_priority): Update charset_unibyte.
6074 (syms_of_charset): Initialize charset_unibyte.
6075
6076 * character.c (unibyte_has_multibyte_table): Delete it.
6077 (multibyte_char_to_unibyte): Use CHAR_TO_BYTE8 instead of checking
6078 charset_unibyte.
6079 (multibyte_char_to_unibyte_safe): Likewise.
6080 (Funibyte_char_to_multibyte): Don't check charset_unibyte.
6081
6082 * xdisp.c (get_next_display_element): Decode it->c by charset_unibyte.
6083 (x_produce_glyphs): Likewise.
6084
6085 * .gdbinit (xcharset): Fix the treating $arg0.
6086
6087 2009-07-04 Eli Zaretskii <eliz@gnu.org>
6088
6089 Emulation of `getloadavg' on MS-Windows.
6090 * w32.c: Include float.h.
6091 (g_b_init_get_native_system_info, g_b_init_get_system_times)
6092 (GetNativeSystemInfo_Proc, GetSystemTimes_Proc): Declare.
6093 (get_native_system_info, get_system_times): New functions.
6094 (buf_next, buf_prev, sample_system_load, getavg): New subroutines.
6095 (getloadavg): Rewrite using GetSystemTimes and GetNativeSystemInfo.
6096 (globals_of_w32): Initialize g_b_init_get_native_system_info,
6097 g_b_init_get_system_times, and num_of_processors.
6098
6099 2009-07-03 Jason Rumney <jasonr@gnu.org>
6100
6101 * w32term.c (w32_initialize): Use standard types.
6102
6103 2009-07-03 Eli Zaretskii <eliz@gnu.org>
6104
6105 * dired.c (Ffile_attributes): Decode user and group names by the
6106 locale's encoding. (Bug#3443)
6107
6108 2009-07-03 Dan Nicolaescu <dann@ics.uci.edu>
6109
6110 * sysdep.c (sys_suspend): Remove USG_JOBCTRL #ifdef, unused.
6111 (mkdir): Remove MKDIR_PROTOTYPE #ifdef, unused.
6112
6113 * callproc.c (child_setup): Use #else instead of a separate #ifdef.
6114
6115 * term.c (init_tty): Remove spurious #ifdef.
6116
6117 * m/mips.h: Mention this file is also used for netbsd.
6118 * m/pmax.h: Remove file.
6119
6120 2009-07-03 Jan Djärv <jan.h.d@swipnet.se>
6121
6122 * xterm.h (struct x_display_info): Add invisible_cursor.
6123 (struct x_output): Add current_cursor.
6124
6125 * xterm.c (XTtoggle_invisible_pointer): New function.
6126 (x_define_frame_cursor): Don't define cursor if invisible or the
6127 same as before. Set current_cursor.
6128 (x_create_terminal): Set toggle_invisible_pointer_hook.
6129
6130 * xfns.c (make_invisible_cursor): New function.
6131 (x_set_mouse_color): Call make_invisible_cursor.
6132 Set current_cursor.
6133 (x_window): Set current_cursor.
6134
6135 * termhooks.h (struct terminal): Add toggle_invisible_pointer_hook.
6136
6137 * keyboard.c (command_loop_1): Call frame_make_pointer_invisible after
6138 inserting a character.
6139 (read_avail_input): Call frame_make_pointer_visible.
6140
6141 * frame.c (Vmake_pointer_invisible): New variable.
6142 (frame_make_pointer_invisible, frame_make_pointer_visible):
6143 New functions.
6144 (syms_of_frame): DEFVAR make-pointer-invisible, initialize to Qt.
6145
6146 * frame.h: Declare frame_make_pointer_invisible and
6147 frame_make_pointer_visible.
6148 (struct frame): Add pointer_invisible.
6149
6150 2009-07-02 Jan Djärv <jan.h.d@swipnet.se>
6151
6152 * gtkutil.c (xg_frame_set_char_size): Do set width/height if the
6153 frame isn't visible.
6154 (xg_frame_resized): If width/height is -1, get size of window
6155 from X server.
6156
6157 * xterm.c (handle_one_xevent): Call xg_frame_resized for USE_GTK
6158 for MapNotify.
6159
6160 * gtkutil.c (xg_frame_set_char_size): Do not set pixel width/height
6161 here or call change_frame_size. Just call flush_and_sync.
6162 (flush_and_sync): Reintroduce.
6163
6164 2009-07-01 Jan Djärv <jan.h.d@swipnet.se>
6165
6166 * xterm.h (struct x_display_info): Add Xatom_net_wm_state_sticky.
6167
6168 * xterm.c (x_handle_net_wm_state): Also look for sticky.
6169 (x_term_init): Initialize Xatom_net_wm_state_sticky.
6170
6171 * frame.h: Declare Qsticky.
6172
6173 * w32fns.c (w32_frame_parm_handlers): Set 0 for sticky.
6174
6175 * nsfns.m (ns_frame_parm_handlers): Ditto.
6176
6177 * frame.c: Declare Qsticky.
6178 (frame_parms): Add sticky.
6179
6180 * xfns.c (x_frame_parm_handlers): Let x_set_sticky handle sticky.
6181
6182 * xterm.h: Declare x_set_sticky.
6183
6184 * xterm.c (x_set_sticky): New function.
6185
6186 * gtkutil.c (xg_tool_bar_proxy_help_callback): New function.
6187 (xg_tool_bar_menu_proxy): Attach enter/leave events to
6188 xg_tool_bar_proxy_help_callback.
6189
6190 * emacs.c (USAGE3, standard_args): Add -mm and --maximized.
6191
6192 * frame.c: Qmaximized is new.
6193 (x_set_frame_parameters): Do not handle fullscreen specially.
6194 Only set width and height if explicitly set.
6195 (x_set_fullscreen): Handle Qmaximized.
6196 (x_set_font, x_figure_window_size): Do not handle fullscreen specially.
6197 (syms_of_frame): Initialize Qmaximized.
6198
6199 * frame.h (fullscreen_type): Add FULLSCREEN_MAXIMIZED.
6200 Declare Qfullwidth, Qfullheight, Qfullboth, Qmaximized.
6201
6202 * xterm.c (handle_one_xevent): Remove call to x_check_fullscreen
6203 for Expose event. Add call to x_check_fullscreen for MapNotify event.
6204 Remove all code w.r.t. fullscreen from ConfigureNotify event. Do not
6205 set gravity to NorthWestGravity when USE_GTK.
6206 (set_wm_state): New function.
6207 (do_ewmh_fullscreen): Use set_wm_state. Also handle FULLSCREEN_MAXIMIZED.
6208 (x_handle_net_wm_state): Handle FULLSCREEN_MAXIMIZED.
6209 (x_check_fullscreen): Simplify so we only handle EMWH type of fullscreen
6210 or the case when no window manager is running. That means remove calls
6211 to x_real_positions and x_fullscreen_adjust.
6212
6213 * gtkutil.c (flush_and_sync, x_wm_size_hint_off): Remove.
6214 (xg_frame_set_char_size): Remove calls to x_wm_size_hint_off and
6215 flush_and_sync.
6216 (xg_height_changed): New function.
6217 (xg_create_frame_widgets): Remove call to gtk_widget_set_size_request
6218 and gtk_window_set_policy. Set frame gravity after parsing the
6219 geometry string.
6220 (xg_update_frame_menubar, free_frame_menubar)
6221 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
6222 (update_frame_tool_bar, free_frame_tool_bar): Call xg_height_changed.
6223 Remove calls to xg_frame_set_char_size.
6224
6225 2009-07-01 Kenichi Handa <handa@m17n.org>
6226
6227 * keyboard.c (decode_keyboard_code): New function.
6228 (tty_read_avail_input): Decode the input bytes if necessary.
6229
6230 * coding.c (setup_coding_system):
6231 Initialize coding->carryover_bytes to 0.
6232 (Fset_keyboard_coding_system_internal): If CODING-SYSTEM is nil,
6233 use Qno_conversion.
6234
6235 2009-07-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6236
6237 * Makefile.in (SOME_MACHINE_LISP): Add ../lisp/term/common-win.elc.
6238
6239 2009-06-30 Chong Yidong <cyd@stupidchicken.com>
6240
6241 * xftfont.c (xftfont_open): Avoid passing NULL argument to XftLockFace.
6242
6243 2009-06-30 Jason Rumney <jasonr@gnu.org>
6244
6245 * w32term.c (w32_initialize): Use GetModuleHandle for library that
6246 is already loaded.
6247 Set user model ID if supported (bug#1849).
6248
6249 2009-06-29 Jim Meyering <meyering@redhat.com>
6250
6251 Remove useless if-before-xfree test.
6252 * nsfont.m (nsfont_close): Remove useless test.
6253 * term.c (delete_tty): Likewise.
6254 * w32.c (system_process_attributes): Likewise.
6255 * w32font.c (w32font_close): Likewise.
6256 * xfaces.c (x_free_gc): Likewise.
6257 * xselect.c (buffer): Likewise.
6258
6259 2009-06-28 Andreas Schwab <schwab@linux-m68k.org>
6260
6261 * process.c (send_process): Keep decoded string in a local
6262 variable and protect it from GC. (Bug#3521)
6263
6264 2009-06-28 Eli Zaretskii <eliz@gnu.org>
6265
6266 * term.c (create_tty_output) [MSDOS]: #ifdef away.
6267 (tty_free_frame_resources) [MSDOS]: Add a DOS-specific version.
6268
6269 2009-06-28 Chong Yidong <cyd@stupidchicken.com>
6270
6271 * xdisp.c (start_display, handle_face_prop)
6272 (move_it_vertically_backward, cursor_row_fully_visible_p)
6273 (redisplay_window, try_window_id, produce_image_glyph):
6274 Delete some #ifdef-ed out code chunks that are now obsolete.
6275
6276 * xterm.c (x_update_window_begin, x_new_focus_frame)
6277 (x_scroll_bar_handle_click, handle_one_xevent)
6278 (handle_one_xevent, XTread_socket, x_focus_on_frame)
6279 (x_make_frame_visible, x_make_frame_invisible)
6280 (x_wm_set_icon_pixmap, x_initialize): Delete some #ifdef-ed out
6281 code chunks that are now obsolete.
6282
6283 2009-06-28 Michael Albinus <michael.albinus@gmx.de>
6284
6285 * dbusbind.c (XD_SYMBOL_TO_DBUS_TYPE): Convert macro into function
6286 xd_symbol_to_dbus_type. With Solaris 2.11, it was said to compile
6287 for hours, when optimzation is enabled.
6288 (xd_signature, xd_append_arg, xd_retrieve_arg, xd_initialize)
6289 (xd_read_message): Make them static.
6290
6291 2009-06-27 Chuck Blake <cblake@pdos.csail.mit.edu> (tiny change)
6292
6293 * term.c (turn_on_face): Allow simultaneously bold and dim
6294 terminal faces (Bug#3530).
6295
6296 2009-06-27 Chong Yidong <cyd@stupidchicken.com>
6297
6298 * frame.c (x_get_arg): Check if dpyinfo is non-NULL.
6299
6300 * xdisp.c (mouse_face_from_buffer_pos): Fix detection of
6301 truncation glyphs (Bug#3686).
6302
6303 2009-06-27 Glenn Morris <rgm@gnu.org>
6304
6305 * m/pmax.h: Restore file, with only netbsd portions.
6306
6307 2009-06-26 David Reitter <david.reitter@gmail.com>
6308
6309 * nsterm.m (keydown): Avoid infinite loop.
6310
6311 2009-06-26 Peter Jolly <peter@jollys.org> (tiny change)
6312
6313 * ftfont.c (get_adstyle_property): Call font_intern_prop with 1 as
6314 the arg FORCE_SYMBOL.
6315
6316 2009-06-25 Kenichi Handa <handa@m17n.org>
6317
6318 * fontset.c (fontset_find_font): When a usable rfont_def is found
6319 in a fallback font-group, make it the first element of the group.
6320
6321 2009-06-24 Chong Yidong <cyd@stupidchicken.com>
6322
6323 * emacs-icon.h: Always define gnu_xpm_bits on GTK (bug#3671).
6324
6325 2009-06-24 Kenichi Handa <handa@m17n.org>
6326
6327 * fontset.c (fontset_get_font_group): Return 0 if no font-group is
6328 set for C.
6329 (fontset_font): Record the availability of a font for C both in
6330 the realized fontsets of the current one and the default one.
6331
6332 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
6333
6334 * sysdep.c (child_setup_tty): Remove SIGNALS_VIA_CHARACTERS
6335 conditional, it is always defined on AIX.
6336
6337 2009-06-23 Miles Bader <miles@gnu.org>
6338
6339 * window.c (Vrecenter_redisplay): New variable.
6340 (syms_of_window): Initialize it.
6341 (Qtty): New extern declaration.
6342 (Frecenter): Only do redisplay if Vrecenter_redisplay requests it.
6343
6344 2009-06-23 Jim Meyering <meyering@redhat.com>
6345
6346 * src/ftfont.c (setup_otf_gstring, ftfont_shape_by_flt):
6347 Use xmalloc and xrealloc (not malloc and realloc), so subsequent heap
6348 pointer dereferences are guaranteed to be valid.
6349
6350 2009-06-23 Kenichi Handa <handa@m17n.org>
6351
6352 * emacs.c (main): Call init_font ().
6353
6354 * font.h (Vfont_log): Extern it.
6355 (FONT_ADD_LOG, FONT_DEFERRED_LOG): New macros.
6356
6357 * font.c (font_sort_entities, font_list_entities)
6358 (font_matching_entity, font_open_entity)
6359 (font_close_object): Change font_add_log to FONT_ADD_LOG.
6360 (Vfont_log): Delete static.
6361 (font_log_env_checked): Delete this variable.
6362 (font_add_log): Don't check font_log_env_checked.
6363 (font_deferred_log): Check Vfont_log.
6364 (init_font): New function.
6365
6366 * ftfont.c: Change font_add_log to FONT_ADD_LOG.
6367
6368 * w32font.c: Change font_add_log to FONT_ADD_LOG.
6369
6370 * w32uniscribe.c: Change font_add_log to FONT_ADD_LOG.
6371
6372 * xfont.c: Change font_add_log to FONT_ADD_LOG.
6373
6374 * fontset.c (fontset_font): Call FONT_DEFERRED_LOG.
6375 (face_for_char): Don't call font_deferred_log here.
6376 (font_for_char): Likewise.
6377
6378 2009-06-22 Chong Yidong <cyd@stupidchicken.com>
6379
6380 * w32term.c (x_draw_glyph_string): Use the glyph string's width
6381 rather than its background_width for drawing the overline and
6382 underline (Bug#489).
6383
6384 * xterm.c (x_draw_glyph_string): Use the glyph string's width
6385 rather than its background_width for drawing the overline and
6386 underline (Bug#489).
6387 (xg_default_icon_file): New variable.
6388 (syms_of_xterm): Initialize it to the Emacs SVG icon file.
6389 (x_bitmap_icon): Under GTK, use xg_default_icon_file.
6390
6391 * xdisp.c (Qbefore_string, Qafter_string): Add externs.
6392 (load_overlay_strings): Remove externs.
6393 (fast_find_position): Function deleted.
6394 (mouse_face_from_buffer_pos): New function, based on
6395 fast_find_position. Correctly handle before-strings,
6396 display-strings, and after-strings (Bug#1220).
6397 (note_mouse_highlight): Use mouse_face_from_buffer_pos.
6398
6399 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
6400
6401 * xdisp.c (IT_DISPLAYING_WHITESPACE): Define for !HAVE_WINDOW_SYSTEM.
6402 (move_it_in_display_line_to, move_it_in_display_line_to)
6403 (display_line): Remove #ifdef HAVE_WINDOW_SYSTEM.
6404
6405 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
6406
6407 * Branch for 23.1.
6408
6409 2009-06-21 Jason Rumney <jasonr@gnu.org>
6410
6411 * w32term.c (keyboard_codepage): New static variable.
6412 (w32_read_socket) [WM_INPUTLANGCHANGE]: Update it.
6413 (w32_read_socket) [WM_CHAR]: Use it to decode character
6414 input (bug#3237).
6415 (w32_initialize): Initialize it.
6416 (codepage_for_locale): New function.
6417
6418 2009-06-20 Ken Raeburn <raeburn@raeburn.org>
6419
6420 * process.c (status_message): Pass Faset index argument as a lisp
6421 object, so as to work with USE_LISP_UNION_TYPE.
6422
6423 2009-06-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6424
6425 * coding.c (Ffind_coding_systems_region_internal):
6426 Cache checked characters.
6427
6428 2009-06-18 Kenichi Handa <handa@m17n.org>
6429
6430 * coding.c (decode_coding_iso_2022): Check MSB of bytes more rigidly.
6431
6432 2009-06-18 Andreas Schwab <aschwab@redhat.com>
6433
6434 * xdisp.c (redisplay_internal): Check that the frame is still
6435 live after redisplay of its windows.
6436 (redisplay_windows): Check that the window is still live.
6437
6438 2009-06-17 Andreas Schwab <schwab@linux-m68k.org>
6439
6440 * coding.c (detect_coding_utf_16): Fix previous change.
6441
6442 2009-06-16 Kenichi Handa <handa@m17n.org>
6443
6444 * coding.c (detect_coding_utf_16): Fix the logic of rejecting
6445 UTF-16 by checking the dispersion of Eth and Oth bytes.
6446
6447 2009-06-15 Andreas Schwab <schwab@linux-m68k.org>
6448
6449 * coding.c (detect_coding_utf_16): Fix typo counting odd bytes.
6450
6451 2009-06-15 Kenichi Handa <handa@m17n.org>
6452
6453 * process.c (status_message): Fix previous change. Be sure to
6454 decode a localized string.
6455
6456 2009-06-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6457
6458 * xterm.c (x_delete_terminal): Put previous change in #if 0 and
6459 add comment explaining why.
6460
6461 2009-06-14 Sidney Markowitz <sidney@sidney.com>
6462
6463 * nsmenu.m (EmacsTooltip: setText): Set height of tooltip.
6464
6465 2009-06-14 Adrian Robert <Adrian.B.Robert@gmail.com>
6466
6467 * nsfont.m (ns_attribute_value): Remove.
6468 (ns_attribute_fvalue): Incorporate code from ns_attribute_value.
6469 (ns_has_attribute): Shrink the normal range.
6470 (ns_findfonts): Don't worry about requested spec in determining
6471 need for synthItal.
6472 (ns_get_covering_families): Retain scriptToFamilies.
6473
6474 2009-06-14 Seiji Zenitani <zenitani@mac.com>
6475
6476 * xdisp.c [USE_MAC_TOOLBAR]: Remove obsolete definition for Mac Carbon.
6477
6478 2009-06-11 Kenichi Handa <handa@m17n.org>
6479
6480 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
6481 overhang for the static composition case.
6482
6483 2009-06-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6484
6485 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
6486 overhang for the automatic composition case.
6487
6488 * xterm.c (x_compute_glyph_string_overhangs): Handle the automatic
6489 composition case.
6490
6491 2009-06-10 Chong Yidong <cyd@stupidchicken.com>
6492
6493 * xdisp.c (get_next_display_element): When handling wrap-prefix
6494 and line-prefix, treat \n as a control character (bug#3502).
6495
6496 2009-06-10 Kenichi Handa <handa@m17n.org>
6497
6498 * font.c (font_parse_family_registry): Fix for one-char foundry.
6499 (font_sort_entities): Initialize prefer_prop[FONT_AVGWIDTH_INDEX].
6500
6501 2009-06-09 Dmitry Dzhus <dima@sphinx.net.ru> (tiny change)
6502
6503 * process.c (status_message): Fix handling of multibyte signal
6504 string (Bug#3499).
6505
6506 2009-06-09 Jim Meyering <meyering@redhat.com>
6507
6508 * xfaces.c (Fx_load_color_file): Avoid array bounds error if the
6509 color name is missing.
6510
6511 2009-06-09 Kenichi Handa <handa@m17n.org>
6512
6513 * charset.c (Fmap_charset_chars): In docstring, state clearly that
6514 FROM-CODE and TO-CODE are codepoints of CHARSET.
6515
6516 2009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
6517
6518 * nsterm.m (ns_use_system_highlight_color): Drop, unused.
6519
6520 2009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
6521
6522 Changes to support :script/:lang/:otf in NS font driver.
6523 * nsfont.m (nsfont_escape_name, nsfont_unescape_name)
6524 (nsfont_get_family, nsfont_char_width): Rename to ns_ prefix to
6525 indicate not part of font driver interface, and change callers.
6526 (ns_get_family): Remove pointless null check.
6527 (nsfont_spec_to_traits, nsfont_fmember_to_entity): Replace with
6528 ns_spec_to_descriptor, ns_descriptor_to_entity.
6529 (nsfont_trait_distance, nsfont_make_fontset_for_font): Remove.
6530 (ns_attribute_value, ns_attribute_fvalue, ns_has_attribute)
6531 (ns_spec_to_descriptor, ns_descriptor_to_entity)
6532 (ns_charset_covers, ns_lang_to_script, ns_otf_to_script)
6533 (ns_get_req_script, ns_accumulate_script_ranges)
6534 (ns_script_to_charset, ns_get_covering_families, ns_findfonts):
6535 New functions.
6536 (nsfont_list, nsfont_match): Use ns_findfonts.
6537 (nsfont_open): Use font descriptor instead of traits.
6538 (nsfont_draw): Handle "automatic" (lookup-table) compositions.
6539 (dump_glyphstring): Rename to ns_dump_glyphstring.
6540
6541 * nsterm.h (dump_glyphstring): Rename to ns_dump_glyphstring.
6542
6543 * nsfns.m (Fns_popup_font_panel): Use shared font manager.
6544
6545 * fontset.c (fontset_from_font): Remove NS-specific code.
6546
6547 2009-06-08 Peter Jones <pjones@pmade.com> (tiny change)
6548
6549 * nsterm.m (ns_draw_window_cursor): Respect cursor_type for
6550 nonactive windows.
6551
6552 2009-06-08 Felix Mueller <felix@enqueue.eu> (tiny change)
6553
6554 * nsterm.m (ns_init_paths): Append path separator to INFOPATH variable.
6555
6556 2009-06-08 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
6557
6558 * keyboard.c (kbd_buffer_get_event): Null-check used_mouse_menu.
6559
6560 2009-06-07 Chong Yidong <cyd@stupidchicken.com>
6561
6562 * xdisp.c (move_it_in_display_line_to): On text-only terminals,
6563 account for the overflowing of newlines into the last glyph on the
6564 display line (Bug#3482).
6565
6566 2009-06-05 David Reitter <david.reitter@gmail.com>
6567
6568 * nsselect.m (Fx_own_selection_internal, Fx_selection_exists_p)
6569 (Fx_selection_owner_p): Rename from Fns_own_selection_internal,
6570 Fns_selection_exists_p, Fns_selection_owner_p.
6571
6572 2009-06-03 Jason Rumney <jasonr@gnu.org>
6573
6574 * w32fns.c (x_create_tip_frame): Use the uniscribe font backend if
6575 available. (Bug#3379)
6576
6577 2009-05-29 Kenichi Handa <handa@m17n.org>
6578
6579 * coding.c (get_translation_table):
6580 Check Venable_character_translation.
6581
6582 2009-05-26 David Reitter <david.reitter@gmail.com>
6583
6584 * nsterm.m (ns_raise_frame): Only raise frame if visible.
6585 (x_make_frame_visible): Move frame to front rather than calling
6586 ns_raise_frame().
6587 (keyDown:): Do not swallow events that aren't re-sent if frame
6588 isn't key window.
6589 (drawRect:): Do not set visibility/iconified flags because
6590 drawRect may be called by NSView even if the frame is hidden.
6591
6592 * nsfns.m (Fx_create_frame): Follow other ports in
6593 determining visibility; default to t. Ensure async_visible is set.
6594
6595 2009-05-23 Eli Zaretskii <eliz@gnu.org>
6596
6597 * dired.c (Ffile_attributes): Doc fix.
6598
6599 2009-05-22 Chong Yidong <cyd@stupidchicken.com>
6600
6601 * m/mips.h [GNU_LINUX]: Don't define DATA_START (Bug#2685).
6602
6603 2009-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
6604
6605 * xfont.c (xfont_list_pattern): Don't initialize xfont_scripts_cache
6606 and xfont_scratch_props.
6607 (syms_of_xfont): Do it here instead.
6608 (xfont_find_ccl_program): Delete, unused.
6609 (xfont_open): Delete unused var `i'.
6610
6611 2009-05-21 Kenichi Handa <handa@m17n.org>
6612
6613 * fontset.c (Qlatin): Don't make it static.
6614
6615 * xfont.c (xfont_chars_supported, xfont_supported_scripts):
6616 New functions.
6617 (xfont_scripts_cache, xfont_scratch_props): New variables.
6618 (Qlatin, Vscalable_fonts_allowed): Extern it.
6619 (xfont_list_pattern): Argument changed. Callers changed.
6620 Check Vscalable_fonts_allowed. Check the support of a script.
6621 (xfont_list): Don't reject a font spec with :script property.
6622 (xfont_has_char): Fix setting of encoding.
6623 (syms_of_xfont): Staticpro and initialize xfont_scripts_cache and
6624 xfont_scratch_props.
6625
6626 2009-05-19 Kenichi Handa <handa@m17n.org>
6627
6628 * font.c (font_sort_entities): Rename from font_sort_entites.
6629 Callers changed.
6630
6631 2009-05-18 Kenichi Handa <handa@m17n.org>
6632
6633 * font.c (font_find_for_lface): Copy SPEC's FONT_TYPE too.
6634
6635 2009-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
6636
6637 * frame.c (do_switch_frame) [NS_IMPL_COCOA]: Don't raise any window.
6638 (delete_frame) [NS_IMPL_COCOA]: Instead, do it here.
6639
6640 2009-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6641
6642 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase here.
6643 (x_delete_terminal): Dissociate resource database from display and
6644 then call XrmDestroyDatabase before closing display.
6645
6646 2009-05-18 Adrian Robert <Adrian.B.Robert@gmail.com>
6647
6648 * nsterm.m (ns_read_socket): Remove unused variable.
6649 * frame.c (do_switch_frame): Under NS_IMPL_COCOA section, check
6650 whether selected frame is viable before raising it (based on patch
6651 by David Reitter), and improve commentary.
6652 * nsfont.m (nsfont_make_fontset_for_font): Avoid a compiler warning.
6653
6654 2009-05-15 Kenichi Handa <handa@m17n.org>
6655
6656 * font.c (Ffont_spec): Check arguments.
6657
6658 2009-05-14 Chong Yidong <cyd@stupidchicken.com>
6659
6660 * xfaces.c (tty_supports_face_attributes_p): Recognize unspecified
6661 weight when testing attributes (Bug#3282).
6662
6663 2009-05-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6664
6665 * gtkutil.c (xg_frame_set_char_size): Set frame pixel width/height to
6666 what we expect to get in the next ConfigureNotify event.
6667
6668 * xftfont.c (xftfont_open): Make sure that Xrender extension is added
6669 before Xft one (Bug#1696).
6670
6671 2009-05-07 David Reitter <david.reitter@gmail.com>
6672
6673 * nsfns.m (Fx_display_planes): Compute bitplanes using
6674 NSBitsPerPixelFromDepth (Bug#3207).
6675
6676 2009-05-10 Chong Yidong <cyd@stupidchicken.com>
6677
6678 * editfns.c (Ftranspose_regions): Doc fix (Bug#3248).
6679
6680 2009-05-10 Ulrich Mueller <ulm@gentoo.org>
6681
6682 * s/gnu-linux.h: Make GCPROs and UNGCPRO no-ops also on SuperH.
6683
6684 2009-05-07 David Reitter <david.reitter@gmail.com>
6685
6686 * nsterm.m (ns_dumpglyphs_stretch, ns_dumpglyphs_image):
6687 Respect mouse face background.
6688
6689 2009-05-07 David Reitter <david.reitter@gmail.com>
6690
6691 * nsterm.m (note_mouse_movement, ns_frame_up_to_date):
6692 Mouse movement/highlight: bracket drawing operations
6693 in ns_update_begin and ns_update_end.
6694
6695 2009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
6696
6697 * nsfns.m (ns_get_screen): Rewrite.
6698 Don't presume selected-frame is of type `ns'.
6699
6700 * font.c (font_update_drivers): Sanity fallback to avoid disabling
6701 all drivers.
6702
6703 * nsterm.m (-windowDidResize:): Avoid inf-loop under GNUStep.
6704
6705 2009-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6706
6707 * keyboard.h (add_user_signal): Fix typo in extern.
6708
6709 * lisp.h (add_user_signal): Remove extern.
6710
6711 * unexelf.c (unexec): Consider a section to precede the .bss section
6712 if its addresses overlap that of .bss.
6713 (unexec) [NS_IMPL_GNUSTEP]: Copy ObjC-related data from old file
6714 instead of dumping process.
6715
6716 2009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
6717
6718 * keyboard.c (syms_of_keyboard): Staticpro pending_funcalls.
6719
6720 2009-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
6721
6722 * Makefile.in (ctagsfiles1, ctagsfiles2): Include ObjC files in TAGS.
6723
6724 2009-05-02 Dan Nicolaescu <dann@ics.uci.edu>
6725
6726 * xterm.c (x_handle_net_wm_state): Move declaration of lval before
6727 any statements.
6728
6729 2009-05-02 Andreas Schwab <schwab@linux-m68k.org>
6730
6731 * process.c (read_process_output): Make sure the current buffer is
6732 always restored.
6733
6734 * coding.c (record_conversion_result): Don't modify
6735 Vlast_code_conversion_error for successful result.
6736 (alloc_destination): Don't clobber conversion result. (Bug#1650)
6737
6738 2009-05-01 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
6739
6740 * charset.c (load_charset): Reformat X==Y==Z to (X==Y)==Z.
6741 (load_charset_map): Remove unnecessary code.
6742
6743 2009-04-30 David Reitter <david.reitter@gmail.com>
6744
6745 * nsterm.m (convert_ns_to_X_keysym): Define function keys f16
6746 through f24.
6747
6748 2009-04-30 Chong Yidong <cyd@stupidchicken.com>
6749
6750 * xfaces.c (face_at_buffer_position): New arg base_face_id.
6751
6752 * xdisp.c (handle_face_prop): Pass base_face_id of iterator to
6753 face_at_buffer_position.
6754 (face_before_or_after_it_pos, get_next_display_element)
6755 (note_mouse_highlight): Update face_at_buffer_position call.
6756
6757 * term.c (term_mouse_highlight):
6758 * msdos.c (IT_note_mouse_highlight):
6759 * fontset.c (Finternal_char_font):
6760 * font.c (font_at, font_range): Update face_at_buffer_position call.
6761
6762 * dispextern.h (face_at_buffer_position): Update prototype.
6763
6764 2009-04-30 Kenichi Handa <handa@m17n.org>
6765
6766 * fontset.c (fontset_find_font): Check if rfont_def is Qnil or not.
6767
6768 2009-04-29 Andreas Schwab <schwab@linux-m68k.org>
6769
6770 * callproc.c (Fcall_process): Fix GC protection. Make sure
6771 current buffer is always restored.
6772
6773 2009-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6774
6775 * atimer.c (init_atimer): Also clear stopped_atimers.
6776
6777 * keyboard.c (init_keyboard) [POLL_FOR_INPUT]: Reset poll_timer.
6778
6779 * process.c (create_process): Clean up merger residues of
6780 2008-07-17 change.
6781
6782 2009-04-29 Ulrich Mueller <ulm@gentoo.org>
6783
6784 * lread.c (Vread_circle): New variable.
6785 (read1): Disable recursive read if Vread_circle is nil.
6786
6787 2009-04-29 Kenichi Handa <handa@m17n.org>
6788
6789 * fontset.h (set_default_ascii_font): Delete extern.
6790
6791 * fontset.c (set_default_ascii_font): Delete this unused function.
6792
6793 * frame.c (x_set_font): When ARG is a font-object, check if the
6794 font-object matches with the ASCII font-spec of the frame's
6795 fontset. If not, create a new fontset for the frame. (Bug #3075)
6796
6797 2009-04-28 Andreas Schwab <schwab@linux-m68k.org>
6798
6799 * fns.c (Flocale_info): Protect vector from GC during decoding.
6800
6801 * process.c (Fstart_process): Protect argv strings from GC during
6802 encoding.
6803
6804 2009-04-27 Andreas Schwab <schwab@linux-m68k.org>
6805
6806 * sysdep.c: Include <ctype.h>.
6807
6808 2009-04-27 David Reitter <david.reitter@gmail.com>
6809
6810 * nsfont.m (nsfont_open): Remove unused variable shrink.
6811 Remove commented-out code.
6812
6813 2009-04-26 Johan Bockgård <bojohan@gnu.org>
6814
6815 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
6816
6817 2009-04-25 Jason Rumney <jasonr@gnu.org>
6818
6819 * w32font.c (clear_cached_metrics): Remove, unused since 2008-08-02.
6820
6821 2009-04-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6822
6823 * fringe.c (init_fringe_bitmap) [HAVE_X_WINDOWS && WORDS_BIG_ENDIAN]:
6824 Swap bytes in short integer if fringe bitmap width > 8.
6825
6826 2009-04-23 Kenichi Handa <handa@m17n.org>
6827
6828 * xfaces.c (Fx_list_fonts): If a font size is specified in
6829 PATTERN, set it in returned scalable fonts.
6830
6831 2009-04-22 Chong Yidong <cyd@stupidchicken.com>
6832
6833 * keyboard.c (Fset_input_meta_mode): Doc fix.
6834
6835 * dispnew.c (Fsend_string_to_terminal): Doc fix.
6836
6837 * data.c (Fterminal_local_value, Fset_terminal_local_value): Doc fixes.
6838
6839 * coding.c (Fterminal_coding_system): Doc fix.
6840
6841 * xfns.c (Fx_display_grayscale_p, Fx_display_pixel_width)
6842 (Fx_display_pixel_height, Fx_display_planes)
6843 (Fx_display_color_cells, Fx_server_max_request_size)
6844 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
6845 (Fx_display_mm_height, Fx_display_mm_width)
6846 (Fx_display_backing_store, Fx_display_visual_class)
6847 (Fx_display_save_under, Fx_close_connection, Fx_synchronize):
6848 Doc fixes, replacing "terminal id" with "terminal object".
6849 (check_x_display_info): Handle terminal objects instead of
6850 terminal ids.
6851
6852 * term.c (Ftty_display_color_p, Ftty_display_color_cells)
6853 (Ftty_type, Fcontrolling_tty_p, Ftty_no_underline, Fsuspend_tty)
6854 (Fresume_tty, Vsuspend_tty_functions, Vresume_tty_functions):
6855 Doc fixes, replacing "terminal id" with "terminal object".
6856
6857 2009-04-21 Kenichi Handa <handa@m17n.org>
6858
6859 * font.c (font_load_for_lface): Cancel previous change (bug#2994).
6860 (font_score): Check AVGWIDTH too.
6861
6862 * coding.c (decode_coding_utf_16): Reduce charbuf_end for the
6863 worst case.
6864 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
6865 (decode_coding_emacs_mule, decode_coding_iso_2022): Likewise.
6866
6867 2009-04-19 Jason Rumney <jasonr@gnu.org>
6868
6869 The following changes fix Bug#3005 for wide glyphs on each platform,
6870 without reintroducing Bug#1258 for stretch glyphs.
6871
6872 * xterm.c (x_draw_bar_cursor): Limit cursor width differently for
6873 BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR using
6874 get_phys_cursor_geometry.
6875
6876 * w32term.c (x_draw_bar_cursor): Limit cursor width differently
6877 for BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR
6878 using get_phys_cursor_geometry.
6879
6880 * nsterm.m (ns_draw_window_cursor): HBAR_CURSOR width already
6881 correctly calculated.
6882
6883 2009-04-19 Jan Djärv <jan.h.d@swipnet.se>
6884
6885 * gtkutil.c (xg_tool_bar_menu_proxy, update_frame_tool_bar):
6886 Use G_CALLBACK instead of GTK_SIGNAL_FUNC which is deprecated.
6887 (xg_initialize): Use g_type_class_ref instead of gtk_type_class which
6888 is deprecated.
6889
6890 2009-04-18 Andreas Schwab <schwab@linux-m68k.org>
6891
6892 * font.c (font_put_frame_data): Use xfree instead of free.
6893
6894 2009-04-17 Juanma Barranquero <lekktu@gmail.com>
6895
6896 * w32font.c (Qja, Qko): Remove declarations.
6897 (syms_of_w32font): Don't DEFSYM them.
6898
6899 2009-04-17 Chong Yidong <cyd@stupidchicken.com>
6900
6901 * font.c (Qja, Qko): Move definitions here from ftfont.c.
6902
6903 * font.h (Qja, Qko): Extern them.
6904
6905 * ftfont.c (Qja, Qko): Remove declarations.
6906
6907 * xfont.c (Qja, Qko): Remove declarations.
6908
6909 2009-04-17 Kenichi Handa <handa@m17n.org>
6910
6911 * editfns.c (Ftranslate_region_internal): Use Fconcat to make a
6912 string from a vector to handle Latin-1 characters correctly.
6913
6914 * ftfont.c (ftfont_pattern_entity): Return a newly allocated
6915 entity even if the cache hits.
6916
6917 2009-04-16 Andreas Schwab <schwab@linux-m68k.org>
6918
6919 * search.c (boyer_moore): Use zero as marker value for a possible
6920 match instead of depending on overflow behavior. (Bug#2844)
6921
6922 * search.c: Use EMACS_INT for buffer positions. Add prototypes.
6923 * lisp.h: Adjust prototypes.
6924
6925 2009-04-16 Chong Yidong <cyd@stupidchicken.com>
6926
6927 * keyboard.c (adjust_point_for_property): Disable 2009-02-12
6928 change (Bug#3003).
6929
6930 2009-04-16 Kenichi Handa <handa@m17n.org>
6931
6932 * xfont.c (xfont_has_char): Special handling of `ja' and `ko' adstyle.
6933
6934 * xftfont.c (xftfont_has_char): Special handling of `ja' and `ko'
6935 adstyle.
6936
6937 * ftfont.c (Qja, Qko): Don't make them static.
6938 (enum ftfont_cache_for): New enum.
6939 (fc_charset_table): Undo the previous change.
6940 (ftfont_get_latin1_charset): Delete it.
6941 (ftfont_pattern_entity): Check cache by ftfont_lookup_cache.
6942 Set FONT_SIZE_INDEX of the entity to 0 for a scalable font. For a
6943 non-scarable font, try to get AVERAGE_WIDTH.
6944 (ftfont_lookup_cache): Argument FOR-FACE is changed to CACHE_FOR.
6945 Change ft_face_cache from a list of a hash-table. Don't check
6946 `ja' and `ko' adstyle here.
6947 (ftfont_get_fc_charset): Call ftfont_lookup_cache with
6948 FTFONT_CACHE_FOR_CHARET.
6949 (ftfont_get_charset): Undo the previous change.
6950 (ftfont_open): Call ftfont_lookup_cache with FTFONT_CACHE_FOR_FACE.
6951 (ftfont_close): Likewise.
6952 (ftfont_has_char): Special handling of `ja' and `ko' adstyle.
6953
6954 * font.c (font_sort_entites): Change the meaning of the arg
6955 BEST-ONLY. Don't optimize for VEC of lenght 1.
6956 (font_select_entity): Just return the value of font_sort_entites.
6957
6958 * xfaces.c (merge_face_vectors): Reflect font properties in
6959 to[LFACE_FONT_INDEX] to the other face attributes. Don't call
6960 font_clear_prop if a face attribute doesn't change.
6961
6962 * charset.h (charset_ksc5601): Extern it.
6963
6964 * charset.c (charset_ksc5601): New variable.
6965 (Fdefine_charset_internal): Set charset_ksc5601.
6966 (init_charset_once): Initialize charset_ksc5601 to -1.
6967
6968 2009-04-15 Dan Nicolaescu <dann@ics.uci.edu>
6969
6970 * fileio.c (history_delete_duplicates): Remove unused declaration.
6971
6972 * callint.c (history_delete_duplicates): New declaration.
6973 (Fcall_interactively): Remove command history duplicates when
6974 history_delete_duplicates is true.
6975
6976 2009-04-14 Eli Zaretskii <eliz@gnu.org>
6977
6978 * buffer.c (syms_of_buffer) <line-spacing>: Doc fix.
6979
6980 2009-04-14 Kenichi Handa <handa@m17n.org>
6981
6982 * font.c (Ffont_info): Fix docstring. Fix the second element of
6983 the returned value (bug#2949).
6984
6985 2009-04-14 Chong Yidong <cyd@stupidchicken.com>
6986
6987 * xdisp.c (Vwrap_prefix, Vline_prefix): Reflow docstrings.
6988
6989 2009-04-14 Kenichi Handa <handa@m17n.org>
6990
6991 * xfont.c (xfont_has_char): The font has C if C is ASCII and the
6992 encoding charset is ascii_compatible.
6993
6994 * charset.c (Fdefine_charset_internal): Make charset
6995 ascii-compatible if the method is CHARSET_METHOD_OFFSET, the
6996 code_offset is 0, and covers all ASCII characters.
6997
6998 2009-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
6999
7000 * nsselect.m (symbol_to_nsstring, clean_local_selection_data)
7001 (ns_string_to_pasteboard_internal):
7002 * nsmenu.m (process_dialog):
7003 * nsimage.m (ns_load_image): Use SDATA and ASET where appropriate.
7004 * nsfont.m (nsfont_open): Use XHASH to make it compile with LISP_UNION.
7005 * lisp.h (Fx_load_color_file): Declare.
7006
7007 2009-04-13 Kenichi Handa <handa@m17n.org>
7008
7009 * font.c (font_delete_unmatched): Preserve the order of list elements.
7010 (font_select_entity): Suppress the code to optimize for the same
7011 kind of fonts.
7012 (font_load_for_lface): Get a font that supports at least ASCII
7013 characters.
7014
7015 * ftfont.c (Qja, Qko): New variables.
7016 (fc_charset_table): Delete uniquifier data for iso8859-1.
7017 (ftfont_get_latin1_charset): New function.
7018 (get_adstyle_property): New function.
7019 (ftfont_pattern_entity): Set FONT_ADSTYLE_INDEX of entity for
7020 bitmap fonts.
7021 (ftfont_lookup_cache): Handle the case that KEY is a font-entity.
7022 Delete iso-8859-1 range from the charset of fonts whose adstyle is
7023 `ko' or `ja'.
7024 (ftfont_get_fc_charset): Call ftfont_lookup_cache with ENTITY.
7025 (ftfont_get_charset): For iso8859-1, call ftfont_get_latin1_charset.
7026 (ftfont_list): Don't refuse a font spec with non-nil `adstyle'
7027 property.
7028 (ftfont_open): Call ftfont_lookup_cache with ENTITY.
7029 (syms_of_ftfont): DEFSYM Qja and Qko.
7030
7031 2009-04-09 Kenichi Handa <handa@m17n.org>
7032
7033 * charset.c (map_charset_chars): For a charset of `superset'
7034 method, fix calculation of code range.
7035
7036 * font.c (font_put_extra): If VAL is nil, delete the slot for PROP
7037 from the list of extra properties.
7038 (font_clear_prop): Be sure to delete `:name' font property.
7039
7040 2009-04-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7041
7042 * dispnew.c (redraw_overlapping_rows): Fix detection of
7043 overlapping for topmost and bottommost rows.
7044
7045 * ftfont.c (ftfont_text_extents): Fix calculation of metrics->descent.
7046
7047 2009-04-06 Jason Rumney <jasonr@gnu.org>
7048
7049 * frame.c (x_set_font): Avoid C99 mid-block variable declaration.
7050
7051 2009-04-06 Kenichi Handa <handa@m17n.org>
7052
7053 * ftxfont.c (ftxfont_draw_backgrond): Fix args to XFillRectangle.
7054
7055 * xftfont.c (xftfont_open): Fix setting font->underline_thickness.
7056
7057 2009-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7058
7059 * ftfont.c (ftfont_open): Fix checking of the return value of
7060 FT_Load_Char. Fix setting font->underline_thickness.
7061
7062 2009-04-04 Chong Yidong <cyd@stupidchicken.com>
7063
7064 * terminal.c (Fterminal_name, Fdelete_terminal, Fterminal_name)
7065 (Fterminal_parameters, Fterminal_parameter)
7066 (Fset_terminal_parameter): In doc string, refer to terminal
7067 objects rather than terminal ids.
7068
7069 2009-04-04 Eli Zaretskii <eliz@gnu.org>
7070
7071 * dosfns.c (system_process_attributes) [SYSTEM_MALLOC]: Don't call
7072 ret_lim_data. (Bug#2867)
7073
7074 2009-04-03 Chong Yidong <cyd@stupidchicken.com>
7075
7076 * term.c (produce_stretch_glyph): Reduce width of stretch glyphs
7077 so they don't get wider than the window, matching 2006-01-23
7078 change to the partner function in xdisp.c (Bug#2800).
7079
7080 2009-04-03 Kenichi Handa <handa@m17n.org>
7081
7082 * print.c (print_object): Make each lowest sub_char_table start a
7083 new line (Bug#2866).
7084
7085 2009-04-02 Kenichi Handa <handa@m17n.org>
7086
7087 * fontset.c (fontset_font): Record no-font when a fontset
7088 explicitly tells not to try another font-specs.
7089
7090 2009-03-30 Pierre Poissinger <pierre.poissinger@gmail.com> (tiny change)
7091
7092 * charset.c (map_charset_for_dump): Add missing UNGCPRO.
7093
7094 2009-03-30 Kenichi Handa <handa@m17n.org>
7095
7096 * fontset.c (fontset_from_font): Specify only registry in a
7097 font-spec for all characters supported by that registry.
7098
7099 * ftfont.c: Fix previous change. Define ftfont_variation_glyphs
7100 even if HAVE_M17N_FLT is not defined.
7101
7102 2009-03-29 Sebastian Rose <sebastian_rose@gmx.de> (tiny change)
7103
7104 * ftfont.c: Conditionalize prototyping and use of
7105 ftfont_variation_glyphs.
7106
7107 2009-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
7108
7109 * frame.c (delete_frame): Work around compiler bug.
7110
7111 * editfns.c (general_insert_function): Adjust to insdel.c changes.
7112 * insdel.c (prepare_to_modify_buffer, signal_before_change):
7113 Some more EMACS_INT.
7114 * lisp.h (copy_text, count_size_as_multibyte): Fix last change.
7115
7116 * xdisp.c (dump_glyph): Fix typo.
7117
7118 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
7119 (adjust_markers_gap_motion, adjust_markers_for_delete)
7120 (adjust_markers_for_insert, adjust_point)
7121 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
7122 (make_gap, copy_text, count_size_as_multibyte, insert)
7123 (insert_and_inherit, insert_before_markers)
7124 (insert_before_markers_and_inherit, insert_1)
7125 (count_combining_before, count_combining_after, insert_1_both)
7126 (insert_from_string, insert_from_string_before_markers)
7127 (insert_from_string_1, insert_from_gap, insert_from_buffer)
7128 (insert_from_buffer_1, adjust_after_replace)
7129 (adjust_after_replace_noundo, adjust_after_insert, replace_range)
7130 (replace_range_2, del_range, del_range_1, del_range_byte)
7131 (del_range_both, del_range_2, modify_region)
7132 (prepare_to_modify_buffer, signal_before_change)
7133 (signal_after_change, Fcombine_after_change_execute): Use EMACS_INT
7134 for buffer positions and sizes.
7135 * lisp.h: Adjust prototypes accordingly.
7136
7137 * fileio.c (adjust_markers_for_delete): Move declaration to lisp.h.
7138 (non_regular_inserted, non_regular_nbytes, read_non_regular)
7139 (Finsert_file_contents): Use EMACS_INT for buffer positions.
7140
7141 * fileio.c (Finsert_file_contents): Don't limit size to INT_MAX/4.
7142
7143 2009-03-27 Jan Djärv <jan.h.d@swipnet.se>
7144
7145 * frame.c (x_set_font): If the fullscreen property is non-nil, adjust
7146 lines and columns so we keep the same pixel height and width.
7147
7148 * xterm.c (handle_one_xevent): Call x_handle_net_wm_state if
7149 the property _NET_WM_STATE has changed.
7150 (x_handle_net_wm_state): New function to update frame parameter
7151 fullscreen.
7152 (x_term_init): Initialize atoms for _NET_WM_STATE.
7153
7154 * xterm.h (struct x_display_info): Add atoms for _NET_WM_STATE.
7155
7156 2009-03-27 Kevin Ryde <user42@zip.com.au>
7157
7158 * keyboard.c (tty_read_avail_input): Don't treat a -1 return from
7159 Gpm_GetEvent as an error that justifies closing the filedescriptor.
7160 * term.c (close_gpm): Get the filedescriptor as a (new) parameter.
7161 (Fgpm_mouse_stop): Pass that new parameter.
7162 * termhooks.h (close_gpm): Adjust prototype.
7163
7164 2009-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
7165
7166 * lisp.h (Fx_focus_frame): Declare.
7167
7168 * callint.c (Fcall_interactively): For '^' just delegate the work to
7169 handle-shift-selection.
7170 (syms_of_callint): Move declaration of shift-select-mode to simple.el.
7171
7172 2009-03-24 Chong Yidong <cyd@stupidchicken.com>
7173
7174 * editfns.c (Ffloat_time): Doc fix (Bug#2768).
7175
7176 * data.c (Qinteractive_form): New variable.
7177 (Finteractive_form): Use it.
7178
7179 * eval.c (Fcommandp): Use Qinteractive_form.
7180
7181 2009-03-24 Jason Rumney <jasonr@gnu.org>
7182
7183 * fileio.c (Fsubstitute_in_file_name): Always work on a copy.
7184 Calculate total size precisely. Decode environment variables
7185 before substituting. (Bug#38)
7186
7187 2009-03-24 Kenichi Handa <handa@m17n.org>
7188
7189 * font.c (find_font_encoding): Return Qnil for unsupported
7190 encoding (Bug#2722).
7191
7192 2009-03-23 Jan Djärv <jan.h.d@swipnet.se>
7193
7194 * gtkutil.c (xg_display_open): Assign a value to gdpy_def, check
7195 that gdpy is set.
7196
7197 2009-03-22 Alan Mackenzie <acm@muc.de>
7198
7199 * callint.c (Finteractive): Clarify the doc string - even
7200 promptless elements need \n separators.
7201
7202 2009-03-22 Jason Rumney <jasonr@gnu.org>
7203
7204 * w32term.c (syms_of_w32term): Doc fix for
7205 x-use-underline-position-properties.
7206
7207 2009-03-21 Eli Zaretskii <eliz@gnu.org>
7208
7209 * w32.c (getpwuid): Change argument type to unsigned.
7210 (struct w32_id): Change type of `rid' member to unsigned.
7211 (w32_cached_id, w32_add_to_cache, get_name_and_id): Change type of
7212 argument ID to unsigned. All callers changed.
7213 (getuid, geteuid, getgid, getegid): Change return type to unsigned.
7214
7215 2009-03-20 Eli Zaretskii <eliz@gnu.org>
7216
7217 * editfns.c (Fuser_uid, Fuser_real_uid): If UID as EMACS_INT is
7218 negative, produce a float value.
7219
7220 * dired.c (make_uid, make_gid): New functions.
7221 (Ffile_attributes): Use them to avoid negative UID and GID.
7222
7223 2009-03-20 Juanma Barranquero <lekktu@gmail.com>
7224
7225 * keyboard.c (Fcurrent_idle_time): Reflow docstring.
7226 (syms_of_keyboard) <command-hook-internal, input-method-function>:
7227 Fix typos in docstrings.
7228
7229 2009-03-19 Kenichi Handa <handa@m17n.org>
7230
7231 * fontset.c (Fset_fontset_font): When a spec of ASCII font is
7232 changed, use font_load_for_lface to get a new font object.
7233 Call free_realized_fontset after handling ASCII font change.
7234
7235 * frame.c (x_set_font): Handle the case that ARG is a cons.
7236
7237 2009-03-19 Glenn Morris <rgm@gnu.org>
7238
7239 * fileio.c (Fsubstitute_in_file_name): Doc fix.
7240
7241 2009-03-19 Chong Yidong <cyd@stupidchicken.com>
7242
7243 * indent.c (Fvertical_motion): Undo 2005-01-19 change (Bug#2694).
7244
7245 2009-03-19 Kenichi Handa <handa@m17n.org>
7246
7247 * charset.c (load_charset_map_from_file): When a mapfile can't be
7248 loaded, signal an error.
7249
7250 2009-03-18 Eli Zaretskii <eliz@gnu.org>
7251
7252 * dired.c (Ffile_attributes): Make sure UID and GID are always
7253 positive, even if the value is too large for a positive EMACS_INT.
7254 Doc fix.
7255
7256 * editfns.c (Fuser_login_name): Support float arguments. Doc fix.
7257
7258 2009-03-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7259
7260 * xmenu.c (xdialog_show): Move Fredisplay call ...
7261 (Fx_popup_dialog): ... here.
7262
7263 2009-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
7264
7265 * dired.c (file_name_completion): Disable the first optimization just
7266 installed, since it is not implemented correctly.
7267
7268 2009-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
7269
7270 * dired.c (file_name_completion): Check completion-ignored-extensions
7271 only if the entry can affect bestmatch.
7272 Stop the search early, as Ftry_completion already does.
7273
7274 2009-03-17 Chong Yidong <cyd@stupidchicken.com>
7275
7276 * minibuf.c (Vminibuffer_completion_confirm): Doc fix.
7277
7278 2009-03-15 Chong Yidong <cyd@stupidchicken.com>
7279
7280 * keyboard.c (parse_menu_item): Don't display remappings as menu
7281 equivalent bindings (Bug#788).
7282
7283 2009-03-15 Jason Rumney <jasonr@gnu.org>
7284
7285 * w32term.h (WM_EMACS_PAINT): New message.
7286 * w32term.c (w32_read_socket): Use it instead of WM_PAINT.
7287 * w32fns.c (w32_wnd_proc): Change WM_PAINT to WM_EMACS_PAINT
7288 before passing to lisp thread. (Bug#950)
7289
7290 2009-03-14 David Reitter <david.reitter@gmail.com>
7291
7292 * nsterm.m (ns_shutdown_properly, -terminate): Remove global state
7293 variable as it was never reset.
7294 (ns_term_init): Remove initialization of Lisp-settable defaults
7295 and ns_expand_space.
7296 (-setPanelFromDefaultValues): Remove ns_expand_space.
7297 (-showPreferencesWindow): Send new KEY_NS_SHOW_PREFS key.
7298 * nsfont.m (nsfont_open): Remove ns_expand_space, assume -0.5
7299 i.e. no additional spacing, similar to Carbon port.
7300
7301 * nsterm.h: Define KEY_NS_SHOW_PREFS key.
7302 * nsfns.m (ns-popup-prefs-panel): Remove.
7303
7304 2009-03-14 Jan Djärv <jan.h.d@swipnet.se>
7305
7306 * sound.c (alsa_configure): Remove call to deprecated
7307 snd_pcm_sw_params_set_xfer_align.
7308
7309 2009-03-14 Stephen Berman <stephen.berman@gmx.net>
7310
7311 * gtkutil.c (xg_tool_bar_callback): Set focus back to the frame
7312 after clicking in a detached tool bar.
7313 (xg_tool_bar_proxy_callback): Remove call to Fx_focus_frame.
7314
7315 2009-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
7316
7317 * fontset.c (fontset_from_font, Ffontset_info): YAILOM (Yet another
7318 int/Lisp_Object mixup).
7319
7320 2009-03-13 Kenichi Handa <handa@m17n.org>
7321
7322 * fontset.c (Ffontset_info, check_fontset_name): New arg frame.
7323 Handle NAME nil and t correctly. Callers changed.
7324 (font_def_arg, add_arg, from_arg, to_arg): Delete them.
7325 (set_fontset_font): Change ARG to a vector. Handle range_list in
7326 ARG correctly.
7327 (Fset_fontset_font): Fix the case that TARGET is both a script
7328 name and charset name. Adjust the arg to set_fontset_font for
7329 the above change.
7330 (fontset_from_font): Fix previous change.
7331 (Ffontset_info): Adjust for the 2008-07-09 change of fontset
7332 entry. If FONTSET is the default fontset, don't set the extra
7333 slot of the returning char-table.
7334
7335 2009-03-12 Juanma Barranquero <lekktu@gmail.com>
7336
7337 * nsfns.m (Fx_close_connection): Doc fix.
7338 (Fns_do_applescript): Reflow docstring.
7339 (Fns_hide_others, Fns_hide_emacs, Fns_convert_utf8_nfd_to_nfc)
7340 (Fx_display_pixel_width, Fx_display_pixel_height)
7341 (Fns_display_usable_bounds, Fx_display_planes, Fx_show_tip):
7342 Fix typos in docstrings.
7343 (Fns_set_alpha): Fix typos in error messages.
7344
7345 2009-03-12 David Reitter <david.reitter@gmail.com>
7346
7347 * termhooks.h [HAVE_NS]: Define NS_NONKEY_EVENT to be used for
7348 non-key system events on NS. Formerly, NON_ASCII_KEYSTROKE_EVENT
7349 were used for such events.
7350
7351 * nsterm.m (newFrame, openFile, fulfillService, changeFont)
7352 (toggleToolbar, performDragOperation, runHelp): Use it.
7353
7354 * keyboard.c (parse_menu_item) [HAVE_NS]: Treat new event like
7355 NON_ASCII_KEYSTROKE_EVENT, but set used_mouse_menu.
7356
7357 2009-03-11 Kenichi Handa <handa@m17n.org>
7358
7359 * font.h (font_open_by_spec): Extern it.
7360
7361 * font.c (font_open_by_spec): New function.
7362 (font_open_by_name): Use font_open_by_spec.
7363
7364 * frame.c (x_set_font): When ARG is a font-object, don't alter the
7365 fontset of the frame.
7366
7367 * fontset.c (Fset_fontset_font): When a font for ASCII is changed,
7368 modify the default font of frames that use this fontset.
7369 (num_auto_fontsets): New variable.
7370 (fontset_from_font): Use num_auto_fontsets to decide a fontset
7371 name. Be sure to set FONTSET_ASCII to the correct font name.
7372 (update_auto_fontset_alist): New function.
7373
7374 2009-03-11 Juanma Barranquero <lekktu@gmail.com>
7375
7376 * makefile.w32-in: Update dependencies.
7377
7378 2009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
7379
7380 * nsfns.m (syms_of_nsfns): Remove Qbuffered.
7381
7382 2009-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
7383
7384 * buffer.c (Fswitch_to_buffer): Revert part of 2008-10-21's change.
7385
7386 2009-03-10 Chong Yidong <cyd@stupidchicken.com>
7387
7388 * lread.c (Feval_buffer): Doc fix.
7389
7390 2009-03-09 Kenichi Handa <handa@m17n.org>
7391
7392 * charset.c (Qfile_name_handler_alist): Extern it.
7393 (load_charset_map_from_file): Temporarily bind
7394 `file-name-handler-alist' to nil while calling openp. (Bug#2435)
7395
7396 2009-03-06 Aaron Ecay <aaronecay@gmail.com> (tiny change)
7397
7398 * nsterm.m (ns_draw_vertical_window_border): Draw 1 pixel wide,
7399 not two, and use NSRectFill instead of NSDrawGroove. (Bug#2352)
7400
7401 2009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
7402
7403 * nsterm.m: Include <signal.h> for SIGTERM used in ns_term_shutdown.
7404 (x_set_window_size): Change back to calculated method of setting
7405 toolbar height under Cocoa. (Bug#2546)
7406 (EmacsView-windowWillUseStandardFrame:defaultFrame:): New method.
7407 (EmacsView-drawRect:): Completely shortcircuit if ns_in_resize.
7408
7409 * nsfns.m (ns_appkit_version_int): Fix typo in the version macro.
7410
7411 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Don't add
7412 accelerator in parens under GNUstep.
7413
7414 2009-03-06 Kenichi Handa <handa@m17n.org>
7415
7416 These changes are to detect incorrect composition sequence without
7417 looking ahead the source. (Bug#2370)
7418
7419 * coding.h: Include "composite.h".
7420 (enum compisition_state): New enum.
7421 (struct compisition_status): New struct.
7422 (struct iso_2022_spec): New member cmp_status.
7423 (struct emacs_mule_spec): New struct.
7424 (struct coding_system): New members ctext_extended_segment_len and
7425 embedded_utf_8. Change the union member
7426 spec.emacs_mule_full_support to spec.emacs_mule.
7427
7428 * coding.c (CODING_ISO_CMP_STATUS): New macro.
7429 (CODING_ISO_EXTSEGMENT_LEN, CODING_ISO_EMBEDDED_UTF_8): New macros.
7430 (MAX_ANNOTATION_LENGTH): Define to 5.
7431 (ADD_COMPOSITION_DATA): New arg nbytes.
7432 (emacs_mule_char): New arg cmp_status.
7433 (DECODE_EMACS_MULE_COMPOSITION_CHAR): Delete it.
7434 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): New arg c.
7435 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New arg c.
7436 (DECODE_EMACS_MULE_21_COMPOSITION): Delete the arg c.
7437 (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Likewise.
7438 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Likewise.
7439 (DECODE_EMACS_MULE_COMPOSITION_START): New macro.
7440 (EMACS_MULE_COMPOSITION_END): New macro.
7441 (emacs_mule_finish_composition): New function.
7442 (EMACS_MULE_MAYBE_FINISH_COMPOSITION): New macro.
7443 (decode_coding_emacs_mule): Avoid long looking ahead while
7444 handling composition.
7445 (DECODE_COMPOSITION_RULE): Argument changed to rule and nbytes.
7446 (ENCODE_COMPOSITION_RULE): New macro.
7447 (finish_composition): New function.
7448 (MAYBE_FINISH_COMPOSITION): Call finish_composition.
7449 (DECODE_COMPOSITION_START): New implementation.
7450 (DECODE_COMPOSITION_END): Likewise.
7451 (STORE_COMPOSITION_RULE): New macro.
7452 (decode_coding_iso_2022): Avoid long looking ahead while handling
7453 composition, CTEXT extended segment, and embedded UTF-8.
7454 (setup_coding_system): For a coding of type iso-2022, reset
7455 CODING_ISO_EXTSEGMENT_LEN (coding) and
7456 CODING_ISO_EMBEDDED_UTF_8 (coding).
7457 (get_translation): Delete arguments last_block, from_nchars,
7458 to_nchars. Callers changed.
7459 (produce_chars): Don't modify charbuf. Adjusted for the change of
7460 get_translation.
7461 (produce_composition): Adjust for the new annotation sequence.
7462 (handle_composition_annotation): Likewise.
7463 (consume_chars): Adjust for the change of get_translation.
7464
7465 2009-03-05 Adrian Robert <Adrian.B.Robert@gmail.com>
7466
7467 * nsterm.m (ns_select): Shortcircuit if reentrant call. (Bug#2564)
7468
7469 2009-03-05 Kenichi Handa <handa@m17n.org>
7470
7471 * font.c (font_select_entity): New function.
7472 (font_find_for_lface): Use font_select_entity to select a font.
7473
7474 * fontset.c (fontset_find_font): If a font found without
7475 restricting to the characters C doesn't support C, try to find a
7476 font with C restriction.
7477
7478 2009-03-04 Nikolaj Schumacher <me@nschum.de>
7479
7480 * nsfont.m (nsfont_draw): Compare ns_antialias_text against lisp value.
7481
7482 2009-03-04 Jason Rumney <jasonr@gnu.org>
7483
7484 * w32fns.c (w32_wnd_proc): Only ignore IME messages for the
7485 characters that have already been read. (Bug#2569)
7486
7487 * image.c (xbm_read_bitmap_data, png_load, svg_load_image):
7488 Log an error message if check_image_size failed.
7489 (xpm_load_image, pbm_load, jpeg_load, tiff_load, gif_load)
7490 (gs_load): Mention max-image-size in size error message. (Bug#2560)
7491
7492 2009-03-02 Eli Zaretskii <eliz@gnu.org>
7493
7494 * callproc.c (Fcall_process): Bind inhibit-modification-hooks to t
7495 when decoding process output.
7496
7497 2009-03-01 Richard M Stallman <rms@gnu.org>
7498
7499 * m/mips.h (DATA_SEG_BITS, XUINT, XSET): Definitions disabled.
7500
7501 * emacs.c (gdb_data_seg_bits) [USE_LSB_TAG]: Make it 0.
7502
7503 2009-02-28 Eli Zaretskii <eliz@gnu.org>
7504
7505 * coding.c (decode_coding_utf_8, decode_coding_utf_16)
7506 (decode_coding_emacs_mule, decode_coding_iso_2022)
7507 (encode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
7508 (decode_coding_raw_text, decode_coding_charset)
7509 (setup_coding_system, decode_eol, decode_coding, consume_chars):
7510 Honor inhibit-eol-conversion. (Bug #2186)
7511
7512 2009-02-28 Jason Rumney <jasonr@gnu.org>
7513
7514 * coding.c (detect_coding_charset): If not checking latin extra,
7515 fail on characters between 0x80 and 0xA0. (Bug#2354)
7516
7517 2009-02-28 Eli Zaretskii <eliz@gnu.org>
7518
7519 * coding.c (detect_coding_charset): Fix change from 2008-10-21.
7520 Also, check iso-latin-*, not only iso-8859-*. (Bug#2497)
7521
7522 2009-02-27 Glenn Morris <rgm@gnu.org>
7523
7524 * callint.c (Finteractive): Doc fix.
7525
7526 2009-02-27 Kenichi Handa <handa@m17n.org>
7527
7528 * lread.c (read_escape): Signal an error for invalid \UXXXXXXXX.
7529
7530 2009-02-27 Chong Yidong <cyd@stupidchicken.com>
7531
7532 * font.c (font_style_to_value): Set value for unknown symbols to
7533 100 instead of 255.
7534 (weight_table, slant_table, width_table): Treat "unspecified" as
7535 the default value.
7536
7537 2009-02-26 Juanma Barranquero <lekktu@gmail.com>
7538
7539 * fileio.c (Fnext_read_file_uses_dialog_p): Fix typo in docstring.
7540
7541 2009-02-25 Juanma Barranquero <lekktu@gmail.com>
7542
7543 * lread.c (Fload): Stop checking Vloads_in_progress and signal
7544 error as soon as a recursive load is detected.
7545
7546 2009-02-24 Adrian Robert <Adrian.B.Robert@gmail.com>
7547
7548 * nsterm.m (ns_ring_bell): Convert rect to window coordinates
7549 before caching.
7550
7551 2009-02-24 Kenichi Handa <handa@m17n.org>
7552
7553 * fontset.c (fontset_find_font): Fix the condition for checking
7554 unavailable font.
7555
7556 2009-02-24 Glenn Morris <rgm@gnu.org>
7557
7558 * xfaces.c (Finternal_set_font_selection_order): Remove leading
7559 whitespace that confuses documentation.
7560
7561 2009-02-23 Miles Bader <miles@gnu.org>
7562
7563 * process.c (Flist_system_processes, Fprocess_attributes)
7564 (syms_of_process): Rename `system-process-attributes' to
7565 `process-attributes'.
7566
7567 2009-02-22 Andreas Schwab <schwab@linux-m68k.org>
7568
7569 * coding.h (struct coding_system): Make safe_charsets a pointer to
7570 unsigned char.
7571 * coding.c (CODING_ISO_REQUEST): Check for safe_charsets content
7572 being 255.
7573 (SAFE_CHARSET_P): Likewise.
7574 (setup_iso_safe_charsets): Properly setup safe_charsets.
7575 (Fdefine_coding_system_internal): Likewise.
7576 (setup_coding_system): Likewise. Remove unneeded casts.
7577 (detect_coding_iso_2022): Compare Viso_2022_charset_list with
7578 CODING_ATTR_CHARSET_LIST, not CODING_ATTR_SAFE_CHARSETS. Remove
7579 unneeded casts.
7580
7581 * insdel.c (del_range_2): Don't modify gap contents when called
7582 from decode_coding_object. (Bug#1809)
7583
7584 2009-02-21 Chong Yidong <cyd@stupidchicken.com>
7585
7586 * data.c (syms_of_data): Define Qfont_spec, Qfont_entity, and
7587 Qfont_object.
7588 (Ftype_of): Recognize font objects.
7589
7590 * lisp.h: Define Qfont_spec, Qfont_entity, Qfont_object extern.
7591
7592 * font.c (Qfont_spec, Qfont_entity, Qfont_object): Definitions
7593 moved to data.c.
7594
7595 2009-02-20 Adrian Robert <Adrian.B.Robert@gmail.com>
7596
7597 * nsterm.m (x_make_frame_invisible): Unset async_visible,
7598 async_iconified. Based on a patch by Christian Lynbech
7599 <christian.lynbech@tieto.com>.
7600 (EmacsView-windowDidMiniaturize:): Unset async_visible.
7601
7602 2009-02-20 Glenn Morris <rgm@gnu.org>
7603
7604 * syntax.c (Fskip_chars_forward): Fix doc typo.
7605
7606 2009-02-20 Chong Yidong <cyd@stupidchicken.com>
7607
7608 * keymap.c (Fkeymap_parent): Doc fix (Bug#2391).
7609
7610 2009-02-19 Chong Yidong <cyd@stupidchicken.com>
7611
7612 * xfns.c (Fx_create_frame): Give Xft driver a higher priority.
7613
7614 2009-02-19 Kenichi Handa <handa@m17n.org>
7615
7616 * coding.c (detect_coding): Preserve coding->mode.
7617 Don't overflow coding->carryover. (Bug#2370)
7618
7619 2009-02-18 Dan Nicolaescu <dann@ics.uci.edu>
7620
7621 * m/ibmrs6000.h (ADDR_CORRECT): Restore, removed by mistake on 2008-07-23.
7622
7623 2009-02-18 Kenichi Handa <handa@m17n.org>
7624
7625 * font.c (font_check_otf_features): Fix handling of `nil' element.
7626 (Ffont_spec): Describe :lang and :otf in the docstring.
7627
7628 2009-02-16 Andreas Schwab <schwab@suse.de>
7629
7630 * coding.c (Fcheck_coding_systems_region): Fix test for unibyte
7631 string.
7632
7633 2009-02-16 Kenichi Handa <handa@m17n.org>
7634
7635 * coding.c (Fcheck_coding_systems_region): Fix typo; Qt -> Qnil.
7636 (Bug#1723)
7637
7638 2009-02-14 Chong Yidong <cyd@stupidchicken.com>
7639
7640 * dispextern.h (struct iterator_stack_entry): New line_wrap member.
7641
7642 * xdisp.c (push_it, pop_it): Save and restore line_wrap.
7643 (handle_line_prefix): Suppress wrapping of wrap prefixes.
7644
7645 2009-02-14 Eli Zaretskii <eliz@gnu.org>
7646
7647 * msdos.c (MAX_SCREEN_BUF): New macro.
7648 (IT_write_glyphs): Make screen_buf[] always be MAX_SCREEN_BUF-long.
7649 Encode the entire run of glyphs sharing the same face, instead of
7650 doing that one glyph at a time (fixes a bug with displaying
7651 double-size characters).
7652
7653 2009-02-13 Adrian Robert <Adrian.B.Robert@gmail.com>
7654
7655 * nsfns.m (ns-read-file-name): BLOCK_INPUT while showing dialog.
7656
7657 * nsmenu.m (pop_down_menu): Check popup_activated_flag.
7658 (ns_popup_dialog, EmacsDialogPanel-runDialogAt:): Let
7659 pop_down_menu do the cleanup work as it is always called. (Bug#2154)
7660
7661 * nsfont.m (nsfont_make_fontset_for_font): For now, don't try to
7662 set fontset font for "mathematical-" sub-scripts. (Bug #2218)
7663
7664 2009-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
7665
7666 * keyboard.c (adjust_point_for_property): Allow stopping between two
7667 invisible areas.
7668
7669 2009-02-12 Jason Rumney <jasonr@gnu.org>
7670
7671 * w32font.c (check_face_name): Check for fake helv. (Bug#2275)
7672 (add_font_entity_to_list): Call check_face_name even when family
7673 is unspecified.
7674
7675 * w32term.c (x_display_pixel_height, x_display_pixel_width):
7676 Release DC when finished. Use NULL window to refer to desktop.
7677 (w32_term_init): Use NULL window to refer to desktop. (Bug#460)
7678
7679 * w32font.c (add_font_entity_to_list): Fix check for substituted
7680 raster fonts. (Bug#2219)
7681
7682 2009-02-12 Kenichi Handa <handa@m17n.org>
7683
7684 * composite.c (MAX_AUTO_COMPOSITION_LOOKBACK): New macro.
7685 (composition_gstring_width): Fix handling of LGLYPH_YOFF.
7686 (autocmp_chars): Use fast_looking_at. Don't compose more
7687 characters than MAX_COMPOSITION_COMPONENTS.
7688 (find_automatic_composition): While looking forward and backward,
7689 check static composition. Fix where to stop looking forward.
7690 (composition_adjust_point): Fix checking of static composition.
7691 (Fcomposition_get_gstring): Pay attention to
7692 MAX_COMPOSITION_COMPONENTS.
7693
7694 * lisp.h (fast_looking_at): Extern it.
7695
7696 * search.c (fast_looking_at): New function.
7697
7698 * term.c (encode_terminal_code): Adjust for the change of
7699 <struct glyph>.u.cmp.to.
7700 (append_composite_glyph): Likewise.
7701
7702 * xdisp.c (fill_gstring_glyph_string): Adjust for the change of
7703 <struct glyph>.u.cmp.to. Check if the glyph belongs to the same
7704 composition.
7705 (append_composite_glyph): Adjust for the change of
7706 <strcut glyph>.u.cmp.to.
7707
7708 2009-02-11 Juanma Barranquero <lekktu@gmail.com>
7709
7710 * casetab.c (init_casetab_once):
7711 * coding.c (ALLOC_CONVERSION_WORK_AREA):
7712 * font.c (font_update_lface):
7713 * fontset.c (Fnew_fontset):
7714 * ftfont.c (ftfont_drive_otf):
7715 * xfont.c (xfont_open):
7716 * xftfont.c (xftfont_get_xft_draw): Remove spurious semicolons.
7717
7718 2009-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
7719
7720 * fileio.c (Fwrite_region): !NILP -> CONSP.
7721
7722 2009-02-10 Andreas Schwab <schwab@suse.de>
7723
7724 * process.c (send_process): Properly relocate pointer into data
7725 when using encoded data. (Bug#2272)
7726
7727 2009-02-08 ARISAWA Akihiro <ari@mbf.sphere.ne.jp>
7728
7729 * coding.c (detect_coding_charset): Fix previous change.
7730
7731 2009-02-08 Jason Rumney <jasonr@gnu.org>
7732
7733 * w32fns.c (w32_hide_hourglass): Handle case where frame
7734 disappeared while hourglass was displayed. (Bug #2193)
7735
7736 2009-02-07 Andreas Schwab <schwab@suse.de>
7737
7738 * unexelf.c (unexec): Fix error message.
7739
7740 2009-02-07 Adrian Robert <Adrian.B.Robert@gmail.com>
7741
7742 * nsterm.m (EmacsApp-sendEvent:): Defer NSApplicationDefined event
7743 when modal window is active. (Bug #2152)
7744 (applicationShouldTerminate:): Remove now-unneeded while loop
7745 around NSRunAlertPanel.
7746
7747 * nsmenu.m (popupSession): New file-global variable.
7748 (pop_down_menu): End the popupSession before closing dialog.
7749 (ns_popup_dialog): BLOCK_INPUT around dialog presentation.
7750 (EmacsDialogPanel-runDialogAt:): Don't place window (superfluous),
7751 don't query NSApp for events (just sleep instead).
7752
7753 2009-02-07 Eli Zaretskii <eliz@gnu.org>
7754
7755 * coding.c (syms_of_coding) <translation-table-for-input>:
7756 Modify doc string to discourage use for character code unification.
7757
7758 2009-02-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7759
7760 * atimer.c (run_timers): Update pending_atimers.
7761
7762 2009-02-06 Chong Yidong <cyd@stupidchicken.com>
7763
7764 * image.c (svg_load_image): Fix last change.
7765
7766 * xfns.c (Fx_create_frame): Signal an error if no font is
7767 found (Bug#2147).
7768
7769 2009-02-05 Juanma Barranquero <lekktu@gmail.com>
7770
7771 * character.c (syms_of_character) <script-representative-chars>:
7772 Fix typo in docstring.
7773
7774 2009-02-04 Adrian Robert <Adrian.B.Robert@gmail.com>
7775
7776 * nsmenu.m (pop_down_menu): New function.
7777 (ns_popup_dialog): Call it on unwind.
7778 (EmacsDialogPanel-runDialogAt:): Check popup_activated_flag and
7779 call timer_check() (Bug#2154).
7780 (EmacsMenu-menuNeedsUpdate:): Don't call ns_update_menu if
7781 handling_signal is set.
7782 (EmacsMenu-fillWithWidgetValue:): Set submenu title.
7783
7784 * config.in: Get rid of COCOA_EXPERIMENTAL_CTRL_G.
7785
7786 * s/darwin.h: Same and NO_SOCK_SIGIO as well.
7787
7788 * nsterm.m (ns_read_socket): Same and don't set handling_signal.
7789
7790 * keyboard.c (poll_for_input_1, handle_async_input):
7791 Set handling_signal under HAVE_NS.
7792
7793 2009-02-04 Glenn Morris <rgm@gnu.org>
7794
7795 * fileio.c (Fwrite_region): Doc fix (mention annotate-functions).
7796
7797 2009-02-04 Kenichi Handa <handa@m17n.org>
7798
7799 * Makefile.in (composite.o): Depends on frame.h and termhooks.h.
7800
7801 * charset.c (Fchar_charset): New optional arg restriction.
7802
7803 * coding.h (coding_system_charset_list): Extern it.
7804
7805 * coding.c (coding_system_charset_list): New function.
7806
7807 * composite.c: Include coding.h and termhooks.h.
7808 (composition_gstring_p): Fix for the terminal case.
7809 (composition_gstring_width): Likewise.
7810 (fill_gstring_body): Likewise.
7811 (autocmp_chars): For terminal, call Fcomposition_get_gstring with
7812 the frame.
7813 (composition_compute_stop_pos): Adjust cmp_it->stop_pos if point
7814 is within a composition.
7815 (Fcomposition_get_gstring): Fix the terminal case.
7816
7817 * term.c (encode_terminal_code): Fix handling of composition.
7818 (produce_composite_glyph): For static composition, get pixel_width
7819 from struct composition.
7820
7821 2009-02-02 Andreas Schwab <schwab@suse.de>
7822
7823 * unexelf.c (unexec): Handle unaligned bss offset.
7824
7825 2009-02-01 Adrian Robert <Adrian.B.Robert@gmail.com>
7826
7827 * nsterm.m (ns_read_socket): Copy 2009-01-29 and 2009-01-30
7828 XT,w32read_socket changes to ns_read_socket.
7829
7830 * keyboard.c (handle_interrupt): Don't call
7831 quit_throw_to_read_char() under NS.
7832
7833 * blockinput.h: Remove NS-specific code.
7834
7835 2009-01-30 Dan Nicolaescu <dann@ics.uci.edu>
7836
7837 * dispnew.c (window_change_signal): Don't try to get the size of a
7838 suspended tty frame.
7839 * term.c (Fresume_tty): Resize if the size has changed while the
7840 tty was suspended.
7841
7842 * alloc.c (mark_stack): Properly conditionalize previous change.
7843
7844 2009-01-30 Juanma Barranquero <lekktu@gmail.com>
7845
7846 * w32inevt.c (w32_console_read_socket) [SYNC_INPUT]:
7847 * w32term.c (w32_read_socket) [SYNC_INPUT]:
7848 Remove; this code is not used on Windows.
7849
7850 2009-01-30 Eli Zaretskii <eliz@gnu.org>
7851
7852 * coding.c (detect_eol, decode_eol): Handle text with DOS-style
7853 EOLs that also has stray ^M characters.
7854
7855 2009-01-30 Juanma Barranquero <lekktu@gmail.com>
7856
7857 * atimer.c (run_timers, alarm_signal_handler):
7858 * keyboard.c (pending_signals, handle_async_input, init_keyboard):
7859 * w32inevt.c (w32_console_read_socket):
7860 * w32term.c (w32_read_socket):
7861 * xterm.c (XTread_socket): Use "#ifdef SYNC_INPUT" where appropriate.
7862
7863 2009-01-30 Chong Yidong <cyd@stupidchicken.com>
7864
7865 * callproc.c (Vtemp_file_name_pattern): Remove DEFVAR_LISP.
7866 Initialize it as a relative filename pattern.
7867 (init_callproc): Don't initialize Vtemp_file_name_pattern here.
7868 (Fcall_process_region): Simplify temp file creation using
7869 temporary-file-directory.
7870
7871 2009-01-29 Eli Zaretskii <eliz@gnu.org>
7872
7873 * msdos.c: Rename pending_signals to msdos_pending_signals.
7874 (sig_suspender, sigprocmask): Adjust.
7875
7876 2009-01-29 Chong Yidong <cyd@stupidchicken.com>
7877
7878 * keyboard.c (pending_signals): New var.
7879 (poll_for_input, input_available_signal, init_keyboard): Set it.
7880 (process_pending_signals): New function.
7881
7882 * lisp.h (QUIT): Check pending_signals instead of
7883 interrupt_input_pending. Use process_pending_signals.
7884
7885 * atimer.c (run_timers, alarm_signal_handler): Update pending_signals.
7886
7887 * process.c (wait_reading_process_output): Use process_pending_signals.
7888
7889 * sysdep.c (emacs_write): Use process_pending_signals.
7890
7891 * xterm.c (XTread_socket): Update pending_signals.
7892
7893 * w32term.c (w32_read_socket): Update pending_signals.
7894
7895 * w32inevt.c (w32_console_read_socket): Update pending_signals.
7896
7897 2009-01-29 Kenichi Handa <handa@m17n.org>
7898
7899 * xftfont.c (xftfont_has_char): New function.
7900 (syms_of_xftfont): Register xftfont_has_char in xftfont_driver.
7901
7902 2009-01-29 Adrian Robert <Adrian.B.Robert@gmail.com>
7903
7904 * nsterm.h (EmacsPrefsController.cursorBlinkSlider): Only define
7905 under GNUstep.
7906 (ns_query_color): New declaration.
7907
7908 * nsterm.m (ns_confirm_quit): New variable.
7909 (ns_set_default_prefs, syms_of_nsterm, ns_term_init): Initialize it.
7910 (EmacsApp-applicationShouldTerminate:): Use it.
7911 (EmacsPrefsController): Let user set it.
7912 (ns_query_color): New function.
7913 (ns_defined_color): Use it.
7914 (ns_initialize): Drop.
7915 (ns_term_init): Add two lines from ns_initialize(), and set
7916 input_interrupt_mode to nil.
7917
7918 * image.c (svg_load_image): Don't right-shift background RGB when
7919 obtained from FRAME_BACKGROUND_PIXEL. Under HAVE_NS use ns_query_color.
7920
7921 2009-01-28 Kenichi Handa <handa@m17n.org>
7922
7923 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
7924 (fontset_get_font_group): Remember that no font-group is specified
7925 for C.
7926
7927 2009-01-27 Chong Yidong <cyd@stupidchicken.com>
7928
7929 * fns.c (concat): Check for string overflow (bug#1787).
7930
7931 * undo.c (undo_limit, undo_strong_limit, Vundo_outer_limit):
7932 Quadruple undo limits (bug#1501).
7933
7934 2009-01-27 Kenichi Handa <handa@m17n.org>
7935
7936 * ftfont.c (ftfont_has_char): If the arg FONT is a font-object,
7937 directly use GT_Get_Char_index.
7938
7939 * xftfont.c (struct xftfont_info): New member `index'.
7940
7941 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
7942 (Ffontset_font): Adjust for the change of fontset entry.
7943
7944 2009-01-26 Kenichi Handa <handa@m17n.org>
7945
7946 * fontset.c (fontset_find_font): Fix handling of non-cons return
7947 value of fontset_get_font_group.
7948 (fontset_font): Revert last change.
7949
7950 2009-01-26 Jason Rumney <jasonr@gnu.org>
7951
7952 * w32font.c (w32font_list_internal): Return quickly if registry is
7953 unknown. Simplify final return.
7954 (add_font_entity_to_list): Break complex logic down into more
7955 manageable chunks. Move unknown registry check to
7956 w32font_list_internal.
7957
7958 2009-01-25 Adrian Robert <Adrian.B.Robert@gmail.com>
7959
7960 Changes to remove Feval calls from GUI under NS.
7961
7962 * nsterm.h: Move KEY_NS_... definitions here from nsterm.m.
7963 Add NS_TOGGLE_TOOLBAR, NS_PUT_WORKING_TEXT, NS_UNPUT_WORKING_TEXT.
7964 Remove NS_INSERT_WORKING_TEXT, NS_DELETE_WORKING_TEXT.
7965
7966 * nsterm.m: Move KEY_NS_... definitions to nsterm.h.
7967 (EmacsView-toggleToolbar:): Use KEY_NS_TOGGLE_TOOLBAR.
7968 (EmacsView-setMarkedText:,-deleteWorkingText:): Use NS_TEXT_EVENT
7969 instead of NON_ASCII_KEYSTROKE_EVENT.
7970 (EmacsApp-terminate:): Use KEY_NS_POWER_OFF instead of Feval.
7971 (EmacsApp-applicationShouldTerminate:): Query user.
7972 (EmacsPreferencesController-runHelp:): Use KEY_NS_INFO_PREFS
7973 instead of Feval.
7974
7975 * termhooks.h (NS_TEXT_EVENT): New event type under HAVE_NS.
7976
7977 * keyboard.c (kbd_buffer_get_event): Check for it.
7978 (keys_of_keyboard): Define lispy keys for
7979 ns-put/unput-working-text.
7980
7981 * nsmenu.m (ns_popup_dialog): Resync window setting with X and W32
7982 versions.
7983 (EmacsDialog-runDialogAt:): Use NSModalPanelRunLoopMode.
7984
7985 2009-01-25 Chong Yidong <cyd@stupidchicken.com>
7986
7987 * dispnew.c (buffer_posn_from_coords): Use Fset_buffer instead of
7988 setting current_buffer directly. (Bug#2044)
7989
7990 2009-01-24 Chong Yidong <cyd@stupidchicken.com>
7991
7992 * fontset.c (fontset_font): If we know there is no font, don't do
7993 any work. (Bug#1952, bug#1990).
7994
7995 * font.c (font_parse_xlfd): Handle patterns of length < 2. (Bug#1802)
7996
7997 2009-01-23 Adrian Robert <Adrian.B.Robert@gmail.com>
7998
7999 * emacs.c (main): Do fork+exec under --daemon in Cocoa.
8000 (ns_no_defaults): New declaration.
8001 (main): Use it.
8002
8003 * nsterm.h (ns_no_defaults): New declaration.
8004
8005 * nsfns.m (x_get_string_resource): Don't read when ns_no_defaults.
8006
8007 * nsterm.m (ns_no_defaults): New variable.
8008 (ns_initialize): Don't read defaults when ns_no_defaults.
8009 (EmacsView-readSelectionFromPasteboard:)
8010 (writeSelectionToPasteboard:types:): New stubbed-out methods for
8011 NSServicesRequests protocol. (Bug#1435)
8012 (ns_dumpglyphs_stretch): New function.
8013 (ns_draw_glyph_string): Use it, parallel Yamamoto Mitsuharu change
8014 of 2008-11-15 to other terms. (Bug#615)
8015
8016 * nsimage.m (setPixmapData:): Set to ignore image DPI.
8017
8018 2009-01-23 Giorgos Keramidas <keramida@freebsd.org> (tiny change)
8019
8020 * alloc.c (mark_stack): Use "flushw" instead of "ta 3" assembly
8021 call for Sparc64.
8022
8023 2009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
8024
8025 * nsfns.m:
8026 * nsgui.h:
8027 * nsmenu.m:
8028 * nsselect.m:
8029 * nsterm.h:
8030 * nsterm.m: Remove '23' comments that indicated code added during
8031 update from emacs-20 -> emacs-23.
8032
8033 2009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
8034
8035 * nsterm.m (EmavsView-keyDown:): Treat nil as Qnone for
8036 ns_alternate_modifier. (Bug#1217)
8037
8038 * nsmenu.m (EmacsMenu-parseKeyEquiv:, addItemWithWidgetValue:):
8039 Display all shortcuts, including those w/o super modifier.
8040
8041 * nsfns.m (ns-read-file-name): Fix typo in assignment statement.
8042
8043 2009-01-22 Chong Yidong <cyd@stupidchicken.com>
8044
8045 * fileio.c (Vwrite_region_post_annotation_function)
8046 (Vwrite_region_annotation_buffers): New vars.
8047 (build_annotations_unwind): Just reset
8048 Vwrite_region_annotation_buffers.
8049 (Fwrite_region): Initialize Vwrite_region_annotation_buffers.
8050 Call write-region-post-annotation-function.
8051 (build_annotations): Add to Vwrite_region_annotation_buffers if
8052 buffer changes.
8053
8054 2009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
8055
8056 * nsterm.h (EmacsApp-setAppleMenu:): Conditionalize more correctly on
8057 Tiger.
8058 * nsfns.m (ns_do_applescript):
8059 Conditionalize typeUTF16ExternalRepresentation on Tiger.
8060
8061 2009-01-21 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
8062
8063 * nsterm.m (EV_TRAILER): Always use emacsframe for frame_or_window.
8064
8065 2009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
8066
8067 * nsmenu.m (NSMENUPROFILE): Change #if style.
8068
8069 * nsterm.h (EmacsPrefsController): Add -setPanelFromDefaultValues.
8070
8071 * nsterm.m (x_set_frame_alpha): Add prototype.
8072 (ns_fake_keydown, EmacsView-keyUp:): New variable and function to
8073 handle Ctrl-tab. (Bug#1841)
8074 (ns_get_color): Use unsigned long long for scanned hex string value.
8075 (ns_term_shutdown): Abort on non SIGTERM signals.
8076 (EmacsPrefsController-setDefaultFont:,-setColors:): Raise the frame.
8077 (EmacsPrefsController-setPanelFromDefaultValues): New function.
8078 (EmacsPrefsController-resetToDefaults:): Use it. (Bug#1801)
8079 (ns_font_to_xlfd, ns_fontname_to_xlfd): Remove, unused.
8080 (ns_defined_color): Fix settings of the XColor variable fields:
8081 red,green,blue scale to 2-byte, pixel's parts to 1-byte. (Bug#1663)
8082
8083 * nsimage.m (EmacsImage+allocInitFromFile:): Set to ignore image
8084 DPI. (Bug#1316)
8085 (EmacsImage-setPixelAtX:Y:toRed:green:blue:alpha:): Fix color
8086 values in onTiger section.
8087
8088 2009-01-19 Chong Yidong <cyd@stupidchicken.com>
8089
8090 * xfaces.c (Finternal_set_lisp_face_attribute, Fx_list_fonts):
8091 Check return value of font_spec_from_name.
8092 (Fx_list_fonts): Doc fix. (Bug#1951)
8093
8094 * font.c (font_spec_from_name): Return Qnil if font name could not
8095 be parsed.
8096 (font_parse_name): Treat a `?' character as part of an XLFD.
8097
8098 * fns.c (Fsubstring): Doc fix.
8099
8100 2009-01-19 Kenichi Handa <handa@m17n.org>
8101
8102 * ftfont.c (ftfont_lookup_cache): Check the return value of FcFontList.
8103 (ftfont_list): Likewise.
8104
8105 2009-01-18 Juanma Barranquero <lekktu@gmail.com>
8106
8107 * dbusbind.c (Fdbus_register_signal):
8108 * process.c (conv_sockaddr_to_lisp):
8109 * w32fns.c (Fw32_battery_status): Use empty_unibyte_string.
8110
8111 * callproc.c (Fgetenv_internal): Doc fix.
8112
8113 2009-01-16 Chong Yidong <cyd@stupidchicken.com>
8114
8115 * xfns.c (x_make_gc): Don't allocate stipple member for gc_values;
8116 it is not even used.
8117
8118 2009-01-16 Glenn Morris <rgm@gnu.org>
8119
8120 * font.c (Ffont_variation_glyphs): Silence compiler.
8121
8122 2009-01-15 Juanma Barranquero <lekktu@gmail.com>
8123
8124 * sound.c (SOUND_WARNING): Use _snprintf, for MSVC compatibility.
8125 Reported by David Robinow <drobinow@gmail.com>.
8126
8127 2009-01-15 Kenichi Handa <handa@m17n.org>
8128
8129 * coding.c (detect_coding_system): Fix handling of null_byte_found.
8130
8131 2009-01-14 Jason Rumney <jasonr@gnu.org>
8132
8133 * frame.c (x_set_font): Always store a font to the font parameter,
8134 never a fontset. (Bug#1562)
8135
8136 2009-01-14 Kenichi Handa <handa@m17n.org>
8137
8138 * coding.c (TWO_MORE_BYTES): New macro.
8139 (detect_coding_utf_16): Use TWO_MORE_BYTES instead of ONE_MORE_BYTE.
8140
8141 2009-01-13 Chong Yidong <cyd@stupidchicken.com>
8142
8143 * font.c (font_clear_prop): If clearing the family, clear the font
8144 width index too.
8145
8146 * xfaces.c (Finternal_set_lisp_face_attribute): Revert last change.
8147
8148 2009-01-12 Juanma Barranquero <lekktu@gmail.com>
8149
8150 * sound.c [WINDOWSNT] (SOUND_WARNING): New macro.
8151 (do_play_sound): Use it. Don't pass a hardcoded buffer size to mci
8152 functions, use sizeof.
8153
8154 2009-01-12 Martin Rudalics <rudalics@gmx.at>
8155
8156 * keyboard.c (read_char): Fix case where last_nonmenu_event
8157 returned a bad value with submenus. (Bug#447)
8158
8159 2009-01-12 Chong Yidong <cyd@stupidchicken.com>
8160
8161 * xfaces.c (Finternal_set_lisp_face_attribute): If setting the
8162 family, clear the font width index too.
8163
8164 2009-01-11 Jason Rumney <jasonr@gnu.org>
8165
8166 * keyboard.c (cmd_error_internal): Exit when errors occur before
8167 frame creation and not in daemon mode. (Bug#1836)
8168
8169 2009-01-10 Chong Yidong <cyd@stupidchicken.com>
8170
8171 * xdisp.c (pos_visible_p): When iterator stops on the last glyph
8172 of a display vector, backtrack.
8173 (try_window_reusing_current_matrix): Check glyph type before
8174 referencing charpos member.
8175
8176 2009-01-10 Eli Zaretskii <eliz@gnu.org>
8177
8178 Fix Bug #876:
8179
8180 * coding.c (inhibit_null_byte_detection): New variable.
8181 (detect_coding, detect_coding_system): Don't pay attention to null
8182 bytes if inhibit_null_byte_detection is non-zero.
8183 (syms_of_coding) <inhibit-null-byte-detection>: Declare and document.
8184 <inhibit-iso-escape-detection>: Doc fix.
8185
8186 2009-01-09 Jason Rumney <jasonr@gnu.org>
8187
8188 * w32font.c (add_font_entity_to_list): Don't report unknown
8189 Windows charset as any unrecognized registry. (Bug#1548)
8190 Only report Unicode Plane 2 fonts as unicode-sip.
8191
8192 2009-01-09 Chong Yidong <cyd@stupidchicken.com>
8193
8194 * xfaces.c (Fx_font_family_list): Delete function.
8195 Move compatibility version to faces.el.
8196
8197 * font.c (Ffont_family_list): Return a list of strings, not symbols.
8198
8199 2009-01-09 Martin Rudalics <rudalics@gmx.at>
8200
8201 * frame.c (x_set_frame_parameters): Remember requested value for
8202 fullscreen before it's reset by the parameter handler.
8203
8204 2009-01-09 Glenn Morris <rgm@gnu.org>
8205
8206 * keyboard.c (last_command_char): For clarity, rename to...
8207 (last_command_event): ... and update all users.
8208 (last_input_char): For clarity, rename to...
8209 (last_input_event): ... and update all users.
8210 (last-command-char, last-input-char): Move to subr.el as aliases.
8211 * cmds.c, commands.h: Update for last_command_char rename.
8212
8213 2009-01-08 Chong Yidong <cyd@stupidchicken.com>
8214
8215 * font.c (font_open_for_lface): Handle unspecified height attribute.
8216
8217 2009-01-08 Jason Rumney <jasonr@gnu.org>
8218
8219 * w32fns.c (Vx_pointer_shape, Vx_nontext_pointer_shape)
8220 (Vx_mode_pointer_shape, Vx_window_horizontal_drag_shape)
8221 (Vx_hourglass_pointer_shape, Vx_sensitive_text_pointer_shape):
8222 Don't declare.
8223 (syms_of_w32fns): Don't define x-pointer-shape variable. (Bug#1485)
8224 (x_create_tip_frame) [GLYPH_DEBUG]: Enable image debugging code.
8225
8226 2009-01-07 Kenichi Handa <handa@m17n.org>
8227
8228 * fileio.c (Finsert_file_contents): In the case of replace,
8229 remember the coding system used for decoding in
8230 coding_system (Bug#1039).
8231
8232 * coding.c (decode_coding_utf_8): Check byte_after_cr before
8233 breaking the loop. (Bug#870)
8234 (decode_coding_utf_16, decode_coding_emacs_mule)
8235 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
8236 (decode_coding_charset): Likewise.
8237
8238 2009-01-05 Martin Rudalics <rudalics@gmx.at>
8239
8240 * frame.c (x_set_frame_parameters): Make sure height (width) get
8241 applied when fullwidth (fullheight) is set. (Bug#1522)
8242
8243 2009-01-04 Juanma Barranquero <lekktu@gmail.com>
8244
8245 * w32.c: Use 64-bit arithmetic to do FILETIME conversions. (Bug#1766)
8246 (utc_base): Declare as ULONGLONG, not long double.
8247 (convert_time_raw): Delete.
8248 (FILETIME_TO_U64, U64_TO_LISP_TIME): New macros.
8249 (initialize_utc_base): New function.
8250 (convert_time): Use FILETIME_TO_U64, initialize_utc_base.
8251 (convert_from_time_t): Use initialize_utc_base; compute result with
8252 64-bit arithmetic.
8253 (process_times): Use FILETIME_TO_U64, U64_TO_LISP_TIME.
8254
8255 2009-01-03 Eli Zaretskii <eliz@gnu.org>
8256
8257 * process.c (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess)
8258 (Qttname, Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime)
8259 (Qcutime, Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs)
8260 (Quser, Qgroup, Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime)
8261 [!subprocesses]: Define.
8262 (syms_of_process) [!subprocesses]: Intern and staticpro them.
8263 (Flist_system_processes, Fsystem_process_attributes)
8264 [!subprocesses]: Call list_system_processes and
8265 system_process_attributes instead of returning Qnil.
8266
8267 * dosfns.c (system_process_attributes, list_system_processes):
8268 New functions.
8269
8270 * vm-limit.c (ret_lim_data) [MSDOS]: New function.
8271
8272 * sysdep.c (list_system_processes, system_process_attributes) [MSDOS]:
8273 Don't use the default (no-op) implementation.
8274
8275 2009-01-03 Jason Rumney <jasonr@gnu.org>
8276
8277 * keyboard.c (parse_modifiers_uncached): Wheel events are
8278 clicks (bug#687).
8279
8280 * w32term.c (x_query_colors, x_query_color): New functions.
8281
8282 * image.c (x_to_xcolors, png_load): Eliminate W32 specific code.
8283 (svg_load_image): Cast returned pointers from dynamically loaded
8284 functions. Eliminate W32 specific code.
8285
8286 2009-01-02 Dan Nicolaescu <dann@ics.uci.edu>
8287
8288 * nsfns.m (x_set_foreground_color, x_set_background_color)
8289 (x_set_cursor_color, x_set_icon_name, x_explicitly_set_name)
8290 (x_set_title, x_set_icon_type, x_set_cursor_type): Rename to use
8291 x_ prefix instead of ns_. Update references.
8292 (syms_of_nsfns): Add a FIXME comment.
8293
8294 * nsterm.m (x_set_cursor_type): New prototype.
8295 (setValuesFromPanel): Use it instead of the old ns_ prefixed name.
8296
8297 * sysdep.c (system_process_attributes): Provide Qtime and Qctime
8298 for Solaris instead of incorrectly providing Qutime and Qcutime.
8299
8300 2009-01-02 Eli Zaretskii <eliz@gnu.org>
8301
8302 * w32.c (process_times): Compute sum of utime and stime.
8303 (system_process_attributes): Add Qtime to the alist.
8304
8305 * sysdep.c (system_process_attributes): Compute Qtime and Qctime
8306 and add them to the alist.
8307
8308 * process.c (top level) <Qtime, Qctime>: New variables.
8309 (syms_of_process): staticpro them.
8310 (Fsystem_process_attributes): Add their documentation to the doc
8311 string.
8312
8313 * process.h: Declare Qtime and Qctime.
8314
8315 2009-01-02 Jason Rumney <jasonr@gnu.org>
8316
8317 * image.c (Qgobject): New symbol.
8318 (syms_of_image): Initialize it.
8319 (init_svg_functions): Load some functions from gobject library.
8320
8321 2009-01-01 Dan Nicolaescu <dann@ics.uci.edu>
8322
8323 * frame.c (make_terminal_frame): Remove redundant code and useless
8324 block.
8325
8326 2009-01-01 Andreas Schwab <schwab@suse.de>
8327
8328 * process.c (conv_sockaddr_to_lisp): Add workaround for
8329 getsockname bug on BSD.
8330
8331 2009-01-01 Chong Yidong <cyd@stupidchicken.com>
8332
8333 * xfns.c (x_create_tip_frame): Set border width of the X window.
8334
8335 * xfaces.c (Finternal_set_lisp_face_attribute): Improve error message.
8336
8337 2009-01-01 Jason Rumney <jasonr@gnu.org>
8338
8339 * w32term.c (x_new_font): Return font object, not fontset. (Bug#119)
8340 Don't block input, as per earlier xterm.c changes.
8341
8342 2008-12-31 Adrian Robert <Adrian.B.Robert@gmail.com>
8343
8344 * nsfns.m (ns_appkit_version_str): Rename from ns_appkit_version.
8345 (ns_appkit_version_int): New function.
8346 (x-server-version): Use ns_appkit_version_int and follow 21+
8347 convention of returning 3 integers.
8348
8349 2008-12-30 Kenichi Handa <handa@m17n.org>
8350
8351 * character.h (CHAR_VARIATION_SELECTOR_P): New macro.
8352 (CHAR_SURROGATE_PAIR_P): New macro.
8353
8354 * font.h (struct font_driver): New member get_variation_glyphs.
8355
8356 * font.c (font_range): Don't require a font for a variation selector.
8357 (Ffont_variation_glyphs): New function.
8358 (syms_of_font): Defsubr it.
8359
8360 * ftfont.c (ftfont_driver): Set the member get_variation_glyphs to
8361 ftfont_variation_glyphs.
8362 (setup_otf_gstring): New function.
8363 (ftfont_drive_otf): Use it.
8364 (ftfont_shape_by_flt): Handle variation selector.
8365 (ftfont_variation_glyphs): New function.
8366
8367 2008-12-30 Martin Rudalics <rudalics@gmx.at>
8368
8369 * frame.c (Vemacs_iconified): Remove.
8370
8371 2008-12-30 Jason Rumney <jasonr@gnu.org>
8372
8373 * frame.c (store_frame_param, x_get_arg): Enable newer code on
8374 WINDOWSNT too, as related changes have already been synced. (Bug#117)
8375
8376 2008-12-30 Chong Yidong <cyd@stupidchicken.com>
8377
8378 * indent.c (Fvertical_motion): Don't advance iterator if we have
8379 reseated to the desired position.
8380
8381 * xdisp.c (move_it_to): Handle GET_FROM_STRETCH method when
8382 checking for pos match.
8383
8384 2008-12-30 Kenichi Handa <handa@m17n.org>
8385
8386 * insdel.c (copy_text): To convert a non-ASCII char to unibyte,
8387 just get the low 8-bit of the code.
8388
8389 * font.c (font_intern_prop): Validate str as multibyte.
8390
8391 2008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
8392
8393 * dispextern.h (struct face): Move lface and hash from the middle
8394 of bitfields.
8395
8396 * Makefile.in (INTERVALS_H): Rename from INTERVAL_SRC, update all users.
8397
8398 2008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
8399
8400 * Makefile.in (INTERVAL_SRC): Also depend on dispextern.h.
8401 (coding.o, dispnew.o, keymap.o, msdos.o): Depend on INTERVAL_SRC
8402 instead of intervals.h.
8403
8404 2008-12-26 Andreas Schwab <schwab@suse.de>
8405
8406 * keymap.c (map_keymap_char_table_item): Make a copy of KEY if it is a
8407 cons.
8408
8409 2008-12-26 Martin Rudalics <rudalics@gmx.at>
8410
8411 * textprop.c (Qminibuffer_prompt): New variable.
8412 (syms_of_textprop): Initialize it.
8413 * callint.c (Fcall_interactively): For `c', `k', and `K' prompt
8414 in minibuffer-prompt face. (Bug#1662)
8415
8416 2008-12-25 Jason Rumney <jasonr@gnu.org>
8417
8418 * buffer.c (Fbuffer_swap_text): Use POINTER_TYPE.
8419
8420 2008-12-24 Jason Rumney <jasonr@gnu.org>
8421
8422 * ralloc.c (r_alloc_reset_variable): New function.
8423
8424 * buffer.c (Fbuffer_swap_text) [REL_ALLOC]: Reset ralloc's internal
8425 record of what points where. (Bug#716)
8426
8427 2008-12-22 Dan Nicolaescu <dann@ics.uci.edu>
8428
8429 * minibuf.c (read_minibuf): Follow the non-interactive case when
8430 running as a daemon, before detaching.
8431
8432 2008-12-22 Andreas Schwab <schwab@suse.de>
8433
8434 * buffer.c (init_buffer): Use realloc instead of xrealloc.
8435 * gtkutil.c (free_widget_value): Use xfree instead of free.
8436
8437 2008-12-22 Martin Rudalics <rudalics@gmx.at>
8438
8439 * frame.c (delete_frame): New function derived from
8440 Fdelete_frame to handle Qnoelisp value for FORCE argument.
8441 Delete last frame iff FORCE equals Qnoelisp. (Bug#1450)
8442 (Fdelete_frame): Call delete_frame. Remove line from doc-string
8443 saying that FORCE non-nil doesn't run `delete-frame-functions'.
8444 * frame.h: Extern delete_frame.
8445 * window.c (window_loop):
8446 * terminal.c (delete_terminal):
8447 * xterm.c (x_connection_closed):
8448 * xfns.c (Fx_hide_tip):
8449 * w32fns.c (Fx_hide_tip): Call delete_frame instead of Fdelete_frame.
8450
8451 2008-12-21 Jason Rumney <jasonr@gnu.org>
8452
8453 * w32uniscribe.c (uniscribe_encode_char): Return FONT_INVALID_CHAR
8454 when character maps to .notdef character.
8455
8456 2008-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
8457
8458 * keyboard.c (cmd_error_internal): Don't exit in daemon mode, bug#1310.
8459
8460 2008-12-20 Jason Rumney <jasonr@gnu.org>
8461
8462 * frame.c (Fmake_terminal_frame): Raise an error when called from
8463 a graphical frame on Windows. (Bug#1325)
8464
8465 2008-12-20 Jan Djärv <jan.h.d@swipnet.se>
8466
8467 * frame.c (Fdelete_frame): Set f->menu_bar_vector to Qnil.
8468
8469 2008-12-20 Chong Yidong <cyd@stupidchicken.com>
8470
8471 * minibuf.c (Fread_buffer): Doc fix.
8472
8473 2008-12-20 Jason Rumney <jasonr@gnu.org>
8474
8475 * fileio.c (Fexpand_file_name): Do not allow ../ to go beyond the
8476 server name in UNC paths. (Bug#719)
8477
8478 * coding.c (decode_coding): Clear chars_at_source flag when using
8479 charbuf. (Bug#1035)
8480
8481 2008-12-19 Daniel Engeler <engeler@gmail.com>
8482
8483 * sysdep.c (serial_configure): Fix typo.
8484
8485 2008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
8486
8487 * sysdep.c: Include alloca.h.
8488 (system_process_attributes): Add implementation for Solaris.
8489
8490 * s/sol2-10.h (HAVE_PROCFS, _STRUCTURED_PROC): New defines.
8491
8492 2008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
8493
8494 Reorganize implementation of Flist_system_processes and
8495 Fsystem_process_attributes. No functional changes.
8496 * process.c: Don't #include pwd.h, grp.h and limits.h.
8497 (Flist_system_processes): Just call list_system_processes.
8498 (Fsystem_process_attributes): Just call system_process_attributes.
8499 (procfs_list_system_processes, time_from_jiffies)
8500 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
8501 (procfs_get_total_memory, procfs_system_process_attributes): Move ...
8502
8503 * sysdep.c: ... here. Include pwd.h, grp.h and limits.h.
8504 (list_system_processes): Rename from
8505 procfs_list_system_processes. Enclose in #ifdef HAVE_PROCFS.
8506 Provide a do nothing implementation.
8507 (system_process_attributes): Rename from
8508 procfs_list_system_processes.
8509 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
8510 (procfs_get_total_memory): Enclose in #ifdef GNU_LINUX.
8511
8512 * w32.c (list_system_processes): Rename from
8513 w32_list_system_processes.
8514 (system_process_attributes): Rename from
8515 w32_system_process_attributes.
8516
8517 * s/gnu-linux.h (LISTPROC, PROCATTR): Remove.
8518
8519 * process.h (w32_list_system_processes)
8520 (w32_system_process_attributes): Remove.
8521 (list_system_processes, system_process_attributes):
8522 New prototypes.
8523
8524 2008-12-19 Kenichi Handa <handa@m17n.org>
8525
8526 * xfont.c (xfont_decode_coding_xlfd): New function.
8527 (xfont_encode_coding_xlfd): New function.
8528 (xfont_list_pattern): Decode XLFD by iso-8859-1.
8529 (xfont_list): Decode and encode XLFD by iso-8859-1.
8530 (xfont_match): Likewise.
8531 (xfont_list_family): Likewise.
8532 (xfont_open): Likewise.
8533
8534 * ftfont.c (ftfont_open): Generate a multibyte string if given
8535 names are utf-8.
8536
8537 * xftfont.c (xftfont_open): Generate a multibyte string if given
8538 names are utf-8.
8539
8540 2008-12-18 Jan Djärv <jan.h.d@swipnet.se>
8541
8542 * gtkutil.c (xg_frame_resized): Remove check if rows/columns have
8543 changed.
8544 (xg_tool_bar_proxy_callback): Put focus on the frame after we have
8545 clicked on a detached tool bar button.
8546
8547 2008-12-18 Dan Nicolaescu <dann@ics.uci.edu>
8548
8549 * emacs.c (main): Print and error and exit when no data is read
8550 from the pipe.
8551
8552 2008-12-17 Jason Rumney <jasonr@gnu.org>
8553
8554 * w32font.c (w32font_has_char): Always return -1.
8555
8556 2008-12-16 Kenichi Handa <handa@m17n.org>
8557
8558 * font.c (font_open_entity): Fix previous change.
8559
8560 2008-12-16 Dan Nicolaescu <dann@ics.uci.edu>
8561
8562 * process.c: Include <limits.h>.
8563
8564 2008-12-16 Chetan Pandya <pandyacus@sbcglobal.net> (tiny change)
8565
8566 * font.c (font_update_drivers): Fix mistake in reconstructing the
8567 driver list.
8568
8569 2008-12-16 Chong Yidong <cyd@stupidchicken.com>
8570
8571 * font.c (font_clear_cache): Fix format of font cache data.
8572
8573 2008-12-15 Chong Yidong <cyd@stupidchicken.com>
8574
8575 * xftfont.c (xftfont_open): Free Xft font pattern if
8576 XftFontOpenPattern fails.
8577
8578 * xterm.c (x_free_frame_resources): Remove extraneous call to
8579 free_frame_faces.
8580
8581 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
8582
8583 * xterm.c (x_delete_display): Move xim_close_dpy call to
8584 x_delete_terminal.
8585 (x_delete_terminal): Call xim_close_dpy.
8586
8587 2008-12-13 Jason Rumney <jasonr@gnu.org>
8588
8589 * w32font.c (intern_font_name): New function.
8590 (add_font_name_to_list, w32_enumfont_pattern_entity): Use it.
8591 (w32font_open_internal, Fx_select_font): Decode font name.
8592 (fill_in_logfont, list_all_matching_fonts): Encode font name.
8593
8594 * w32font.h (intern_font_name): Declare new function.
8595
8596 * w32uniscribe.c (add_opentype_font_name_to_list):
8597 Use intern_font_name.
8598
8599 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
8600
8601 * frame.c (Fdelete_frame): Call free_font_driver_list.
8602
8603 * font.c (free_font_driver_list): Implement missing function.
8604
8605 * w32term.c (w32_term_init): Don't initialize the image cache
8606 here; it will be done in init_frame_faces.
8607
8608 * xterm.h (struct xim_inst_t): Definition moved from xterm.c.
8609 (struct x_display_info): Remove unused member null_pixel. New
8610 member xim_callback_data.
8611
8612 * xterm.c (struct xim_inst_t): Definition moved to xterm.h.
8613 (xim_initialize): Save pointer to callback function data.
8614 (xim_close_dpy): Free callback function data. Call XCloseIM,
8615 reverting 2008-11-04 change by David Smith.
8616 (x_term_init): Don't initialize the image cache here; it will be
8617 done in init_frame_faces. Remove ancient "null_pixel" cruft.
8618 (x_delete_display): Free x_dnd_atoms member.
8619
8620 2008-12-13 Kenichi Handa <handa@m17n.org>
8621
8622 * font.c (font_rescale_ratio): Moved from xfaces.c.
8623 Argument type changed. Handle a font-spec too.
8624 (font_score): Check Vface_font_rescale_alist.
8625 (font_open_entity): Likewise. (Bug#1547)
8626
8627 * xfaces.c (font_rescale_ratio): Moved to font.c.
8628
8629 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
8630
8631 * xfns.c (Fx_wm_set_size_hint): Check if the frame is an X frame.
8632
8633 2008-12-12 Jason Rumney <jasonr@gnu.org>
8634
8635 * w32fns.c (x_display_info_for_name, Fx_open_connection): Set
8636 Vwindow_system_version to the real w32 major version.
8637
8638 2008-12-12 Dan Nicolaescu <dann@ics.uci.edu>
8639
8640 * term.c (init_tty): Move setting the terminal name before the
8641 potential user: maybe_fatal.
8642
8643 2008-12-11 Chong Yidong <cyd@stupidchicken.com>
8644
8645 * term.c (tty_free_frame_resources): Renamed from delete_tty_output;
8646 all callers changed. Call free_frame_faces to free the face cache.
8647
8648 2008-12-11 Jason Rumney <jasonr@gnu.org>
8649
8650 * w32font.c (fill_in_logfont): Don't assume symbol script means
8651 SYMBOL_CHARSET. (Bug#547)
8652
8653 * w32uniscribe.c (uniscribe_encode_char): Increase glyph buffer
8654 size for surrogates. (Bug#1096, bug#872)
8655
8656 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
8657
8658 * w32proc.c (Fw32_get_locale_info): Decode long form of locale name.
8659
8660 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
8661
8662 * process.c (Fsystem_process_attributes, syms_of_process):
8663 Fix typo in name of Ssystem_process_attributes.
8664 Reported by Ulrich Mueller <ulm@kph.uni-mainz.de>.
8665
8666 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
8667
8668 * syntax.c (Fmodify_syntax_entry): Doc fix.
8669
8670 2008-12-10 Juanma Barranquero <lekktu@gmail.com>
8671
8672 * font.c (Ffont_spec): Move usage to end of docstring.
8673
8674 2008-12-10 Jason Rumney <jasonr@gnu.org>
8675
8676 * w32font.c (Qcham): New symbol.
8677 (font_supported_scripts): Add cham, and comments for other new
8678 scripts in bitfield from OpenType spec.
8679 (add_font_entity_to_list): Limit unicode-sip fonts to those that
8680 contain characters beyond the bmp.
8681
8682 2008-12-10 Kenichi Handa <handa@m17n.org>
8683
8684 * ftfont.c (fc_charset_table): Add "unicode-sip".
8685 (ftfont_spec_pattern): Lookup fc_charset_table for the registry
8686 Qunicode_sip.
8687
8688 2008-12-10 Juanma Barranquero <lekktu@gmail.com>
8689
8690 * coding.c (QCdefault_char): Rename from QCdefalut_char.
8691 (Fcoding_system_put): Use QCdefault_char.
8692 (syms_of_coding): Set QCdefault_char, not QCdefalut_char.
8693
8694 2008-12-09 Chong Yidong <cyd@stupidchicken.com>
8695
8696 * xftfont.c (syms_of_xftfont): Fix typo.
8697
8698 * buffer.c (Fbuffer_swap_text): Signal error if swapping a dead buffer.
8699
8700 2008-12-08 Dan Nicolaescu <dann@ics.uci.edu>
8701
8702 * emacs.c (main): Close daemon_pipe on exec.
8703
8704 2008-12-08 Chong Yidong <cyd@stupidchicken.com>
8705
8706 * termchar.h (struct tty): New members termcap_term_buffer and
8707 termcap_strings_buffer.
8708
8709 * term.c (encode_terminal_code): Free any previous memory blocks
8710 before calling xmalloc for encode_terminal_src or encode_terminal_dst.
8711 (maybe_fatal): Buffer argument deleted. Don't free buffer here.
8712 All callers changed.
8713 (init_tty): Store termcap data and string buffers in new struct
8714 tty members termcap_term_buffer and termcap_strings_buffer.
8715 (delete_tty): Free them.
8716 (syms_of_term): Initialize encode_terminal_src and encode_terminal_dst.
8717
8718 2008-12-07 Seiji Zenitani <zenitani@mac.com>
8719
8720 * nsfns.m (ns_set_background_color): Remove code duplication.
8721 It was a substitute for face-transparency on OS X 10.3.
8722
8723 2008-12-06 Chong Yidong <cyd@stupidchicken.com>
8724
8725 * coding.c (make_conversion_work_buffer): Disable buffer
8726 modification hooks in the work buffer.
8727
8728 2008-12-05 Eli Zaretskii <eliz@gnu.org>
8729
8730 * process.c (procfs_system_process_attributes): If `nread' has a
8731 negative value, assign zero to it.
8732
8733 2008-12-05 Chong Yidong <cyd@stupidchicken.com>
8734
8735 * eval.c (Vdebug_on_error): Doc fix.
8736
8737 2008-12-05 Kenichi Handa <handa@m17n.org>
8738
8739 * ftfont.c (ftfont_shape_by_flt): Use "combining" flt if the
8740 second character is a combining character.
8741
8742 2008-12-05 Eli Zaretskii <eliz@gnu.org>
8743
8744 * process.c (procfs_system_process_attributes): Don't use cmd,
8745 cmdsize, and q without initializing them first.
8746
8747 2008-12-04 Jason Rumney <jasonr@gnu.org>
8748
8749 * w32font.c (w32font_draw): Initialize orig_clip before getting
8750 it, and delete it when finished.
8751
8752 2008-12-04 Dan Nicolaescu <dann@ics.uci.edu>
8753
8754 * keyboard.c (kbd_buffer_get_event): Follow the non-interactive
8755 case when running as a daemon before detaching.
8756
8757 2008-12-03 Juanma Barranquero <lekktu@gmail.com>
8758
8759 * w32.c (init_environment): Don't unload library shell32.dll.
8760
8761 2008-12-03 Kenichi Handa <handa@m17n.org>
8762
8763 * font.c (font_at): Set `multibyte' at first.
8764
8765 * coding.c (decode_coding_charset): Check type of an element of
8766 vector VALIDS.
8767 (encode_coding_emacs_mule): Be sure to set `code'.
8768
8769 * fontset.c (face_for_char): Handle invalid charset property correctly.
8770 (font_for_char): Likewise.
8771
8772 2008-12-03 Chong Yidong <cyd@stupidchicken.com>
8773
8774 * font.c (Fopen_font): Compute pixel size correctly.
8775 (font_update_lface): Handle fonts with corrupted size specs,
8776 i.e. non-int and non-float.
8777
8778 * ftfont.c (ftfont_match): Initialize entity variable.
8779 (ftfont_resolve_generic_family): Avoid using uninitialized var.
8780 (ftfont_list_family): Initialize list var earlier.
8781
8782 * xselect.c (Fx_get_cut_buffer_internal): Fix memory leak.
8783
8784 * xterm.c (x_draw_glyph_string): Fall back on
8785 underline_minimum_offset for underline position.
8786
8787 2008-12-03 Dan Nicolaescu <dann@ics.uci.edu>
8788
8789 * keyboard.c (read_char_help_form_unwind): Specify the type for ARG.
8790
8791 * character.c (c_string_width): Specify the type for LEN.
8792
8793 2008-12-03 Kenichi Handa <handa@m17n.org>
8794
8795 * coding.c (decode_coding_utf_16): Initialize consumed_chars_base to 0.
8796 (decode_coding_utf_8): Likewise.
8797 (detect_coding_system): Initialize utf_16_le_eol to -1, val to Qnil.
8798 (produce_chars): Initialize consumed_chars to 0.
8799
8800 2008-12-02 Chong Yidong <cyd@stupidchicken.com>
8801
8802 * keyboard.c (make_lispy_position): Only use PT if the selected
8803 window is current.
8804
8805 2008-12-02 Andreas Schwab <schwab@suse.de>
8806
8807 * font.c (font_unparse_fcname): Fix use of uninitialized variable.
8808
8809 * doprnt.c (doprnt1): Fix size of charbuf.
8810
8811 2008-12-02 Chong Yidong <cyd@stupidchicken.com>
8812
8813 * keyboard.c (timer_check): Revert last change.
8814
8815 2008-12-02 Juanma Barranquero <lekktu@gmail.com>
8816
8817 * makefile.w32-in ($(BLD)/w32console.$(O)): Fix silly, silly typo.
8818
8819 2008-12-01 Juanma Barranquero <lekktu@gmail.com>
8820
8821 * makefile.w32-in: Update dependencies.
8822 (CONFIG_H): Add $(EMACS_ROOT)/nt/inc/sys/time.h.
8823
8824 2008-12-01 Andreas Schwab <schwab@suse.de>
8825
8826 * font.c (register_font_driver): Use xmalloc.
8827 (font_put_frame_data): Likewise.
8828
8829 2008-12-01 Chong Yidong <cyd@stupidchicken.com>
8830
8831 * xfaces.c (realize_x_face): Make abort condition clearer.
8832
8833 * gtkutil.c (update_frame_tool_bar): Initialize variable.
8834
8835 2008-11-30 Chong Yidong <cyd@stupidchicken.com>
8836
8837 * keyboard.c (timer_check): After a timer runs, ensure that the
8838 selected window's buffer is current.
8839
8840 2008-11-30 Juanma Barranquero <lekktu@gmail.com>
8841
8842 * makefile.w32-in ($(BLD)/abbrev.$(O)): Remove.
8843 It was accidentally restored by the Unicode merge.
8844
8845 * w32proc.c (Fw32_get_locale_info): Fix typo in docstring.
8846
8847 2008-11-29 Juanma Barranquero <lekktu@gmail.com>
8848
8849 * w32proc.c: Include "coding.h".
8850 (Fw32_short_file_name): Encode filename passed to Windows API.
8851 (Fw32_long_file_name): Encode filename passed to Windows API and
8852 decode back the result. (Bug#1433)
8853
8854 2008-11-29 Kenichi Handa <handa@m17n.org>
8855
8856 * charset.h (CHAR_CHARSET_P): Check if the encoder is loaded or
8857 not before accessing it.
8858
8859 * charset.c (Fdefine_charset_internal): After calculating
8860 min_char, max_char, and fastmap, copy the charset structure again.
8861 (encode_char): Fix the previous change.
8862
8863 2008-11-28 Seiji Zenitani <zenitani@mac.com>
8864
8865 * frame.c (x_set_alpha) [NS_IMPL_COCOA]: Call x_set_frame_alpha.
8866
8867 * nsfns.m (ns_frame_parm_handlers): Set alpha handler.
8868
8869 * nsterm.m (x_set_frame_alpha): New function.
8870
8871 2008-11-27 Eli Zaretskii <eliz@gnu.org>
8872
8873 * xfaces.c (Fx_font_family_list, syms_of_xfaces): Fix last change.
8874
8875 2008-11-27 Juanma Barranquero <lekktu@gmail.com>
8876
8877 * w32font.c (add_font_entity_to_list): Pass the right LOGFONT
8878 pointer to check_face_name.
8879
8880 2008-11-27 Kenichi Handa <handa@m17n.org>
8881
8882 * category.h (SET_CATEGORY_SET): Call set_category_set.
8883 (set_category_set): Extern it.
8884
8885 * category.c (hash_get_category_set): New function.
8886 (Fmodify_category_entry): Adjusted for the change of
8887 char_table_ref_and_range. Call hash_get_category_set to get a
8888 category set to store in the table.
8889
8890 * character.h (MAYBE_UNIFY_CHAR): Call maybe_unify_char instead of
8891 Funify_charset.
8892
8893 * charset.h (enum charset_method): Delete CHARSET_METHOD_MAP_DEFERRED.
8894 (DECODE_CHAR): Check if the decoder vector is ready.
8895 (ENCODE_CHAR): Check if the encoder char-table is ready.
8896 (maybe_unify_char): Extern it.
8897
8898 * charset.c (Vchar_unified_charset_table): Delete it.
8899 (inhibit_load_charset_map): New variable.
8900 (temp_charset_work): New variable.
8901 (SET_TEMP_CHARSET_WORK_ENCODER, GET_TEMP_CHARSET_WORK_ENCODER)
8902 (SET_TEMP_CHARSET_WORK_DECODER, GET_TEMP_CHARSET_WORK_DECODER):
8903 New macros.
8904 (load_charset_map): Meaning of control_flag changed. If
8905 inhibit_load_charset_map is nonzero, setup a table in
8906 temp_charset_work.
8907 (load_charset): New argument control_flag.
8908 (map_charset_for_dump): New function.
8909 (map_charset_chars): If inhibit_load_charset_map is nonzero, use
8910 map_charset_for_dump.
8911 (Fdefine_charset_internal): If the charset method is MAP, load
8912 mapping tables by calling load_charset.
8913 (Funify_charset): Don't load a mapping table but directly set
8914 Vchar_unify_table.
8915 (maybe_unify_char): New function.
8916 (decode_char): Don't handle the deleted method MAP_DEFERRED.
8917 Handle the case of inhibit_load_charset_map being nonzero.
8918 (encode_char): Don't handle the deleted method MAP_DEFERRED.
8919 Handle the case of inhibit_load_charset_map being nonzero.
8920 (Fclear_charset_maps): Just free temp_charset_work.
8921 (syms_of_charset): Make `inhibit-load-charset-map' a Lisp
8922 variable.
8923
8924 * chartab.c (sub_char_table_ref_and_range): Adjusted for the
8925 change of char_table_ref_and_range.
8926 (char_table_ref_and_range): Change the meaning of argument FROM
8927 and TO. Now the caller must provide initial values for *FROM
8928 and *TO.
8929
8930 * fontset.c (fontset_add): Adjusted for the change of
8931 char_table_ref_and_range.
8932 (fontset_get_font_group): Likewise.
8933 (Ffontset_info): Likewise.
8934
8935 * keymap.c (describe_vector): Adjusted for the change of
8936 char_table_ref_and_range. For char-table, put boundary between
8937 non-ASCII and 8-bit characters.
8938
8939 * print.c (print_object): For bool-vector, delete unnecessary
8940 check of ASCII_BYTE_P.
8941
8942 2008-11-26 Jason Rumney <jasonr@gnu.org>
8943
8944 * w32font.c (w32font_open_internal): Don't include external
8945 leading in font height. (Bug#879)
8946
8947 2008-11-26 Glenn Morris <rgm@gnu.org>
8948
8949 * xfaces.c (Fx_font_family_list): Replace lisp/term/pc-win.el
8950 redefinition with ifdef. (Bug#1383)
8951
8952 2008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
8953
8954 * nsterm.m (ns_get_color): Handle long hex strings (fixes bug #1044).
8955
8956 2008-11-24 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
8957
8958 * nsterm.m (-otherMouseDown:, -otherMouseUp:, -otherMouseDragged):
8959 New EmacsView methods.
8960 (EV_UDMODIFIERS, EV_BUTTON): Add OtherMouse constants.
8961 Fixes bug #1048,1357,1414.
8962
8963 2008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
8964
8965 Fix bug #1362.
8966 * image.c (x_clear_image_1): Do not free background under HAVE_NS, it
8967 is not an indexed color.
8968 * nsterm.m (free_indexed_color): Add argument checking.
8969 * nsfns.m: Move config.h to before system includes (advised by Dan N.).
8970
8971 2008-11-24 Chong Yidong <cyd@stupidchicken.com>
8972
8973 * minibuf.c (Fcompleting_read, Vminibuffer_completion_confirm):
8974 Document confirm-after-completion value for
8975 minibuffer-completion-confirm.
8976
8977 2008-11-24 Jason Rumney <jasonr@gnu.org>
8978
8979 * w32font.c (check_face_name): Use xstrcasecmp. Avoid compiler
8980 warning.
8981
8982 2008-11-23 Jason Rumney <jasonr@gnu.org>
8983
8984 * w32uniscribe.c (uniscribe_encode_char): Ensure context is
8985 restored before returning.
8986
8987 * w32font.c (check_face_name): New function.
8988 (add_font_entity_to_list): Use it to filter out common substituted
8989 fonts. (Bug#642)
8990
8991 2008-11-22 Martin Rudalics <rudalics@gmx.at>
8992
8993 * buffer.c (Fswitch_to_buffer): Reword and mention new option
8994 confirm-nonexistent-file-or-buffer in doc-string.
8995
8996 2008-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
8997
8998 * buffer.c (Fbuffer_swap_text): Remove redundant marker manipulation.
8999 Fix copy/paste typo. Add checks.
9000
9001 2008-11-21 Kenichi Handa <handa@m17n.org>
9002
9003 * coding.c (detect_coding_iso_2022): Reject invalid composition
9004 sequence.
9005 (DECODE_COMPOSITION_START): If the current source is the last
9006 block, and the current composition doesn't end, regard this
9007 sequence as invalid.
9008 (decode_coding_iso_2022): Handle invalid composition sequence.
9009
9010 2008-11-20 Martin Rudalics <rudalics@gmx.at>
9011
9012 * window.c (coordinates_in_window): Don't return
9013 ON_VERTICAL_BORDER for the rightmost position of a mode/header
9014 line when the window is not the rightmost one. (Bug#1372)
9015
9016 2008-11-16 Ben North <ben@redfrontdoor.org> (tiny change)
9017
9018 * buffer.c (syms_of_buffer): Fix doc-string of cursor-type.
9019
9020 2008-11-15 Eli Zaretskii <eliz@gnu.org>
9021
9022 * msdos.c (run_msdos_command): Don't call dos_ttcooked, dos_ttraw,
9023 and bright_bg if noninteractive is non-zero.
9024
9025 2008-11-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9026
9027 * xterm.c (x_draw_glyph_string): For stretch glyphs, don't call
9028 x_draw_glyph_string_background.
9029
9030 * w32term.c (x_draw_glyph_string): Likewise.
9031
9032 2008-11-15 Chong Yidong <cyd@stupidchicken.com>
9033
9034 * xterm.c (x_draw_glyph_string): Stop drawing the background of
9035 the next glyph string once past the overhang width.
9036
9037 * nsterm.m (ns_draw_glyph_string): Likewise.
9038
9039 * w32term.c (x_draw_glyph_string): Likewise.
9040
9041 2008-11-14 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
9042
9043 * fileio.c (Finsert_file_contents): Decrement specpdl_ptr to avoid
9044 double file close.
9045
9046 2008-11-14 Martin Rudalics <rudalics@gmx.at>
9047
9048 * window.c (window_loop): In DELETE_BUFFER_WINDOWS case, reset
9049 dedicated status of window before attempting to display another
9050 buffer in it.
9051
9052 2008-11-14 Juanma Barranquero <lekktu@gmail.com>
9053
9054 * msdos.c (Fmsdos_long_file_names):
9055 (syms_of_msdos) <dos-unsupported-char-glyph>:
9056 * dosfns.c (Fint86): Fix typos in docstrings.
9057
9058 2008-11-14 Eli Zaretskii <eliz@gnu.org>
9059
9060 * makefile.w32-in (OBJ1, WIN32OBJ): Fix whitespace.
9061
9062 2008-11-14 Katsumi Yamaoka <yamaoka@jpl.org>
9063
9064 * puresize.h (BASE_PURESIZE): Increase to 1260000.
9065
9066 2008-11-12 Michal Nazarewicz <mina86@tlen.pl> (tiny change)
9067
9068 * frame.c (x_set_alpha): Set alpha to -1 if nil given.
9069
9070 * frame.h: Negative alpha means "don't touch".
9071
9072 * w32term.c (x_set_frame_alpha): Do nothing if alpha is negative.
9073
9074 * xterm.c (x_set_frame_alpha): Do nothing if alpha is negative.
9075
9076 2008-11-12 Dan Nicolaescu <dann@ics.uci.edu>
9077
9078 * hftctl.c:
9079 * chpdef.h:
9080 * acldef.h: Remove files used only for systems no longer supported.
9081
9082 * Makefile.in: Fix .o alphabetical ordering.
9083 (hftctl.o): Remove dependency, file removed.
9084 (keymap.o, print.o): Depend on charset.h.
9085
9086 2008-11-10 Kenichi Handa <handa@m17n.org>
9087
9088 * character.c (Fget_byte): Fix and make it faster for unibyte target.
9089
9090 2008-11-08 Chong Yidong <cyd@stupidchicken.com>
9091
9092 * dired.c (file_name_completion): If completion_ignore_case is
9093 enabled, ignore case when checking completion-regexp-list.
9094
9095 2008-11-08 Eli Zaretskii <eliz@gnu.org>
9096
9097 * vm-limit.c (get_lim_data): Fix last change.
9098
9099 2008-11-08 Kenichi Handa <handa@m17n.org>
9100
9101 * character.c (Fget_byte): New function.
9102 (syms_of_character): Defsubr Fget_byte.
9103
9104 2008-11-07 Chong Yidong <cyd@stupidchicken.com>
9105
9106 * xdisp.c (try_window_reusing_current_matrix): Ensure that window
9107 cursor position is valid after scrolling.
9108
9109 2008-11-06 Juanma Barranquero <lekktu@gmail.com>
9110
9111 * fns.c (Frandom): Rename arg N to LIMIT to match the docs; doc fix.
9112
9113 2008-11-06 Glenn Morris <rgm@gnu.org>
9114
9115 * xterm.c (handle_one_xevent): Don't let popup menus cause
9116 mouse-autoselect-window related window switching. (Bug#1261)
9117
9118 2008-11-04 David Smith <davidsmith@acm.org> (tiny change)
9119
9120 * xterm.c (xim_close_dpy): Avoid double-free on X11R6 XIM.
9121
9122 2008-11-04 Andreas Schwab <schwab@suse.de>
9123
9124 * xfns.c (Fx_wm_set_size_hint): Add missing return value.
9125
9126 2008-11-03 Chong Yidong <cyd@stupidchicken.com>
9127
9128 * xfns.c (Fx_wm_set_size_hint): New function.
9129
9130 2008-11-03 Martin Rudalics <rudalics@gmx.at>
9131
9132 * textprop.c (Fprevious_single_char_property_change): Return 0
9133 when there's no change in a string. (Bug#1301)
9134
9135 2008-11-02 Martin Rudalics <rudalics@gmx.at>
9136
9137 * frame.c (do_switch_frame): New argument NORECORD passed to
9138 Fselect_window.
9139 (Fselect_frame): New argument NORECORD passed to
9140 do_switch_frame.
9141 (Fset_frame_selected_window): New argument NORECORD passed to
9142 Fselect_frame.
9143 (Fhandle_switch_frame, Fdelete_frame): Handle NORECORD argument
9144 in call of do_switch_frame.
9145 (Fset_mouse_position, Fset_mouse_pixel_position, Fraise_frame):
9146 Handle NORECORD argument in call of Fselect_frame.
9147 * lisp.h (do_switch_frame, Fselect_frame)
9148 (Fset_frame_selected_window): Adjust declarations.
9149 * window.c (select_frame_norecord): New function.
9150 (run_window_configuration_change_hook): Use it and call
9151 Fselect_frame with NORECORD set.
9152 (Fselect_window): Pass NORECORD to Fselect_frame.
9153 (Fset_window_configuration): Handle NORECORD argument in call of
9154 do_switch_frame.
9155 * minibuf.c (choose_minibuf_frame): Handle NORECORD in call of
9156 Fset_frame_selected_window.
9157 * keyboard.c (command_loop_1): Handle NORECORD in call of
9158 Fselect_frame (currently ifdefd).
9159
9160 2008-11-02 Ulrich Mueller <ulm@kph.uni-mainz.de>
9161
9162 * emacs.c (USAGE2): Untabify.
9163
9164 2008-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
9165
9166 * composite.c (fill_gstring_header): Fix copy/paste typo.
9167
9168 2008-10-31 Martin Rudalics <rudalics@gmx.at>
9169
9170 * window.c (Fnext_window, Fprevious_window): Rewrite doc-string.
9171 (Fother_window): Rename argument and rewrite doc-string.
9172 (select_window_norecord): Fix return value. (Bug#1276)
9173
9174 2008-10-30 Juanma Barranquero <lekktu@gmail.com>
9175
9176 * w32fns.c (x_create_tip_frame): Prevent default foreground color for
9177 new frames overriding foreground for tooltips. Based on similar patch
9178 from Martin Rudalics <rudalics@gmx.at>. (Bug#1032)
9179
9180 2008-10-29 Chong Yidong <cyd@stupidchicken.com>
9181
9182 * emacs.c (Fdaemon_initialized): Initialize nfd.
9183
9184 2008-10-29 Martin Rudalics <rudalics@gmx.at>
9185
9186 * window.c (Fwindow_height, Fdelete_window, set_window_buffer)
9187 (Fwindow_text_height): Clarify doc-strings.
9188 * xdisp.c (syms_of_xdisp): Mention set-window-buffer in
9189 doc-string of window-scroll-functions.
9190
9191 2008-10-28 Reiner Steib <Reiner.Steib@gmx.de>
9192
9193 * category.c (syms_of_category): Fix typo in docstring.
9194
9195 2008-10-28 Juanma Barranquero <lekktu@gmail.com>
9196
9197 * window.c (Fwindowp, Fwindow_live_p, Fwindow_minibuffer_p)
9198 (Fcoordinates_in_window_p, Fscroll_left, Fscroll_right):
9199 Fix typos in docstrings.
9200
9201 2008-10-28 Dan Nicolaescu <dann@ics.uci.edu>
9202
9203 * emacs.c (daemon_pipe): Make non-static.
9204 (IS_DAEMON): Move definition ...
9205 * lisp.h (IS_DAEMON): ... here.
9206 (daemon_pipe): Declare.
9207 (is_daemon): Remove.
9208 * dispnew.c (init_display): Use IS_DAEMON.
9209
9210 2008-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
9211
9212 * xdisp.c (pos_visible_p, redisplay_internal, message3_nolog)
9213 (message2_nolog): Check FRAME_INITIAL_P instead of noninteractively.
9214
9215 * emacs.c (is_daemon): Remove.
9216 (main): Don't set is_daemon.
9217 (IS_DAEMON): New macro.
9218 (Fdaemonp, Fdaemon_initialized): Use it.
9219 (Fdaemon_initialized): Write a char into the pipe to make sure the
9220 parent exits.
9221 (syms_of_emacs): Explicitly initialize daemon_pipe[1].
9222
9223 2008-10-27 Chong Yidong <cyd@stupidchicken.com>
9224
9225 * nsterm.m (ns_draw_window_cursor): When hbar cursor is on
9226 over-sized glyph, draw it with the default glyph width.
9227
9228 * w32term.c (x_draw_bar_cursor): When hbar cursor is on over-sized
9229 glyph, draw it with the default glyph width.
9230
9231 * xterm.c (x_draw_bar_cursor): When hbar cursor is on over-sized
9232 glyph, draw it with the default glyph width.
9233
9234 * xdisp.c (try_scrolling): When computing the distance from the
9235 scroll margin to PT, try moving some distance past the window
9236 bottom before giving up.
9237
9238 2008-10-27 Martin Rudalics <rudalics@gmx.at>
9239
9240 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p)
9241 (Fset_window_buffer): Explain in doc-string that a window can be
9242 "strongly" dedicated to its buffer.
9243
9244 2008-10-27 Dan Nicolaescu <dann@ics.uci.edu>
9245
9246 * emacs.c (daemon_name): New variable.
9247 (main): Deal with --daemon=SERVER_NAME.
9248 (Fdaemonp): Return a name if one was passed to --daemon.
9249
9250 2008-10-26 Romain Francoise <romain@orebokech.com>
9251
9252 * emacs.c (daemon_pipe): New variable.
9253 (main): Create a pipe before forking, make the parent exit only after
9254 the child has closed its end of the pipe. Move closing the
9255 descriptors ...
9256 (Fdaemon_initialized): ... here. New function.
9257
9258 2008-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
9259
9260 * chartab.c (Foptimize_char_table): Make sure `ascii' doesn't point to
9261 the previous unoptimized table.
9262
9263 * window.c (Fset_window_buffer): Undo 2008-10-18 change to re-instate
9264 the distinction between non-nil and non-t value of `dedicated'.
9265
9266 2008-10-25 Chong Yidong <cyd@stupidchicken.com>
9267
9268 * keyboard.c (read_char_minibuf_menu_prompt): Ensure that
9269 read_char_minibuf_menu_text is large enough to hold the menu string.
9270
9271 2008-10-25 Martin Rudalics <rudalics@gmx.at>
9272
9273 * window.c (Fget_buffer_window, Fdelete_windows_on)
9274 (Freplace_buffer_in_windows): Make buffer argument optional and
9275 rename to buffer_or_name.
9276
9277 2008-10-24 Chong Yidong <cyd@stupidchicken.com>
9278
9279 * xdisp.c (handle_single_display_spec, handle_display_prop):
9280 Undo 2005-05-16 change.
9281 (handle_stop): Pop iterator if it's loaded with an empty string.
9282 (get_overlay_strings_1): Don't save iterator if it's loaded with
9283 an empty string (bug#1201).
9284
9285 2008-10-24 Kenichi Handa <handa@m17n.org>
9286
9287 * ftfont.c (ftfont_otf_features): Fix previous change.
9288 (ftfont_otf_capability): Check FeatureList.FeatureCount before
9289 calling ftfont_otf_features.
9290
9291 2008-10-24 Kenichi Handa <handa@m17n.org>
9292
9293 * font.c (font_match_p): Fix for the case that a vector of
9294 characters is in script-representative-chars.
9295
9296 2008-10-24 Michael Albinus <michael.albinus@gmx.de>
9297
9298 * dbusbind.c (xd_in_read_queued_messages): New variable.
9299 (XD_SIGNAL1, XD_SIGNAL2, XD_SIGNAL3): New macros. Throw Qdbus_error.
9300 (xd_read_queued_messages): Catch Qdbus_error from the macros.
9301 (all): Replace xsignal1, xsignal2, xsignal3 by the respective
9302 macro. (Bug#1186)
9303
9304 2008-10-23 Ali Bahrami <ali_gnu@emvision.com> (tiny change)
9305
9306 * s/sol2-10.h: New file.
9307
9308 2008-10-23 Juanma Barranquero <lekktu@gmail.com>
9309
9310 * xdisp.c (fill_glyph_string): Fix typo in source (though the
9311 poor beast has survived 9+ years and the jump from xterm.c!).
9312
9313 2008-10-23 Martin Rudalics <rudalics@gmx.at>
9314
9315 * buffer.c (Fget_buffer_create): Rename arg to buffer_or_name.
9316 Reword doc-string.
9317 (Fbury_buffer): In doc-string say what happens to the buffer's window.
9318
9319 2008-10-23 Juanma Barranquero <lekktu@gmail.com>
9320
9321 * character.c (syms_of_character) <script-representative-chars>:
9322 <unicode-category-table>: Doc fixes.
9323
9324 2008-10-23 Noah Friedman <friedman@splode.com>
9325
9326 * coding.c (make_conversion_work_buffer): Check that
9327 Vcode_conversion_reused_workbuf is a live buffer, otherwise call
9328 Fget_buffer_create.
9329
9330 2008-10-23 Kenichi Handa <handa@m17n.org>
9331
9332 * font.c (font_add_log): Check the values of extra properties.
9333
9334 2008-10-22 Martin Rudalics <rudalics@gmx.at>
9335
9336 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
9337 Reword doc-string.
9338 (Fset_window_parameter): Use NILP.
9339 (Fscroll_up, Fscroll_down, Fminibuffer_selected_window)
9340 (Frecenter): Use "selected" instead of "current" window in doc-strings.
9341
9342 2008-10-22 Juanma Barranquero <lekktu@gmail.com>
9343
9344 * xdisp.c (next_element_from_buffer): Remove bogus xassert condition.
9345
9346 2008-10-22 Adrian Robert <Adrian.B.Robert@gmail.com>
9347
9348 * nsfns.m (ns_appkit_version): New function.
9349 (x-server-version): Use it.
9350 (syms_of_nsfns): Define ns-version-string here, not nsterm.m.
9351 (x-server-vendor): Don't check_ns().
9352
9353 * nsterm.m (syms_of_nsterm): Drop ns-version-string.
9354
9355 2008-10-22 Juanma Barranquero <lekktu@gmail.com>
9356
9357 * w32fns.c (unwind_create_frame) [!GLYPH_DEBUG]: Fix xassert.
9358 Copied from 2005-02-03 change to xfns.c by Kim F. Storm.
9359
9360 2008-10-22 Kenichi Handa <handa@m17n.org>
9361
9362 * syntax.c (scan_words): Call word_boundary_p instead of comparing
9363 scripts.
9364
9365 * category.c (word_boundary_p): Check scripts instead of charset.
9366 Handle nil value in word-separating-categories and
9367 word-combining-categories.
9368 (syms_of_category): Fix docstrings of word-separating-categories
9369 and word-combining-categories.
9370
9371 2008-10-21 Eli Zaretskii <eliz@gnu.org>
9372
9373 * coding.c (Fencode_coding_region, Fdecode_coding_region)
9374 (Fdecode_coding_string, Fencode_coding_string): Doc fix.
9375
9376 2008-10-21 Martin Rudalics <rudalics@gmx.at>
9377
9378 * buffer.c (Fget_buffer, Fbury_buffer, switch_to_buffer_1):
9379 Rename arg "buffer" to "buffer_or_name".
9380 (Fkill_buffer): Rename arg "buffer" to "buffer_or_name" and make
9381 it optional.
9382 (no_switch_window): Remove since the return value is not used.
9383 (Fswitch_to_buffer): Rename arg "buffer" to "buffer_or_name".
9384 Consider window as dedicated when Fwindow_dedicated_p returns a
9385 non-nil value.
9386 * lisp.h: Remove prototype for no_switch_window.
9387
9388 2008-10-21 Jan Djärv <jan.h.d@swipnet.se>
9389
9390 * emacs.c (main): Unconditionally set PER_LINUX32 and exec
9391 temacs when dumping if HAVE_PERSONALITY_LINUX32 is defined.
9392
9393 2008-10-21 Kenichi Handa <handa@m17n.org>
9394
9395 * coding.c (detect_coding_charset): For iso-8859-* coding systems,
9396 check Vlatin_extra_code_table.
9397
9398 2008-10-20 Eli Zaretskii <eliz@gnu.org>
9399
9400 * fileio.c (Fset_file_modes): Doc fix.
9401
9402 2008-10-19 Michael Albinus <michael.albinus@gmx.de>
9403
9404 * dbusbind.c (XD_OBJECT_TO_DBUS_TYPE): Handle simple type symbols
9405 in arrays.
9406
9407 2008-10-19 Martin Rudalics <rudalics@gmx.at>
9408
9409 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
9410 Mention kill-buffer in doc-string.
9411 (Fset_window_buffer): Reinsert tem check removed in last commit.
9412 (Fenlarge_window, Fshrink_window): Have argument names and
9413 doc-string follow Elisp manual more closely.
9414
9415 2008-10-18 Eli Zaretskii <eliz@gnu.org>
9416
9417 * fileio.c (Fset_file_modes): Doc fix.
9418
9419 2008-10-18 Martin Rudalics <rudalics@gmx.at>
9420
9421 * window.c (Fwindow_width, Fset_window_start)
9422 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter)
9423 (Fdelete_windows_on, Freplace_buffer_in_windows):
9424 Make doc-strings follow code and Elisp manual more closely.
9425 (Fwindow_dedicated_p): Make window argument optional.
9426 (Fset_window_dedicated_p): Rename argument "arg" to "flag".
9427 (Fset_window_buffer): Respect any non-nil dedicated value for
9428 window. Rename "buffer" argument to "buffer_or_name".
9429
9430 2008-10-18 Ulrich Mueller <ulm@gentoo.org>
9431
9432 * m/sh3.h: New file, machine description for SuperH.
9433
9434 2008-10-17 Martin Rudalics <rudalics@gmx.at>
9435
9436 * window.c (Fsplit_window): Rename arg horflag to horizontal.
9437
9438 2008-10-17 Kenichi Handa <handa@m17n.org>
9439
9440 * ftfont.c (ftfont_otf_features): Fix indexing
9441 gsub_gpos->FeatureList.Feature. Check the validity of indices.
9442
9443 2008-10-16 Magnus Henoch <mange@freemail.hu>
9444
9445 * dbusbind.c (Fdbus_call_method): Unbreak usage line.
9446 (Fdbus_call_method_asynchronously): Ditto.
9447 This change makes C-h f display the argument list.
9448
9449 2008-10-16 Chong Yidong <cyd@stupidchicken.com>
9450
9451 * fileio.c (Fexpand_file_name): Doc fix.
9452
9453 * xfaces.c (Finternal_set_lisp_face_attribute): Make null values
9454 of :foreground and :background equivalent to unspecified (20.x
9455 compatibility).
9456
9457 2008-10-15 Eli Zaretskii <eliz@gnu.org>
9458
9459 * buffer.c (syms_of_buffer): Doc fix.
9460
9461 2008-10-14 Kenichi Handa <handa@m17n.org>
9462
9463 * font.c (font_clear_prop): When clearing font width, clear the
9464 average width field too.
9465
9466 2008-10-12 Andreas Schwab <schwab@suse.de>
9467
9468 * ftfont.c (ftfont_shape_by_flt): Make static.
9469 * ftfont.h (ftfont_shape_by_flt): Don't declare.
9470
9471 * font.c: Don't include <m17n-flt.h>.
9472
9473 2008-10-10 Eli Zaretskii <eliz@gnu.org>
9474
9475 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Decrease to 10000.
9476
9477 2008-10-09 Eli Zaretskii <eliz@gnu.org>
9478
9479 * frame.c (make_terminal_frame) [MSDOS]: Remove unused #ifdef'ed
9480 away code.
9481
9482 2008-10-09 Chong Yidong <cyd@stupidchicken.com>
9483
9484 * dispnew.c (update_text_area): Avoid looping due to large glyph
9485 overhangs (bug#1070).
9486
9487 2008-10-09 Kenichi Handa <handa@m17n.org>
9488
9489 * fontset.c (face_for_char): If face->fontset is negative, just
9490 return ascii_face.
9491
9492 * font.c (font_delete_unmatched): Fix previous change.
9493 Don't reject an entity if DPI and AVGWIDTH of an entity are 0.
9494
9495 2008-10-09 Martin Rudalics <rudalics@gmx.at>
9496
9497 * frame.c (Fraise_frame): On text-only terminals select frame in
9498 order to make it visible. (Bug#1061)
9499
9500 2008-10-08 Chong Yidong <cyd@stupidchicken.com>
9501
9502 * fontset.c (fontset_find_font): Check frame validity.
9503
9504 2008-10-07 Chong Yidong <cyd@stupidchicken.com>
9505
9506 * gtkutil.c (xg_display_open): Reset default display if none exists.
9507 (xg_display_close): Allow Emacs to close all displays (bug#985).
9508
9509 2008-10-06 Andreas Schwab <schwab@suse.de>
9510
9511 * sysdep.c (sys_signal): Always set SA_RESTART when noninteractively.
9512
9513 2008-10-06 Chong Yidong <cyd@stupidchicken.com>
9514
9515 * emacs.c (Vbefore_init_time, Vafter_init_time): Move from startup.el.
9516
9517 * lisp.h (Vbefore_init_time, Vafter_init_time): Declare.
9518
9519 * gtkutil.c (x_wm_set_size_hint): Return immediately if called
9520 during initialization.
9521
9522 2008-10-04 Eli Zaretskii <eliz@gnu.org>
9523
9524 * xdisp.c (redisplay_internal): If frame switched, redisplay the
9525 whole thing on MSDOS frames as well as on a TTY.
9526
9527 * dispnew.c (update_frame): Flush termscript for MSDOS frames as
9528 well as for TTY.
9529 (Fopen_termscript): Allow opening a termscript on MSDOS frames as
9530 well as on a TTY.
9531
9532 * sysdep.c (init_sys_modes): Set FRAME_GARBAGED_P for MSDOS frames
9533 as well as for TTY.
9534
9535 * systime.h (EMACS_TIME_CMP): Cast EMACS_SECS values to `long'.
9536
9537 * dispnew.c (change_frame_size_1): Set FrameRows and FrameCols for
9538 MSDOS frames as well.
9539
9540 2008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
9541
9542 * image.c (x_clear_image_1): Under NS, call ns_free_indexed_color with
9543 correct arguments.
9544 * menu.c (find_and_return_menu_selection): Add cast.
9545
9546 2008-10-03 Glenn Morris <rgm@gnu.org>
9547
9548 * emacs.c (USAGE1): Add --daemon.
9549
9550 2008-10-02 Eli Zaretskii <eliz@gnu.org>
9551
9552 * process.c (procfs_system_process_attributes): Multiply `pcpu' by
9553 100, so it's in percents as advertised.
9554
9555 2008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
9556
9557 * nsterm.h (ns_cursor_types, ns_output.desired_cursor_color)
9558 (ns_output.current_cursor, ns_output.desired_cursor)
9559 (ns_output.last_inactive, FRAME_CURSOR, FRAME_NEW_CURSOR)
9560 (FRAME_NEW_CURSOR_COLOR): Remove.
9561
9562 * nsfns.m (ns_set_cursor_color): Use FRAME_CURSOR_COLOR.
9563 (ns_lisp_to_cursor_type, ns_cursor_type_to_lisp): Use core Emacs
9564 enumeration (HOLLOW_BOX_CURSOR, etc.).
9565
9566 * nsterm.m (ns_frame_rehighlight): Remove commented code.
9567 (draw_window_cursor): Simplify code.
9568 (EmacsView-windowDidBecomeKey:,-windowDidResignKey:):
9569 Don't change cursor type. In latter, call rehighlight instead of doing
9570 updates manually.
9571 (EmacsPrefsController-setPanelFromValues,-setValuesFromPanel):
9572 Use core Emacs cursor types.
9573
9574 * xdisp.c (draw_glyphs): Don't call notice_overwritten_cursor under NS.
9575
9576 2008-10-02 Martin Rudalics <rudalics@gmx.at>
9577
9578 * process.c (Faccept_process_output): Fix doc-string.
9579
9580 2008-10-02 Dan Nicolaescu <dann@ics.uci.edu>
9581
9582 * gmalloc.c (__sbrk): Also define for uClibc.
9583
9584 * s/gnu-linux.h (GNU_LIBRARY_PENDING_OUTPUT_COUNT): Add definition
9585 for uClibc.
9586
9587 2008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
9588
9589 * nsfont.m (nsfont_spec_to_traits): Use UnXX masks only for non-normal
9590 styles.
9591 (nsfont_open): Reenable the cache.
9592
9593 2008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
9594
9595 * font.c (font_matching_entity): Reflect ATTRS in font selection.
9596 (font_find_for_lface) [HAVE_NS]: Don't ignore case.
9597
9598 2008-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
9599
9600 * dispnew.c (Fsend_string_to_terminal): Don't try to send a string to
9601 a suspended terminal.
9602
9603 2008-09-30 Michael Albinus <michael.albinus@gmx.de>
9604
9605 * dbusbind.c (xd_signature): Use strcat instead of sprintf.
9606
9607 2008-09-30 Eli Zaretskii <eliz@gnu.org>
9608
9609 * Makefile.in (MSDOS_SUPPORT): Remove ccl.elc and codepage.elc.
9610
9611 2008-09-30 Chong Yidong <cyd@stupidchicken.com>
9612
9613 * xdisp.c (move_it_to): Don't advance the iterator if the last tab
9614 in a continued line coincides with a line beginning.
9615
9616 2008-09-29 Adrian Robert <Adrian.B.Robert@gmail.com>
9617
9618 * nsfont.m (nsfont_trait_distance): Fix bug.
9619 (nsfont_list): Return a list rather than a vector (syncs with Handa
9620 changes of 2008-05-14).
9621 (nsfont_open): Improve logging.
9622
9623 2008-09-29 Andreas Schwab <schwab@suse.de>
9624
9625 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
9626
9627 2008-09-28 Martin Rudalics <rudalics@gmx.at>
9628
9629 * character.c (Fchar_resolve_modifiers): Rewrite Elisp function
9630 name as char-resolve-modifiers.
9631 Reported by: Markus Triska <markus.triska@gmx.at>
9632
9633 2008-09-28 Dan Nicolaescu <dann@ics.uci.edu>
9634
9635 * dispnew.c (init_display): Return earlier when running as a daemon.
9636
9637 2008-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
9638
9639 * nsfont.m (nsfont_draw): Fix up composition rendering (cmp_from, ...).
9640
9641 2008-09-27 Eli Zaretskii <eliz@gnu.org>
9642
9643 * composite.c (Fcomposition_get_gstring)
9644 (Fcompose_region_internal, Fcompose_string_internal)
9645 (Ffind_composition_internal): Doc fix.
9646 (syms_of_composite) <compose-chars-after-function>: Doc fix.
9647 (syms_of_composite) <auto-composition-function>: Doc fix.
9648 (syms_of_composite) <composition-function-table>: Doc fix.
9649
9650 2008-09-25 Chong Yidong <cyd@stupidchicken.com>
9651
9652 * search.c (wordify): New argument for lax word-ends.
9653 (Fword_search_forward_lax, Fword_search_backward_lax): New funs.
9654
9655 2008-09-24 Dan Nicolaescu <dann@ics.uci.edu>
9656
9657 * lisp.h (is_daemon): Declare.
9658 * dispnew.c (init_display): Do not try to initialize the terminal
9659 when running as a daemon.
9660
9661 2008-09-22 Chong Yidong <cyd@stupidchicken.com>
9662
9663 * nsfns.m (compute_tip_xy): Use x_display_pixel_width and
9664 x_display_pixel_height.
9665
9666 2008-09-22 Martin Rudalics <rudalics@gmx.at>
9667
9668 * undo.c (record_point): Don't call Fundo_boundary for first
9669 change. (Bug#731)
9670
9671 2008-09-22 Juanma Barranquero <lekktu@gmail.com>
9672
9673 * emacs.c (Fdaemonp): Doc fix.
9674
9675 2008-09-22 Dan Nicolaescu <dann@ics.uci.edu>
9676
9677 * emacs.c (main): Place #ifdef in the proper place.
9678
9679 2008-09-21 Dan Nicolaescu <dann@ics.uci.edu>
9680
9681 * emacs.c (standard_args): Add --daemon.
9682 (main): Disconnect from the terminal when --daemon is passed.
9683 (is_daemon): New variable.
9684 (Fdaemonp): New function.
9685 (syms_of_emacs): Defsubr it.
9686
9687 2008-09-20 Chong Yidong <cyd@stupidchicken.com>
9688
9689 * xdisp.c (get_next_display_element): Handle string display
9690 correctly when checking for the end of a box run.
9691
9692 2008-09-20 Glenn Morris <rgm@gnu.org>
9693
9694 * fileio.c (Qdelete_by_moving_to_trash): New Lisp_Object.
9695 (syms_of_fileio): Add Qdelete_by_moving_to_trash.
9696 (Frename_file): Avoid copying to trash if a rename involves
9697 a delete. (Bug#964).
9698
9699 2008-09-20 Eli Zaretskii <eliz@gnu.org>
9700
9701 * keyboard.c (Fset_quit_char, Fset_input_meta_mode)
9702 (Fset_output_flow_control, Fcurrent_input_mode): Support MSDOS
9703 frames as well as termcap frames.
9704 (handle_interrupt): Remove "#ifndef MSDOS" around the call to
9705 get_named_tty.
9706
9707 2008-09-19 Eli Zaretskii <eliz@gnu.org>
9708
9709 * process.c (procfs_system_process_attributes): Fix cmdline in
9710 case /proc/PID/cmdline is empty.
9711
9712 * xterm.c (x_wm_set_size_hint): Use x_display_pixel_width and
9713 x_display_pixel_height.
9714
9715 2008-09-19 Juanma Barranquero <lekktu@gmail.com>
9716
9717 * frame.c (x_fullscreen_adjust): Declare var as Display_Info.
9718
9719 * w32fns.c (Fx_display_pixel_width, Fx_display_pixel_height)
9720 (compute_tip_xy): Use x_display_pixel_width, x_display_pixel_height.
9721
9722 2008-09-19 Dan Nicolaescu <dann@ics.uci.edu>
9723
9724 * dispextern.h (struct it): Move line_wrap away from the middle of
9725 bitfields. Move voffset in struct iterator_stack_entry after the
9726 bitfields. Move tab_width near after another short.
9727
9728 2008-09-18 Dan Nicolaescu <dann@ics.uci.edu>
9729
9730 * frame.h (struct frame): Move alpha from the middle of bitfields.
9731
9732 * window.h (struct window): Move frozen_window_start_p after the
9733 rest of the bitfields to reduce padding.
9734
9735 2008-09-18 Chong Yidong <cyd@stupidchicken.com>
9736
9737 * xterm.h (x_display_info): Remove `height' and `width' members.
9738
9739 * nsterm.h (ns_display_info): Remove `height' and `width' members.
9740
9741 * w32term.h (w32_display_info): Remove `height', `width',
9742 `height_in', and `width_in' members.
9743
9744 * xterm.c (x_display_pixel_height, x_display_pixel_width):
9745 New functions.
9746 (x_calc_absolute_position): Use them.
9747 (x_term_init): Omit removed `height' and `width' members.
9748
9749 * w32term.c (x_display_pixel_height, x_display_pixel_width):
9750 New functions.
9751 (w32_read_socket, x_calc_absolute_position): Use them.
9752 (w32_initialize_display_info, w32_term_init): Omit removed members
9753 of w32_display_info.
9754
9755 * nsterm.m (x_display_pixel_height, x_display_pixel_width):
9756 New functions.
9757 (ns_initialize_display_info): Omit removed members of ns_display_info.
9758
9759 * xterm.c (x_display_pixel_height, x_display_pixel_width):
9760 New functions.
9761 (x_calc_absolute_position): Use them.
9762 (x_term_init): Omit removed `height' and `width' members.
9763
9764 * xfns.c (Fx_display_pixel_width, Fx_display_pixel_height)
9765 (compute_tip_xy):
9766 * frame.c (x_fullscreen_adjust):
9767 * xmenu.c (menu_position_func): Use x_display_pixel_height and
9768 x_display_pixel_width.
9769
9770 2008-09-18 Kenichi Handa <handa@m17n.org>
9771
9772 * composite.c (fill_gstring_header): Don't check FROM and TO here.
9773 (composition_compute_stop_pos): Fix handling of static composition.
9774 (Fcomposition_get_gstring): Check FROM and TO at first.
9775
9776 2008-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
9777
9778 * composite.c (Fcomposition_get_gstring): Yet another int/Lisp_Object
9779 mixup (YAILOM).
9780
9781 2008-09-17 Chong Yidong <cyd@stupidchicken.com>
9782
9783 * indent.c (Fvertical_motion): Use position reported by iterator
9784 instead of PT for determining screen motion (bug#943).
9785
9786 2008-09-17 Romain Francoise <romain@orebokech.com>
9787
9788 * composite.c (composition_adjust_point): Fix int/EMACS_INT mixup.
9789
9790 2008-09-17 Kenichi Handa <handa@m17n.org>
9791
9792 * ftfont.c (ftfont_shape_by_flt): Downcase family name.
9793
9794 * composite.c (Fcomposition_get_gstring): Make bigger gstring_work
9795 if necessary.
9796
9797 2008-09-16 Kenichi Handa <handa@m17n.org>
9798
9799 * coding.c (make_conversion_work_buffer): Avoid calling
9800 Fget_buffer_create if it is not necessary.
9801
9802 2008-09-15 Martin Rudalics <rudalics@gmx.at>
9803
9804 * window.c (Fselect_window): Don't update window_select_count and
9805 use_time when norecord is not nil.
9806
9807 2008-09-14 Kenichi Handa <handa@m17n.org>
9808
9809 * fileio.c (Finsert_file_contents): Delete incorrect decrement of
9810 specpdl_ptr.
9811
9812 2008-09-12 Kenichi Handa <handa@m17n.org>
9813
9814 * indent.c (scan_for_column): Don't handle automatic composition
9815 if the current buffer is not associated with a window.
9816
9817 * composite.c (composition_reseat_it): If the current buffer is
9818 not associated with a window, ignore the automatic composition.
9819 (find_automatic_composition): Likewise.
9820
9821 2008-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
9822
9823 * term.c (close_gpm): New fun extracted from Fgpm_mouse_stop.
9824 (Fgpm_mouse_stop): Use it.
9825 * termhooks.h (close_gpm): Declare.
9826 * keyboard.c (tty_read_avail_input): Forcefully close the gpm
9827 connection if Gpm_GetEvent fails.
9828
9829 * window.c (set_window_buffer): Always preserve current-buffer.
9830
9831 2008-09-12 Glenn Morris <rgm@gnu.org>
9832
9833 * charset.c (init_charset): Warn if etc/charsets not found. (Bug#909)
9834
9835 2008-09-11 Glenn Morris <rgm@gnu.org>
9836
9837 * charset.c (charset-map-path): Doc fix.
9838
9839 2008-09-10 Kenichi Handa <handa@m17n.org>
9840
9841 * xdisp.c (handle_composition_prop): Set it->cmp_it.ch to -1.
9842
9843 * font.c (Ffont_shape_gstring): Make glyphs of non-nil adjustment
9844 compose a grapheme cluster with the preceding base glyph.
9845
9846 * composite.c (composition_compute_stop_pos): Fix previous change.
9847 Reset cmp_it->id to -1 at first.
9848
9849 2008-09-10 Glenn Morris <rgm@gnu.org>
9850
9851 * Makefile.in (character.o, chartab.o): Fix config.h typo.
9852
9853 2008-09-09 Chong Yidong <cyd@stupidchicken.com>
9854
9855 * keyboard.c (read_key_sequence): Reapply translation maps when
9856 switching keyboards.
9857
9858 2008-09-09 Kenichi Handa <handa@m17n.org>
9859
9860 * ftfont.c (ftfont_shape_by_flt): Use "combining" FLT for ASCII
9861 characters.
9862
9863 * composite.c (FORWARD_CHAR): Fix calculation
9864 of (POSITION).pos_byte.
9865 (composition_compute_stop_pos): Limit the search of composition to
9866 at most 500 characters ahead. If we reach the limit or find a
9867 newline, set cmp_it->ch to -2 and return 0.
9868 (composition_reseat_it): Handle the case that cmp_it->ch is -2.
9869
9870 2008-09-08 Kenichi Handa <handa@m17n.org>
9871
9872 * indent.c (Fvertical_motion): Be sure to set
9873 it_overshoot_expected if it.cmp_it.id is non-negative.
9874
9875 2008-09-07 Andreas Schwab <schwab@suse.de>
9876
9877 * callproc.c (Fcall_process): Don't hold references to string data
9878 across garbage collection. Move initialisation of new_argv down
9879 to avoid compiler bug.
9880
9881 2008-09-07 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
9882
9883 * process.c (Fsystem_process_attributes): Doc fix.
9884
9885 2008-09-07 Chong Yidong <cyd@stupidchicken.com>
9886
9887 * callproc.c (Fcall_process): Canonicalize current directory name.
9888
9889 * xdisp.c (move_it_to): When moving by vpos, ensure that the
9890 iterator advances to the next line if the current line ends in a
9891 continued tab.
9892
9893 2008-09-07 Teodor Zlatanov <tzz@lifelogs.com>
9894
9895 * nsfont.m (nsfont_draw): Fix the references to missing gidx data
9896 member to point to cmp_from.
9897
9898 * xdisp.c: Doc fix for references to gidx data member.
9899
9900 2008-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
9901
9902 * buffer.c (Fbuffer_swap_text): Reset window->point markers.
9903
9904 2008-09-07 Kenichi Handa <handa@m17n.org>
9905
9906 * composite.c (FORWARD_CHAR): Check STOP after
9907 incrementing (POSITION).pos.
9908
9909 2008-09-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
9910
9911 * process.c (Fsystem_process_attributes): Doc fix.
9912
9913 2008-09-06 Chong Yidong <cyd@stupidchicken.com>
9914
9915 * keyboard.c (Ftop_level): Doc fix.
9916
9917 2008-09-06 Eli Zaretskii <eliz@gnu.org>
9918
9919 * xmenu.c (xmenu_show) [!HAVE_X_WINDOWS]: If frame has a
9920 minibuffer, don't let lower part of menu invade the echo area.
9921
9922 * msdos.c (IT_menu_display): Use STRING_CHAR_ADVANCE instead of a
9923 "char *q" to access menu text and advance through it. Revert the
9924 change that displayed ">" instead of ASCII character 0x10.
9925
9926 2008-09-05 Eli Zaretskii <eliz@gnu.org>
9927
9928 * menu.c (single_menu_item) [!HAVE_BOXES]: Enable emulation of
9929 toggle boxes and radio buttons on MS-DOS as well.
9930
9931 2008-09-05 Kenichi Handa <handa@m17n.org>
9932
9933 * composite.c (autocmp_chars): Check lookback count.
9934 (composition_compute_stop_pos): Set cmp_it->lookback.
9935 (composition_reseat_it): Check lookback count.
9936 (struct position_record): New struct.
9937 (FORWARD_CHAR, BACKWARD_CHAR, CHAR_COMPOSABLE_P): New macros.
9938 (find_automatic_composition): New function.
9939 (composition_adjust_point): Use find_automatic_composition.
9940
9941 * dispextern.h (struct composition_it): New member lookback.
9942
9943 2008-09-02 Chong Yidong <cyd@stupidchicken.com>
9944
9945 * indent.c (Fvertical_motion): Don't call move_it_by_lines again
9946 if moving by a single line.
9947
9948 2008-09-02 Andreas Schwab <schwab@suse.de>
9949
9950 * xterm.c (x_delete_display): Fix merge error.
9951
9952 * fileio.c (Fexpand_file_name): Remove unused variables.
9953
9954 2008-09-02 Eli Zaretskii <eliz@gnu.org>
9955
9956 * fileio.c (Fexpand_file_name): Copy argument `name' into local
9957 storage on all platforms, not just on DOS_NT.
9958
9959 2008-09-02 Jason Rumney <jasonr@gnu.org>
9960
9961 * w32menu.c (Fx_popup_menu, Fx_popup_dialog, w32_menu_show):
9962 Ensure mouse is not grabbed after menu is finished.
9963
9964 2008-09-01 Chong Yidong <cyd@stupidchicken.com>
9965
9966 * xfaces.c (Finternal_set_alternative_font_family_alist)
9967 (Finternal_set_alternative_font_registry_alist): Properly copy
9968 entire alist structure.
9969
9970 2008-09-01 Kenichi Handa <handa@m17n.org>
9971
9972 * ftfont.c (ftfont_spec_pattern): Don't create a charset if the
9973 representative chars of the script is a vector.
9974 (ftfont_list): Handle the case where the representative chars of
9975 the script is a vector.
9976
9977 * character.c (syms_of_character): Docstring of
9978 script-representative-chars fixed.
9979
9980 2008-08-31 Eli Zaretskii <eliz@gnu.org>
9981
9982 * msdos.c (BUILD_CHAR_GLYPH): New macro.
9983 (IT_menu_display): Use it instead of SET_CHAR_GLYPH to construct
9984 the menu. Allocate larger buffer for `text', to account for
9985 possible ^C characters.
9986
9987 2008-08-31 Martin Rudalics <rudalics@gmx.at>
9988
9989 * xdisp.c (prepare_menu_bars): Don't call
9990 Vwindow_size_change_functions with arg Qt.
9991
9992 2008-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
9993
9994 * font.h (font_range):
9995 * fileio.c (report_file_error):
9996 * composite.c (composition_update_it): Yet another int/Lisp_Object
9997 mixup (YAILOM).
9998
9999 2008-08-30 Glenn Morris <rgm@gnu.org>
10000
10001 * data.c (Fmake_variable_frame_local): Doc fix.
10002
10003 * frame.c (Fmodify_frame_parameters): Doc fix.
10004
10005 2008-08-30 Eli Zaretskii <eliz@gnu.org>
10006
10007 * w32.c (init_user_info): Allocate buf[] with xmalloc using the size
10008 needed by GetTokenInformation.
10009 (w32_system_process_attributes): Check return values of all system
10010 APIs.
10011
10012 * msdos.c (IT_display_cursor): Write "CURSOR ON/OFF" to termscript
10013 only when the state changes.
10014 (IT_update_begin, IT_update_end): Add termscript trace.
10015
10016 * w16select.c (Fw16_set_clipboard_data): Don't encode text if
10017 clipboard is unavailable. Set dst to NULL if it doesn't point to
10018 malloc'ed data.
10019 (Fw16_get_clipboard_data): Initialize htext to NULL, to avoid
10020 passing random values to xfree.
10021
10022 * dispnew.c (init_display): Set `tty's association in frame's
10023 parameters alist to the name of the terminal device, if that is known.
10024
10025 2008-08-29 Jason Rumney <jasonr@gnu.org>
10026
10027 * w32uniscribe.c (uniscribe_check_otf): Don't fallback on DFLT script.
10028
10029 2008-08-29 Eli Zaretskii <eliz@gnu.org>
10030
10031 * composite.c (fill_gstring_body): Avoid compiler warnings.
10032
10033 * font.c (font_fill_lglyph_metrics): Use EMACS_INT in
10034 LGLYPH_SET_CODE to avoid compiler warnings.
10035
10036 * makefile.w32-in ($(BLD)/w32uniscribe.$(O)): Depend on composite.h.
10037
10038 * composite.h (LGLYPH_SET_CODE): Cast `val' to EMACS_INT.
10039
10040 * w32uniscribe.c (uniscribe_shape): Shut up compiler warning in
10041 LGLYPH_SET_CODE.
10042
10043 2008-08-29 Kenichi Handa <handa@m17n.org>
10044
10045 * fileio.c (report_file_error): Don't downcase the first character
10046 of errstring if it is still unibyte.
10047
10048 2008-08-29 Kenichi Handa <handa@m17n.org>
10049
10050 These changes are to re-implement the automatic composition so
10051 that it doesn't use text properties.
10052
10053 * Makefile.in (ftfont.o): Depend on composite.h.
10054 (composite.o): Depend dispextern.h, font.h, frame, and window.h.
10055
10056 * character.h (Vunicode_category_table): Extern it.
10057
10058 * character.c (Vunicode_category_table): New variable.
10059 (syms_of_character): DEFVAR_LISP Vunicode_category_table.
10060
10061 * chartab.c (optimize_sub_char_table): Perform more greedy
10062 optimization.
10063
10064 * composite.h (enum composition_method):
10065 Delete COMPOSITION_WITH_GLYPH_STRING.
10066 (COMPOSITION_METHOD): Don't check COMPOSITION_WITH_GLYPH_STRING.
10067 (Vcomposition_function_table): Extern it.
10068 (LGSTRING_XXX, LGLYPH_XXX): Macros moved from font.h.
10069 (composition_gstring_put_cache, composition_gstring_from_id)
10070 (composition_gstring_p, composition_gstring_width)
10071 (composition_compute_stop_pos, composition_reseat_it)
10072 (composition_update_it, composition_adjust_point): Extern them.
10073 (Fcomposition_get_gstring): EXFUN it.
10074
10075 * composite.c: Include window.h, frame.h, dispextern.h, font.h.
10076 (Vcomposition_function_table)
10077 (get_composition_id): Don't handle COMPOSITION_WITH_GLYPH_STRING.
10078 (gstring_hash_table, gstring_work, gstring_work_headers):
10079 New variables.
10080 (gstring_lookup_cache, composition_gstring_put_cache)
10081 (composition_gstring_from_id, composition_gstring_p)
10082 (composition_gstring_width, fill_gstring_header)
10083 (fill_gstring_body, autocmp_chars, composition_compute_stop_pos)
10084 (composition_reseat_it, composition_update_it)
10085 (composition_adjust_point, Fcomposition_get_gstring): New functions.
10086 (syms_of_composite): Initialize gstring_hash_table, gstrint_work,
10087 and gstring_work_headers. DEFVAR_LISP composition-function-table.
10088 Defsubr composition_get_gstring.
10089
10090 * dispextern.h (struct glyph): New union u.cmp. Delete the member
10091 cmp_id.
10092 (struct glyph_string): Delete the member gidx. New members
10093 cmp_id, cmp_from, and cmp_to.
10094 (enum it_method): Delete GET_FROM_COMPOSITION.
10095 (struct composition_it): New struct.
10096 (struct it): New member cmp_it, and iterator_stack_entry.cmp_it.
10097 Delete c, len, cmp_id, cmp_len in u.comp.
10098
10099 * font.h (enum lgstring_indices): Delete it.
10100 (LGSTRING_XXX, LGLYPH_XXX): Move these macros to composite.h.
10101 (enum lglyph_indices): Likewise.
10102 (font_range): Adjust extern.
10103 (font_fill_lglyph_metrics): Extern it.
10104
10105 * font.c (QCf): New variable.
10106 (check_gstring): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
10107 (font_prepare_composition): Delete this function.
10108 (font_range): Type and arguments changed.
10109 (Ffont_make_gstring, Ffont_fill_gstring): Delete them.
10110 (font_fill_lglyph_metrics): New function.
10111 (Ffont_shape_text): Rename to Ffont_shape_gstring and change arguments.
10112 (syms_of_font): DEFSYM QCf. Delete defsubr for
10113 Sfont_make_gstring, Sfont_fill_gstring, Sfont_shape_text.
10114 Defsubr Sfont_shape_gstring.
10115
10116 * fontset.h (font_for_char): Extern it.
10117
10118 * fontset.c (font_for_char): New function.
10119
10120 * ftfont.c: Include composite.h.
10121 (ftfont_resolve_generic_family): Add langset "en" to pattern.
10122 (ftfont_shape_by_flt): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
10123
10124 * indent.c: Include composite.h and dispextern.h.
10125 (check_composition): Delete this function.
10126 (scan_for_column): Handle composition by
10127 composition_compute_stop_pos, composition_reseat_it, and
10128 composition_update_it.
10129 (compute_motion): Likewise.
10130 (Fvertical_motion): Fix checking of composition.
10131
10132 * keyboard.c (adjust_point_for_property): Check composition by
10133 composition_adjust_point.
10134
10135 * nsterm.m (ns_draw_glyph_string): Adjust for the change of
10136 struct glyph_string.
10137
10138 * term.c (encode_terminal_code): Adjust for the change of struct glyph.
10139 (append_composite_glyph): Adjust for the change of struct it and
10140 struct glyph.
10141 (produce_composite_glyph): Likewise.
10142
10143 * w32term.c (x_draw_composite_glyph_string_foreground):
10144 Adjust for the change of struct glyph_string.
10145 (x_draw_glyph_string): Likewise.
10146
10147 * w32uniscribe.c (struct uniscribe_font_info): Include composite.h.
10148 (uniscribe_shape): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
10149
10150 * xdisp.c: Include font.h.
10151 (it_props): Delete the entry for Qauto_composed.
10152 (init_iterator): Initialize it->cmp_it.id to -1.
10153 (compute_stop_pos): Call composition_compute_stop_pos.
10154 (face_before_or_after_it_pos): Adjust for the change of struct it.
10155 (handle_auto_composed_prop): Delete it.
10156 (handle_composition_prop): Handle only static composition.
10157 (next_overlay_string): Remove it->method == GET_FROM_COMPOSITION
10158 from xassert. Initialize it->cmp_it.stop_pos.
10159 (push_it): Adjust for the change of struct it.
10160 (pop_it): Likewise.
10161 (get_next_element): Delete next_element_from_composition.
10162 (CHAR_COMPOSED_P): New macro.
10163 (get_next_display_element): For automatic composition, get a face
10164 from the font in the glyph-string.
10165 (set_iterator_to_next): For GET_FROM_BUFFER and GET_FROM_STRING,
10166 check composition by it->cmp_it.id. Delete GET_FROM_COMPOSITION case.
10167 (next_element_from_string): Check if the character at the current
10168 position is composed by CHAR_COMPOSED_P.
10169 (next_element_from_buffer): Likewise.
10170 (next_element_from_composition): Adjust for the change of struct it.
10171 Update it->cmp_it.
10172 (dump_glyph): Adjust for the change of struct glyph.
10173 (fill_composite_glyph_string): Adjust for the change of struct
10174 it and struct glyph. Don't handle automatic composition here.
10175 (fill_gstring_glyph_string): New function.
10176 (x_get_glyph_overhangs): Handle automatic composition.
10177 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the change of struct glyph.
10178 (BUILD_GSTRING_GLYPH_STRING): New macro.
10179 (BUILD_GLYPH_STRINGS): Call BUILD_GSTRING_GLYPH_STRING for
10180 automatic composition.
10181 (append_composite_glyph): Adjust for the change of struct it and
10182 struct glyph.
10183 (x_produce_glyphs): Adjust for the change of struct it.
10184
10185 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
10186 the change of struct glyph_string.
10187 (x_draw_glyph_string): Likewise.
10188
10189 2008-08-29 Glenn Morris <rgm@gnu.org>
10190
10191 * buffer.c (word-wrap): Doc fix.
10192 * xdisp.c (truncate-partial-width-windows): Doc fix.
10193 Increase default to 50.
10194
10195 2008-08-29 Chong Yidong <cyd@stupidchicken.com>
10196
10197 * xdisp.c (update_tool_bar_unwind): New function.
10198 (update_tool_bar): Temporarily set selected frame before building
10199 tool-bar items.
10200
10201 2008-08-28 Michael Albinus <michael.albinus@gmx.de>
10202
10203 * dbusbind.c (XD_ERROR, XD_DEBUG_MESSAGE): Use strncpy and
10204 snprintf, respectively.
10205 (xd_append_arg): Convert strings with Fstring_make_unibyte.
10206
10207 2008-08-28 Chong Yidong <cyd@stupidchicken.com>
10208
10209 * Makefile.in: Revert (undocumented) 2008-08-20 change adding
10210 LDFLAGS to GNUstep CC invocation.
10211
10212 2008-08-27 Chong Yidong <cyd@stupidchicken.com>
10213
10214 * indent.c (Fvertical_motion): Revert last change. Handle the
10215 general case where we are moving forward, and PT spans multiple
10216 screen lines.
10217
10218 * eval.c (find_handler_clause): Temporarily increase
10219 max-lisp-eval-depth while printing the backtrace buffer, to
10220 guarantee that help-mode code can run.
10221
10222 2008-08-27 Eli Zaretskii <eliz@gnu.org>
10223
10224 * msdos.c (Fmsdos_remember_default_colors): Don't reverse frame
10225 colors under -rv.
10226 (IT_set_frame_parameters): Don't swap foreground and background
10227 colors if `(reverse . t)' is present in the frame properties.
10228 (internal_terminal_init): Call init_frame_faces only for the
10229 initial frame.
10230
10231 2008-08-27 Andreas Schwab <schwab@suse.de>
10232
10233 * dired.c (Ffile_attributes): Avoid compiler warning in bitshift.
10234
10235 2008-08-27 Andreas Schwab <schwab@suse.de>
10236
10237 * search.c (search_buffer): Set char_base to zero only at the end.
10238
10239 2008-08-27 Kenichi Handa <handa@m17n.org>
10240
10241 * fileio.c (report_file_error): Fix handling of multibyte error string.
10242
10243 2008-08-27 Andreas Seltenreich <seltenreich@gmx.de>
10244
10245 * xterm.c (x_term_init): Temporarily hide the partially
10246 initialized terminal while calling vendor-specific-keysyms.
10247
10248 2008-08-26 Eli Zaretskii <eliz@gnu.org>
10249
10250 * msdos.c (internal_terminal_init): Most initializations done only
10251 once, especially initial_screen_colors[] and termscript open.
10252
10253 2008-08-26 Chong Yidong <cyd@stupidchicken.com>
10254
10255 * eval.c (Fcondition_case): Doc fix.
10256
10257 * widgetprv.h (EmacsFramePart): Change font member to the new font
10258 struct.
10259
10260 * widget.c: Include character.h and font.h for XSETFONT.
10261 (setup_frame_gcs): Compute X font id from font struct, just once.
10262
10263 2008-08-26 Eli Zaretskii <eliz@gnu.org>
10264
10265 * term.c (get_named_tty): Fix last change.
10266
10267 2008-08-26 Chong Yidong <cyd@stupidchicken.com>
10268
10269 * indent.c (Fvertical_motion): If moving forward starting from a
10270 multi-line string, move the iterator to the last line of that string.
10271
10272 2008-08-25 Eli Zaretskii <eliz@gnu.org>
10273
10274 * frame.c (do_switch_frame): Mark previously displayed frame as
10275 obscured for FRAME_MSDOS_P frames as well.
10276
10277 2008-08-24 Eli Zaretskii <eliz@gnu.org>
10278
10279 * frame.c (make_terminal_frame): Initialize f->terminal,
10280 f->terminal->reference_count, and scroll bars on MS-DOS as well.
10281 Set the top frame to newly created frame.
10282 (Fmake_terminal_frame): Reuse the_only_display_info.
10283
10284 * vm-limit.c (get_lim_data) [MSDOS]: Use alternative methods of
10285 estimating available memory.
10286
10287 2008-08-23 David Reitter <david.reitter@gmail.com>
10288
10289 * nsterm.m (ns_draw_window_cursor): Don't call
10290 NSDisableScreenUpdates and NSEnableScreenUpdates on
10291 non-NS_IMPL_COCOA systems.
10292
10293 2008-08-23 Andreas Schwab <schwab@suse.de>
10294
10295 * process.c (procfs_system_process_attributes): Fix use of
10296 uninitialized variables.
10297
10298 2008-08-23 Eli Zaretskii <eliz@gnu.org>
10299
10300 * emacs.c (main) [MSDOS]: Call syms_of_xmenu.
10301
10302 * dispnew.c (init_display): Remove MS-DOS specific conditions for
10303 calling tty-set-up-initial-frame-faces.
10304
10305 * xmenu.c (Fx_popup_dialog, Fx_popup_menu, xmenu_show):
10306 Allow MSDOS frames along with X frames.
10307
10308 * termhooks.h (TERMINAL_ACTIVE_P): Handle output_msdos_raw in
10309 addition to output_termcap.
10310
10311 * xdisp.c (redisplay_internal) [MSDOS]: Don't call set_tty_color_mode.
10312
10313 * termchar.h (FRAME_TTY): Support output_msdos_raw.
10314 (struct tty_display_info) [MSDOS]: Add fields related to mouse
10315 highlight.
10316
10317 * process.c [!subprocesses]: Define QCname.
10318 (syms_of_process): Intern and staticpro it.
10319
10320 * w16select.c (Fw16_set_clipboard_data, Fw16_get_clipboard_data):
10321 Adjust for changes in encoding/decoding routines.
10322 Use encode_coding_object and decode_coding_object instead of
10323 encode_coding and decode_coding.
10324
10325 * sysdep.c (init_sys_modes): Call dos_ttraw with tty_out as argument.
10326
10327 * dosfns.c: Include frame.h before termhooks.h.
10328 (dos_cleanup): Use CURTTY ()->termscript instead of a global
10329 variable termscript.
10330
10331 * s/msdos.h (USER_FULL_NAME): Define.
10332 (SYSTEM_PURESIZE_EXTRA): Bump up to 100K.
10333
10334 * editfns.c (USER_FULL_NAME): Define to pw->pw_gecos if undefined.
10335 (Fuser_full_name): Use USER_FULL_NAME instead of a literal
10336 pw->pw_gecos.
10337
10338 * keyboard.c (handle_interrupt) [MSDOS]: Call cursor_to with
10339 SELECTED_FRAME as additional (1st) argument.
10340 (tty_read_avail_input): Handle output_msdos_raw in
10341 addition to output_termcap.
10342
10343 * msdos.c: Include frame.h before termhooks.h.
10344 (mouse_on, mouse_off, mouse_moveto, mouse_init)
10345 (msdos_set_cursor_shape, IT_set_face, IT_write_glyphs)
10346 (show_mouse_face, IT_clear_end_of_line, IT_clear_screen)
10347 (IT_clear_to_end, IT_cursor_to, IT_display_cursor, IT_cmgoto)
10348 (IT_set_terminal_modes, IT_reset_terminal_modes)
10349 (IT_set_frame_parameters): Use tty->termscript instead of a global
10350 variable termscript.
10351 (IT_write_glyphs): Use tty->terminal->terminal_coding instead of a
10352 global variable terminal_coding. Don't refer to
10353 Vnonascii_translation_table.
10354 (internal_terminal_init): Set Vwindow_system in current_kboard.
10355 Don't use TTY_CHAR_INS_DEL_OK. Set Vinitial_window_system.
10356 Announce date and time of session start, if termscript is open.
10357 Don't zero out the_only_display_info (it is done in
10358 term.c:init_tty). Open termscript only of not already open.
10359 Log "SCREEN SAVED" here, instead of IT_set_terminal_modes. Init mouse
10360 here instead of dos_ttraw. Don't initialize display if this is an
10361 initial tty. Don't set FRAME_FONT.
10362 (Vwindow_system_version): Bump to 23.
10363 (dos_ttraw): Accept a TTY argument; all callers fixed. If mouse
10364 is available, set up mouse_position_hook.
10365 (dos_ttraw, IT_set_terminal_modes): If called with initial
10366 terminal, do nothing.
10367 (IT_set_frame_parameters): Handle the Qtty_type frame
10368 parameter by calling internal_terminal_init.
10369 (dos_set_window_size, show_mouse_face)
10370 (clear_mouse_face, IT_note_mode_line_highlight)
10371 (IT_note_mouse_highlight, IT_update_begin, IT_frame_up_to_date)
10372 (dos_rawgetc): Use tty_display_info instead of x_display_info.
10373 (initialize_msdos_display): New function.
10374 (IT_cursor_to, IT_clear_to_end, IT_clear_screen)
10375 (IT_clear_end_of_line, IT_insert_glyphs, IT_write_glyphs)
10376 (IT_delete_glyphs, IT_ring_bell, IT_reset_terminal_modes)
10377 (IT_set_terminal_modes, IT_set_terminal_window, IT_update_begin):
10378 Accept additional argument: a pointer to a frame. Update all callers.
10379 (request_sigio, unrequest_sigio): Don't define, now defined on
10380 sysdep.c.
10381 (IT_write_glyphs): Rewrite to use encode_terminal_code.
10382
10383 * term.c [MSDOS]: Include msdos.h.
10384 (init_tty) [MSDOS]: Reuse most of WINDOWSNT branch. Change cpp
10385 conditional to DOS_NT. Allow only one call to this function in a
10386 session. Don't allocate a new struct tty_display_info; instead,
10387 reuse the_only_display_info. Call get_tty_size to get screen
10388 dimensions. Call init_baud_rate to set bad_rate.
10389 (dissociate_if_controlling_tty) [MSDOS]: Ifdef away function body.
10390 (Fsuspend_tty) [MSDOS]: Don't close input and output.
10391 (Fresume_tty) [MSDOS]: Don't reopen the TTY; instead, use stdin/stdout.
10392 (get_tty_terminal, get_named_tty, Ftty_type)
10393 (Fcontrolling_tty_p): Handle output_msdos_raw in addition to
10394 output_termcap.
10395 (Fresume_tty, Fsuspend_tty, init_tty, delete_tty):
10396 Call add_keyboard_wait_descriptor and delete_keyboard_wait_descriptor
10397 only when subprocesses are supported.
10398
10399 * frame.c (make_terminal_frame) [MSDOS]: Adjust initialization of
10400 f->output_data.x.
10401 (Fmake_terminal_frame) [MSDOS]: Don't allow creation of new
10402 terminal devices.
10403
10404 * msdos.h: Remove definition of struct x_display_info and struct
10405 x_output.
10406 (FRAME_FONT): Use output_data.tty.
10407 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL): Don't define.
10408 (struct x_display_info): Rename from display_info. Update all users in
10409 msdos.c.
10410 (struct x_output): Remove background_pixel and foreground_pixel.
10411 (the_only_display_info): Rename from the_only_x_display.
10412 (dos_ttraw): Update prototype.
10413
10414 * Makefile.in (MSDOS_OBJ): Add xmenu.o.
10415 (SOME_MACHINE_LISP): Add ../lisp/term/pc-win.elc.
10416
10417 2008-08-23 Jason Rumney <jasonr@gnu.org>
10418
10419 * image.c (enum tiff_keyword_index, tiff_format): Add :index keyword.
10420 (fn_TIFFSetDirectory): New library function used.
10421 (init_tiff_functions) [HAVE_NTGUI]: Initialize it.
10422 (tiff_load): Use :index to select among multiple images. Set count
10423 property when multiple images exist.
10424 (gif_format): Use :index, not :image.
10425
10426 2008-08-23 Chong Yidong <cyd@stupidchicken.com>
10427
10428 * xdisp.c (try_scrolling): Check INT_MAX instead of
10429 MOST_POSITIVE_FIXNUM for maximum integer value. Include limits.h
10430 to obtain INT_MAX.
10431
10432 2008-08-21 İsmail Dönmez <ismail@namtrac.org> (tiny change)
10433
10434 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase on GTK+.
10435
10436 2008-08-21 Christian Faulhammer <opfer@gentoo.org> (tiny change)
10437
10438 * Makefile.in (temacs${EXEEXT}): On GNUstep, link to appropriate
10439 GNUstep library location.
10440
10441 2008-08-21 Chong Yidong <cyd@stupidchicken.com>
10442
10443 * xfaces.c (x_update_menu_appearance): Check validity of menu font
10444 before using it.
10445
10446 * puresize.h (BASE_PURESIZE): Increase to 1250000.
10447
10448 2008-08-20 Adrian Robert <Adrian.B.Robert@gmail.com>
10449
10450 * nsfns.m (ns-read-file-name): Add casts to avoid warning.
10451 (ns-convert-utf8-nfd-to-nfc): Warn if cannot execute correctly.
10452 * nsfont.m (nsfont_draw): Compare indexed colors to 0, not nil.
10453 * nsterm.h (EmacsView-unlockFocusNeedsFlush:): Add declaration.
10454 (EmacsApp-cursor_blink_handler): Remove declaration.
10455 * nsterm.m (ns_draw_glyph_string): Update first conditional body to
10456 match 01 Feb 2008 changes in xterm.c.
10457 (ns_read_socket): Add cast to avoid warning.
10458 (EmacsApp-application:openFiles:): Don't call replyToOpenOrPrint: on
10459 GNUstep.
10460
10461 2008-08-20 Chong Yidong <cyd@stupidchicken.com>
10462
10463 * xselect.c (x_get_foreign_selection): Return nil if desired
10464 selection could not be obtained, instead of signalling an error.
10465
10466 2008-08-20 David Reitter <david.reitter@gmail.com>
10467
10468 * nsfns.m (ns_lisp_to_cursor_type): Replace with generic xfns.c.
10469 * nsterm.m: Remove ns-specific code for cursor blinking.
10470 (ns_draw_window_cursor): Clear cursor properly rather than
10471 redrawing the area. Respect width of bar cursors.
10472 These changes enable the use of generic blink-cursor-mode and
10473 generic cursor types in NS and support smooth cursor movements (do
10474 not blink off after command).
10475 * xdisp.c (get_phys_cursor_geometry): Redraw wider rectangle on
10476 Nextstep, too.
10477
10478 2008-08-19 Kenichi Handa <handa@m17n.org>
10479
10480 * font.c (Vfont_log_deferred): New variable.
10481 (font_add_log): Check Vfont_log_deferred.
10482 (font_deferred_log): New function.
10483
10484 * font.h (font_deferred_log): Extern it.
10485
10486 * fontset.c (reorder_font_vector): Use encoding charset of fonts
10487 for sorting.
10488 (face_for_char): Use deferred log.
10489
10490 2008-08-18 Kenichi Handa <handa@m17n.org>
10491
10492 * fontset.c (face_for_char): Add font log.
10493
10494 * font.c (font_add_log): Add the font properties :script, :lang,
10495 and :otf in the log.
10496
10497 2008-08-17 Chong Yidong <cyd@stupidchicken.com>
10498
10499 * xdisp.c: Remove dead code.
10500 (handle_invisible_prop, next_overlay_string): Defer call to
10501 setup_for_ellipsis.
10502 (handle_stop, set_iterator_to_next): Call setup_for_ellipsis.
10503
10504 2008-08-15 Chong Yidong <cyd@stupidchicken.com>
10505
10506 * xfaces.c (lookup_derived_face): Properly handle possible zero
10507 return value of get_lface_attributes.
10508 (merge_faces): Don't tell lookup_derived_face to signal an error
10509 if face is not found.
10510
10511 * dired.c (Fdirectory_files): Doc fix.
10512
10513 * process.c (make_process): Initialize kill_without_query struct
10514 member.
10515
10516 2008-08-15 Eli Zaretskii <eliz@gnu.org>
10517
10518 * w32.c (w32_system_process_attributes) [_MSC_VER < 1300]:
10519 Alternative calculation of totphys for Visual Studio 6.
10520
10521 * w32fns.c [_MSC_VER && _MSC_VER < 1300]: Declare HMONITOR.
10522
10523 * w32.c (_MEMORY_STATUS_EX, MEMORY_STATUS_EX, LPMEMORY_STATUS_EX):
10524 Rename from _MEMORYSTATUSEX, MEMORYSTATUSEX, LPMEMORYSTATUSEX.
10525 All users changed.
10526 (stat): Only root directory passed to GetDriveType. Allow RAM
10527 disk as well as local fixed disk when w32-get-true-file-attributes
10528 is set to `local'.
10529 (CopySid_Proc, EqualSid_Proc, GetLengthSid_Proc): New typedefs.
10530 (equal_sid, get_length_sid, copy_sid): New wrapper functions.
10531 (w32_cached_id, w32_add_to_cache): New functions.
10532 (get_name_and_id): Look account names in the cache before calling
10533 lookup_account_sid.
10534 (g_b_init_get_length_sid, g_b_init_equal_sid, g_b_init_copy_sid):
10535 New initialization flags.
10536 (globals_of_w32): Initialize them to zero.
10537 (w32_system_process_attributes): Use w32_cached_id and
10538 w32_add_to_cache.
10539
10540 2008-08-14 Lawrence Mitchell <wence@gmx.li>
10541
10542 * lread.c (Fread_char, Fread_char_exclusive): If no character
10543 event is read before timeout is reached, return nil, rather than
10544 converting to a number.
10545
10546 2008-08-14 Chong Yidong <cyd@stupidchicken.com>
10547
10548 * fns.c (use_dialog_box): Doc fix.
10549
10550 * s/darwin.h: Undefine HAVE_RES_INIT, which appears to be harmful
10551 on OS X.
10552
10553 2008-08-13 Chong Yidong <cyd@stupidchicken.com>
10554
10555 * frame.c (Qns_parse_geometry): New var.
10556 (Fx_parse_geometry): For HAVE_NS, call ns-parse-geometry.
10557
10558 2008-08-11 Chong Yidong <cyd@stupidchicken.com>
10559
10560 * xdisp.c (x_produce_glyphs): Handle the case when font has no
10561 space character in calculating tabs.
10562
10563 2008-08-11 Dan Nicolaescu <dann@ics.uci.edu>
10564
10565 * Makefile.in (bootstrap-emacs): Use ln -f in the CANNOT_DUMP case.
10566
10567 2008-08-10 Glenn Morris <rgm@gnu.org>
10568
10569 * process.c (procfs_system_process_attributes): Use EMACS_INTs to
10570 silence gcc "limited range of data type" warnings in some
10571 make_fixnum_or_float calls.
10572
10573 2008-08-09 Eli Zaretskii <eliz@gnu.org>
10574
10575 * w32.c (w32_system_process_attributes): If the process does not
10576 exist, return nil.
10577
10578 * w32.c: Include thelp32.h, psapi.h and coding.h.
10579 (_MEMORYSTATUSEX, _PROCESS_MEMORY_COUNTERS_EX): New struct
10580 declarations.
10581 (CreateToolhelp32Snapshot_Proc, Process32First_Proc)
10582 (Process32Next_Proc): New typedefs.
10583 (g_b_init_create_toolhelp32_snapshot, g_b_init_process32_first)
10584 (g_b_init_process32_next, g_b_init_open_thread_token)
10585 (g_b_init_impersonate_self, g_b_init_revert_to_self)
10586 (g_b_init_get_process_memory_info, g_b_init_global_memory_status)
10587 (g_b_init_get_process_working_set_size)
10588 (g_b_init_global_memory_status_ex): New static variables.
10589 (globals_of_w32): Initialize them.
10590 (create_toolhelp32_snapshot, process32_first, process32_next)
10591 (open_thread_token, impersonate_self, revert_to_self)
10592 (get_process_memory_info, get_process_working_set_size)
10593 (global_memory_status, global_memory_status_ex): New wrapper
10594 functions.
10595 (w32_list_system_processes, w32_system_process_attributes)
10596 (enable_privilege, restore_privilege, ltime, process_times):
10597 New functions.
10598 (convert_time_raw): New function.
10599 (convert_time): Remove conversion of FILETIME into time in 100
10600 nsec units, call convert_time_raw instead.
10601
10602 * process.h (w32_list_system_processes, w32_system_process_attributes):
10603 Add prototypes.
10604 (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname)
10605 (Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime, Qcutime)
10606 (Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs, Quser, Qgroup)
10607 (Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime): Add extern declarations.
10608
10609 * process.c (Fsystem_process_attributes): Doc fix.
10610
10611 2008-08-08 Chong Yidong <cyd@stupidchicken.com>
10612
10613 * xdisp.c (move_it_to): When stopping at a charpos, check if that's
10614 a continued multi-char glyph; if so, advance to the actual glyph.
10615
10616 2008-08-07 Dan Nicolaescu <dann@ics.uci.edu>
10617
10618 * s/darwin.h (OTHER_FILES): Do not define here, defined in config.in.
10619
10620 * Makefile.in (ALL_OBJC_CFLAGS): New variable.
10621 (.m.o): Use it.
10622 * config.in: Regenerate.
10623
10624 2008-08-07 Chong Yidong <cyd@stupidchicken.com>
10625
10626 * xdisp.c (redisplay_window): Revert last change.
10627 (try_window): Check bottom scroll margin too.
10628
10629 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
10630
10631 * config.in: Regenerate.
10632
10633 * Makefile.in (emacs): Remove ifndef NS conditional for 'emacs
10634 -list-load-path-shadows'.
10635 (nsgui.h): Reduce number of things depending on it.
10636
10637 2008-08-06 Chong Yidong <cyd@stupidchicken.com>
10638
10639 * xdisp.c (try_scrolling): Use iterator to find the scroll margin,
10640 instead of window-end which does the wrong thing at eob.
10641 (try_cursor_movement): Minor optimization.
10642 (redisplay_window): If scroll margin is defined, don't assume
10643 window doesn't need scrolling.
10644
10645 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
10646
10647 * config.in: Regenerate.
10648
10649 * Makefile.in: Move nsXXX.m dependencies into big alphabetical list.
10650 (mostlyclean): Don't delete *.d under NS.
10651
10652 * nsterm.h (NS_HAVE_INTEGER): Change to NS_HAVE_NSINTEGER.
10653
10654 2008-08-06 Kenichi Handa <handa@m17n.org>
10655
10656 * xfont.c (xfont_list_family): Return a list of symbols, not strings.
10657
10658 2008-08-06 Andreas Schwab <schwab@suse.de>
10659
10660 * config.in: Regenerate.
10661
10662 2008-08-05 Chong Yidong <cyd@stupidchicken.com>
10663
10664 * xdisp.c (redisplay_window): Don't enforce scroll-margin when
10665 forcing a window start.
10666
10667 * fileio.c (Vauto_save_list_file_name): Move here from file.el.
10668 (auto_save_1): Update modtime when auto-save-list-file-name is on.
10669
10670 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
10671
10672 * emacs.c (main): Under NS, set working dir to HOME when get a "psn"
10673 argument.
10674
10675 2008-08-05 Juanma Barranquero <lekktu@gmail.com>
10676
10677 * buffer.c (syms_of_buffer) <scroll-up-aggressively>:
10678 <scroll-down-aggressively, before-change-functions>:
10679 <after-change-functions>: Reflow docstrings.
10680
10681 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
10682 Ken Raeburn <raeburn@gnu.org>
10683
10684 Dock menu customization, based on a patch by Ken Raeburn, plus some
10685 other fixes.
10686 * nsmenu.m (dockMenu): New variable.
10687 (EmacsDialog -clicked:): Fix mistake in change of 2008-07-17.
10688
10689 * nsterm.h (dockMenu): Declare.
10690
10691 * nsterm.m (KEY_NS_NEW_FRAME): New definition.
10692 (ns_term_init): Initialize dockMenu.
10693 (EmacsApp -newFrame:, -applicationDockMenu:): New methods.
10694 (EmacsView -windowShouldClose:): Don't behave specially if <= 1 frame
10695 left.
10696
10697 * lisp.h (LSB_TAG): Use on DARWIN_OS, not NS_IMPL_COCOA.
10698
10699 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
10700
10701 * nsterm.h: Test directly for NS_HAVE_INTEGER before defining it.
10702
10703 * config.in: Regenerate.
10704
10705 2008-08-04 Seiji Zenitani <zenitani@mac.com>
10706
10707 * nsfns.m (x-create-frame): Set the frame parameter alpha to nil.
10708
10709 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
10710
10711 * nsterm.h (find_and_call_menu_selection): Fix prototype.
10712
10713 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
10714
10715 * emacs.c (main: unexec_init_emacs_zone): Call if on DARWIN_OS.
10716
10717 * keyboard.h: Comment an #endif.
10718
10719 * lisp.h (have_menus_p): Adjust comment.
10720
10721 * menu.c (find_and_return_menu_selection): Fix comparison with
10722 client_data.
10723
10724 * nsmenu.m (popup_activated_flag): New variable.
10725 (popup_activated): New function.
10726 (menu-or-popup-active-p): New exported lisp definition.
10727 (ns_popup_menu): Set popup_activated_flag. Call discard_menu_items()
10728 when popup done.
10729 (ns_popup_dialog): Set popup_activated_flag.
10730
10731 * nsterm.m (EmacsView -conversationIdentifier): Use NSInteger
10732 version for GNUstep (handled by conditional typedef in nsterm.m).
10733 (ns_get_color): Remove special-casing for "darkblue", "dark blue" (now
10734 in rgb.txt).
10735
10736 * process.c (init_process): Use DARWIN_OS, not DARWIN.
10737
10738 * sysselect.h: Conditionalize init_process undef on DARWIN_OS.
10739
10740 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): Do it also under NS.
10741
10742 * xdisp.c (redisplay_internal, note_mouse_highlight): Under NS,
10743 shortcircuit if popup_activated like GTK and X toolkit.
10744
10745 * m/inter386.h: Change DARWIN to DARWIN_OS.
10746
10747 * s/darwin.h: Add #define DARWIN_OS. Get rid of C_SWITCH_SYSTEM def.
10748 Change LIBS_MACGUI to LIBS_NSGUI. Move temacs-conditionalized defs
10749 closer to C_SWITCH_SYSTEM_TEMACS so usage is understood. Expand
10750 comment on NO_SOCK_SIGIO.
10751
10752 2008-08-03 Chong Yidong <cyd@stupidchicken.com>
10753
10754 * nsterm.m (windowDidResize): Remove stopModal call.
10755
10756 2008-08-03 Andreas Schwab <schwab@suse.de>
10757
10758 * vm-limit.c (get_lim_data) [HAVE_GETRLIMIT && RLIMIT_AS]: Define.
10759 (check_memory_limits): Don't handle HAVE_GETRLIMIT here.
10760
10761 2008-08-02 Chong Yidong <cyd@stupidchicken.com>
10762
10763 * vm-limit.c (check_memory_limits): Don't use getrlimit on cygwin.
10764 Don't use uninitialized pointer variable when using getrlimit.
10765
10766 2008-08-02 Jason Rumney <jasonr@gnu.org>
10767
10768 * w32font.c (compute_metrics): Don't mess with glyph_idx setting here.
10769
10770 2008-08-02 Eli Zaretskii <eliz@gnu.org>
10771
10772 * alloc.c (NSTATICS): Bump to 0x640.
10773
10774 * s/gnu-linux.h (HAVE_PROCFS, LISTPROC, PROCATTR): New defines.
10775
10776 * lisp.h: Add prototype for directory_files_internal.
10777
10778 * process.c (Fsystem_processes_list, Fsystem_process_attributes):
10779 New functions.
10780 (syms_of_process): Defsubr them. Add initializations for various
10781 Q* symbols used in procfs_system_process_attributes.
10782 (procfs_list_system_processes, procfs_system_process_attributes)
10783 [HAVE_PROCFS]: New functions.
10784 (time_from_jiffies, ltime_from_jiffies, get_up_time, procfs_ttyname)
10785 (procfs_get_total_memory): New functions.
10786
10787 2008-08-01 Juanma Barranquero <lekktu@gmail.com>
10788
10789 * xfaces.c (Fx_load_color_file): Fix previous change;
10790 it is #ifdef WINDOWSNT, not WINDOWS_NT.
10791
10792 2008-08-01 Michael Albinus <michael.albinus@gmx.de>
10793
10794 * dbusbind.c (xd_read_message): Handle D-Bus error messages.
10795
10796 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
10797
10798 * nsterm.h (NSInteger, NSUInteger): Add defines for non-Leopard.
10799
10800 2008-08-01 Chong Yidong <cyd@stupidchicken.com>
10801
10802 * nsfns.m (ns_frame_parm_handlers): Add empty entry for x_set_alpha.
10803
10804 * nsterm.m (EmacsApp -application:openFiles:): GNUstep does not
10805 define NSApplicationDelegateReplySuccess.
10806 (EmacsView -converstationIdentifier): Use long instead of
10807 NSInteger for GNUstep, since it doesn't have NSInteger.
10808
10809 * xmenu.c: Revert last change.
10810
10811 * keyboard.h: Fix last change.
10812
10813 2008-08-01 Juanma Barranquero <lekktu@gmail.com>
10814
10815 * xfaces.c (x-load-color-file): Use RGB() instead of manually shifting
10816 on Windows.
10817
10818 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
10819
10820 Warning clearing and clean-up in NS port.
10821 * keyboard.h (xmalloc_widget_value, digest_single_submenu):
10822 Add prototypes.
10823 * nsgui.h (FACE_DEFAULT): Remove, unused.
10824 (XGCValues): Change colors to unsigned long.
10825 * nsterm.h (EmacsApp): Add declaration of all methods implemented in
10826 nsterm.m.
10827 (EmacsMenu -addItemWithWidgetValue:): Change to use NSMenuItem class.
10828 (ns_list_fonts): Remove, unused.
10829 (ns_font_to_xlfd, ns_fontname_to_xlfd): Drop prototypes.
10830 * nsfns.m (interpret_services_menu): Use NSMenuItem class.
10831 * nsfont.m (nsfont_open): Fix cast error in glyphs,metrics alloc.
10832 (nsfont_draw): Compare face colors to 0, not nil.
10833 * nsmenu.m (struct widget_value): Drop unneeded declaration.
10834 (EmacsMenu -addItemWithWidgetValue:, -fillWithWidgetValue:)
10835 (-addSubmenuWithTitle:): Use NSMenuItem class.
10836 (ns_popup_menu): Use NO, not NULL, for enabled setting.
10837 * nsterm.m (ns_draw_glyph_string): Don't compare font to ~0.
10838 (ns_clip_to_row): Make gc arg a BOOL.
10839 (ns_draw_fringe_bitmap, ns_draw_window_cursor): Use YES, NO in
10840 ns_clip_to_row() call.
10841 (ns_draw_glyph_string): Drop face comparison to ~0 (no longer
10842 used). Cast FRAME_FONT assignments.
10843 (ns_read_socket): Cast call to EmacsApp-fulfillService:withArg:.
10844 (ns_string_to_lispmod): Change arg to const char.
10845 (ns_term_init): Use NSMenuItem class.
10846 (EmacsApp -openFile:): Move to different section of file.
10847 (EmacsApp -application:openFiles:): Don't return a value, call
10848 -replyToOpenOrPrint:.
10849 (EmacsView -keyDown:): Fix up cast.
10850 (EmacsView -converstationIdentifier): Use NSInteger instead of long.
10851 (EmacsView -menuDown:): Cast tag in call to
10852 find_and_call_menu_selection().
10853 (ns_list_fonts): Remove, unused.
10854 (ns_font_to_xlfd): Make static. Cast result of UTF8String.
10855 (ns_fontname_to_xlfd): Make static.
10856 * w32menu.c (xmalloc_widget_value, digest_single_submenu):
10857 Remove prototypes (now in keyboard.h).
10858 (next_menubar_widget_id): Remove, unused.
10859 * xmenu.c (xmalloc_widget_value, digest_single_submenu):
10860 Remove prototypes (now in keyboard.h).
10861 * xfaces.c (ns_list_fonts, w32_list_fonts): Remove, unused.
10862
10863 2008-08-01 Dan Nicolaescu <dann@ics.uci.edu>
10864
10865 * Makefile.in (dispnew.o, gtkutil.o, sound.o, atimer.o)
10866 (floatfns.o): Depend on syssignal.h.
10867 (term.o): Depend on syssignal.h, systty.h, and $(INTERVAL_SRC).
10868
10869 * systty.h: Fix previous change that removed BSD_TERMIOS.
10870 Add comments to #ifdefs.
10871
10872 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
10873
10874 * w32fns.c (w32-load-color-file): Remove.
10875 (x-open-connection): Use renamed Fx_load_color_file.
10876 * xfaces.c (x-load-color-file): Add.
10877 * nsterm.m (ns_initialize): Load colors from etc/rgb.txt instead of
10878 Emacs.clr.
10879 (hide_hourglass): BLOCK_INPUT before UNBLOCK.
10880
10881 2008-07-31 Michael Albinus <michael.albinus@gmx.de>
10882
10883 * dbusbind.c (Fdbus_call_method_asynchronously)
10884 (Fdbus_method_error_internal): New defuns.
10885 (xd_read_message): Handle also reply messages.
10886 (Vdbus_registered_functions_table): Extend docstring.
10887
10888 2008-07-31 Juanma Barranquero <lekktu@gmail.com>
10889
10890 * keyboard.c (gobble_input): Fix previous change.
10891
10892 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
10893
10894 * bitmaps/README:
10895 * xfns.c:
10896 * termcap.c:
10897 * term.c:
10898 * syswait.h:
10899 * systty.h:
10900 * systime.h:
10901 * syssignal.h:
10902 * sysdep.c:
10903 * process.h:
10904 * process.c:
10905 * print.c:
10906 * ndir.h:
10907 * lread.c:
10908 * keyboard.c:
10909 * getpagesize.h:
10910 * floatfns.c:
10911 * fileio.c:
10912 * emacs.c:
10913 * doc.c:
10914 * dispnew.c:
10915 * dired.c:
10916 * data.c:
10917 * callproc.c:
10918 * buffer.c:
10919 * README:
10920 * Makefile.in:
10921 * s/template.h:
10922 * s/msdos.h:
10923 * m/vax.h: Remove VMS support.
10924 * s/vms.h:
10925 * vlimit.h:
10926 * uaf.h:
10927 * temacs.opt:
10928 * param.h:
10929 * ioctl.h: Remove file.
10930
10931 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
10932
10933 * s/ms-w32.h (MULTI_KBOARD): Remove.
10934 * xterm.c:
10935 * xselect.c:
10936 * xfns.c:
10937 * window.c:
10938 * w32term.c:
10939 * w32fns.c:
10940 * terminal.c:
10941 * termhooks.h:
10942 * term.c:
10943 * sysdep.c:
10944 * keyboard.h:
10945 * keyboard.c:
10946 * frame.h:
10947 * frame.c:
10948 * frame.c: Remove references to MULTI_KBOARD, it is now the default.
10949 * config.in: Regenerate.
10950
10951 2008-07-30 Jason Rumney <jasonr@gnu.org>
10952
10953 * w32font.h (struct w32font_info): Use unicode version of textmetrics.
10954
10955 * w32font.c (w32font_encode_char): Leave as unicode if in range.
10956 (w32font_open_internal): Get unicode version of textmetrics.
10957 Don't enable or disable glyph indices here.
10958 (w32font_open): Disable use of glyph indices.
10959
10960 * w32uniscribe.c (uniscribe_open): Enable use of glyph indices.
10961
10962 2008-07-30 Chong Yidong <cyd@stupidchicken.com>
10963
10964 * minibuf.c (Vread_buffer_function): Doc fix.
10965
10966 2008-07-30 John Paul Wallington <jpw@pobox.com>
10967
10968 * minibuf.c (read_buffer_completion_ignore_case): New var.
10969 (Fread_buffer): Use it.
10970
10971 2008-07-30 Dan Nicolaescu <dann@ics.uci.edu>
10972
10973 * systty.h (sensemode): Remove empty #if. Remove reference to
10974 BSD_TERMIOS, unused.
10975
10976 * sysdep.c: Remove reference to DGUX.
10977 (closedir): Remove reference to BROKEN_CLOSEDIR, unused.
10978
10979 * config.in: Regenerate.
10980
10981 2008-07-30 Jason Rumney <jasonr@gnu.org>
10982
10983 * w32uniscribe.c (uniscribe_encode_char): Fix glyph buffer size.
10984
10985 2008-07-29 Jason Rumney <jasonr@gnu.org>
10986
10987 * w32uniscribe.c (uniscribe_shape): Avoid using context if cache
10988 is populated.
10989 (uniscribe_encode_char): Always use uniscribe.
10990 Avoid using context if cache is populated.
10991
10992 2008-07-29 Jan Djärv <jan.h.d@swipnet.se>
10993
10994 * xmenu.c (Fx_menu_bar_open_internal): Use activate_item signal to
10995 open menu.
10996
10997 * gtkutil.c (menu_nav_ended): Remove.
10998 (create_menus): Remove signal connect for menu_nav_ended.
10999
11000 2008-07-28 Chong Yidong <cyd@stupidchicken.com>
11001
11002 * xdisp.c (redisplay_window): Check return value of
11003 compute_window_start_on_continuation_line before forcing a window
11004 start.
11005
11006 2008-07-28 Jason Rumney <jasonr@gnu.org>
11007
11008 * w32font.c (w32font_text_extents): Use w32_metric_cache consistently.
11009
11010 * w32term.c (w32_enable_unicode_output, cleartype_active):
11011 Remove obsolete display options.
11012 (x_draw_glyph_string_background): Don't use old cleartype_active
11013 workaround.
11014 (w32_initialize): Remove cleartype_active initialization.
11015 (syms_of_w32term): Remove w32_enable_unicode_output initialization.
11016
11017 2008-07-28 Andreas Schwab <schwab@suse.de>
11018
11019 * lisp.h (init_weak_hash_tables, syms_of_font)
11020 (xd_read_queued_messages, syms_of_dbusbind): Declare.
11021 (remove_hash_entry): Don't declare.
11022 * eval.c (maybe_call_debugger): Make static and move before use.
11023 * gtkutil.c: Include <X11/Xft/Xft.h> if HAVE_XFT.
11024 * xdisp.c: Include "gtkutil.h" if USE_GTK.
11025 * xterm.h (x_set_frame_alpha): Declare.
11026
11027 2008-07-28 Jan Djärv <jan.h.d@swipnet.se>
11028
11029 * gtkutil.c (menu_nav_ended): Revert change from 2008-07-24.
11030 (create_menus): Connect selection-done to menu_nav_ended.
11031
11032 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
11033
11034 * nsfns.m (x-create-frame): Add copy of parms argument to beginning.
11035 Set Vx_resource_name to a fallback. Replace read of 'buffered'
11036 parameter with read of 'alpha' one.
11037 (Qns_frame_parameter): Remove.
11038 * nsselect.m (selection-coding-system)
11039 (next-selection-coding-system, Vselection_coding_system)
11040 (Vnext_selection_coding_system): Drop.
11041
11042 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
11043
11044 * nsfns.m (do-applescript, do_applescript): Rename to
11045 ns-do-applescript, ns_do_applescript, and move within file.
11046
11047 2008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
11048
11049 Remove support for Mac Carbon.
11050 * mactoolbox.c:
11051 * macterm.h:
11052 * macterm.c:
11053 * macselect.c:
11054 * macmenu.c:
11055 * macgui.h:
11056 * macfns.c:
11057 * mac.c: Remove file.
11058 * s/darwin.h:
11059 * m/intel386.h:
11060 * xfaces.c:
11061 * xdisp.c:
11062 * window.c:
11063 * tparam.c:
11064 * termhooks.h:
11065 * termcap.c:
11066 * term.c:
11067 * syssignal.h:
11068 * sysselect.h:
11069 * sysdep.c:
11070 * process.c:
11071 * lread.c:
11072 * lisp.h:
11073 * keyboard.c:
11074 * image.c:
11075 * fringe.c:
11076 * frame.h:
11077 * frame.c:
11078 * fontset.c:
11079 * font.h:
11080 * font.c:
11081 * fns.c:
11082 * fileio.c:
11083 * emacs.c:
11084 * dispnew.c:
11085 * dispextern.h:
11086 * config.in:
11087 * atimer.c:
11088 * Makefile.in: Remove code for Carbon.
11089
11090 2008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11091
11092 * macterm.c (XDrawLine) [USE_MAC_IMAGE_IO]: Remove spurious return.
11093
11094 2008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11095
11096 * macterm.h (kCGBitmapByteOrder32Host): New define for
11097 non-universal SDKs.
11098
11099 * image.c (mac_create_cg_image_from_image, image_load_image_io)
11100 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
11101
11102 * macterm.c (XDrawLine, XCreatePixmapFromBitmapData)
11103 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
11104
11105 2008-07-26 David Robinow <drobinow@gmail.com> (tiny change)
11106
11107 * w32inevt.c: Include dispextern.h.
11108
11109 2008-07-26 Andreas Schwab <schwab@suse.de>
11110
11111 * print.c (print_object): Fix off-by-one in last change.
11112
11113 2008-07-25 Juanma Barranquero <lekktu@gmail.com>
11114
11115 * term.c (syms_of_term): Don't initialize default_orig_pair,
11116 default_set_foreground and default_set_background on Windows.
11117
11118 2008-07-25 Jason Rumney <jasonr@gnu.org>
11119
11120 * w32uniscribe.c (uniscribe_shape): Pass NULL for control arg to
11121 ScriptItemize. Clean up return value checking. Remove unused
11122 variables.
11123 (uniscribe_encode_char): Encode non-BMP characters with uniscribe
11124 shaping engine.
11125
11126 * w32font.c (w32font_has_char): Handle the case where we can't
11127 determine the script for a character.
11128
11129 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
11130
11131 * term.c (syms_of_term): Initialize default_orig_pair,
11132 default_set_foreground, and default_set_background.
11133
11134 * getloadavg.c (nl): Rename to name_list to avoid ncurses.h
11135 clash (bug#86).
11136 (getloadavg): Callers changed.
11137
11138 * image.c (svg_load_image): Fix last change.
11139 (svg_load_image): Use rsvg_handle_get_dimensions to check that
11140 image size is valid. Use g_object_unref instead of deprecated
11141 rsvg_handle_free to free rsvg handle.
11142 (x_from_xcolors): Don't initialize pixmap (silence compiler).
11143
11144 2008-07-25 Jason Rumney <jasonr@gnu.org>
11145
11146 * w32font.c (w32font_encode_char): Encode characters outside BMP as
11147 surrogates before looking up glyph index.
11148 (w32font_text_extents): Encode as surrogates if falling back to
11149 functions that need UTF-16 wide chars.
11150
11151 * w32uniscribe.c (uniscribe_encode_char): Encode characters outside
11152 BMP as surrogates before looking up glyph index.
11153
11154 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
11155
11156 * image.c (svg_load_image): Check for failure in return value of
11157 rsvg_handle_get_pixbuf. Free rsvg handle when done.
11158
11159 2008-07-25 Jason Rumney <jasonr@gnu.org>
11160
11161 * w32font.c (Fx_select_font): Reverse sense of second arg.
11162
11163 2008-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
11164
11165 * syntax.c (struct lisp_parse_state, char_quoted, inc_bytepos)
11166 (dec_bytepos, find_defun_start): Use EMACS_INT for buffer positions.
11167
11168 * puresize.h (PURESIZE_CHECKING_RATIO): New macro.
11169 (PURESIZE): Use it.
11170
11171 2008-07-24 Dan Nicolaescu <dann@ics.uci.edu>
11172
11173 * m/amdx86-64.h (HAVE_LIB64_DIR): Consolidate ifdefs.
11174 * m/alpha.h (TEXT_END):
11175 * m/ibmrs6000.h (TEXT_END):
11176 * m/macppc.h (TEXT_END):
11177 * s/darwin.h (TEXT_END):
11178 * s/msdos.h (TEXT_END): Remove, unused.
11179 * s/gnu-linux.h (BSD_PGRPS): Add a comment.
11180 * s/cygwin.h: Remove comment.
11181
11182 * ecrt0.c (NODOT_GLOBAL_START): Remove code, unused.
11183 (DOT_GLOBAL_START): Remove conditional, redundant for CRT0_DUMMIES.
11184 * m/intel386.h (DOT_GLOBAL_START):
11185 * m/vax.h (DOT_GLOBAL_START): Remove, redundant with CRT0_DUMMIES.
11186 (USG): Remove, file not used on USG platforms.
11187
11188 * Makefile.in (HAVE_X11): Remove empty #else.
11189
11190 2008-07-24 Andreas Schwab <schwab@suse.de>
11191
11192 * fileio.c (Finsert_file_contents): Properly adjust undo list
11193 after format conversion.
11194
11195 2008-07-24 Jan Djärv <jan.h.d@swipnet.se>
11196
11197 * gtkutil.c (xg_get_font_name): Cast w to GTK_FONT_SELECTION_DIALOG.
11198 (menu_nav_ended): Remove.
11199 (create_menus): Remove signal connect for menu_nav_ended.
11200 (xg_update_menubar): Also take deactivate_cb as parameter, pass it to
11201 create_menus.
11202 (xg_modify_menubar_widgets): Pass deactivate_cb to xg_update_menubar.
11203
11204 2008-07-23 Jason Rumney <jasonr@gnu.org>
11205
11206 * w32font.c (w32_enumfont_pattern_entity): Return height consistent
11207 with opened font.
11208 (w32font_open): Set font type to gdi.
11209
11210 * w32uniscribe.c (uniscribe_open): Set font type to uniscribe.
11211
11212 2008-07-23 Dan Nicolaescu <dann@ics.uci.edu>
11213
11214 * s/usg5-4.h (ADDR_CORRECT): Remove, unused.
11215 * unexaix.c (ADDR_CORRECT): Remove conditional, the only user
11216 defines it.
11217 * unexec.c (ADDR_CORRECT): Define unconditionally.
11218
11219 * m/ibmrs6000.h (C_SWITCH_MACHINE): Remove.
11220
11221 * unexec.c: Remove code depending on !COFF and USG, the file is
11222 not used for such systems.
11223
11224 * s/netbsd.h (A_TEXT_OFFSET, A_TEXT_SEEK):
11225 * s/freebsd.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, unused.
11226 (LD_SWITCH_SYSTEM_1): Remove, update users.
11227
11228 * s/darwin.h (DATA_END):
11229 * m/intel386.h (DATA_END):
11230 * m/ibmrs6000.h (DATA_END):
11231 * m/alpha.h (DATA_END): Remove, unused.
11232
11233 * config.in: Regenerate.
11234 * s/ms-w32.h (subprocesses): Define unconditionally.
11235 * s/template.h (subprocesses): Update comment.
11236 * s/vms.h (subprocesses):
11237 * s/usg5-4.h (subprocesses):
11238 * s/hpux10-20.h (subprocesses):
11239 * s/gnu-linux.h (subprocesses):
11240 * s/cygwin.h (subprocesses):
11241 * s/bsd-common.h (subprocesses):
11242 * s/aix4-2.h (subprocesses):
11243 * s/darwin.h (subprocesses): Do not define, defined by default now.
11244
11245 * Makefile.in (C_SWITCH_SITE, LD_SWITCH_SITE): Remove, unused.
11246 Remove all references.
11247 (temacs): Add GNUstep specific ld flags.
11248
11249 * nsterm.m (syms_of_nsterm): Provide ns, not ns-windowing,
11250 similarly to what X does.
11251
11252 2008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
11253
11254 * nsfns.m (x-list-fonts): Remove.
11255 (syms_of_nsfns): Drop the x-list-fonts declaration.
11256 * nsterm.m: Get rid of remaining "//" comments.
11257
11258 2008-07-22 Chong Yidong <cyd@stupidchicken.com>
11259
11260 * xselect.c (Fx_rotate_cut_buffers_internal): Doc fix.
11261
11262 * nsselect.m (Fns_selection_exists_p, Fns_selection_owner_p)
11263 (Fx_get_selection_internal, Fns_rotate_cut_buffers_internal)
11264 (Fns_own_selection_internal, Fx_disown_selection_internal)
11265 (Fns_get_cut_buffer_internal, Fns_store_cut_buffer_internal):
11266
11267 * nsmenu.m (Fns_reset_menu, Fx_popup_menu): Change to use 'doc: /*
11268 ... */' style of docstrings. Doc fixes.
11269
11270 2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
11271
11272 * terminfo.c (UP, BC, PC): Undo previous change.
11273
11274 * nsfns.m: Rename ns prefixed functions/variables to the
11275 corresponding x versions. Update references.
11276
11277 2008-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
11278
11279 * syntax.c (char_quoted): Check "charpos > beg" before decrementing.
11280
11281 2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
11282
11283 * nsfns.m (x_set_menu_bar_lines, x_set_tool_bar_lines):
11284 Remove forwarding functions.
11285 (ns_set_menu_bar_lines): Rename to x_set_menu_bar_lines, make
11286 non-static.
11287 (ns_set_tool_bar_lines): Rename to x_set_tool_bar_lines, make
11288 non-static.
11289 (ns_frame_parm_handlers): Use the new names.
11290 (syms_of_nsfns): Move to the end of file.
11291
11292 * nsterm.m (syms_of_nsterm): Move to the end of file.
11293
11294 * dispnew.c (init_display): Remove code for X10.
11295
11296 2008-07-22 Jason Rumney <jasonr@gnu.org>
11297
11298 * w32proc.c (Fw32_long_file_name): Don't append dir separator to
11299 bare drive.
11300
11301 2008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
11302
11303 * nsterm.m (syms_of_nsterm): Remove debugging println.
11304
11305 2008-07-22 David Reitter <david.reitter@gmail.com>
11306
11307 * nsfns.m (do_applescript, F_do_applescript): NS version of the
11308 Carbon implementation of the same functionality: execute arbitrary
11309 AppleScript code.
11310
11311 2008-07-21 Adrian Robert <Adrian.B.Robert@gmail.com>
11312
11313 * nsfns.m (Fx_create_frame, Fx_read_file_name, Fx_get_resource)
11314 (Fx_set_resource, Fx_set_alpha, Fx_server_max_request_size)
11315 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
11316 (Fx_display_mm_height, Fx_display_mm_width)
11317 (Fx_display_backing_store, Fx_display_visual_class)
11318 (Fx_display_save_under, Fx_open_connection)
11319 (Fx_close_connection, Fx_hide_emacs, Fx_font_name)
11320 (Fx_list_colors, Fx_perform_service, Fx_color_defined_p)
11321 (Fx_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
11322 (Fx_display_pixel_width, Fx_display_pixel_height)
11323 (Fx_display_usable_bounds, Fx_display_planes)
11324 (Fx_display_color_cells, Vns_icon_type_alist): Change to use 'doc: /*
11325 ... */' style of docstrings.
11326
11327 2008-07-21 Dan Nicolaescu <dann@ics.uci.edu>
11328
11329 * m/mips.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Do not define, not used
11330 on this platform.
11331 (mips):
11332 * m/iris4d.h (mips): Do not define.
11333 * sysdep.c (init_sys_modes): Use __mips__ instead of mips.
11334
11335 * m/ibmrs6000.h (LD_SWITCH_SITE): Remove.
11336
11337 * image.c:
11338 * nsfns.m:
11339 * nsselect.m:
11340 * nsterm.h:
11341 * nsterm.m: Rename ns prefixed functions/variables to the
11342 corresponding x versions. Update references.
11343
11344 * m/ibms390x.h (NO_REMAP): Do not undefine.
11345
11346 * m/amdx86-64.h: Use SOLARIS2 instead of sun.
11347
11348 2008-07-21 Chong Yidong <cyd@stupidchicken.com>
11349
11350 * nsfns.m: Change NS to Nextstep in docstrings and error messages.
11351 (Fns_create_frame, Fns_read_file_name, Fns_get_resource)
11352 (Fns_set_resource, Fns_set_alpha, Fns_server_max_request_size)
11353 (Fns_server_vendor, Fns_server_version, Fns_display_screens)
11354 (Fns_display_mm_height, Fns_display_mm_width)
11355 (Fns_display_backing_store, Fns_display_visual_class)
11356 (Fns_display_save_under, Fns_open_connection)
11357 (Fns_close_connection, Fns_hide_emacs, Fns_font_name)
11358 (Fns_list_colors, Fns_perform_service, Fns_color_defined_p)
11359 (Fns_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
11360 (Fns_display_pixel_width, Fns_display_pixel_height)
11361 (Fns_display_usable_bounds, Fx_display_planes)
11362 (Fns_display_color_cells, Vns_icon_type_alist): Doc fixes.
11363
11364 2008-07-21 Ami Fischman <ami@fischman.org> (tiny change)
11365
11366 * print.c (print_object): Check print_depth before searching for
11367 circularities.
11368
11369 2008-07-21 Michael Albinus <michael.albinus@gmx.de>
11370
11371 * dbusbind.c (Fdbus_register_signal): Use sprintf + strcat instead
11372 only sprintf.
11373
11374 2008-07-21 Kenichi Handa <handa@m17n.org>
11375
11376 * ftfont.c (adjust_anchor): Check if DeltaValue is not NULL.
11377
11378 2008-07-20 Andreas Schwab <schwab@suse.de>
11379
11380 * syntax.c (find_start_pos, find_start_value)
11381 (find_start_value_byte, find_start_begv, find_defun_start)
11382 (back_comment, scan_sexps_forward): Use EMACS_INT for buffer positions.
11383
11384 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
11385
11386 * s/sol2-3.h: Insert contents of s/sol2.h.
11387 (LD_SWITCH_SYSTEM): Remove redundant definition.
11388 * s/sol2.h: Remove, unused.
11389
11390 2008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
11391
11392 * nsterm.m (ns_get_color): Recognize HSB,AHSB be synonyms for HSV,AHSV.
11393
11394 2008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
11395
11396 * Makefile.in (ns_appdir): Fix typo in find command.
11397
11398 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
11399
11400 * m/intel386.h (NO_REMAP): Do no define for USG, not used.
11401
11402 * s/usg5-4.h (LIBS_SYSTEM): Remove, system for which this was
11403 added not supported anymore.
11404
11405 * s/usg5-4-2.h (LIBS_SYSTEM):
11406 * s/sol2.h (LIBS_SYSTEM): Do not undefine.
11407
11408 * s/netbsd.h (GETPGRP_NO_ARG, N_TRELOFF):
11409 * s/lynxos.h (GETPGRP_NO_ARG):
11410 * s/hpux10-20.h (NO_SIOCTL_H):
11411 * s/gnu.h (GETPGRP_NO_ARG):
11412 * s/gnu-linux.h (NO_SIOCTL_H):
11413 * s/freebsd.h (GETPGRP_NO_ARG, N_TRELOFF):
11414 * s/cygwin.h (GETPGRP_NO_ARG):
11415 * s/irix6-5.h (LIBS_SYSTEM, GETPGRP_NO_ARG): Remove, unused.
11416 (C_DEBUG_SWITCH): Remove duplicate definition.
11417
11418 * m/ibms390.h: Remove boilerplate comments.
11419
11420 * sysdep.c (closedir): Use SOLARIS2 instead of sun && USG5_4.
11421
11422 * process.c (HAVE_SERIAL): Consolidate ifdefs.
11423 (wait_reading_process_output): Remove code for SunOS, platform not
11424 supported anymore. Use SOLARIS2 instead of sun.
11425
11426 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
11427
11428 * font.c (font_open_by_name): Under NS, default lface height to zero.
11429 (font_open_for_lface): Under NS, set size based on frame fontsize.
11430 * nsterm.m (EmacsView-changeFont:): Remove some commented code.
11431 * frame.c (x_set_frame_parameters): Remove HAVE_NS ifdef.
11432
11433 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
11434
11435 * nsterm.m (ns_antialias_text, ns_use_qd_smoothing)
11436 (ns_use_system_highlight_color): Switch these from DEFVAR_BOOL to
11437 DEFVAR_LISP and change all code accordingly to use Qt/Qnil instead of
11438 YES/NO.
11439 * nsterm.h (prevUseHighlightColor): Make a Lisp_Object.
11440 * nsfont.m (nsfont_draw): Treat ns_use_qd_smoothing as Lisp_Object.
11441 * Makefile.in (clean): Clear out build destination dir.
11442
11443 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
11444
11445 * Makefile.in (nsgui.h-related dependencies): Remove abbrev, xfns,
11446 xterm, xselect.
11447 * lisp.h: Remove declaration of hash_remove.
11448 * nsgui.h: Remove redefinitions of hash_remove.
11449 * fns.c (hash_remove): Rename to hash_remove_from_table.
11450
11451 2008-07-19 Seiji Zenitani <zenitani@mac.com>
11452
11453 * nsfont.m (nsfont_fmember_to_entity, nsfont_make_fontset_for_font):
11454 strdup() the family UTF8String before modifying it.
11455
11456 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
11457
11458 * nsterm.m (ns_maybe_dumpglyphs_background): Compare result from
11459 NS_FACE_BACKGROUND with 0 instead of nil.
11460 * nsfont.m (nsfont_draw): Same.
11461
11462 2008-07-19 Chong Yidong <cyd@stupidchicken.com>
11463
11464 * nsfns.m (ns_set_background_color): Fix crash.
11465
11466 2008-07-18 Chong Yidong <cyd@stupidchicken.com>
11467
11468 * Makefile.in (SOME_MACHINE_LISP): Remove ns-carbon-compat.elc.
11469
11470 2008-07-18 Dan Nicolaescu <dann@ics.uci.edu>
11471
11472 * puresize.h (BASE_PURESIZE): Increase to 1240000.
11473
11474 2008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11475
11476 * gtkutil.c: Include <config.h> instead of "config.h".
11477
11478 * lisp.h (Foverlay_buffer): Add EXFUN.
11479
11480 * process.c (create_process) [!WINDOWSNT && FD_CLOEXEC]: Wait for
11481 child process to complete child_setup. Undo 2005-09-21 change.
11482
11483 * s/darwin.h: Mention setsid after vfork.
11484
11485 2008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11486
11487 * Makefile.in (frame.o, keyboard.o, xdisp.o, xfaces.o):
11488 Depend on macgui.h.
11489
11490 * macfns.c (Fx_server_version): Don't use gestaltSystemVersionMajor,
11491 gestaltSystemVersionMinor, or gestaltSystemVersionBugFix.
11492
11493 * macterm.c (keycode_to_xkeysym_table): Add entries for f17, f18,
11494 and f19.
11495 [MAC_OSX] (fn_keycode_to_keycode_table): Likewise.
11496
11497 * macterm.h (gestaltSystemVersionMajor, gestaltSystemVersionMinor)
11498 (gestaltSystemVersionBugFix) [MAC_OS_X_VERSION_MAX_ALLOWED < 1040]:
11499 Remove enumerators.
11500
11501 * mactoolbox.c [USE_MAC_TSM] (mac_handle_text_input_event):
11502 Check if FACE_FROM_ID returns NULL.
11503
11504 2008-07-17 David Robinow <drobinow@gmail.com> (tiny change)
11505
11506 * w32inevt.c (change_frame_size): Remove extern declaration.
11507 (resize_event, maybe_generate_resize_event): Pass SAFE arg to
11508 change_frame_size.
11509
11510 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
11511
11512 * getloadavg.c: Revert last change (2008-07-15).
11513
11514 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
11515
11516 * Makefile.in: Replace emacsapp, emacsbindir, emacsappsrc variables
11517 set here with ns_appdir, ns_appresdir, ns_appbindir, ns_appsrc set
11518 from configure.
11519
11520 2008-07-17 Dan Nicolaescu <dann@ics.uci.edu>
11521
11522 * s/sol2.h:
11523 * s/sol2-4.h: Reorganize conditionals.
11524
11525 * ecrt0.c: Remove code depending on m68000, not used anymore.
11526
11527 * fns.c (hash_remove): Make static.
11528 * lisp.h (hash_remove): Don't prototype.
11529
11530 * m/ibmrs6000.h:
11531 * m/ibms390x.h:
11532 * m/macppc.h: Remove boilerplate comments.
11533
11534 * m/sparc.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, only used on
11535 Solaris, which does not need them.
11536
11537 * m/vax.h: Remove comments about unsupported systems.
11538
11539 * s/darwin.h: Reorganize ifdefs.
11540
11541 2008-07-17 Andreas Schwab <schwab@suse.de>
11542
11543 * s/cygwin.h (LIB_STANDARD_LIBSRC): Don't define.
11544
11545 2008-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
11546
11547 Use SDATA. Follow coding convention of placing operators at
11548 beginning of next line rather than end of previous line, and placing
11549 spaces around infix operators.
11550
11551 * Makefile.in: Undef LIB_STANDARD before defining it to silence warning
11552 in case it was defined already.
11553 USE @GNUSTEP_MAKEFILES@ rather than envvars.
11554 * nsterm.m (ns_term_init): Pass Qt and Qnil rather than YES/NO to
11555 ns_default.
11556 (applicationShouldTerminate, setValuesFromPanel): Use EQ to compare
11557 Lisp_Objects.
11558 * nsterm.h (Fx_display_grayscale_p, Fx_display_planes)
11559 (ns_defined_color, ns_color_to_lisp): Declare.
11560 * nsselect.m (ns_handle_selection_request, ns_handle_selection_clear)
11561 (Fns_own_selection_internal): Make the big ugly hack more explicit, so
11562 it's accepted even with USE_LISP_UNION_TYPE.
11563 * nsmenu.m (ns_update_menubar): Use EQ to compare Lisp_Objects.
11564 (update_frame_tool_bar): Remove apparently obsolete tests for
11565 non-integerness of f->tool_bar_lines.
11566 (windowShouldClose, addButton, clicked, runDialogAt): Make the big ugly
11567 hack more explicit, so it's accepted even with USE_LISP_UNION_TYPE.
11568 * nsfont.m (nsfont_driver): Use just 0 rather than an invalid cast.
11569 (nsfont_open): Don't confuse NULL for Qnil.
11570 * nsfns.m (ns_implicitly_set_icon_type): Use EQ to compare Lisp_Objects.
11571 * menu.h (find_and_call_menu_selection):
11572 * menu.c (find_and_call_menu_selection): Use just int for vector size.
11573 (find_and_return_menu_selection): Always return something.
11574 * frame.h: Include dispextern.h for Display_Info.
11575 (display_x_get_resource): Declare.
11576
11577 2008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
11578
11579 * syntax.c: Remove stdio.h include accidentally introduced in
11580 Emacs.app commit.
11581 * Makefile.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
11582 NS_IMPL_COCOA.
11583 * keyboard.c (handle_async_input, input_available_signal): Remove
11584 BSD4_1 conditional code, introduced accidentally in Emacs.app commit.
11585
11586 2008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
11587
11588 * nsterm.m (lisp_to_mod): Use parse_solitary_modifier instead.
11589 (ns_lisp_to_color): Don't mess with internal Lisp data fields.
11590 (ns_term_init, ns_term_shutdown, initFrameFromEmacs, ns_list_fonts):
11591 Use SDATA.
11592
11593 * keymap.c: Remove all NS-specific code.
11594 (where_is_preferred_modifier, Vwhere_is_preferred_modifier): New vars.
11595 (preferred_sequence_p): Rename from ascii_sequence_p; pay attention to
11596 where_is_preferred_modifier, return a different value depending on how
11597 preferred is the binding.
11598 (where_is_internal): Adjust accordingly.
11599 (Fwhere_is_internal): Refresh where_is_preferred_modifier.
11600 Adjust to new preferred_sequence_p.
11601 (syms_of_keymap): Declare `where-is-preferred-modifier'.
11602 * keyboard.c (parse_solitary_modifier): Not static any more.
11603 * keyboard.h (parse_solitary_modifier): Declare.
11604
11605 2008-07-16 Andreas Schwab <schwab@suse.de>
11606
11607 * Makefile.in (SOME_MACHINE_LISP): Remove easy-mmode, fix spelling
11608 of easymenu.
11609
11610 2008-07-16 Chong Yidong <cyd@stupidchicken.com>
11611
11612 * xdisp.c (move_it_in_display_line): Account for word wrap, so
11613 that we don't move off the line.
11614
11615 2008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
11616
11617 * keyboard.c (Qsuper): Remove.
11618 (parse_menu_item): Don't call where_is_internal specially for NS.
11619
11620 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
11621
11622 * s/gnu-linux.h: Remove boilerplate comments.
11623
11624 * m/alpha.h (__ELF__): Consolidate conditions.
11625
11626 * m/m68k.h (linux): Use GNU_LINUX instead.
11627 Remove boilerplate comments.
11628
11629 * m/intel386.h: Undo refactoring from previous change.
11630 (LIB_STANDARD): All systems that define USG define LIB_STANDARD
11631 too, remove dead code.
11632 (linux): Use GNU_LINUX instead.
11633
11634 2008-07-16 Jason Rumney <jasonr@gnu.org>
11635
11636 * w32gui.h: Repeat 26 June changes lost by last change.
11637
11638 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
11639
11640 * systty.h: Remove code for Aix on 386, unsupported platform.
11641
11642 * s/ms-w32.h: Remove boilerplate comments.
11643 (fcloseall, fgetchar, flushall, fputchar, getw, putw): Remove, unused.
11644
11645 * s/gnu-linux.h (TERM): Remove support.
11646 (HAVE_SYSVIPC): Remove, unused.
11647 (A_TEXT_OFFSET, A_TEXT_SEEK, ADJUST_EXEC_HEADER): Remove, not used
11648 for this system.
11649
11650 * process.c: Remove support for IRIS, unused.
11651 Remove support for TERM, not relevant anymore.
11652
11653 * unexalpha.c (DEFAULT_ENTRY_ADDRESS): Remove, replace the only
11654 used with the definition.
11655
11656 * s/aix4-2.h (static): Do not undef.
11657
11658 * m/ibmrs6000.h: Remove code depending on USG5_4, this file is
11659 only used on Aix.
11660 (HAVE_SYSVIPC): Remove, unused.
11661
11662 * m/hp800.h (CANNOT_DUMP): Do not undef.
11663
11664 * m/alpha.h: Fix comment.
11665
11666 * s/usg5-4.h (HAVE_SYSVIPC): Remove, unused.
11667 (USG_SHARED_LIBRARIES): Remove, only used in unexec.c which is not
11668 used by this configuration.
11669 * emacs.c: Remove code depending on USG_SHARED_LIBRARIES.
11670 * unexec.c: Remove code depending on HPUX and
11671 USG_SHARED_LIBRARIES, not used with this file. Remove code
11672 depending on IRIS, unused. Remove if 0-ed code.
11673
11674 * s/template.h: Remove comments about static.
11675
11676 * sysdep.c: Remove code depending on NEED_PTEM_H, unused.
11677 Remove if 0-ed code.
11678 (baud_convert): Don't depend on BAUD_CONVERT, all definitions the
11679 were the same as the default.
11680 * s/vms.h (BAUD_CONVERT): Remove, same as the default.
11681 Remove boilerplate comments.
11682 * s/hpux10-20.h (BAUD_CONVERT): Remove, same as the default.
11683 (HAVE_SYSVIPC): Remove, unused.
11684 (LD_SWITCH_SYSTEM_TEMACS): Simplify, hp9000s700 not supported anymore.
11685
11686 * m/ia64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
11687 Remove boilerplate comments.
11688 * m/amdx86-64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
11689 Remove boilerplate comments.
11690 * m/ibms390x.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
11691 Remove boilerplate comments.
11692 * lisp.h (PNTR_COMPARISON_TYPE): Define it unconditionally.
11693
11694 * m/intel386.h (DATA_SEG_BITS): Remove definitions, only used on
11695 USG systems which do not use DATA_SEG_BITS.
11696 Refactor code. Remove boilerplate comments.
11697
11698 * m/ibms390.h:
11699 * m/m68k.h:
11700 * s/bsd-common.h:
11701 * s/cygwin.h:
11702 * s/darwin.h:
11703 * s/freebsd.h:
11704 * s/gnu.h:
11705 * s/msdos.h: Remove boilerplate comments.
11706
11707 * m/iris4d.h: Remove boilerplate comments and code for systems that
11708 do not use this file.
11709 (IRIS_4D): Remove, unused.
11710
11711 * m/mips.h: Remove boilerplate comments and code for systems that
11712 do not use this file.
11713 (SIGN_EXTEND_CHAR):
11714 * m/arm.h (SIGN_EXTEND_CHAR): Remove, unused.
11715 * unexmips.c: Remove file, unused.
11716
11717 * editfns.c (Fuser_full_name): Replace the only use of
11718 USER_FULL_NAME with its value.
11719 * config.in: Regenerate.
11720
11721 2008-07-16 David Reitter <david.reitter@gmail.com>
11722
11723 * Makefile.in: Add ns-win, ns-carbon-compat, easy-mmode and
11724 easy-menu to SOME_MACHINE_LISP for the new NeXTstep port.
11725
11726 2008-07-16 Glenn Morris <rgm@gnu.org>
11727
11728 * emacs.c (system-type): Doc fix.
11729
11730 2008-07-15 Stefan Monnier <monnier@iro.umontreal.ca>
11731
11732 * keyboard.c (parse_menu_item): Don't use cachelist, even under NS.
11733 If the cache doesn't work, let's fix it, rather than work around it.
11734
11735 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
11736
11737 * Makefile.in: Correct additions for nsfont.o in last commit.
11738 * nsfont.m: New file (forgot last commit).
11739
11740 2008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
11741
11742 * callproc.c (set_initial_environment): Initialize
11743 Vprocess_environment under CANNOT_DUMP (fixes crash when
11744 batch-compiling for bootstrap).
11745
11746 2008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
11747 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11748
11749 (make_initial_frame): Call init_frame_faces(f) in CANNOT_DUMP case --
11750 fix crash due to different init order.
11751
11752 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
11753
11754 Changes and additions for NeXTstep windowing system (Cocoa and
11755 GNUstep) support.
11756
11757 * Makefile.in:
11758 * config.in: Support defines and build commands for NS port.
11759 * blockinput.h (BLOCK_INPUT, UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT)
11760 (UNBLOCK_INPUT_TO): Don't use under NS unless EXPERIMENTAL_CONTROL_G.
11761 * dispextern.h: Include nsgui.h and add needed typedefs under NS
11762 windowing.
11763 (struct face): Add synth_ital field.
11764 * dispnew.c: Include nsterm.h when compiling under NS windowing.
11765 (init_display): Initialize Vinitial_window_system to "ns" when so
11766 compiled.
11767 * emacs.c: Include GSConfig.h when compiling under GNUstep.
11768 (display_arg): Use under NS.
11769 (main): Under NS, allocate autorelease pool and handle command line
11770 args. Move syms_of_xmenu() call under #ifdef HAVE_X_WINDOWS.
11771 (standard_args): Add NS-specific args.
11772 (shut_down_emacs): Shut down NS terminal if compiled under NS.
11773 * font.c (DEFAULT_ENCODING): New variable.
11774 (font_find_for_lface): Use it.
11775 (syms_of_font): Load syms_of_nsfont under NS.
11776 * font.h: Declare nsfont_driver when compiled under NS.
11777 * fontset.c: When compiling under NS, include nsterm.h.
11778 (fontset_from_font): Autoconstruct fontset under NS.
11779 * frame.c (various): Under NS, include nsterm.h, add Qns window system
11780 symbol, document and use it.
11781 (do_switch_frame): When for_deletion under Cocoa, add
11782 Fraise_frame(Qnil).
11783 (x_set_frame_parameters): Ensure font attribute changes are picked up.
11784 (x_get_arg): Allow "yes" and "no" as boolean values.
11785 (syms_of_frame): Declare Qns. Init Vdefault_frame_scroll_bars to
11786 Qright under Cocoa.
11787 (focus-follows-mouse): Default to 0 under NS.
11788 * frame.h (enum output_method): Add output_ns.
11789 (external_tool_bar, external_menu_bar, FRAME_EXTERNAL_TOOLBAR)
11790 (FRAME_EXTERNAL_MENU_BAR): Use under NS.
11791 (FRAME_WINDOW_P): NS-specific definition.
11792 * fringe.c (max_used_fringe_bitmap): Make public.
11793 * getloadavg.c (mach/mach.h): Include it under NeXT descendant OS's.
11794 (getloadavg): Use NeXT code under descendant OS's.
11795 * image.c (includes and header section, x_create_bitmap_from_data)
11796 (x_create_bitmap_from_file, free_bitmap_record, image_background)
11797 (image_background_transparent, x_clear_image_1)
11798 (x_create_x_image_and_pixmap, x_destroy_x_image, x_put_x_image)
11799 (Create_Pixmap_From_Bitmap_Data, xpm_load_image, lookup_rgb_color)
11800 (x_to_xcolors, x_from_xcolors, x_disable_image)
11801 (x_build_heuristic_mask, syms_of_image): Add NS support parallel to
11802 other GUIs, including XPM support using code originally written for
11803 Carbon GUI.
11804 (png_load, jpeg_load, tiff_load, gif_load): Add implementations
11805 using NS API.
11806 (image_ascent): Use font metrics macros instead of direct struct field
11807 access.
11808 * keyboard.c (includes): Add nsterm.h when compiling under NS.
11809 (kbd_buffer_get_event): Handle NS as other GUI windowing systems.
11810 Also, handle NS as GTK for menu bar purposes.
11811 (make_lispy_event): Handle NS as other GUI windowing systems, and as X
11812 toolkit where they differ.
11813 (parse_menu_item): Prefer keybindings using 'super' modifier. Also,
11814 use cachelist, still needed under NS.
11815 * keyboard.h (ENCODE_MENU_STRING, XtPointer, Boolean): Handle as NTGUI.
11816 (struct widget_value): Define it here for menu.c.
11817 * keymap.c (includes): Include modifier internals.
11818 (lisp_to_mod, modifier_sequence_p): New functions, compiled only under
11819 NS.
11820 (where_is_internal, Fwhere_is_internal): When compiled under NS, add
11821 support for preferring sequences using certain modifiers, specified by
11822 the FIRSTONLY argument.
11823 * lisp.h (hash_remove): Rename to avoid name clash when compiling
11824 under NS GNUstep implementation.
11825 (USE_LSB_TAG): Use it under Cocoa when compiling under NS.
11826 * lread.c (init_lread): Treat NS as HAVE_CARBON for turn_off_warning.
11827 * menu.c: Include nsterm.h under NS.
11828 (single_menu_item, parse_single_submenu, xmalloc_widget_value)
11829 (free_menubar_widget_tree_value, update_submenu_strings)
11830 (find_and_call_menu_selection): Treat NS as X and NT.
11831 (find_and_return_menu_selection): New function, used for popup menus.
11832 * nsgui.h:
11833 * nsterm.h:
11834 * nsfns.m:
11835 * nsimage.m:
11836 * nsmenu.m:
11837 * nsselect.m:
11838 * nsterm.m: New files.
11839 * process.c (wait_reading_process_output): Under NS, call ns_select()
11840 instead of plain select().
11841 * syntax.c (char_quoted): Under NS, avoid a crash when called near
11842 beginning of buffer.
11843 * sysselect.h (init_process): Rename when compiling under Cocoa to
11844 avoid name conflict.
11845 * termhooks.h (display_info): Add ns_display_info to union.
11846 * terminal.c (Fterminal_live_p): Add ns to terminal types.
11847 * terminfo.c (UP, BC, PC): Don't declare when compiling under NS in
11848 COCOA environment.
11849 * unexnext.c: Update to work with mach API on Mac OS X, and to use new
11850 unexec() signature. (Note, this will dump, but the resulting file
11851 crashes; unexosx is used instead; keeping around for reference and
11852 possible aid in getting dump working under GNUstep.)
11853 * w32gui.h (button_type, widget_value): Remove definitions (now in
11854 keyboard.h).
11855 * window.c: Include nsterm.h when compiling under NS.
11856 * xdisp.c (includes): Include nsterm.h when compiling under NS.
11857 (set_frame_menubar, update_menu_bar, display_menu_bar): Handle NS as
11858 other GUI windowing systems.
11859 (update_tool_bar, redisplay_tool_bar, redisplay_window): Handle NS as
11860 GTK.
11861 (x_consider_frame_title): Under NS, set icon type and frame
11862 modified-state indicator; use ns_set_name_as_filename() when using
11863 formatted title.
11864 (update_window_cursor): Make public when compiling under NS.
11865 (display_hourglass_p, syms_of_xdisp, hourglass_shown_p)
11866 (hourglass_atimer, Vhourglass_delay
11867 * xfaces.c (header section, init_frame_faces, clear_font_table)
11868 (defined_color, unload_color, x_face_list_fonts)
11869 (prepare_face_for_display): Add NS support parallel to other GUIs.
11870 Emulate GCs like other non-X GUIs.
11871 (split_font_name): Don't lowercase font name under NS.
11872 (merge_face_ref, Finternal_set_lisp_face_attribute): Support stippling
11873 under NS.
11874 * s/darwin.h: Add support for compilation under NS.
11875
11876 2008-07-15 Jason Rumney <jasonr@gnu.org>
11877
11878 * w32fns.c (Fx_create_frame): Remove duplicate unwind_protect.
11879 (w32_show_hourglass): Rename from show_hourglass.
11880 (w32_hide_hourglass): Rename from hide_hourglass.
11881 (DEFAULT_HOURGLASS_DELAY): Revert from last change.
11882 (Vhourglass_delay): Declare extern.
11883 (hourglass_started): Remove.
11884
11885 * xdisp.c (Vhourglass_delay): Remove static.
11886 (hourglass_started, start_hourglass, cancel_hourglass):
11887 Don't include these versions on WINDOWSNT.
11888
11889 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
11890
11891 * dispextern.h (hourglass_shown_p, hourglass_atimer): New extern
11892 variables (formerly in xfns.c).
11893 (show_hourglass, hide_hourglass): New prototypes (same).
11894 * xdisp.c (display_hourglass_p, hourglass_shown_p, hourglass_atimer)
11895 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY): New variables (formerly
11896 in xfns.c).
11897 (syms_of_xdisp): Declare/initialize display-hourglass,
11898 hourglass-delay. Initialize hourglass_atimer, hourglass_shown_p.
11899 (hourglass_started, start_hourglass, cancel_hourglass): New functions,
11900 formerly in xfns.c.
11901 * xfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
11902 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
11903 (start_hourglass, cancel_hourglass): Remove.
11904 (show_hourglass, hide_hourglass): Remove prototypes and static
11905 modifiers.
11906 (syms_of_xfns): Remove display-hourglass, hourglass-delay,
11907 hourglass_atimer, hourglass_shown_p declaration/initialization.
11908 * macfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
11909 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
11910 (start_hourglass, cancel_hourglass): Remove.
11911 (show_hourglass, hide_hourglass): Remove prototypes and static
11912 modifiers.
11913 (syms_of_macfns): Remove display-hourglass, hourglass-delay,
11914 hourglass_atimer, hourglass_shown_p declaration/initialization.
11915 * w32fns.c (display_hourglass_p, Vhourglass_delay)
11916 (DEFAULT_HOURGLASS_DELAY): Remove.
11917 (syms_of_w32fns): Remove display-hourglass, hourglass-delay,
11918 hourglass_shown_p declaration/initialization.
11919
11920 2008-07-14 Jason Rumney <jasonr@gnu.org>
11921
11922 * w32fns.c (w32_get_arg): Remove wrapper function.
11923 (w32_createwindow, x_icon, x_create_tip_frame): Use x_get_arg
11924 directly.
11925 (Fx_create_frame): Sync with xfns.c. Use x_get_arg directly.
11926
11927 2008-07-14 Kenichi Handa <handa@m17n.org>
11928
11929 * xfont.c (xfont_open): Add workaround for X's bug.
11930
11931 2008-07-14 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
11932
11933 * fontset.c: Include <stdio.h> unconditionally.
11934
11935 2008-07-13 Michael Albinus <michael.albinus@gmx.de>
11936
11937 * dbusbind.c (Fdbus_register_signal): Allow also signal arguments
11938 for filtering.
11939
11940 2008-07-13 Dan Nicolaescu <dann@ics.uci.edu>
11941
11942 * s/vms.h: Use __GNUC__ instead of _GNUC_.
11943
11944 * m/macppc.h:
11945 * m/alpha.h: Use GNU_LINUX instead of LINUX. Reorganize conditionals.
11946
11947 * m/ibms390x.h (XINT, XUINT): Don't define, same as the default
11948 (SPECIAL_EMACS_INT):
11949 * m/ia64.h (SPECIAL_EMACS_INT):
11950 * m/amdx86-64.h (SPECIAL_EMACS_INT):
11951 * s/gnu.h (NLIST_STRUCT):
11952 * s/aix4-2.h (X11R5_INHIBIT_I18N):
11953 * s/gnu-linux.h (LINUX):
11954 * s/msdos.h (HAVE_FACES):
11955 * s/ms-w32.h (HAVE_FACES): Don't define, unused.
11956
11957 * systty.h:
11958 * sysdep.c (setup_pty): Don't depend on SYSV_PTYS, it is not used
11959 anymore.
11960
11961 2008-07-12 Dan Nicolaescu <dann@ics.uci.edu>
11962
11963 * syswait.h: Remove old if 0 code. Do not define WAITTYPE, it was
11964 always defined as int.
11965
11966 * s/netbsd.h (HAVE_UNION_WAIT, HAVE_WAIT_HEADER, WAIT_USE_INT):
11967 * s/gnu.h (HAVE_WAIT_HEADER, WAIT_USE_INT, HAVE_UNION_WAIT):
11968 * s/gnu-linux.h (HAVE_WAIT_HEADER):
11969 * s/freebsd.h (HAVE_WAIT_HEADER):
11970 * s/bsd-common.h (HAVE_UNION_WAIT):
11971 * s/aix4-2.h (HAVE_WAIT_HEADER):
11972 * m/mips.h (HAVE_UNION_WAIT):
11973 * s/usg5-4.h (HAVE_WAIT_HEADER, WAITTYPE): Do not define, not used.
11974 (COFF, static): Do not define, they are undefined later in the file.
11975
11976 * process.c (update_status): Don't use a union.
11977 (status_convert):
11978 (sigchld_handler): Use int instead of WAITTYPE.
11979
11980 2008-07-12 Chong Yidong <cyd@stupidchicken.com>
11981
11982 * indent.c (Fvertical_motion): Restore hscroll before moving to
11983 goal column.
11984
11985 2008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
11986
11987 * lisp.h: Remove left over code.
11988
11989 2008-07-11 Andreas Schwab <schwab@suse.de>
11990
11991 * lisp.h: Fix logic in last change.
11992
11993 * menu.h: New file.
11994 * menu.c: Include it.
11995 * xmenu.c: Likewise.
11996 * Makefile.in: Update dependencies.
11997
11998 2008-07-11 Kenichi Handa <handa@m17n.org>
11999
12000 * fontset.c (fontset_from_font): Cancel the previous change.
12001
12002 2008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
12003
12004 * lisp.h:
12005 * w32heap.c:
12006 * emacs.c:
12007 * alloc.c: Replace all references of NO_UNION_TYPE with
12008 USE_LISP_UNION_TYPE.
12009
12010 * m/xtensa.h (NO_UNION_TYPE):
12011 * m/vax.h (NO_UNION_TYPE):
12012 * m/template.h (NO_UNION_TYPE):
12013 * m/sparc.h (NO_UNION_TYPE):
12014 * m/mips.h (NO_UNION_TYPE):
12015 * m/macppc.h (NO_UNION_TYPE):
12016 * m/m68k.h (NO_UNION_TYPE):
12017 * m/iris4d.h (NO_UNION_TYPE):
12018 * m/intel386.h (NO_UNION_TYPE):
12019 * m/ibms390x.h (NO_UNION_TYPE):
12020 * m/ibms390.h (NO_UNION_TYPE):
12021 * m/ibmrs6000.h (NO_UNION_TYPE):
12022 * m/ia64.h (NO_UNION_TYPE):
12023 * m/hp800.h (NO_UNION_TYPE):
12024 * m/arm.h (NO_UNION_TYPE):
12025 * m/amdx86-64.h (NO_UNION_TYPE):
12026 * m/alpha.h (NO_UNION_TYPE): Remove definition, all platform were
12027 defining it the same.
12028
12029 2008-07-10 Chong Yidong <cyd@stupidchicken.com>
12030
12031 * xdisp.c (move_it_to): Backtrack if past the edge of a wrapped line.
12032
12033 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
12034
12035 * fileio.c:
12036 * sysdep.c:
12037 * systty.h:
12038 * m/ibmrs6000.h:
12039 * m/iris4d.h:
12040 * s/aix4-2.h:
12041 * s/freebsd.h:
12042 * s/gnu-linux.h:
12043 * s/hpux10-20.h:
12044 * s/hpux11.h:
12045 * s/netbsd.h:
12046 * s/sol2-3.h:
12047 * s/sol2-4.h:
12048 * s/sol2.h:
12049 * s/usg5-4.h:
12050 * s/vms.h: Remove references to unused variables.
12051
12052 2008-07-10 Andreas Schwab <schwab@suse.de>
12053
12054 * ftfont.c (ftfont_resolve_generic_family): Remove foundry from
12055 pattern before matching the generic family.
12056
12057 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
12058
12059 * unexec.c:
12060 * s/vms.h:
12061 * s/usg5-4-2.h:
12062 * s/sol2-5.h:
12063 * s/freebsd.h:
12064 * s/darwin.h: Remove dead code.
12065
12066 * m/template.h:
12067 * m/sparc.h:
12068 * m/mips.h:
12069 * m/m68k.h:
12070 * m/iris4d.h:
12071 * m/intel386.h:
12072 * m/ibms390x.h:
12073 * m/ibms390.h:
12074 * m/ia64.h:
12075 * m/hp800.h:
12076 * m/arm.h:
12077 * m/amdx86-64.h: Remove dead code and references to unused
12078 and compiler defined symbols.
12079
12080 * unexmips.c:
12081 * unexelf.c: Remove references to desupported systems.
12082
12083 * m/powermac.h: Remove file, it is now identical to m/macppc.h.
12084
12085 * m/powermac.h: Remove boilerplate comments.
12086 (NO_REMAP): Remove unused definition.
12087
12088 * m/macppc.h (UNEXEC, NO_TERMIO): Don't define, the s/ files
12089 define them.
12090
12091 2008-07-10 Kenichi Handa <handa@m17n.org>
12092
12093 * xfont.c (xfont_open): Log the reason of failure.
12094
12095 2008-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
12096
12097 * fontset.c (fontset_get_font_group):
12098 * font.c (font_check_otf): Specify argument types.
12099
12100 2008-07-09 Kenichi Handa <handa@m17n.org>
12101
12102 * coding.c (detect_coding_utf_8): Set detect_info->found only when
12103 non-ASCII char is found.
12104
12105 * fontset.c (fontset_compare_rfontdef): Fix plus/minus.
12106 (reorder_font_vector): Change the arg preferred_family to font.
12107 Prefer the spec matching with font.
12108 (fontset_get_font_group): New function.
12109 (fontset_find_font): Change the format of an element of a realized
12110 fontset. Use fontset_get_font_group.
12111 (fontset_font): Try the current fontset, the default fontset, the
12112 fallbacks of the current fontset, and the fallbacks of the default
12113 fontset in this order.
12114 (face_for_char): Delete the shortcut to use the current font.
12115 (fontset_from_font): Don't set fonts for Latin in the fontset.
12116
12117 * font.h (font_make_object, font_match_p): Adjust prototypes.
12118
12119 * ftfont.h [FT_BDF_H]: Include FT_BDF_H.
12120
12121 * font.c (font_make_object): New arg entity and pixelsize.
12122 (font_check_otf_features, font_check_otf): New functions.
12123 (font_match_p): Check :lang, :script, and :otf properties.
12124
12125 * xfont.c (xfont_open): Adjust it for the change of
12126 font_make_object.
12127 (xfont_text_extents): Fix initial setting of metrics.
12128
12129 * ftfont.c (struct ftfont_info): New member index, delete member
12130 fc_charset_idx. Make the member order compatible with struct
12131 xftfont_info.
12132 (fc_charset_table): Change charset names to registry names.
12133 (ftfont_pattern_entity): Delete the args registry and
12134 fc_charset_idx. Change the value of :font-entity property
12135 to (FONTNAME . INDEX). Always set :registry property to
12136 `iso10646-1'.
12137 (struct ftfont_cache_data): New struct.
12138 (ftfont_lookup_cache): New arg for_face.
12139 (ftfont_get_fc_charset, ftfont_get_otf): New functions.
12140 (ftfont_driver): Set the member otf_capability.
12141 (ftfont_get_charset): Adjust it for the change of
12142 fc_charset_table.
12143 (OTF_TAG_SYM): New macro.
12144 (ftfont_spec_pattern): Delete the arg fc_charset_idx. Adjust it
12145 for the change of fc_charset_table.
12146 (ftfont_list): Adjust it for the change of ftfont_spec_pattern and
12147 ftfont_pattern_entity. Add FC_INDEX to objset.
12148 (ftfont_match): Adjust it for the change of ftfont_spec_pattern
12149 and ftfont_pattern_entity.
12150 (ftfont_open): Adjust it for the change of ftfont_lookup_cache,
12151 font_make_object, struct ftfont_info.
12152 (ftfont_has_char): Use ftfont_get_fc_charset.
12153 (ftfont_otf_features, ftfont_otf_capability): New functions.
12154 (ftfont_shape): Use ftfont_get_otf.
12155 (ftfont_text_extents): Fix initial setting of metrics.
12156
12157 * xftfont.c (struct xftfont_info): New member ft_size. Make the
12158 member order compatible with struct ftfont_info.
12159 (xftfont_open): Add FC_CHARSET to the pattern. Set
12160 xftfont_info->ft_size. Don't unlock the face. Check BDF
12161 properties if appropriate.
12162 (xftfont_close): Unlock the face.
12163 (xftfont_anchor_point, xftfont_shape): Deleted.
12164 (syms_of_xftfont): Don't set members anchor_point and shape of
12165 xftfont_driver.
12166
12167 * w32uniscribe.c (uniscribe_open): Adjust it for the change of
12168 font_make_object.
12169
12170 * w32font.c (w32font_open): Adjust it for the change of
12171 font_make_object.
12172 (w32font_open_internal): Don't set properties of font_object here.
12173
12174 2008-07-08 Chong Yidong <cyd@stupidchicken.com>
12175
12176 * macfns.c (x_create_tip_frame):
12177 * w32fns.c (x_create_tip_frame):
12178 * xfns.c (x_create_tip_frame): Pass parameter argument to
12179 face-set-after-frame-default.
12180
12181 * xfaces.c (Finternal_merge_in_global_face): Save merged
12182 attributes for the default face back into the face vector.
12183
12184 2008-07-08 Andreas Schwab <schwab@suse.de>
12185
12186 * fontset.h: Declare fontset_from_font. Don't declare
12187 new_fontset_from_font and fontset_from_font_name.
12188 * xterm.c: Include "fontset.h".
12189 * Makefile.in (xterm.o): Update dependencies.
12190
12191 2008-07-08 Glenn Morris <rgm@gnu.org>
12192
12193 * m/sparc.h: Define __sparc__ rather than sparc. (Bug#507.)
12194 * alloc.c, ecrt0.c: Use __sparc__ rather than sparc.
12195
12196 2008-07-07 Chong Yidong <cyd@stupidchicken.com>
12197
12198 * frame.c (Qinhibit_face_set_after_frame_default): Var deleted.
12199 (x_set_frame_parameters): Don't bind it.
12200
12201 2008-07-07 Juanma Barranquero <lekktu@gmail.com>
12202
12203 * w32fns.c (map_w32_filename): Declare extern.
12204
12205 2008-07-07 Jason Rumney <jasonr@gnu.org>
12206
12207 * w32term.c (WS_EX_LAYERED): Define if not already.
12208
12209 2008-07-06 Chong Yidong <cyd@stupidchicken.com>
12210
12211 * xfaces.c (set_font_frame_param): Don't try to set the font
12212 parameter if it is still unspecified in the lface.
12213
12214 2008-07-05 Chong Yidong <cyd@stupidchicken.com>
12215
12216 * xfaces.c (Finternal_merge_in_global_face): Don't realize default
12217 face if it didn't already exist.
12218
12219 * xdisp.c (try_window_id): Give up if word-wrapping is on.
12220
12221 2008-07-05 Andreas Schwab <schwab@suse.de>
12222
12223 * xdisp.c (get_it_property): Move out of HAVE_WINDOW_SYSTEM section.
12224
12225 2008-07-05 Chong Yidong <cyd@stupidchicken.com>
12226
12227 * xdisp.c (IT_OVERFLOW_NEWLINE_INTO_FRINGE): Turn it off if
12228 word-wrapping.
12229 (IT_DISPLAYING_WHITESPACE): New macro.
12230 (move_it_in_display_line_to): Handle MOVE_TO_X requests properly
12231 when word-wrapping. Simplify word-wrapping logic. Use correct
12232 pixel positions when saving copies of the iterator.
12233 (display_line): Use proper wrap point if the last character on a
12234 line was preceded by whitespace.
12235
12236 2008-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
12237
12238 * Makefile.in (${etc}DOC): Depend on ${lisp} rather than ${shortlisp}.
12239
12240 2008-07-04 Kenichi Handa <handa@m17n.org>
12241
12242 * fns.c (Fstring_to_unibyte): Delete the arg ACCEPT-LATIN-1.
12243
12244 * lisp.h: EXFUN adjusted for the change of Fstring_to_unibyte.
12245
12246 2008-07-02 Jason Rumney <jasonr@gnu.org>
12247
12248 * xfns.c (syms_of_xfns): Only define x-select-font when both
12249 HAVE_FREETYPE and USE_GTK.
12250
12251 * xdisp.c (next_element_from_display_vector): Move assignment out
12252 of if statement.
12253
12254 2008-07-02 Toru Tsuneyoshi <t_tuneyosi@hotmail.com>
12255
12256 * lisp.h (Qdelete_file, Qdelete_directory): Declare extern.
12257
12258 * fileio.c (delete_by_moving_to_trash, Qmove_file_to_trash): New vars.
12259 (syms_of_fileio): Initialize and export them.
12260 (Fdelete_directory, Fdelete_file): Optionally delete via trash.
12261
12262 * w32fns.c (FOF_NO_CONNECTED_ELEMENTS): Define if not already.
12263 (Fsystem_move_file_to_trash): New function.
12264 (syms_of_w32fns): Export it to lisp.
12265
12266 2008-07-01 Jason Rumney <jasonr@gnu.org>
12267
12268 * w32font.c (w32font_text_extents): Don't count overhang as part
12269 of width.
12270
12271 2008-06-30 Miles Bader <miles@gnu.org>
12272
12273 * dispextern.h (struct glyph, struct it, struct iterator_stack_entry):
12274 Add `avoid_cursor_p' field.
12275
12276 * xdisp.c (push_it, pop_it): Save/restore avoid_cursor_p field.
12277 (set_cursor_from_row): Skip glyphs with avoid_cursor_p set.
12278 (append_glyph, append_composite_glyph, produce_image_glyph)
12279 (append_stretch_glyph): Initialize avoid_cursor_p.
12280 (get_it_property): Rename from `get_line_height_property'.
12281 (x_produce_glyphs): Use get_it_property.
12282 (handle_line_prefix, push_display_prop): New functions.
12283 (display_line, move_it_in_display_line_to): Handle line/wrap prefixes.
12284 (Vwrap_prefix, Qwrap_prefix, Vline_prefix, Qline_prefix):
12285 New variables.
12286 (syms_of_xdisp): Initialize them.
12287
12288 2008-06-30 Kenichi Handa <handa@m17n.org>
12289
12290 * xftfont.c (xftfont_open): Don't call FcConfigSubstitute and
12291 XftDefaultSubstitute (they are called in XftFontMatch).
12292 (xftfont_open): Fix args to ftfont_font_format.
12293
12294 * ftfont.c (fc_charset_table): New member lang.
12295 (ftfont_resolve_generic_family): New arg pattern.
12296 (ftfont_spec_pattern): Check fc_charset_table[]->lang.
12297 (ftfont_list): Call ftfont_resolve_generic_family with `pattern'.
12298 (ftfont_open): Fix args to ftfont_font_format.
12299 (ftfont_font_format): New arg filename.
12300
12301 2008-06-30 Chong Yidong <cyd@stupidchicken.com>
12302
12303 * xfaces.c (Finternal_merge_in_global_face): If default face was
12304 modified, realize it again. Update the font face attribute.
12305
12306 2008-06-29 Jason Rumney <jasonr@gnu.org>
12307
12308 * w32term.c (x_set_frame_alpha): Fix logic.
12309
12310 2008-06-29 Kenichi Handa <handa@m17n.org>
12311
12312 * fontset.c (Finternal_char_font): Return font-object instead of
12313 font-name.
12314
12315 * composite.c (get_composition_id): Fix the width calculation for TAB.
12316
12317 2008-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
12318
12319 * indent.c (Fvertical_motion): Properly handle float column arg.
12320
12321 2008-06-28 Jason Rumney <jasonr@gnu.org>
12322
12323 * w32term.c (pfnGetFontUnicodeRanges): Remove unused function pointer.
12324 (pfnSetLayeredWindowAttributes): New function pointer.
12325 (w32_initialize): Initialize it when supported.
12326 (x_set_frame_alpha): New function.
12327
12328 * w32fns.c (Fx_create_frame): Initialize frame parameter `alpha'.
12329 (w32_frame_parm_handlers): Set alpha handler.
12330
12331 * frame.c (x_set_alpha) [HAVE_NTGUI]: Call x_set_frame_alpha.
12332
12333 2008-06-27 Jason Rumney <jasonr@gnu.org>
12334
12335 * w32fns.c (x_to_w32_font, w32_to_x_font, x_to_w32_weight)
12336 (w32_to_x_weight, w32_to_all_x_charsets): Remove obsolete functions.
12337 (w32_to_x_charset, x_to_w32_charset)
12338 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
12339 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
12340 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
12341 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
12342 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
12343 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
12344 (Qw32_charset_mac, Vw32_charset_info_alist): Move to w32font.c.
12345 (Qw32_charset_unicode): Remove.
12346 (syms_of_w32fns): Update for above changes.
12347
12348 * w32font.c (w32_to_x_charset, x_to_w32_charset)
12349 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
12350 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
12351 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
12352 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
12353 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
12354 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
12355 (Qw32_charset_mac, Vw32_charset_info_alist): Move from w32fns.c.
12356 (syms_of_w32font): Update for above changes.
12357
12358 2008-06-27 Dan Nicolaescu <dann@ics.uci.edu>
12359
12360 * s/usg5-4.h: Fix previous change: keep the correct branch of a
12361 removed #if.
12362 (USG_SHARED_LIBRARIES): Remove duplicate definition.
12363
12364 2008-06-26 Juanma Barranquero <lekktu@gmail.com>
12365 Eli Zaretskii <eliz@gnu.org>
12366
12367 * makefile.w32-in (LOCAL_FLAGS):
12368 Don't include WINDOWSNT, DOS_NT and _UCHAR_T.
12369
12370 * sysdep.c (_spawnlp, _getpid):
12371 Declare with explicit _cdecl instead of _CRTAPI1.
12372
12373 * editfns.c (Fget_internal_run_time):
12374 Check for WINDOWSNT with #ifdef, not #if.
12375
12376 2008-06-26 Jason Rumney <jasonr@gnu.org>
12377
12378 * w32font.h (FONT_HANDLE, FONT_TEXTMETRIC): New macros.
12379
12380 * w32term.c (x_draw_glyph_string_foreground)
12381 (x_draw_composite_glyph_string_foreground): Sync with xterm.c.
12382 Use FONT_HANDLE macro.
12383 (x_draw_glyph_string): Use FONT_TEXTMETRIC macro.
12384
12385 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
12386 (uniscribe_encode_char): Use FONT_HANDLE macro.
12387
12388 * w32font.c (Fx_select_font): Use FONT_HANDLE macro.
12389 (w32font_text_extents): Use precast w32_font.
12390 (w32font_close): Free cached metrics.
12391 (w32font_open_internal): Allocate space for name on stack.
12392
12393 2008-06-26 Chong Yidong <cyd@stupidchicken.com>
12394
12395 * xdisp.c (extend_face_to_end_of_line): Fix last change.
12396
12397 2008-06-26 Jason Rumney <jasonr@gnu.org>
12398
12399 * w32term.h (FONT_AVG_WIDTH): Remove obsolete macro.
12400 (CP_8BIT, CP_UNICODE, CP_UNKNOWN): Remove obsolete constants.
12401
12402 2008-06-26 Juanma Barranquero <lekktu@gmail.com>
12403
12404 * Makefile.in (SOME_MACHINE_OBJECTS): Remove w32bdf.o.
12405
12406 2008-06-26 Jason Rumney <jasonr@gnu.org>
12407
12408 * w32bdf.c, w32bdf.h: Remove obsolete files.
12409
12410 * makefile.w32-in: Remove refs to w32bdf.h and w32bdf.c.
12411
12412 * w32gui.h: Don't include w32bdf.h.
12413 (XCharStruct, enum w32_char_font_type, W32FontStruct):
12414 Remove obsolete font support.
12415
12416 * w32font.h (struct w32font_info): Remove compat_w32_font.
12417 Add hfont member.
12418 (FONT_COMPAT): Remove obsolete macro.
12419
12420 * w32font.c (w32font_close): Remove compat code. Delete hfont member.
12421 (w32font_encode_char, w32font_text_extents): Use new hfont member.
12422 (w32font_open_internal): Remove compat code. Set new hfont member.
12423 (Fx_select_font): Use new hfont member.
12424
12425 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
12426 (uniscribe_encode_char): Use new hfont member.
12427
12428 * w32term.c (x_draw_glyph_string_foreground)
12429 (x_draw_composite_glyph_string_foreground): Use new hfont member.
12430 (x_draw_glyph_string): Use metrics in w32font_info.
12431
12432 2008-06-26 Kenichi Handa <handa@m17n.org>
12433
12434 * xdisp.c (handle_auto_composed_prop): Fix for the terminal case.
12435
12436 2008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
12437
12438 * unexnext.c:
12439 * m/ews4800.h:
12440 * m/hp9000s300.h:
12441 * m/ibm370aix.h:
12442 * m/mips-siemens.h:
12443 * m/ncr386.h:
12444 * m/next.h:
12445 * m/pmax.h:
12446 * m/powerpcle.h:
12447 * m/tandem-s2.h:
12448 * s/386bsd.h:
12449 * s/bsd386.h:
12450 * s/bsd4-1.h:
12451 * s/bsd4-2.h:
12452 * s/bsdos2-1.h:
12453 * s/bsdos2.h:
12454 * s/bsdos3.h:
12455 * s/bsdos4.h:
12456 * s/nextstep.h:
12457 * s/ultrix4-3.h:
12458 * s/usg5-0.h:
12459 * s/usg5-2-2.h:
12460 * s/usg5-2.h:
12461 * s/usg5-4-3.h:
12462 * s/ux4800.h:
12463 * s/uxpds.h:
12464 * s/uxpv.h: Remove support for obsolete systems.
12465 * s/hpux.h, s/hpux10.h, s/hpux8.h, s/hpux9.h, s/hpux9shr.h:
12466 Remove, insert contents in s/hpux10-20.h.
12467 * s/aix3-1.h, s/aix3-2-5.h, s/aix3-2.h, s/aix4-1.h, s/aix4.h:
12468 Remove, insert contents in s/aix4-2.h.
12469 * s/usg5-3.h: Remove, insert contents in s/usg5-4.h.
12470 * s/bsd4-3.h: Rename to ...
12471 * s/bsd-common.h: ... this.
12472 * data.c:
12473 * doc.c:
12474 * ecrt0.c:
12475 * emacs.c:
12476 * fileio.c:
12477 * floatfns.c:
12478 * keyboard.c:
12479 * mem-limits.h:
12480 * print.c:
12481 * process.c:
12482 * sysdep.c:
12483 * syssignal.h:
12484 * systty.h:
12485 * syswait.h:
12486 * term.c:
12487 * unexec.c:
12488 * unexelf.c:
12489 * unexhp9k800.c:
12490 * m/hp800.h:
12491 * m/ibmrs6000.h:
12492 * m/mips.h:
12493 * m/vax.h:
12494 * s/darwin.h:
12495 * s/freebsd.h:
12496 * s/gnu.h:
12497 * s/ms-w32.h:
12498 * s/msdos.h:
12499 * s/netbsd.h:
12500 * s/template.h: Remove references to obsolete variables.
12501
12502 * Makefile.in: Add dependencies for all unexec files.
12503 (admindir): Remove unused variable.
12504 (UNEXEC_SRC): Remove references.
12505
12506 2008-06-25 Chong Yidong <cyd@stupidchicken.com>
12507
12508 * xfns.c (x_default_font_parameter): If Xft is available, first
12509 try Monospace-12 for the default font.
12510
12511 2008-06-25 Jason Rumney <jasonr@gnu.org>
12512
12513 * xdisp.c (get_glyph_face_and_encoding): Encode invalid glyphs as 0.
12514
12515 2008-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
12516
12517 * bytecode.c (Fbyte_code): Disable debugging code that doesn't compile.
12518
12519 * buffer.c (syms_of_buffer): Remove default-word-wrap.
12520
12521 2008-06-25 Juanma Barranquero <lekktu@gmail.com>
12522
12523 * xdisp.c (syms_of_xdisp) <truncate-partial-width-windows>: Doc fix.
12524 <scroll-conservatively>: Fix typo in docstring.
12525
12526 * xselect.c (Fx_send_client_event): Doc fix.
12527
12528 2008-06-25 Kenichi Handa <handa@m17n.org>
12529
12530 * xfaces.c (Fx_list_fonts): Call Flist_fonts with the arg PREFER.
12531
12532 * font.c (font_parse_fcname): Remove unused variables.
12533 (font_sort_entites): Delete the arg SPEC. Caller changed.
12534 Fix for the case of ! best_only.
12535 (font_delete_unmatched): Check DPI and AVGWIDTH too.
12536
12537 * lisp.h (Fstring_to_unibyte): EXFUN it.
12538
12539 * character.h (str_to_unibyte): Extern it.
12540
12541 * character.c (str_to_unibyte): New function.
12542
12543 * fns.c (Fstring_to_unibyte): New function.
12544 (syms_of_fns): Defsubr it.
12545
12546 2008-06-24 Kenichi Handa <handa@m17n.org>
12547
12548 * font.c (font_score): Even if the PIXEL_SIZE is the same, check
12549 DPI too.
12550 (font_sort_entites): Setup prefer_prop[FONT_DPI_INDEX] too.
12551
12552 2008-06-24 Andreas Schwab <schwab@suse.de>
12553
12554 * Makefile.in (${lispsource}loaddefs.el): Rename from
12555 ../lisp/loaddefs.el.
12556 (bootstrap-clean): Do what distclean does but don't remove
12557 Makefile.
12558 (distclean): Depend on bootstrap-clean and remove Makefile.
12559
12560 2008-06-24 Chong Yidong <cyd@stupidchicken.com>
12561
12562 * buffer.h (struct buffer): New member word_wrap.
12563
12564 * buffer.c (syms_of_buffer): New variables default-word-wrap and
12565 word-wrap.
12566 (init_buffer_once): Initialize them.
12567
12568 * dispextern.h (struct it): Replace bool truncate_lines_p with a
12569 line_wrap enum possessing three possible values.
12570
12571 * termopts.h: Replace truncate_partial_width_windows with
12572 Vtruncate_partial_width_windows.
12573
12574 * dispnew.c (direct_output_for_insert): Avoid direct output when
12575 inserting a space with word wrap on.
12576
12577 * indent.c (compute_motion): Obey integer values of
12578 truncate-partial-width-windows.
12579
12580 * xdisp.c (Vtruncate_partial_width_windows): New Lisp_Object,
12581 replacing truncate_partial_width_windows.
12582 (init_iterator): If Vtruncate_partial_width_windows is an integer,
12583 truncate only if the window width is below that integer.
12584 (start_display, resize_mini_window, produce_stretch_glyph)
12585 (display_string, move_it_in_display_line_to): Use line_wrap.
12586 (back_to_previous_visible_line_start, reseat_1): Reset
12587 string_from_display_prop_p.
12588 (display_line): Extend default face to end of line when wrapping.
12589
12590 2008-06-24 Kim F. Storm <storm@cua.dk>
12591
12592 * xdisp.c (display_line, move_it_in_display_line_to): Add ability
12593 to wrap continued lines at word boundaries.
12594
12595 2008-06-24 Jason Rumney <jasonr@gnu.org>
12596
12597 * font.c (Ffont_face_attributes): Multiply pixel size before point
12598 conversion to avoid multiplying rounding error.
12599
12600 2008-06-23 Jason Rumney <jasonr@gnu.org>
12601
12602 * w32term.c (x_draw_glyph_string_background)
12603 (x_draw_glyph_string): Remove old bdf font code.
12604
12605 * w32term.h (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE): Remove.
12606
12607 2008-06-22 Kenichi Handa <handa@m17n.org>
12608
12609 * font.c (font_find_for_lface): Try the adstyle specified in
12610 the property of LFACE_FONT of LFACE (if any).
12611
12612 2008-06-21 Seiji Zenitani <zenitani@mac.com>
12613 Ryo Yoshitake <ryo@shiftmode.net>
12614
12615 * xterm.c (x_set_frame_alpha): Add x_catch_errors for bug#437.
12616
12617 2008-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
12618
12619 * Makefile.in (${lisp} ${SOME_MACHINE_LISP}, ../lisp/loaddefs.el):
12620 Use $(BOOTSTRAPEMACS) rather than witness-emacs.
12621 (bootstrap-emacs${EXEEXT}): Merge witness-emacs into it.
12622 (witness-emacs): Remove.
12623 (lisp, shortlisp): Move loaddefs.el earlier.
12624 (mostlyclean): Forget about witness-emacs.
12625
12626 2008-06-22 Glenn Morris <rgm@gnu.org>
12627
12628 * Makefile.in (witness-emacs): Depend on temacs${EXEEXT}.
12629 (.SUFFIXES): Declare .el.elc as a suffix rule, for non-GNU makes.
12630
12631 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
12632
12633 * Makefile.in (PRECOMP): Remove.
12634 (${lisp} ${SOME_MACHINE_LISP}): Remove pseudo dependency on PRECOMP.
12635 (witness-emacs): Run `compile-first'.
12636 (.el.elc): Use the new compile-onefile target.
12637
12638 2008-06-21 Kenichi Handa <handa@m17n.org>
12639
12640 * xftfont.c (xftfont_open): Handle QCembolden only when
12641 FC_EMBOLDEN is defined.
12642
12643 2008-06-21 Andreas Schwab <schwab@suse.de>
12644
12645 * Makefile.in (witness-emacs): Use ../lisp, not $(lispsource).
12646 (.el.elc): Likewise.
12647
12648 2008-06-21 Miles Bader <miles@gnu.org>
12649
12650 * Makefile.in (../lisp/loaddefs.el): Build autoloads in the lisp
12651 build dir, not the lisp source dir.
12652
12653 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
12654
12655 * Makefile.in (emacs${EXEEXT}): Link the new emacs to bootstrap-emacs.
12656 (bootstrapclean): Remove.
12657 (.el.elc): New rule.
12658 (PRECOMP): New var.
12659 (../lisp/subdirs.el): Remove.
12660 (bootstrap-emacs${EXEEXT}): Remove subdirs.el and charpro.el dependency.
12661 (witness-emacs): New target.
12662 (mostlyclean): Remove witness-emacs as well.
12663 (../lisp/loaddefs.el, ${lisp} ${SOME_MACHINE_LISP}):
12664 Add witness-emacs dependency.
12665
12666 2008-06-20 Chong Yidong <cyd@stupidchicken.com>
12667
12668 * font.c (Ffont_face_attributes): Omit key-attribute pairs not
12669 defined by the font.
12670
12671 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
12672
12673 * Makefile.in (emacs${EXEEXT}): Depend on the machine-specific files.
12674 (bootstrap-clean): New target that keeps TAGS around.
12675 (../lisp/subdirs.el, ../lisp/loaddefs.el): New targets.
12676 (bootstrap-emacs${EXEEXT}): Depend on subdirs.el.
12677
12678 2008-06-20 Jason Rumney <jasonr@gnu.org>
12679
12680 * w32fns.c, w32term.c, w32term.h, w32gui.h [OLD_FONT]:
12681 Remove obsolete font code.
12682
12683 * w32font.c (font_matches_spec): Use csb bitfield from font signature
12684 to determine language support.
12685
12686 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
12687
12688 * sysdep.c (cfsetspeed): New fun extracted from the code.
12689 (cfmakeraw): Move before first use.
12690
12691 2008-06-20 Angelo Graziosi <angelo.graziosi@alice.it> (tiny change)
12692
12693 * sysdep.c (cfmakeraw): Provide fallback implementation.
12694 (serial_configure): Provide fallback implementation of cfsetspeed.
12695
12696 2008-06-20 Kenichi Handa <handa@m17n.org>
12697
12698 * xftfont.c (xftfont_open): Add FOUNDRY, SPACING, DPI, SCALABLE to
12699 the pattern.
12700
12701 * fontset.c (fontset_from_font): Copy font_spec before changing
12702 the elements.
12703
12704 * xfns.c (x_default_font_parameter): Try "monospace-12" too.
12705
12706 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
12707
12708 * w32fns.c, xfns.c (x_default_font_parameter): Only set `font-param'
12709 for explicit `font' parameters.
12710
12711 * frame.c (x_set_font): Remove unexplained call to fix inf-recursion.
12712
12713 2008-06-19 Kenichi Handa <handa@m17n.org>
12714
12715 * frame.c: Include <ctype.h>.
12716 (x_set_font_backend): Allow spacing characters in the X resource
12717 for FontBackend.
12718
12719 2008-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
12720
12721 * w32fns.c, xfns.c (Qfont_param): New var.
12722 (syms_of_w32fns): Initialize it.
12723 (x_default_font_parameter): Record explicit `font' into
12724 `font-parameter'.
12725
12726 2008-06-18 Kenichi Handa <handa@m17n.org>
12727
12728 * font.c (font_parse_xlfd): Fix previous change.
12729 (font_parse_fcname): Don't use :fc-unknown-spec.
12730 (FRAME_X_DISPLAY_INFO): Be sure to have at least 1 pixel height.
12731 (Fcopy_font_spec): Preserve the order of elements in FONT_EXTRA.
12732 (font_add_log): Prepend the driver name to the resulting fonts.
12733
12734 * ftfont.c (ftfont_pattern_entity): New arg extra. Caller changed.
12735 (ftfont_spec_pattern): Don't check QCfc_unknown_spec and QCname.
12736 (ftfont_list) [FC_FONTFORMAT]: Include FC_FONTFORMAT in objset.
12737
12738 * xftfont.c (QChinting , QCautohint, QChintstyle, QCrgba)
12739 (QCembolden): New variables.
12740 (syms_of_xftfont): DEFSYM them.
12741 (xftfont_open): Call XftFontMatch. Don't trust the result of
12742 XftTextExtents8 if the pixel_size is less than 5.
12743
12744 2008-06-18 Andreas Schwab <schwab@suse.de>
12745
12746 * font.c (Ffont_face_attributes): Only define if HAVE_WINDOW_SYSTEM.
12747 (syms_of_font): Only defsubr if HAVE_WINDOW_SYSTEM.
12748
12749 2008-06-18 Jason Rumney <jasonr@gnu.org>
12750
12751 * w32font.c (w32font_list, w32font_match): Add logging.
12752
12753 * w32uniscribe.c (uniscribe_list, uniscribe_match): Add logging.
12754
12755 2008-06-17 Chong Yidong <cyd@stupidchicken.com>
12756
12757 * font.c (font_parse_fcname): Store divider characters for
12758 unknown-spec list. For known key symbols, intern using correct
12759 symbol name.
12760
12761 2008-06-17 Kenichi Handa <handa@m17n.org>
12762
12763 * xfaces.c (realize_default_face): If the frame is not on window
12764 system, set the fontset of face to nil.
12765
12766 2008-06-17 Naohiro Aota <nao.aota@gmail.com> (tiny change)
12767
12768 * fontset.c (fontset_pattern_regexp): Escape some reg-expr characters.
12769
12770 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
12771
12772 * dispextern.h (lookup_non_ascii_face, split_font_name_into_vector)
12773 (build_font_name_from_vector): Delete externs.
12774
12775 * xfaces.c (struct font_name): Don't declare.
12776
12777 2008-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
12778
12779 * font.c (font_unparse_gtkname): Use EQ to compare Lisp_Objects.
12780
12781 2008-06-16 Chong Yidong <cyd@stupidchicken.com>
12782
12783 * font.c (font_parse_fcname): Fix handling of unknown-spec string.
12784
12785 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
12786
12787 * font.c (Ffont_spec): Fix usage in docstring.
12788 (Ffont_face_attributes): Doc fix.
12789
12790 2008-06-16 Andreas Schwab <schwab@suse.de>
12791
12792 * font.c (Ffont_face_attributes): Fix definition.
12793
12794 2008-06-16 Jason Rumney <jasonr@gnu.org>
12795
12796 * font.h (font_style_symbolic_from_value): Remove.
12797
12798 * font.c (font_style_symbolic_from_value): Remove.
12799 (font_style_symbolic): Revert to pre 2008-06-13 version.
12800
12801 * w32font.c (w32_to_fc_weight): New function.
12802 (w32font_full_name, logfont_to_fcname): Use it.
12803
12804 2008-06-16 Kenichi Handa <handa@m17n.org>
12805
12806 * font.c (font_check_object): Delete it.
12807 (font_clear_cache): Check if a font-object is alive.
12808 (font_open_entity): Likewise. Set FONT_OBJLST_INDEX of a
12809 font-object to nil.
12810 (font_close_object): Don't check FONT_CLOSE_OBJECT.
12811 (font_at): Don't call font_check_object.
12812 (Ffont_get): Return a symbol for :weight, :slant, and :width.
12813
12814 2008-06-16 Katsumi Yamaoka <yamaoka@jpl.org>
12815
12816 * puresize.h (BASE_PURESIZE): Increase to 1230000.
12817
12818 2008-06-16 Chong Yidong <cyd@stupidchicken.com>
12819
12820 * font.c (font_parse_fcname): Correctly parse KEY=VAL values.
12821
12822 2008-06-15 Chong Yidong <cyd@stupidchicken.com>
12823
12824 * font.c (font_parse_fcname): Only one decimal point.
12825 (font_unparse_fcname): Handle data in family and foundry indices
12826 as symbols, not strings.
12827 (font_unparse_gtkname, Ffont_face_attributes): New functions.
12828
12829 * xfns.c (Fx_select_font): Give GTK font dialog the default font name.
12830
12831 * font.h (font_unparse_gtkname): Add prototype.
12832
12833 2008-06-15 Naohiro Aota <nao.aota@gmail.com> (tiny change)
12834
12835 * fontset.c (fontset_pattern_regexp): Escape `+' characters in pattern.
12836
12837 2008-06-15 Andreas Schwab <schwab@suse.de>
12838
12839 * font.c (font_update_drivers): Fix crash when no drivers match.
12840
12841 2008-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
12842
12843 * xfns.c (Fx_create_frame): internal-border-width default to 0 for Gtk.
12844 * gtkutil.c (xg_create_frame_widgets): Don't set internal_border_width.
12845
12846 2008-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
12847
12848 * xdisp.c (syms_of_xdisp): Default underline-minimum-offset to 1.
12849
12850 2008-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
12851
12852 * process.c (Fserial_process_configure, Fprocess_send_eof):
12853 Use EQ to compare Lisp_Objects.
12854
12855 2008-06-13 Jason Rumney <jasonr@gnu.org>
12856
12857 * w32fns.c (Fw32_select_font): Remove old font API function.
12858
12859 * w32font.c (logfont_to_fcname): New function.
12860 (Fx_select_font): New font dialog function compatible with
12861 GTK/fontconfig version.
12862
12863 * font.c (font_style_symbolic_from_value): New function.
12864 (font_style_symbolic): Use it.
12865
12866 * font.h (font_style_symbolic_from_value): Declare new function.
12867
12868 2008-06-13 Juanma Barranquero <lekktu@gmail.com>
12869
12870 * font.c (syms_of_font) <font-weight-table, font-slant-table>:
12871 <font-width-table>: Fix typos in docstrings.
12872
12873 2008-06-13 Daniel Engeler <engeler@gmail.com>
12874
12875 These changes add serial port access.
12876 * process.c: Add HAVE_SERIAL.
12877 (Fdelete_process, Fprocess_status, Fset_process_buffer)
12878 (Fset_process_filter, Fset_process_sentinel, Fprocess_contact)
12879 (list_processes_1, select_wrapper, Fstop_process)
12880 (Fcontinue_process, Fprocess_send_eof, kill_buffer_processes)
12881 (status_notify): Modify to handle serial processes.
12882 [HAVE_SERIAL] (Fserial_process_configure)
12883 [HAVE_SERIAL] (make_serial_process_unwind, Fmake_serial_process):
12884 New functions.
12885 * process.h (struct Lisp_Process): Add `type'.
12886 * sysdep.c [HAVE_TERMIOS] (serial_open, serial_configure):
12887 New functions.
12888 * w32.c (_sys_read_ahead, sys_read, sys_write): Modify to handle
12889 serial ports.
12890 (serial_open, serial_configure): New functions.
12891 * w32.h: Add FILE_SERIAL.
12892 (struct _child_process): Add ovl_read, ovl_write.
12893
12894 2008-06-13 Kenichi Handa <handa@m17n.org>
12895
12896 * dispextern.h (enum lface_attribute_index): New member
12897 LFACE_FOUNDRY_INDEX.
12898
12899 * font.c (font_score): Delete arg alternate_families. Check only
12900 weight, slant, width, and size. Ignore the difference of alias
12901 style symbols.
12902 (font_sort_entites): Adjust for the above change. Reflect the
12903 order of font-driver to scores.
12904 (font_list_entities): Don't check alternate_familes here.
12905 (font_clear_prop): Handle foundry.
12906 (font_update_lface): Don't parse "foundry-family" form here.
12907 Handle FONT_FOUNDRY_INDEX.
12908 (font_find_for_lface): Likewise. Handle alternate families here.
12909 If registry is nil, try iso8859-1 and ascii-0.
12910 (font_open_for_lface): Pay attention to size in ENTITY.
12911 (font_open_by_name): Simplify by calling font_load_for_lface.
12912 (free_font_driver_list): Delete it.
12913 (font_update_drivers): Preserve the order of backends.
12914 (syms_of_font): Setting of sort_shift_bits adjusted for the change
12915 of font_score and font_sort_entites.
12916 (font_update_sort_order): Likewise.
12917
12918 * xfaces.c (LFACE_FOUNDRY): New macro.
12919 (check_lface_attrs): Check foundry.
12920 (set_lface_from_font): Don't parse "FOUNDRY-FAMILY" form.
12921 (merge_face_vectors): Check foundry.
12922 (merge_face_ref): Likewise.
12923 (Finternal_set_lisp_face_attribute): Likewise.
12924 (x_update_menu_appearance): Likewise.
12925 (Finternal_get_lisp_face_attribute): Likewise.
12926 (lface_hash): Likewise.
12927 (lface_same_font_attributes_p): Likewise.
12928 (x_supports_face_attributes_p): Likewise.
12929 (tty_supports_face_attributes_p): Likewise.
12930 (Finternal_set_alternative_font_family_alist): Intern strings.
12931 (Finternal_set_alternative_font_registry_alist): Downcase strings.
12932 (realize_default_face): Set LFACE_FOUNDRY (lface).
12933
12934 * xfns.c (Fx_create_frame, x_create_tip_frame): Register X
12935 font-driver at first.
12936
12937 * ftfont.c (ftfont_font_format) [! FC_FONTFORMAT]: Declare "int len;".
12938
12939 2008-06-12 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
12940
12941 * lread.c (Fload): Use xfree, not free on saved_doc_string.
12942
12943 2008-06-12 Jim Meyering <meyering@redhat.com>
12944
12945 Make unexec_free handle NULL the same way free does.
12946 * unexmacosx.c (unexec_free): Ignore a NULL argument.
12947
12948 2008-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
12949
12950 * character.h (CHAR_TO_BYTE_SAFE): New macro.
12951 * character.c (Fmultibyte_char_to_unibyte): Obey the docstring.
12952 * regex.c (RE_CHAR_TO_UNIBYTE): Use the new macro.
12953 (WEAK_ALIAS): Simplify.
12954 * syntax.c (skip_chars): Don't mark non-byte chars in the fastmap
12955 when searching a unibyte buffer.
12956
12957 2008-06-12 Chong Yidong <cyd@stupidchicken.com>
12958
12959 * xfns.c (Fx_select_font): Rename from x-font-dialog.
12960
12961 2008-06-12 Juanma Barranquero <lekktu@gmail.com>
12962
12963 * w32font.c: Include ctype.h.
12964
12965 2008-06-11 Jason Rumney <jasonr@gnu.org>
12966
12967 * w32font.c (w32font_encode_char): Detect missing glyphs that are
12968 misreported as space.
12969 (add_font_entity_to_list): Support unicode-bmp and unicode-sip
12970 as aliases for registry iso10646-1.
12971
12972 2008-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
12973
12974 * buffer.c (clone_per_buffer_values): Skip `name'.
12975
12976 2008-06-11 Chong Yidong <cyd@stupidchicken.com>
12977
12978 * font.c (font_parse_fcname): Fix last change; accept decimal
12979 points in font size.
12980
12981 2008-06-10 Jason Rumney <jasonr@gnu.org>
12982
12983 * w32uniscribe.c (add_opentype_font_name_to_list):
12984 Skip non unicode fonts.
12985
12986 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
12987
12988 * xfns.c (Fx_font_dialog): New function.
12989
12990 * gtkutil.c (xg_dialog_response_cb): Rename from
12991 xg_file_response_callback.
12992 (pop_down_dialog): Rename from pop_down_file_dialog.
12993 (xg_get_file_name): Callers changed.
12994 (xg_get_font_name): New function.
12995
12996 * gtkutil.h (xg_get_font_name): Insert prototype.
12997
12998 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
12999
13000 * xdisp.c (underline_minimum_offset): Rename from xterm.c's
13001 x_underline_minimum_display_offset.
13002 (syms_of_xdisp): Declare it here rather than in xterm.c.
13003 * dispextern.h (underline_minimum_offset): Declare it.
13004 * w32term.c (x_draw_glyph_string): Use it.
13005 * xterm.c (x_underline_minimum_display_offset): Move to xdisp.c.
13006 (syms_of_xterm): Don't declare it any more.
13007 (x_draw_glyph_string): Adjust to the new name.
13008
13009 2008-06-10 David De La Harpe Golden <david@harpegolden.net>
13010
13011 * xterm.c (x_underline_minimum_display_offset): New var.
13012 (x_draw_glyph_string): Use it.
13013 (syms_of_xterm): Declare it.
13014
13015 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
13016
13017 * font.c (font_parse_fcname): Accept GTK-style font names too.
13018
13019 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
13020
13021 * dired.c (file_name_completion): Don't return t if the match is exact
13022 but with different capitalization.
13023 * minibuf.c (Ftry_completion): Simplify.
13024
13025 * window.c (Vwindow_point_insertion_type): New var.
13026 (set_window_buffer): Use it.
13027 (syms_of_window): Init and export it to Lisp.
13028
13029 2008-06-10 Kenichi Handa <handa@m17n.org>
13030
13031 * font.h (font_intern_prop): Prototype adjusted.
13032
13033 * font.c (font_intern_prop): New arg force_symbol.
13034 (font_parse_xlfd, font_parse_fcname, font_parse_family_registry):
13035 Adjust for the change of font_intern_prop.
13036
13037 * ftfont.c (ftfont_pattern_entity):
13038 * w32font.c (add_font_name_to_list, w32_enumfont_pattern_entity)
13039 (w32_registry):
13040 * w32uniscribe.c (add_opentype_font_name_to_list): Adjust for
13041 the change of font_intern_prop.
13042
13043 2008-06-09 Juanma Barranquero <lekktu@gmail.com>
13044
13045 * w32menu.c (digest_single_submenu): Declare extern.
13046
13047 2008-06-09 Jason Rumney <jasonr@gnu.org>
13048
13049 * w32term.c (x_make_frame_visible): Use alternate restore flags.
13050
13051 * w32menu.c (Fx_popup_menu): Unwind protect while building menu.
13052 (parse_single_submenu): Remove.
13053 (digest_single_submenu): Remove.
13054 (syms_of_w32menu): Don't initialise variables that have moved
13055 to menu.c.
13056 (set_frame_menubar): Sync with version in xmenu.c.
13057 (w32_menu_show): Sync with xmenu_show in xmenu.c.
13058
13059 * menu.c (single_keymap_panes, push_menu_pane, push_menu_item):
13060 Make static again.
13061
13062 2008-06-09 Jason Rumney <jasonr@gnu.org>
13063
13064 Changes to w32 files related to the move of common menu code
13065 to menu.c on 2008-06-08 by Chong Yidong.
13066
13067 * menu.c [HAVE_NTGUI]: Include w32term.h, move widget related
13068 defs to w32gui.h.
13069 (single_keymap_panes, push_menu_item, push_menu_pane):
13070 Make globally visible.
13071
13072 * w32menu.c (enum button_type, widget_value, local_heap, local_alloc)
13073 (local_free, malloc_widget_value, free_widget_value)
13074 (MENU_ITEMS_ITEM_NAME, MENU_ITEMS_ITEM_ENABLE, MENU_ITEMS_ITEM_VALUE)
13075 (MENU_ITEMS_ITEM_EQUIV_KEY, MENU_ITEMS_ITEM_DEFINITION)
13076 (MENU_ITEMS_ITEM_TYPE, MENU_ITEMS_ITEM_SELECTED, MENU_ITEMS_ITEM_HELP)
13077 (MENU_ITEMS_ITEM_LENGTH, enum menu_item_idx): Remove defs.
13078 (menu_items, menu_items_allocated, menu_items_used)
13079 (menu_items_n_panes, menu_items_submenu_depth): Remove global vars.
13080 (init_menu_items, finish_menu_items, discard_menu_items)
13081 (grow_menu_items, push_submenu_start, push_submenu_end)
13082 (push_left_right_boundary, push_menu_pane, push_menu_item)
13083 (keymap_panes, single_keymap_panes, list_of_panes, list_of_items)
13084 (free_menubar_widget_tree_value, parse_single_submenu)
13085 (update_submenu_strings): Remove functions.
13086 (xmalloc_widget_value): Remove and declare extern.
13087
13088 * makefile.w32-in ($(SRC)/menu.$(O)): New target.
13089 (OBJ1): Build it.
13090
13091 * w32gui.h (widget_value, XtPointer, Boolean, enum button_type)
13092 (local_heap, local_alloc, local_free, malloc_widget_value)
13093 (free_widget_value): Define here.
13094
13095 2008-06-09 Kenichi Handa <handa@m17n.org>
13096
13097 * font.h (Qascii_0): Extern it.
13098
13099 * font.c (Qascii_0): New variable.
13100 (syms_of_font): DEFSYM it.
13101 (font_open_by_name): If the registry "iso8859-1" fails, try also
13102 "ascii-0".
13103
13104 * ftfont.c (ftfont_spec_pattern): Accept the registry `ascii-0'.
13105
13106 2008-06-08 Kenichi Handa <handa@m17n.org>
13107
13108 * .gdbinit (xfont): New command.
13109
13110 2008-06-08 Andreas Schwab <schwab@suse.de>
13111
13112 * menu.c [HAVE_X_WINDOWS]: Include "xterm.h".
13113 * Makefile.in (menu.o): Update dependencies.
13114
13115 * Makefile.in (obj): Always add menu.o.
13116 * emacs.c (main): Always call syms_of_menu.
13117 * keyboard.h: Remove extra #ifdef HAVE_X_WINDOW.
13118
13119 2008-06-08 Chong Yidong <cyd@stupidchicken.com>
13120
13121 * Makefile.in: Compile menu.c.
13122
13123 * lisp.h: Declare syms_of_menu.
13124
13125 * emacs.c (main): Call syms_of_menu.
13126
13127 * keyboard.h: Relocate platform-independent menu definitions from
13128 xmenu.c.
13129
13130 * menu.c: New file. Relocate platform-independent menu
13131 definitions from xmenu.c. Suggested by Adrian Robert.
13132
13133 * xmenu.c: Remove platform-independent menu definitions.
13134 (menu_items, menu_items_inuse, menu_items_allocated)
13135 (menu_items_used, menu_items_n_panes)
13136 (menu_items_submenu_depth): Move to keyboard.h.
13137 (init_menu_items, finish_menu_items, unuse_menu_items)
13138 (discard_menu_items, restore_menu_items, save_menu_items)
13139 (grow_menu_items, push_submenu_start, push_submenu_end)
13140 (push_left_right_boundary, push_menu_pane, push_menu_item)
13141 (keymap_panes, single_keymap_panes, single_menu_item)
13142 (list_of_panes, list_of_items, find_and_call_menu_selection)
13143 (xmalloc_widget_value, free_menubar_widget_value_tree)
13144 (parse_single_submenu, digest_single_submenu)
13145 (update_submenu_strings): Move to menu.c.
13146
13147 2008-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
13148
13149 * dispnew.c (Flast_nonminibuf_frame): Handle the NULL case.
13150
13151 2008-06-06 Miles Bader <miles@gnu.org>
13152
13153 * xdisp.c (x_produce_glyphs): Calculate tab width based on current
13154 face, not frame default.
13155
13156 2008-06-05 Martin Rudalics <rudalics@gmx.at>
13157
13158 * window.c (pop_up_windows, pop_up_frames)
13159 (display_buffer_reuse_frames, Vpop_up_frame_function)
13160 (Vdisplay_buffer_function, Veven_window_heights)
13161 (Vspecial_display_buffer_names, Vspecial_display_regexps)
13162 (Vspecial_display_function, Vsame_window_buffer_names)
13163 (Vsame_window_regexps, split_height_threshold)
13164 (Vsplit_window_preferred_function): Move those vars to window.el.
13165 (display_buffer_1, Fspecial_display_p, Fsame_window_p)
13166 (Fdisplay_buffer): Move those functions to window.el.
13167 (syms_of_window): Remove corresponding declarations.
13168 (display_buffer): New function.
13169 (temp_output_buffer_show, Fother_window_for_scrolling): Use it.
13170 * dispnew.c (Flast_nonminibuf_frame): New function.
13171 * buffer.c (Fpop_to_buffer): Move to window.el.
13172
13173 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
13174
13175 * data.c (set_internal): Fix up call to let_shadows_buffer_binding_p.
13176
13177 2008-06-05 Kenichi Handa <handa@m17n.org>
13178
13179 * coding.c (detect_coding): Fix previous change.
13180 (detect_coding_system): Likewise.
13181
13182 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
13183
13184 * character.h (MAKE_CHAR_MULTIBYTE): Check the arg is a (uni)byte.
13185
13186 * keymap.c (Vminibuffer_local_filename_must_match_map):
13187 Rename from Vminibuffer_local_must_match_filename_map.
13188 (syms_of_keymap):
13189 * minibuf.c (Fcompleting_read): Adjust accordingly.
13190 * commands.h: Rename declaration as well.
13191
13192 2008-06-05 Kenichi Handa <handa@m17n.org>
13193
13194 * font.c (Ffont_spec): Don't use font_parse_family_registry for
13195 family name.
13196 (Ffont_put): Likewise.
13197
13198 * fontset.c (fontset_find_font): Call font_open_for_lface with the
13199 current font-spec.
13200
13201 * xfont.c (xfont_list): Don't set registry to iso8859-1 even if it
13202 is unspecified.
13203
13204 * xfaces.c (realize_x_face): If the font-related face attributes
13205 are the same as those of default face, realize a new fontset from
13206 default->fontset.
13207 (Fx_family_fonts): Use font_parse_family_registry instead of Ffont_put.
13208
13209 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
13210
13211 * xdisp.c (move_it_in_display_line_to): Improve the type of its args.
13212 (move_it_in_display_line): New wrapper.
13213
13214 * window.c (window_scroll_pixel_based_preserve_x)
13215 (window_scroll_preserve_hpos, window_scroll_preserve_vpos): New vars.
13216 (window_scroll_pixel_based, window_scroll_line_based):
13217 Use them to preserve column positions.
13218 (syms_of_window): Initialize them.
13219
13220 * indent.c (Fvertical_motion): Extend first arg to allow passing an
13221 (HPOS . VPOS) pair.
13222
13223 * dispextern.h (move_it_in_display_line): Declare.
13224
13225 2008-06-05 Juanma Barranquero <lekktu@gmail.com>
13226
13227 * window.c (Fwindow_parameter): Return VALUE, not (PARAMETER . VALUE).
13228 (Fwindow_parameters): Return copy of parameter alist. Doc fix.
13229 (Fset_window_parameter): Return VALUE, not parameter alist. Doc fix.
13230
13231 2008-06-04 Juanma Barranquero <lekktu@gmail.com>
13232
13233 * window.c (Fset_window_parameter): Doc fix.
13234 (Fwindow_parameters, Fwindow_parameter): Remove redundant check.
13235
13236 2008-06-04 Joakim Verona <joakim@verona.se>
13237
13238 * window.h (struct window): Add new member window_parameters.
13239
13240 * window.c (Fwindow_parameters, Fwindow_parameter)
13241 (Fset_window_parameter): New defuns.
13242 (syms_of_window): Defsubr the new defuns.
13243 (make_window): Initialize window_parameters to nil.
13244
13245 2008-06-04 John Paul Wallington <jpw@pobox.com>
13246
13247 * eval.c (Fdefmacro): Doc fix.
13248
13249 2008-06-04 Kenichi Handa <handa@m17n.org>
13250
13251 * coding.c (detect_coding): Fix handling of coding->head_ascii.
13252 Be sure to call setup_coding_system when we find a proper coding system.
13253 (detect_coding_system): Fix handling of coding->head_ascii.
13254
13255 2008-06-03 Andreas Schwab <schwab@suse.de>
13256
13257 * font.c (font_prop_validate_spacing): Fix last change.
13258
13259 2008-06-03 Kenichi Handa <handa@m17n.org>
13260
13261 * font.c (font_prop_validate_spacing): Handle uppercase symbols.
13262 (font_parse_fcname): Fix handling of unknown key.
13263
13264 * xfont.c (xfont_list): Try an alias.
13265
13266 * charset.c (char_charset): Return NULL if the arg charset_list is
13267 specified and C doesn't belong to any of them.
13268
13269 2008-06-02 Chip Coldwell <coldwell@redhat.com>
13270
13271 * font.c (font_pixel_size): Don't take cdr of an integer.
13272
13273 2008-06-02 Jim Meyering <meyering@redhat.com>
13274
13275 Make "xfree (NULL)" a no-op; remove useless if-before-xfree.
13276 * alloc.c (xfree): Return right away for a NULL arg.
13277 * lread.c (nosuffix): Remove now-useless if-before-xfree tests.
13278 * gtkutil.c (xg_gtk_scroll_destroy): Likewise.
13279 * mac.c (create_apple_event_from_event_ref): Likewise.
13280 (create_apple_event_from_drag_ref, cfstring_create_normalized):
13281 Likewise.
13282 * doprnt.c (doprnt1): Likewise.
13283 * frame.c (frame): Likewise.
13284 * keyboard.c (wipe_kboard): Likewise.
13285 * macterm.c (x_free_frame_resources, xlfdpat_destroy, XFreePixmap)
13286 (init_font_name_table, mac_unload_font, x_delete_display): Likewise.
13287 * term.c (tty_default_color_capabilities, maybe_fatal)
13288 (delete_tty): Likewise.
13289 * w16select.c (string): Likewise.
13290 * w32.c (w32_get_resource, SET_ENV_BUF_SIZE): Likewise.
13291 * w32bdf.c (w32_free_bdf_font): Likewise.
13292 * w32fns.c (w32_unload_font): Likewise.
13293 * w32font.c (w32font_close): Likewise.
13294 * window.c (size_window): Likewise.
13295 * xselect.c (receive_incremental_selection): Likewise.
13296 * xterm.c (x_free_frame_resources, x_delete_display): Likewise.
13297 * mactoolbox.c (create_apple_event_from_drag_ref): Likewise.
13298 * w32.c (stat): Likewise.
13299
13300 Remove useless if-before-free tests.
13301 * editfns.c (Fset_time_zone_rule): Likewise.
13302 * lread.c (nosuffix): Likewise.
13303 * ralloc.c (get_bloc): Likewise.
13304 * regex.c (reg_free): Likewise.
13305 * xftfont.c (xftfont_open, xftfont_close): Likewise.
13306 * xrdb.c (get_user_app, get_environ_db, x_load_resources): Likewise.
13307 * xsmfns.c (smc_save_yourself_CB): Likewise.
13308
13309 2008-06-02 Kenichi Handa <handa@m17n.org>
13310
13311 * font.c (font_find_for_lface): Handle float font size.
13312 (font_open_for_lface): Likewise.
13313
13314 * xfaces.c (x_supports_face_attributes_p): Check face->font before
13315 comparing the properties.
13316
13317 2008-06-01 Jason Rumney <jasonr@gnu.org>
13318
13319 * w32font.c (w32_enumfont_pattern_entity): Use requested registry.
13320 Treat iso10646-1 and Windows DEFAULT_CHARSET specially.
13321 Duplicate iso8859-1 fonts as iso10646-1 if no registry specified.
13322 Don't add empty script list.
13323 (w32_registry): Only map DEFAULT_CHARSET to iso10646-1 here.
13324
13325 2008-06-01 Dan Nicolaescu <dann@ics.uci.edu>
13326
13327 * Makefile.in (dot, dotdot): Remove, update users.
13328 ".." has been used elsewhere in the file for a long time.
13329 (LIBXT_STATIC): Remove conditional based on unused variable.
13330
13331 2008-06-01 Miles Bader <miles@gnu.org>
13332
13333 * xfaces.c (Vface_remapping_alist): New variable.
13334 (syms_of_xfaces): Initialize it.
13335 (enum named_merge_point_kind): New type.
13336 (struct named_merge_point): Add `named_merge_point_kind' field.
13337 (push_named_merge_point): Make cycle detection respect different
13338 named-merge-point kinds.
13339 (lface_from_face_name_no_resolve): Rename from `lface_from_face_name'.
13340 Remove face-name alias resolution.
13341 (lface_from_face_name): New definition using
13342 `lface_from_face_name_no_resolve'.
13343 (get_lface_attributes_no_remap): Rename from `get_lface_attributes'.
13344 Call lface_from_face_name_no_resolve instead of lface_from_face_name.
13345 (get_lface_attributes): New definition that layers face-remapping on
13346 top of get_lface_attributes_no_remap. New arg `named_merge_points'.
13347 (lookup_basic_face): New function.
13348 (lookup_derived_face): Pass new last arg to `get_lface_attributes'.
13349 (realize_named_face): Call `get_lface_attributes_no_remap' instead of
13350 `get_lface_attributes'.
13351 (face_at_buffer_position): Use `lookup_basic_face' to lookup
13352 DEFAULT_FACE_ID if necessary. When optimizing the default-face case,
13353 return default_face's face-id instead of the constant DEFAULT_FACE_ID.
13354
13355 * xdisp.c (init_iterator): Pass base_face_id through
13356 `lookup_basic_face' when we actually use it as a face-id.
13357 (handle_single_display_prop): Use `lookup_basic_face' to lookup
13358 DEFAULT_FACE_ID.
13359
13360 * fontset.c (Finternal_char_font): Use `lookup_basic_face' to
13361 lookup the initial face-id.
13362
13363 * dispextern.h (lookup_basic_face, Vface_remapping_alist): New decls.
13364
13365 2008-06-01 Juanma Barranquero <lekktu@gmail.com>
13366
13367 * textprop.c (syms_of_textprop) <text-property-default-nonsticky>:
13368 (Fremove_text_properties): Fix typos in docstrings.
13369
13370 2008-05-31 Kenichi Handa <handa@m17n.org>
13371
13372 * font.c (font_list_entities): Fix the car part of data to be
13373 stored in the cache.
13374
13375 * ftfont.c (ftfont_font_format): Don't use strcasestr.
13376
13377 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
13378
13379 * chartab.c (Foptimize_char_table, optimize_sub_char_table):
13380 Add a `test' argument so another predicate than `equal' can be used.
13381 (map_sub_char_table): Use `eq' rather than `equal' to merge ranges.
13382 (map_char_table): Remove unused vars `c' and `i'.
13383 * lisp.h (Foptimize_char_table): Adjust declaration.
13384 * charset.c (Fclear_charset_maps): Adjust call to Foptimize_char_table.
13385
13386 2008-05-30 Kenichi Handa <handa@m17n.org>
13387
13388 * font.c (Ffont_info): Define only if HAVE_WINDOW_SYSTEM is defined.
13389 (syms_of_font): Defsubr Sfont_info only if HAVE_WINDOW_SYSTEM is
13390 defined.
13391
13392 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
13393
13394 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
13395 (Fmake_variable_frame_local): Disallow mixing buffer-local and
13396 frame-local settings for the same variable.
13397
13398 2008-05-30 Kenichi Handa <handa@m17n.org>
13399
13400 * fontset.c (Ffont_info): Move to font.c.
13401 (syms_of_fontset): Delete defsubr of Sfont_info.
13402
13403 * font.c (font_style_to_value, font_score): Delete casting of the
13404 args to xstcasecmp.
13405 (register_font_driver): Increment num_font_drivers only when
13406 registering the driver globally.
13407 (Ffont_info): Move from fontset.c. Handle a font object too.
13408 (syms_of_font): Defsubr Sfont_info.
13409
13410 2008-05-29 Kenichi Handa <handa@m17n.org>
13411
13412 * coding.h (enum define_coding_utf8_arg_index): New enum.
13413 (enum coding_attr_index): Change coding_attr_utf_16_bom to
13414 coding_attr_utf_bom.
13415 (enum utf_bom_type): Rename from utf_16_bom_type.
13416 (struct utf_16_spec): Adjust for the above change.
13417 (struct coding_system): Add utf_8_bom in `spec' union.
13418
13419 * coding.c (CODING_UTF_8_BOM): New macro.
13420 (enum coding_category): Delete coding_category_utf_8, add
13421 coding_category_utf_8_auto, coding_category_utf_8_nosig, and
13422 coding_category_utf_8_sig.
13423 (CATEGORY_MASK_UTF_8): Delete it.
13424 (CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG)
13425 (CATEGORY_MASK_UTF_8_SIG): New macros.
13426 (CATEGORY_MASK_ANY): Delete CATEGORY_MASK_UTF_8, add
13427 CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG, and
13428 CATEGORY_MASK_UTF_8_SIG.
13429 (CATEGORY_MASK_UTF_8): New macro.
13430 (UTF_BOM, UTF_8_BOM_1, UTF_8_BOM_2, UTF_8_BOM_3): New macros.
13431 (detect_coding_utf_8): Check BOM.
13432 (decode_coding_utf_8, encode_coding_utf_8): Handle BOM.
13433 (decode_coding_utf_16): Adjust for the change of enum utf_bom_type.
13434 (encode_coding_utf_16): Likewise.
13435 (setup_coding_system): Likewise. Set CODING_UTF_8_BOM (coding).
13436 (detect_coding, detect_coding_system): Handle utf-8-auto.
13437 (Fdefine_coding_system_internal): Handle `bom' property for utf-8.
13438 (syms_of_coding): Fix setting up of Vcoding_category_table.
13439
13440 2008-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
13441
13442 * process.c (Faccept_process_output): If `millisec' is non-nil,
13443 `seconds' default to 0.
13444 (wait_reading_process_output): Also return non-nil if we read output
13445 from a non-running process.
13446
13447 2008-05-29 Jason Rumney <jasonr@gnu.org>
13448
13449 * w32font.c (w32font_open_internal): Prefer truetype fonts unless
13450 `raster' specified.
13451 (add_font_entity_to_list): Allow non-opentype truetype fonts back
13452 in the uniscribe backend, but disallow any font that has no
13453 unicode subrange support.
13454
13455 2008-05-29 Juanma Barranquero <lekktu@gmail.com>
13456
13457 * xfaces.c (Fx_list_fonts, Finternal_copy_lisp_face):
13458 Fix typos in docstrings.
13459
13460 2008-05-29 Kenichi Handa <handa@m17n.org>
13461
13462 * xfaces.c (Fx_list_fonts): Make it return a list of font names.
13463 (Fx_family_fonts): Set frame correctly.
13464
13465 2008-05-28 Jason Rumney <jasonr@gnu.org>
13466
13467 * w32term.c (x_draw_glyph_string): Use clipmask if specified.
13468
13469 2008-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
13470
13471 * fileio.c (Fwrite_region): Delay the defaulting to beg&z to after
13472 calling build_annotations.
13473
13474 2008-05-28 Juanma Barranquero <lekktu@gmail.com>
13475
13476 * coding.c (Fdecode_coding_region, Fencode_coding_region)
13477 (Fencode_coding_string):
13478 (syms_of_coding) <coding-system-for-read, coding-system-for-write>:
13479 <latin-extra-code-table>: Fix typos in docstrings.
13480 (syms_of_coding) <coding-system-alist>: Doc fix.
13481 (syms_of_coding) <translation-table-for-input>: Reflow docstring.
13482
13483 2008-05-28 Kenichi Handa <handa@m17n.org>
13484
13485 * fontset.c (Ffont_info): Don't call font_close_object.
13486
13487 * font.c (font_parse_family_registry): Use Ffont_put to validate
13488 foundry and family.
13489 (font_delete_unmatched): Don't check spacing.
13490 (font_list_entities): Add spacing to the spec to list fonts.
13491
13492 * ftfont.c (ftfont_spec_pattern): Don't set FC_SPACING to pattern.
13493 (ftfont_list): Check spacing here. Don't include FC_CHARSET in objset.
13494
13495 * coding.c (encode_coding_raw_text): Fix previous change.
13496 (encode_coding_object): When the dst_object is a buffer and is
13497 different from src_object, move gap to PT.
13498
13499 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
13500
13501 * xterm.c (x_draw_glyph_string): If a clipmask is specified, use it.
13502
13503 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
13504
13505 * coding.c (encode_coding_raw_text): Set coding->produced_char for
13506 all branches. Compute it differently.
13507
13508 * xdisp.c [!HAVE_WINDOW_SYSTEM]: Include font.h for --without-x.
13509
13510 2008-05-27 Juanma Barranquero <lekktu@gmail.com>
13511
13512 * w32font.c (compute_metrics): Rewrite an "else { if () ... else ... }"
13513 into "else if () ... else ...".
13514
13515 2008-05-27 Jason Rumney <jasonr@gnu.org>
13516
13517 * w32font.c (w32font_open_internal): Determine if glyph indices
13518 are likely to work here.
13519
13520 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
13521
13522 * xdisp.c (draw_glyphs): If mouse-highlighting is on, attempt to
13523 draw overlap glyphs with appropriate highlighting.
13524
13525 2008-05-27 Kenichi Handa <handa@m17n.org>
13526
13527 * xfont.c (xfont_open): Fix calculation of font->average_width.
13528
13529 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
13530
13531 * casefiddle.c (casify_object): Try to guess better whether the
13532 argument is a byte or a char.
13533
13534 2008-05-26 Andreas Schwab <schwab@suse.de>
13535
13536 * xselect.c (x_reply_selection_request): Properly handle format == 32.
13537 Always send multiples of format size.
13538
13539 * xterm.c (x_set_frame_alpha): Fix type mismatch.
13540
13541 2008-05-26 Jason Rumney <jasonr@gnu.org>
13542
13543 * w32font.c (w32font_text_extents): Zero whole metrics struct first.
13544 (compute_metrics): Don't set failure if we just cleared the cache.
13545 (w32_weight_table): Remove unused variable.
13546 (w32_enumfont_pattern_entity): Use FONT_SPACING_CHARCELL for
13547 backwards compatibility.
13548
13549 2008-05-25 Kenichi Handa <handa@m17n.org>
13550
13551 * w32term.c (x_draw_glyph_string):
13552 * xterm.c (x_draw_glyph_string): Fix calculation of underline position.
13553
13554 * xfaces.c: Delete unused function prototypes.
13555 (xstrlwr, font_frame): Delete them.
13556 (clear_face_cache): Delete unused variable.
13557
13558 * xftfont.c (xftfont_open): Delete unused variable.
13559 If underline_thickness is not 1, adjust underline_position.
13560
13561 * ftxfont.c (ftxfont_open): Delete unused variable.
13562
13563 * fontset.c (face_for_char): Optimize for the case of no charset
13564 property.
13565
13566 * font.c (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE)
13567 (check_gstring, check_otf_features, otf_list, otf_tag_symbol)
13568 (otf_open, font_otf_capability, generate_otf_features)
13569 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
13570 Comment out by surrounding "#if 0" and "#endif" for the moment.
13571 (Ffont_drive_otf, Ffont_otf_alternates): Likewise.
13572 (syms_of_font): Codes for accessing above commented out.
13573
13574 2008-05-24 Eli Zaretskii <eliz@gnu.org>
13575
13576 * w32proc.c: Include dispextern.h.
13577
13578 * w32.c: Include dispextern.h.
13579
13580 2008-05-23 Juanma Barranquero <lekktu@gmail.com>
13581
13582 * charset.c (Fencode_char, Fsplit_char): Doc fixes.
13583 (Fget_unused_iso_final_char, Fdecode_char, Fiso_charset):
13584 Fix typos in docstrings.
13585
13586 2008-05-23 Jason Rumney <jasonr@gnu.org>
13587
13588 * xsmfns.c: Remove includes that are already included by config.h.
13589
13590 2008-05-23 Kenichi Handa <handa@m17n.org>
13591
13592 * charset.c (Qemacs, charset_emacs): New variables.
13593 (char_charset): Fix for non-Unicode characters.
13594 (syms_of_charset): Define charset_emacs.
13595
13596 * w32term.c (x_draw_glyph_string): Be sure to update
13597 s->underline_thickness and s->underline_position. Be sure to draw
13598 underline within the current line area.
13599
13600 * xterm.c (x_draw_glyph_string): Be sure to update
13601 s->underline_thickness and s->underline_position. Be sure to draw
13602 underline within the current line area.
13603
13604 * fontset.c: Delete unused variables and add casting for char *
13605 throughout the file.
13606 (fontset_font): Try the fallback fonts of the current fontset
13607 before consulting the default fontset.
13608
13609 * ftfont.c (ftfont_spec_pattern): Free charset if necessary.
13610
13611 * xfont.c (xfont_list_pattern): Free names returned from XListFonts.
13612
13613 2008-05-22 Jason Rumney <jasonr@gnu.org>
13614
13615 * font.c: Don't include strings.h.
13616
13617 * dispextern.h, xfaces.c (xstrcasecmp): Rename from xstricmp.
13618
13619 * dosfns.c, fileio.c, font.c, fontset.c, image.c, macfns.c:
13620 * macterm.c, process.c, w32.c, w32fns.c, w32proc.c, xfaces.c:
13621 * xfns.c, xfont.c: All callers of stricmp and strcasecmp changed
13622 to call xstrcasecmp.
13623
13624 * xfont.c (xfont_list_pattern, compare_font_names): Use xstrcasecmp.
13625
13626 * fontset.c (fs_query_fontset): Use xstrcasecmp.
13627
13628 * font.c (font_style_to_value, font_score): Use xstrcasecmp.
13629
13630 * dosfns.c (msdos_stdcolor_idx): Use xstrcasecmp.
13631
13632 2008-05-22 Kenichi Handa <handa@m17n.org>
13633
13634 * puresize.h (BASE_PURESIZE): Increase to 1220000.
13635
13636 * font.c (font_prop_validate_style): Adjust for the format
13637 change of font_style_table.
13638
13639 * w32font.c (w32font_open_internal): Call Ffont_xlfd_name with
13640 two args.
13641
13642 * xfaces.c (x_update_menu_appearance): Call Ffont_xlfd_name with
13643 two args.
13644
13645 2008-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
13646
13647 * minibuf.c (keys_of_minibuf): Delete.
13648 * lisp.h (keys_of_minibuf): Delete.
13649 * emacs.c (main): Don't call keys_of_minibuf.
13650
13651 2008-05-22 Kenichi Handa <handa@m17n.org>
13652
13653 * ftfont.c (ftfont_resolve_generic_family): Rename from
13654 ftfont_list_generic_family. Return a single family for each
13655 generic family.
13656 (ftfont_spec_pattern): Add FC_FAMILY to pattern.
13657 (ftfont_list): Adjust for the change of ftfont_resolve_generic_family.
13658 Call font_add_log.
13659 (ftfont_match): Call font_add_log.
13660
13661 * font.h (Ffont_xlfd_name): EXFUN adjusted.
13662 (FONT_DEBUG): Define it.
13663 (font_add_log): Extern it.
13664 (font_assert): Rename from xassert.
13665
13666 * xfont.c (xfont_get_pcm): Change xassert to font_assert.
13667 (xfont_list_family): Call font_add_log.
13668 (xfont_match): Likewise.
13669 (memq_no_quit): Delete.
13670
13671 * fontset.c (fontset_from_font, Ffontset_info): Add the 2nd arg in
13672 call of Ffont_xlfd_name.
13673
13674 * xfaces.c (struct table_entry, slant_table, weight_table)
13675 (swidth_table): Move to font.c.
13676
13677 * font.c: Checking of FONT_DEBUG is moved to font.h. All calls of
13678 xassert are changed to font_assert. Delete many unused variables.
13679 (Vfont_weight_table, Vfont_slant_table, Vfont_width_table):
13680 New variables.
13681 (struct table_entry): Move from xfaces.c and modified.
13682 (weight_table, slant_table, width_table): Move from xfaces.c and
13683 contents adjusted for the change of struct table_entry.
13684 (font_style_to_value, font_style_symbolic): Adjust for the
13685 format change of font_style_table.
13686 (font_parse_family_registry): Don't overwrite existing foundry and
13687 family of font_spec.
13688 (font_score): Fix calculation of diff for sizes.
13689 (font_sort_entites): Call font_add_log.
13690 (font_delete_unmatched): Return a newly created list.
13691 (font_list_entities): Fix previous change. Call font_add_log.
13692 (font_matching_entity, font_open_entity, font_close_entity):
13693 Call font_add_log.
13694 (Ffont_xlfd_name): New arg FOLD-WILDCARDS.
13695 (Finternal_set_font_style_table): Delete.
13696 (BUILD_STYLE_TABLE): New macro.
13697 (build_style_table): New function.
13698 (Vfont_log, font_log_env_checked): New variables.
13699 (font_add_log): New function.
13700 (syms_of_font): Delete defsubr Sinternal_set_font_style_table.
13701 Declare Lisp variables "font-weight-table", "font-slant-table",
13702 "font-width-table", and "font-log". Initialize font_style_table.
13703
13704 2008-05-21 Dan Nicolaescu <dann@ics.uci.edu>
13705
13706 * xterm.c (x_set_frame_alpha): Move declarations before statements.
13707
13708 2008-05-21 Seiji Zenitani <zenitani@mac.com>
13709 Ryo Yoshitake <ryo@shiftmode.net>
13710
13711 * frame.c (Qalpha): Add a new frame parameter `alpha'.
13712 (Vframe_alpha_lower_limit): New variable.
13713 (x_set_alpha): New function.
13714
13715 * frame.h (Qalpha, Vframe_parameter_lower_limit): Export them.
13716
13717 * xfns.c (x-create-frame, Qalpha):
13718 Initialize the frame parameter `alpha'.
13719 * xterm.c (OPAQUE, OPACITY): New.
13720 (x_set_frame_alpha): New function.
13721 (frame_highlight, frame_unhighlight): Call x_set_frame_alpha.
13722
13723 * macfns.c (mac_frame_parm_handlers): A null handler for x_set_alpha.
13724 * w32fns.c (w32_frame_parm_handlers): Likewise.
13725
13726 2008-05-20 Jason Rumney <jasonr@gnu.org>
13727
13728 * w32font.c (add_font_entity_to_list): Don't add non-opentype
13729 truetype fonts to opentype list.
13730
13731 2008-05-20 Juanma Barranquero <lekktu@gmail.com>
13732
13733 * fontset.c (Ffontset_info): Doc fix.
13734 (syms_of_fontset) <font-encoding-charset-alist, use-default-ascent>:
13735 <ignore-relative-composition>: Fix typos in docstrings.
13736
13737 * font.c (syms-of-font) <font-encoding-alist>:
13738 (Ffontp, Ffont_make_gstring): Fix typos in docstrings.
13739 (Flist_fonts, Ffont_family_list, Ffont_fill_gstring, Fquery_font)
13740 (Ffont_otf_alternates): Doc fixes.
13741
13742 2008-05-20 Kenichi Handa <handa@m17n.org>
13743
13744 * Makefile.in (FONTSRC): Delete it. Change all $(FONTSRC) to
13745 font.h through out the file.
13746 (FONT_DRIVERS): Rename from FONTOBJ.
13747 (obj): Change $(FONTOBJ) to $(FONT_DRIVERS). Add font.o.
13748 (SOME_MACHINE_OBJECTS): Change $(FONTOBJ) to $(FONT_DRIVERS).
13749
13750 * emacs.c (main): Call syms_of_font unconditionally.
13751
13752 * font.h (find_font_encoding): Extern it.
13753
13754 * font.c (Vfont_encoding_alist, find_font_encoding): Move from
13755 fontset.c.
13756 (font_pixel_size) [! HAVE_WINDOW_SYSTEM]: Return 1.
13757 (font_open_entity): Update FRAME_X_DISPLAY_INFO (f)->n_fonts,
13758 FRAME_SMALLEST_CHAR_WIDTH (f), and FRAME_SMALLEST_FONT_HEIGHT (f)
13759 only when HAVE_WINDOW_SYSTEM is defined.
13760 (font_close_object): Update FRAME_X_DISPLAY_INFO (f)->n_fonts only
13761 when HAVE_WINDOW_SYSTEM is defined.
13762
13763 * fontset.c (Vfont_encoding_alist, find_font_encoding): Move to font.c.
13764 (syms_of_fontset): Move declaration of font-encoding-alist to font.c.
13765
13766 * xfaces.c: Include font.h unconditionally.
13767 (merge_face_ref, merge_face_vectors)
13768 (Finternal_set_lisp_face_attribute): Cancel the previous change.
13769
13770 2008-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
13771
13772 * xdisp.c (select_frame_for_redisplay): Adjust for last change to
13773 indirect_variable.
13774 * eval.c (lisp_indirect_variable): New fun.
13775 (Fuser_variable_p): Use it.
13776
13777 2008-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
13778
13779 * lisp.h (indirect_variable):
13780 * data.c (indirect_variable, let_shadows_buffer_binding_p):
13781 Use Lisp_Symbol pointers rather than Lisp_Object.
13782 Adjust callers.
13783 * buffer.c (buffer_slot_type_mismatch): Use wrong-type-argument.
13784 To this end, change calling-convention.
13785
13786 * minibuf.c (Finternal_complete_buffer): Only strip out hidden buffers
13787 if some non-hidden buffers are selected by string&pred.
13788
13789 2008-05-19 Chong Yidong <cyd@stupidchicken.com>
13790
13791 * process.c (wait_reading_process_output): Always check status
13792 when in batch mode.
13793
13794 2008-05-19 Kenichi Handa <handa@m17n.org>
13795
13796 * font.c (font_list_entities): Fix handling of cache.
13797 (font_matching_entity): Likewise.
13798
13799 * ftfont.c (cs_iso8859_1): Delete.
13800 (ft_face_cache): New variable.
13801 (struct ftfont_info): New member fc_charset_idx.
13802 (ftfont_build_basic_charsets): Delete.
13803 (fc_charset_table): New variable.
13804 (ftfont_pattern_entity): New arg fc_charset_idx. Store (FILENAME
13805 . FC_CHARSET_IDX) as :font-entity property in the font entity.
13806 Callers changed.
13807 (ftfont_lookup_cache, ftfont_get_charset): New functions.
13808 (ftfont_spec_pattern): New argument fc_charset_idx.
13809 Check registry more rigidly. Change callers.
13810 (ftfont_open, ftfont_close, ftfont_has_char): Adjust for the
13811 change of :font-entity property of the font.
13812
13813 * xftfont.c (xftfont_open): Adjust for the change of :font-entity
13814 property of the font.
13815
13816 2008-05-18 Juanma Barranquero <lekktu@gmail.com>
13817
13818 * coding.c (Fcoding_system_p): Rename argument to match docstring.
13819 (Funencodable_char_position, Fcheck_coding_systems_region)
13820 (Fdecode_coding_string, Fencode_coding_string): Fix typos in docstrings.
13821 (Fdetect_coding_region, Fdetect_coding_string, Fencode_coding_region)
13822 (Ffind_operation_coding_system, Fset_coding_system_priority)
13823 (Fcoding_system_eol_type): Doc fixes.
13824
13825 2008-05-17 Glenn Morris <rgm@gnu.org>
13826
13827 * sysdep.c (child_setup_tty): Handle systems with NLDLY, without FFDLY.
13828
13829 2008-05-16 Eli Zaretskii <eliz@gnu.org>
13830
13831 * dired.c (Ffile_attributes): Shut up GCC warnings about st_uid
13832 and st_gid.
13833
13834 * frame.c (Fdelete_frame): Don't call font_update_drivers if
13835 HAVE_WINDOW_SYSTEM is not defined.
13836
13837 * xfaces.c (merge_face_ref, merge_face_vectors)
13838 (Finternal_set_lisp_face_attribute): Use FONT_*_INDEX only when
13839 HAVE_WINDOW_SYSTEM is defined.
13840 (Fface_font): Fix non-HAVE_WINDOW_SYSTEM case.
13841
13842 2008-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
13843
13844 * keyboard.c (parse_menu_item): Do not cache key shortcut any more.
13845
13846 2008-05-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13847
13848 * macterm.c (x_draw_relief_rect): Remove unused variable `dpy'.
13849
13850 2008-05-15 Kenichi Handa <handa@m17n.org>
13851
13852 * font.c (font_find_for_lface): Reflect LFACE_FONT in the font
13853 preference.
13854
13855 2008-05-15 Glenn Morris <rgm@gnu.org>
13856
13857 * emacs.c (USAGE1, standard_args): Remove -disable-font-backend.
13858
13859 2008-05-15 Chong Yidong <cyd@stupidchicken.com>
13860
13861 * fns.c (init_fns): Don't initialize weak_hash_tables here.
13862 (init_weak_hash_tables): New fun. Initialize weak_hash_tables.
13863
13864 * alloc.c (init_alloc_once): Call init_weak_hash_tables.
13865
13866 2008-05-15 Kenichi Handa <handa@m17n.org>
13867
13868 * ftfont.c (ftfont_list): Downcase family name to check generic
13869 families.
13870
13871 * xfaces.c (Finternal_set_lisp_face_attribute): Be sure to make a
13872 font-spec for QCfont value.
13873
13874 * fontset.c (Fnew_fontset): Call font_unparse_xlfd with 256-byte
13875 buffer. Check the return value of it.
13876
13877 2008-05-14 Jason Rumney <jasonr@gnu.org>
13878
13879 * w32term.c (w32_get_glyph_overhangs): Remove.
13880 (w32_redisplay_interface): Use x_get_glyph_overhangs instead.
13881
13882 2008-05-14 Kenichi Handa <handa@m17n.org>
13883
13884 * font.c (font_prop_validate): Make nil a valid value.
13885 (font_clear_cache): Check if the cached vector of entities is nil
13886 or not.
13887
13888 2008-05-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13889
13890 * emacs.c (main_thread): Conditionalize on
13891 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
13892 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it.
13893
13894 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): New define.
13895 (main_thread, SIGNAL_THREAD_CHECK): Conditionalize on
13896 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
13897
13898 2008-05-14 Kenichi Handa <handa@m17n.org>
13899
13900 * coding.c (detect_coding_iso_2022): Ignore a coding category that
13901 has no corresponding coding system.
13902
13903 2008-05-14 Jason Rumney <jasonr@gnu.org>
13904
13905 * font.h (struct font) [WINDOWSNT]: Remove codepage member.
13906
13907 * w32font.h (w32font_open_internal): Update declaration.
13908
13909 * w32font.c (w32font_open_internal): Change last argument from
13910 w32font_info struct to font object. Fill in font object from
13911 font_entity. Get Outline metrics if possible. Use them to
13912 calculate underline position and thickness. Use xlfd name as name
13913 property. Don't set codepage.
13914 (w32font_open): Pass font_object to w32font_open_internal. Don't
13915 update dpyinfo->smallest_font_height and dpyinfo->smallest_char_width.
13916 (w32font_draw): Use s->font.
13917 (clear_cached_metrics): Don't clear non-existent blocks.
13918
13919 * w32term.c (w32_compute_glyph_string_overhangs): Don't compute if
13920 font was not found.
13921 (x_draw_glyph_string): Use underline position and thickness from font.
13922
13923 * w32uniscribe.c (uniscribe_open): Pass font_object to
13924 w32font_open_internal.
13925
13926 2008-05-14 Kenichi Handa <handa@m17n.org>
13927
13928 These changes are to delete all legacy font-handling codes, and
13929 make Emacs use only font-backends.
13930
13931 * Makefile.in: Delete USE_FONT_BACKEND conditionals.
13932 (frame.o, image.o, print.o): Depend on $(FONTSRC).
13933
13934 * makefile.w32-in (WIN32OBJ): Add w32reg.$(O), remove w32bdf.$(O).
13935
13936 * charset.h (Vcharset_non_preferred_head)
13937 (Vcurrent_iso639_language): Extern them.
13938
13939 * charset.c (Vcharset_non_preferred_head): New variable.
13940 (Vcurrent_iso639_language): New variable.
13941 (syms_of_charset): Declare it as a Lisp variable.
13942 (char_charset): Don't check non preferred charsets. As a last
13943 resort, return charset_unicode.
13944 (Fset_charset_priority): Update Vcharset_non_preferred_head.
13945
13946 * composite.c: Throughout the file, delete all USE_FONT_BACKEND
13947 conditionals. Don't check enable_font_backend. Delete all codes
13948 used only when USE_FONT_BACKEND is not defined.
13949
13950 * dispextern.h (struct glyph_string): Change type of `font' to
13951 `struct font *'.
13952 (struct glyph_string): New member underline_position and
13953 underline_thickness.
13954 (enum lface_attribute_index): Remove LFACE_AVGWIDTH_INDEX.
13955 (struct face): Change type of `font' to `struct font *'. Remove
13956 members `font_name', `font_info_id'.
13957 (per_char_metric, encode_char): Delete externs.
13958 (calc_pixel_width_or_height): Adjust the prototype.
13959
13960 * emacs.c (enable_font_backend): Delete extern.
13961 (main): Don't set enable_font_backend. Don't check the command
13962 line argument "-disable-font-backend".
13963
13964 * font.h (Qfont_spec, Qfont_entity, Qfont_object): Extern them.
13965 (enum font_property_index): New members FONT_DPI_INDEX,
13966 FONT_SPACING_INDEX, FONT_AVGWIDTH_INDEX, FONT_NAME_INDEX,
13967 FONT_FULLNAME_INDEX, FONT_FILE_INDEX, FONT_FORMAT_INDEX,
13968 FONT_OBJECT_MAX. Delete FONT_FRAME_INDEX.
13969 (FONT_WEIGHT_NUMERIC, FONT_SLANT_NUMERIC, FONT_WIDTH_NUMERIC)
13970 (FONT_WEIGHT_SYMBOLIC, FONT_SLANT_SYMBOLIC, FONT_WIDTH_SYMBOLIC)
13971 (FONT_WEIGHT_FOR_FACE, FONT_SLANT_FOR_FACE, FONT_WIDTH_FOR_FACE)
13972 (FONT_WEIGHT_NAME_NUMERIC, FONT_SLANT_NAME_NUMERIC)
13973 (FONT_WIDTH_NAME_NUMERIC, FONT_SET_STYLE): New macros.
13974 (struct font_spec, struct font_entity): New structs.
13975 (FONT_ENCODING_NOT_DECIDED): Moved from fontset.h.
13976 (struct font): Many members from old "struct font_info" moved to
13977 here. Members font and entity deleted.
13978 (FONT_SPEC_P, FONT_ENTITY_P, FONT_OBJECT_P, FONTP): Modified for
13979 the new font-related objects.
13980 (CHECK_FONT_SPEC, CHECK_FONT_ENTITY, CHECK_FONT_OBJECT)
13981 (CHECK_FONT_GET_OBJECT): Likewise.
13982 (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT, XSETFONT): New macros.
13983 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Moved from font.h.
13984 (struct font_driver): New members case_sensitive anc check. Type
13985 of the member list and open changed.
13986 (enable_font_backend, font_symbolic_weight, font_symbolic_slant)
13987 (font_symbolic_width, font_find_object, font_get_spec)
13988 (font_set_lface_from_name): Delete extern.
13989 (Fcopy_font_spec, Fmerge_font_spec, Ffont_family_list): New EXFUNs.
13990
13991 * font.c: Include <strings.h>.
13992 (enable_font_backend): Delete it.
13993 (Qfont_spec, Qfont_entity, Qfont_object): New variables.
13994 (CHECK_VALIDATE_FONT_SPEC): Delete it.
13995 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Moved to font.h.
13996 (null_string): Delete it.
13997 (null_vector): Make it static.
13998 (font_family_alist): Delete it.
13999 (Qnormal): Extern it.
14000 (QCextra, QClanguage): Delete it.
14001 (QClang, QCavgwidth, QCfont_entity, QCfc_unknown_spec): New variables.
14002 (font_make_spec, font_make_entity, font_make_object)
14003 (font_intern_prop): Renamed from intern_downcase. Don't downcase
14004 the string. Callers changed.
14005 (font_pixel_size): Adjusted for the format change of font-related
14006 objects.
14007 (prop_name_to_numeric, prop_numeric_to_name): Delete them.
14008 (font_style_to_value, font_style_symbolic): New function.
14009 (build_font_family_alist): Delete it.
14010 (font_registry_charsets): Use Fassoc_string instead of
14011 assq_no_quit.
14012 (font_prop_validate_symbol): Don't return null_string.
14013 (font_prop_validate_style): Adjusted for the change of
14014 style-related values in a font vector.
14015 (font_property_table): Delete entries for QClanguage and
14016 QCantialias, add entries for QCavgwidth.
14017 (get_font_prop_index): Delete the 2nd argument FROM.
14018 (font_prop_validate): Arguments changed.
14019 (font_put_extra): Adjusted for the change of font-related objects.
14020 (font_expand_wildcards, font_parse_xlfd, font_unparse_xlfd)
14021 (font_parse_fcname, font_unparse_fcname)
14022 (font_prepare_composition): Likewise.
14023 (font_parse_family_registry): Renamed from font_merge_old_spec.
14024 (otf_open): Delete the 1st arg entity.
14025 (font_otf_capability): Adjusted for the above change.
14026 (font_score): New arg alternate_families. Adjusted for the change
14027 of font-related objects.
14028 (font_sort_entites): New arg best_only.
14029 (font_symbolic_weight, font_symbolic_slant, font_symbolic_width):
14030 Delete them.
14031 (font_match_p): Check alternate families.
14032 (font_find_object): Delete it.
14033 (font_check_object): New function.
14034 (font_clear_cache): Adjusted for the change of font-related objects.
14035 (font_delete_unmatched): New arg.
14036 (font_list_entities): Call font_driver->list with a spec that
14037 doesn't specify style-related properties.
14038 (font_matching_entity): Arguments changed. Caller changed.
14039 (font_open_entity): Adjusted for the change of font-related objects.
14040 (font_close_object, font_has_char, font_encode_char)
14041 (font_get_name, font_get_spec): Likewise.
14042 (font_spec_from_name, font_clear_prop, font_update_lface):
14043 New functions.
14044 (font_find_for_lface, font_open_for_lface, font_load_for_lface)
14045 (font_prepare_for_face, font_done_for_face, font_open_by_name)
14046 (font_at): Adjusted for the change of font-related objects.
14047 (font_range): New function.
14048 (Ffontp, Ffont_spec, Ffont_get, Ffont_put, Flist_fonts)
14049 (Ffont_xlfd_name): Adjusted for the change of font-related objects.
14050 (Fcopy_font_spec, Fmerge_font_spec): New function.
14051 (Ffont_family_list): Renamed from list-families.
14052 (Finternal_set_font_style_table): Arguments changed.
14053 (Ffont_fill_gstring, Ffont_shape_text, Fopen_font)
14054 (Ffont_drive_otf, Fquery_font, Ffont_match_p): Adjusted for the
14055 change of font-related objects.
14056 (syms_of_font): Delete "ifdef USE_FONT_BACKEND". DEFSYM new symbols.
14057
14058 * fontset.h (struct font_info): Delete it. Most members go to
14059 struct font.
14060 (FONT_ENCODING_NOT_DECIDED): Moved to font.h.
14061 (enum FONT_SPEC_INDEX): Delete it.
14062 (font_info, list_fonts_func, load_font_func, query_font_func)
14063 (set_frame_fontset_func, find_ccl_program_func)
14064 (get_font_repertory_func, new_fontset_from_font_name): Delete
14065 externs.
14066 (fontset_from_font_name): Extern it.
14067 (FS_LOAD_FONT, FONT_INFO_ID, FONT_INFO_FROM_ID)
14068 (FONT_INFO_FROM_FACE): Deleted.
14069 (face_for_font): Adjust prototype.
14070
14071 * fontset.c: Throughout the file, delete all USE_FONT_BACKEND
14072 conditionals. Don't check enable_font_backend. Delete all codes
14073 used only when USE_FONT_BACKEND is not defined.
14074 (get_font_info_func, list_font_func, load_font_func)
14075 (query_font_func, set_frame_fontset_func, find_ccl_program_func)
14076 (get_font_repertory_func): Delete them.
14077 (FONTSET_SPEC, FONT_DEF_NEW, FONT_DEF_SPEC, FONT_DEF_ENCODING)
14078 (FONT_DEF_REPERTORY, RFONT_DEF_FACE, RFONT_DEF_SET_FACE)
14079 (RFONT_DEF_FONT_DEF, RFONT_DEF_SPEC, RFONT_DEF_REPERTORY)
14080 (RFONT_DEF_OBJECT, RFONT_DEF_SET_OBJECT, RFONT_DEF_SCORE)
14081 (RFONT_DEF_SET_SCORE, RFONT_DEF_NEW): New macros.
14082 (fontset_compare_rfontdef): New function.
14083 (reorder_font_vector): Remove the argument CHARSET-ID. Sort
14084 rfont-defs by qsort. Adjusted for the change of font-group vector.
14085 (load_font_get_repertory): Deleted.
14086 (fontset_find_font): Use new macros to ref/set elements of
14087 font-def and rfont-def.
14088 (fontset_font): Fix the timing of remembering that no font for C.
14089 (free_face_fontset): Do nothing if the face has no fontset.
14090 (face_suitable_for_char_p): Use new macros to ref/set elements of
14091 rfont-def.
14092 (face_for_char): Likewise. Call face_for_char with font_object.
14093 (fs_load_font): Delete. Delete #pragma surrounding it.
14094 (fs_query_fontset): Use strcasecmp instead of strcmp.
14095 (generate_ascii_font_name): Adjusted for the format change of
14096 font-spec.
14097 (Fset_fontset_font): Likewise. Use new macros to set elements of
14098 font-def.
14099 (Fnew_fontset): Use font_unparse_xlfd to generate
14100 FONTSET_ASCII (fontset).
14101 (new_fontset_from_font_name): Deleted.
14102 (fontset_from_font): Renamed from new_fontset_from_font. Check if
14103 a fontset is already created for the font. FIx updating of
14104 Vfontset_alias_alist.
14105 (fontset_ascii_font): Deleted.
14106 (Ffont_info): Adjusted for the format change of font-spec.
14107 (Finternal_char_font): Likewise.
14108 (Ffontset_info): Likewise.
14109 (syms_of_fontset): Don't check load_font_func.
14110
14111 * fns.c (internal_equal): Handle PREV_FONT.
14112
14113 * frame.h: Delete USE_FONT_BACKEND conditional.
14114
14115 * frame.c: Throughout the file, delete all USE_FONT_BACKEND
14116 conditionals. Don't check enable_font_backend. Delete all codes
14117 used only when USE_FONT_BACKEND is not defined.
14118 (x_set_font): Call x_new_font, not x_new_fontset2.
14119 (x_set_font_backend): Use FRAME_FONT macro to check if a font is
14120 already set for the frame.
14121
14122 * ftfont.c (ftfont_pattern_entity): Argument FRAME removed. Make
14123 a font-entity by font_make_entity. Use font_intern_prop instead
14124 of intern_downcase. Use FONT_SET_STYLE to set a style-related
14125 font property. If a font is scalable, set avgwidth property to 0.
14126 Set font-entity property by font_put_extra.
14127 (ftfont_list_generic_family): Argument SPEC and REGISTRY removed.
14128 (ffont_driver): Adjusted for the change of struct font_driver.
14129 (ftfont_spec_pattern): New function.
14130 (ftfont_list): Return a list, not vector.
14131 (ftfont_match): Use ftfont_spec_pattern to get a pattern.
14132 (ftfont_list_family): Don't downcase names.
14133 (ftfont_free_entity): Deleted.
14134 (ftfont_open): Return a font-object. Adjusted for the change of
14135 struct font. Get underline_thickness and underline_position from
14136 font property. Don't update dpyinfo->smallest_font_height and
14137 dpyinfo->smallest_char_width.
14138 (ftfont_close): Don't free `struct font'.
14139 (ftfont_has_char): Adjusted for the format change of font-entity.
14140 (ftfont_encode_char, ftfont_text_extents): Likewise.
14141
14142 * ftxfont.c (ftxfont_list): Return a list, not vector.
14143 (ftxfont_open): Return a font-object. Adjusted for the change of
14144 struct font. Get underline_thickness and underline_position from
14145 font property. Don't update dpyinfo->smallest_font_height and
14146 dpyinfo->smallest_char_width.
14147 (ftxfont_close): Don't decrease FRAME_X_DISPLAY_INFO (f)->n_fonts.
14148 (ftxfont_draw): Adjusted for the change of struct font.
14149
14150 * image.c (image_ascent): Don't include "charset.h". Include
14151 "character.h" and "font.h".
14152
14153 * lisp.h (enum pvec_type): New member PREV_FONT.
14154 (Fassoc_string): EXFUN it.
14155
14156 * print.c: Include font.h.
14157 (print_object): Handle font-related objects.
14158
14159 * xdisp.c: Throughout the file, delete all USE_FONT_BACKEND
14160 conditionals. Don't check enable_font_backend. Delete all codes
14161 used only when USE_FONT_BACKEND is not defined.
14162 (handle_auto_composed_prop): Do nothing if it->f is not on a
14163 window system. Check how many following characters can be
14164 displayed by the same font.
14165 (calc_pixel_width_or_height): Type of the 4th arg is changed to
14166 'struct font *'.
14167 (get_char_face_and_encoding): Assign the whole encoding task to
14168 the `encode-char' method of a font driver.
14169 (fill_composite_glyph_string): Adjusted for the change of `struct
14170 face' and `struct glyph_string'.
14171 (fill_glyph_string): Likewise.
14172 (get_per_char_metric): Arguments changed.
14173 (x_get_glyph_overhangs): Adjusted for the change of `struct face'
14174 and `struct glyph_string'.
14175 (produce_stretch_glyph, calc_line_height_property)
14176 (x_produce_glyphs): Likewise.
14177
14178 * xfaces.c: Throughout the file, delete all USE_FONT_BACKEND
14179 conditionals. Don't check enable_font_backend. Delete all codes
14180 used only when USE_FONT_BACKEND is not defined. Use
14181 FONT_XXX_NAME_NUMERIC instead of face_numeric_xxx.
14182 (QCfoundry, QCadstyle, QCregistry, QCspacing, QCsize, QCavgwidth)
14183 (Qp): Extern them.
14184 (clear_font_table, load_face_font, xlfd_lookup_field_contents):
14185 Deleted.
14186 (struct font_name): Deleted.
14187 (xlfd_numeric_value, xlfd_symbolic_value): Deleted.
14188 (compare_fonts_by_sort_order): New function.
14189 (xlfd_numeric_slant, xlfd_symbolic_slant, xlfd_numeric_weight)
14190 (xlfd_symbolic_weight, xlfd_numeric_swidth, xlfd_symbolic_swidth):
14191 Deleted.
14192 (Fx_family_fonts): Use font_list_entities, and sort fonts by
14193 compare_fonts_by_sort_order.
14194 (Fx_font_family_list): Call Ffont_family_list.
14195 (face_numeric_value, face_numeric_weight, face_numeric_slant)
14196 (face_numeric_swidth, face_symbolic_value, face_symbolic_weight)
14197 (face_symbolic_slant, face_symbolic_swidth)
14198 (split_font_name_into_vector, build_font_name_from_vector)
14199 (xlfd_fixed_p, xlfd_point_size, pixel_point_size)
14200 (font_rescale_ratio, split_font_name, build_font_name)
14201 (free_font_names, sort_fonts, x_face_list_fonts)
14202 (face_font_available_p, sorted_font_list, cmp_font_names)
14203 (font_list_1, concat_font_list, font_list, remove_duplicates):
14204 Deleted.
14205 (Fx_list_fonts): Use Ffont_list.
14206 (LFACE_AVGWIDTH): Deleted.
14207 (check_lface_attrs): Don't check LFACE_AVGWIDTH. Check LFACE_FONT
14208 by FONTP.
14209 (lface_fully_specified_p): Don't check LFACE_AVGWIDTH.
14210 (set_lface_from_font_name): Delete it.
14211 (set_lface_from_font): Renamed from
14212 set_lface_from_font_and_fontset. Caller changed. Don't set
14213 LFACE_AVGWIDTH. Use FONT_XXX_FOR_FACE to get a symbol suitable
14214 for face.
14215 (merge_face_vectors): Copy font-spec if necessary.
14216 Clear properties of the font-spec if necessary.
14217 (merge_face_ref): Clear properties of the font-spec if necessary.
14218 (Finternal_set_lisp_face_attribute): Likewise.
14219 (set_font_frame_param): Use font_load_for_lface to load a
14220 font-object, and call Fmodify_frame_parameters with it.
14221 (x_update_menu_appearance): Don't check LFACE_AVGWIDTH. Get XLFD
14222 font name by Ffont_xlfd_name.
14223 (Finternal_lisp_face_attribute_values): Don't check QCweight,
14224 QCslant, and QCwidth.
14225 (Fface_font): Get a font name from font->props[FONT_NAME_INDEX].
14226 (lface_same_font_attributes_p): Don't check LFACE_AVGWIDTH.
14227 Compare fonts by EQ.
14228 (lookup_non_ascii_face): Deleted.
14229 (face_for_font): The 2nd argument changed.
14230 (x_supports_face_attributes_p): Don't check LFACE_AVGWIDTH.
14231 Check atomic font properties by case insensitive.
14232 (realize_non_ascii_face): Set face->overstrike correctly.
14233 (realize_x_face): Likewise. Check if LFACE_FONT is a font_object.
14234 (dump_realized_face): Get font name from
14235 font->props[FONT_NAME_INDEX]. Don't print font_info_id.
14236
14237 * xfns.c: Throughout the file, delete all USE_FONT_BACKEND
14238 conditionals. Don't check enable_font_backend. Delete all codes
14239 used only when USE_FONT_BACKEND is not defined.
14240 (xic_create_xfontset): Original code deleted and renamed from
14241 xic_create_xfontset2. Use FRAME_FONT, not FRAME_FONT_OBJECT.
14242 (x_make_gc): Don't set GCFont in GCs.
14243 (Fx_create_frame) [USE_LUCID]: Set xlwmenu_default_font to a font
14244 opened by "fixed".
14245 (syms_of_xfns): Don't set get_font_info_func, load_font_func,
14246 find_ccl_program_func, query_font_func, set_frame_fontset_func,
14247 get_font_repertory_func.
14248
14249 * xfont.c: Include <stdlib.h> and "ccl.h".
14250 (struct xfont_info): New structure.
14251 (xfont_query_font): Deleted.
14252 (xfont_find_ccl_program): Renamed from x_find_ccl_program and
14253 moved from xterm.c.
14254 (xfont_driver): Adjusted for the change of struct font_driver.
14255 (compare_font_names): New function.
14256 (xfont_list_pattern): Sort font names case insensitively. Make
14257 font_entity by calling font_make_entity. Avoid auto-scaled fonts.
14258 (xfont_list): Return a list, not vector.
14259 (xfont_match): If the font doesn't have QCname property, generate
14260 a name from the other font properties.
14261 (xfont_open): Return a font-object. Adjusted for the change of
14262 struct font. Get underline_thickness and underline_position from
14263 font property. Don't update dpyinfo->smallest_font_height and
14264 dpyinfo->smallest_char_width.
14265 (xfont_close): Don't free struct font.
14266 (xfont_prepare_face): Adjusted for the change of struct font.
14267 (xfont_done_face): Deleted.
14268 (xfont_has_char): Adjusted for the change of struct font.
14269 (xfont_encode_char, xfont_draw): Likewise.
14270 (xfont_check): New function.
14271
14272 * xftfont.c (xftfont_list): Adjusted for the change of `list'
14273 callback function.
14274 (xftfont_match): Adjusted for the format change of font-entity.
14275 (xftfont_open): Adjusted for the format change of font-entity and
14276 font-object. Adjusted for the change of struct font. Return a
14277 font-object. Don't update dpyinfo->smallest_font_height and
14278 dpyinfo->smallest_char_width.
14279 (xftfont_close): Block input while calling XftFontClose.
14280 (xftfont_prepare_face): Don't block input while calling
14281 xftfont_get_colors. Adjusted for the change of struct font.
14282 (xftfont_shape): Return value of error case fixed.
14283
14284 * xrdb.c (x_load_resources): Don't setup a fontset resource.
14285
14286 * xterm.h: Throughout the file, delete all USE_FONT_BACKEND
14287 conditionals.
14288 (FONT_WIDTH): Return (f)->max_width.
14289 (struct x_display_info): Delete member `font'.
14290 (x_list_fonts, x_get_font_info, x_load_font, x_query_font)
14291 (x_find_ccl_program, x_get_font_repertory): Delete externs.
14292 (struct x_output): Change type of `font' to `struct font *'.
14293
14294 * xterm.c: Throughout the file, delete all USE_FONT_BACKEND
14295 conditionals. Don't check enable_font_backend. Delete all codes
14296 used only when USE_FONT_BACKEND is not defined. Don't include ccl.h.
14297 (x_per_char_metric, x_encode_char): Deleted.
14298 (x_set_cursor_gc, x_set_mouse_face_gc): Don't set GCFont.
14299 (x_compute_glyph_string_overhangs): Adjusted for the change of
14300 `struct face'.
14301 (x_draw_glyph_string_foreground)
14302 (x_draw_composite_glyph_string_foreground): Likewise.
14303 (x_draw_glyph_string): Likewise. Use font->underline_position and
14304 font->underline_thickness.
14305 (x_new_font): Renamed from x_new_fontset2.
14306 (x_new_fontset, x_get_font_info, x_list_fonts): Deleted.
14307 (x_check_font): Call `check' method of a font driver.
14308 (x_font_min_bounds, x_compute_min_glyph_bounds, x_load_font)
14309 (x_query_font, x_get_font_repertory): Deleted.
14310 (x_find_ccl_program): Renamed and moved to xfont.c.
14311 (x_redisplay_interface): Adjusted for the change of `struct
14312 redisplay_interface'.
14313
14314 * w32fns.c: Throughout the file, delete all USE_FONT_BACKEND
14315 conditionals. Don't check enable_font_backend. Delete all codes
14316 used only when USE_FONT_BACKEND is not defined. Surround non-used
14317 code by "#ifdef OLD_FONT" and "endif".
14318 (Fw32_select_font): Use FONT_COMPAT to get old font structure.
14319
14320 * w32font.h (struct w32font_info): New member.
14321 (FONT_COMPAT): New macro.
14322 (w32font_open_internal): Prototype adjusted.
14323
14324 * w32gui.h (XGCValues): Surround `XFontStruct *font' by "if
14325 OLD_FONT" and "endif".
14326
14327 * w32font.c: Throughout the file, delete all USE_FONT_BACKEND
14328 conditionals. Don't check enable_font_backend. Delete all codes
14329 used only when USE_FONT_BACKEND is not defined.
14330 (w32font_open): Return a font-object. Make a font-object by
14331 font_make_object. Adjusted for the change of struct w32font_info.
14332 (w32font_close): Don't free struct font. Adjusted for the change
14333 of struct w32font_info.
14334 (w32font_encode_char, w32font_text_extents, w32font_draw):
14335 Adjusted for the change of struct w32font_info.
14336 (w32font_draw): Likewise.
14337 (w32font_list_internal): Return a list, not vector.
14338 (w32font_open_internal): Change the 4th arg to font-object.
14339 Adjusted for the change of struct w32font_info and font-object format.
14340 (add_font_name_to_list): Don't downcase names.
14341 (w32_enumfont_pattern_entity): Make a font-entity by
14342 font_make_entity. Adjusted for the format change of font-entity.
14343 Use FONT_SET_STYLE to set a style-related font property. If a
14344 font is scalable, set avgwidth property to 0. Set font-entity
14345 property by font_put_extra.
14346 (font_matches_spec): Adjusted for the format change of font-entity.
14347 (w32_weight_table, w32_decode_weight): New variables.
14348 (w32_encode_weight): New function.
14349 (fill_in_logfont): Adjusted for the format change of font-spec.
14350 (w32font_full_name): Use FONT_WEIGHT_SYMBOLIC to get a symbol
14351 weight value.
14352 (w32font_driver): Adjusted for the change of struct font_driver.
14353
14354 * w32term.h: Throughout the file, delete all USE_FONT_BACKEND
14355 conditionals. Don't check enable_font_backend. Surround non-used
14356 code by "#ifdef OLD_FONT" and "endif".
14357 (FONT_WIDTH, FONT_HEIGHT, FONT_BASE, FONT_DESCENT)
14358 (FONT_AVG_WIDTH): Adjusted for the change of struct font.
14359
14360 * w32term.c: Throughout the file, delete all USE_FONT_BACKEND
14361 conditionals. Don't check enable_font_backend. Delete all codes
14362 used only when USE_FONT_BACKEND is not defined. Surround non-used
14363 code by "#ifdef OLD_FONT" and "endif".
14364
14365 * w32uniscribe.c: Delete USE_FONT_BACKEND conditional.
14366 (uniscribe_open): Return value changed to font-object.
14367 Adjusted for the format change of font-object.
14368 (uniscribe_otf_capability): Adjusted for the change of struct font.
14369 (add_opentype_font_name_to_list): Don't downcase names.
14370 (uniscribe_font_driver): Adjusted for the change of struct
14371 font_driver.
14372
14373 2008-05-13 Chong Yidong <cyd@stupidchicken.com>
14374
14375 * dispnew.c (update_frame_1): Check if tty output is still valid
14376 before flushing it.
14377
14378 2008-05-13 Jan Djärv <jan.h.d@swipnet.se>
14379
14380 * xterm.c (handle_one_xevent): Don't pass buttons higher than 3
14381 to Gtk+ menus.
14382
14383 2008-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
14384
14385 * dired.c (file_name_completion): Tweak the code so as to always do it
14386 in a single pass. Tighten the scope of some variables.
14387
14388 * dired.c (Qdefault_directory): New var.
14389 (file_name_completion): Use it instead of Fexpand_file_name.
14390 (syms_of_dired): Initialize it.
14391
14392 2008-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
14393
14394 * fileio.c (double_dollars): Remove dead code.
14395
14396 2008-05-10 Eli Zaretskii <eliz@gnu.org>
14397
14398 * dired.c (Ffile_attributes, Fdirectory_files_and_attributes):
14399 Mention w32-get-true-file-attributes in doc string.
14400
14401 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
14402
14403 2008-05-09 Glenn Morris <rgm@gnu.org>
14404
14405 * fileio.c (Fread_file_name): Remove reference to insdef, deleted
14406 2008-04-23.
14407
14408 2008-05-09 Eli Zaretskii <eliz@gnu.org>
14409
14410 Support for reporting owner and group of each file on MS-Windows:
14411 * dired.c (stat_uname, stat_gname): New functions, with special
14412 implementation for w32.
14413 (Ffile_attributes): Use them instead of getpwuid and getgrgid.
14414
14415 * w32.c: Rename the_passwd_* to dflt_passwd_*.
14416 (dflt_group_name): New static variable.
14417 (dflt_group): Rename from the_group.
14418 (init_user_info): Init dflt_group fields. Get user's group name
14419 from LookupAccountSid.
14420 (g_b_init_get_file_security, g_b_init_get_security_descriptor_owner)
14421 (g_b_init_get_security_descriptor_group, g_b_init_is_valid_sid):
14422 New initialization states.
14423 (globals_of_w32): Initialize them to zero. Initialize the default
14424 group name to "None".
14425 (GetFileSecurity_Name): New global var, the name of the function
14426 to call for GetFileSecurity.
14427 (GetFileSecurity_Proc, GetSecurityDescriptorOwner_Proc)
14428 (GetSecurityDescriptorGroup_Proc, IsValidSid_Proc): New typedefs.
14429 (get_file_security, get_security_descriptor_owner)
14430 (get_security_descriptor_group, is_valid_sid)
14431 (get_file_security_desc, get_rid, get_name_and_id)
14432 (get_file_owner_and_group): New functions.
14433 (stat): Use get_file_security_desc and get_file_owner_and_group to
14434 report the owner and primary group of each file. Don't ignore the
14435 high 32 bits of file's size, now that st_size is 64-bit wide.
14436 Fix test when to get true file attributes.
14437 (init_user_info): Use get_rid instead of equivalent inline code.
14438 (fstat): Don't ignore the high 32 bits of file's size.
14439
14440 2008-05-09 Chong Yidong <cyd@stupidchicken.com>
14441
14442 * image.c (png_load): Use correct bit-depth for setting background
14443 color.
14444
14445 2008-05-08 Eli Zaretskii <eliz@gnu.org>
14446
14447 * Makefile.in (lisp, shortlisp): Rename epa-file-hook.elc to
14448 epa-hook.elc.
14449
14450 2008-05-08 Juanma Barranquero <lekktu@gmail.com>
14451
14452 * font.c (Ffont_match_p): Don't use `iff' in docstring.
14453
14454 2008-05-07 Dan Nicolaescu <dann@ics.uci.edu>
14455
14456 * macfns.c (Fx_create_frame): Make a copy of frame parameters
14457 because the original parameters are in pure storage now.
14458 (mac_window): Remove unused params. Update callers.
14459
14460 2008-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
14461
14462 * lread.c (substitute_object_recurse): Use lower-level primitives.
14463 Don't signal errors when traversing sub-char-tables.
14464 Don't loop over all the possible characters when traversing char-tables.
14465
14466 * print.c (print_preprocess): Add sub-char-tables to the print-table,
14467 just like we do in print.c.
14468
14469 2008-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
14470
14471 * minibuf.c (Ftry_completion): Remove code left over from when we used
14472 scmp instead of Fcompare_strings.
14473
14474 2008-05-04 Juanma Barranquero <lekktu@gmail.com>
14475
14476 * w32fns.c (Fw32_battery_status): Fix computation of %t (h:min) format.
14477
14478 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14479
14480 * image.c [USE_MAC_IMAGE_IO] (image_load_image_io):
14481 Create bitmap context in native byte order.
14482
14483 * macterm.c (XDrawLine)
14484 (XCreatePixmapFromBitmapData) [USE_MAC_IMAGE_IO]: Create bitmap
14485 context in native byte order.
14486
14487 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14488
14489 * config.in: Regenerate.
14490
14491 * image.c (PIX_MASK_DRAW, PIX_MASK_RETAIN) [USE_MAC_IMAGE_IO]:
14492 New definitions for Image I/O support.
14493 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
14494 (mac_create_cg_image_from_image, x_create_x_image_and_pixmap)
14495 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
14496 (mac_data_provider_release_data, image_load_image_io)
14497 [USE_MAC_IMAGE_IO]: New functions.
14498 (CGImageCreateWithPNGDataProviderProcType) [MAC_OSX]: Remove typedef.
14499 (MyCGImageCreateWithPNGDataProvider) [MAC_OSX]: Remove variable.
14500 (init_image_func_pointer) [MAC_OSX]: Remove function.
14501 (image_load_quartz2d) [MAC_OSX]: Check availability of
14502 CGImageCreateWithPNGDataProvider at compile time.
14503 Use lowercase `false' for boolean constant.
14504 (png_load, jpeg_load, tiff_load, gif_load) [USE_MAC_IMAGE_IO]:
14505 Use image_load_image_io.
14506 (png_load) [!USE_MAC_IMAGE_IO && MAC_OSX]:
14507 Don't check MyCGImageCreateWithPNGDataProvider.
14508 (init_image) [MAC_OSX && TARGET_API_MAC_CARBON]:
14509 Don't call init_image_func_pointer.
14510
14511 * macgui.h (Pixmap) [USE_MAC_IMAGE_IO]: New definition for Image I/O.
14512
14513 * macterm.c (mac_cg_color_space_rgb) [USE_CG_DRAWING]:
14514 Make variable non-static.
14515 (XDrawLine, XCreatePixmap, XCreatePixmapFromBitmapData, XFreePixmap)
14516 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
14517
14518 * macterm.h (ARGB_TO_ULONG, ALPHA_FROM_ULONG): New macros.
14519 (RED_FROM_ULONG): Mask off higher bits.
14520 (mac_cg_color_space_rgb) [USE_MAC_IMAGE_IO]: New extern.
14521
14522 * s/darwin.h [HAVE_CARBON && HAVE_AVAILABILITYMACROS_H]:
14523 Include AvailabilityMacros.h.
14524 (USE_MAC_IMAGE_IO, LIBS_IMAGE) [HAVE_CARBON]: New defines.
14525 (LIBS_CARBON) [HAVE_CARBON]: Use LIBS_IMAGE.
14526
14527 2008-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
14528
14529 * chartab.c (Fset_char_table_range): If range is t, really set all
14530 chars to that value.
14531
14532 2008-05-03 Eli Zaretskii <eliz@gnu.org>
14533
14534 * dired.c (Ffile_attributes): Don't allow the device number become
14535 negative.
14536
14537 2008-05-02 Daiki Ueno <ueno@unixuser.org>
14538
14539 * Makefile.in (lisp, shortlisp): Add epa-file-hook.elc.
14540
14541 2008-05-02 Juri Linkov <juri@jurta.org>
14542
14543 * minibuf.c (Fread_from_minibuffer, Fread_string, Fread_command)
14544 (Fread_variable, Fread_buffer, Fcompleting_read): Document the
14545 DEFAULT argument as a list of default values in docstrings.
14546
14547 2008-05-01 Chong Yidong <cyd@stupidchicken.com>
14548
14549 * puresize.h (BASE_PURESIZE): Increase to 1210000.
14550
14551 2008-05-01 Martin Rudalics <rudalics@gmx.at>
14552
14553 * dispnew.c (change_frame_size_1): Preserve small windows when
14554 shrinking frames by calling set_window_height|width with third
14555 arg 2.
14556
14557 * window.h (struct window): Replace field too_small_ok by field
14558 resize_proportionally.
14559
14560 * window.c (make_window): Initialize resize_proportionally.
14561 (enlarge_window): Temporarily set resize_proportionally to make
14562 sure that shrink_windows does scale the window proportionally.
14563 (shrink_windows): When window has resize_proportionally set try
14564 to shrink it proportionally by stealing from other windows.
14565 (struct saved_window, Fset_window_configuration)
14566 (compare_window_configurations): Handle resize_proportionally.
14567 (WINDOW_TOTAL_SIZE): New macro.
14568 (window_min_size, shrink_windows, size_window): Use it.
14569 (check_min_window_sizes): Remove. Invalid values of
14570 window-min-height|width are handled by window_min_size_2 now.
14571 (size_window, Fsplit_window, enlarge_window)
14572 (adjust_window_trailing_edge, grow_mini_window): Don't call
14573 check_min_window_sizes.
14574 (window_min_size_2, window_min_size_1, window_min_size):
14575 New argument safe_p for retrieving "safe" minimum sizes.
14576 (Fdisplay_buffer, Fsplit_window, enlarge_window)
14577 (adjust_window_trailing_edge, grow_mini_window):
14578 Adjust arguments of window_min_size... functions.
14579 (shrink_windows): Argument min_size removed. New argument
14580 safe_p allows shrinking windows to their safe minimum sizes.
14581 Calculate minimum size and decide whether a window shall be
14582 deleted for each window individually.
14583 (size_window): When nodelete_p equals 2, tell shrink_windows to
14584 delete windows only if their new minimum size is no more safe.
14585 (shrink_window_lowest_first): Call window_min_size_1 to make
14586 sure to preserve modeline of bottom-most window when resizing
14587 the minibuffer.
14588 (Fset_window_configuration, Fcurrent_window_configuration)
14589 (compare_window_configurations): Do not handle
14590 window-min-height|width any more.
14591 (syms_of_window): Clarify window-min-height|width doc-strings.
14592
14593 2008-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
14594
14595 * dired.c (file_name_completion): Fix up the encoding/decoding issue
14596 some more. Copy some of the code from Ftry_completions.
14597 Remove special case code that dates back to initial revision when the
14598 slash was only added when necessary and that can't trigger nowadays.
14599
14600 2008-04-27 Kenichi Handa <handa@m17n.org>
14601
14602 * font.c (font_prop_validate): Signal `error' instead of `font'.
14603
14604 2008-04-29 Jason Rumney <jasonr@gnu.org>
14605
14606 * w32fns.c (Fw32_battery_status): New defun.
14607 (syms_of_w32fns): Defsubr it.
14608
14609 2008-04-28 Andreas Schwab <schwab@suse.de>
14610
14611 * dired.c (file_name_completion): Fix another mixing of encoded
14612 and decoded names.
14613
14614 2008-04-28 Juanma Barranquero <lekktu@gmail.com>
14615
14616 * w32fns.c (Fw32_define_rgb_color): Fix typo in docstring.
14617
14618 2008-04-27 Juanma Barranquero <lekktu@gmail.com>
14619
14620 * fringe.c (Fdefine_fringe_bitmap): Doc fix.
14621
14622 2008-04-27 Andreas Schwab <schwab@suse.de>
14623
14624 * dired.c (file_name_completion): Fix inappropriate mixing of
14625 encoded and decoded names.
14626
14627 * xterm.c (XTread_socket): Fix use of uninitialized variable.
14628
14629 * puresize.h (BASE_PURESIZE): Increase to 1200000.
14630
14631 2008-04-26 Eli Zaretskii <eliz@gnu.org>
14632
14633 * dired.c (Ffile_attributes) [WINDOWSNT]: Undo change from
14634 2008-03-31, it's not needed anymore with `struct stat' definition
14635 on nt/inc/sys/stat.h. Undo changes from 2007-01-12 and 2007-01-13
14636 for the same reasons.
14637
14638 2008-04-25 Dennis Gilmore <ausil@fedoraproject.org> (tiny change)
14639
14640 * m/sparc.h: Additional redefinitions for GNU/Linux.
14641
14642 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14643
14644 * macterm.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: New variable.
14645 (syms_of_macterm) [USE_MAC_TSM]: Defvar it.
14646 (Qmouse_drag_overlay) [MAC_OSX]: New variable.
14647 (syms_of_macterm) [MAC_OSX]: Intern and staticpro it.
14648 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
14649 (mac_ax_selected_text_range) [MAC_OSX]: New functions.
14650 (mac_ax_number_of_characters) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
14651 Likewise.
14652
14653 * mactoolbox.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: Add extern.
14654 (fast_find_position, x_y_to_hpos_vpos, mac_ax_selected_text_range)
14655 (mac_ax_number_of_characters): Add externs.
14656 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
14657 [USE_MAC_TSM]: Likewise.
14658 (mac_handle_text_input_event) [MAC_OSX]:
14659 Handle kEventTextInputOffsetToPos for no active input area case.
14660 Handle kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
14661 (mac_handle_document_access_event)
14662 [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: New function.
14663 (install_application_handler) [MAC_OSX]: Register handlers for
14664 kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
14665 (install_application_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
14666 Register mac_handle_document_access_event.
14667
14668 * xdisp.c (x_y_to_hpos_vpos, fast_find_position) [HAVE_CARBON]:
14669 Make functions non-static.
14670
14671 2008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
14672
14673 * fileio.c (Vread_file_name_function, Vread_file_name_predicate)
14674 (read_file_name_completion_ignore_case, insert_default_directory)
14675 (Qdefault_directory): Move to minibuffer.el.
14676 (Fread_file_name): Call the new `read-file-name' instead.
14677
14678 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14679
14680 * mac.c (create_apple_event) [TARGET_API_MAC_CARBON]:
14681 Make function non-static.
14682 (create_apple_event_from_event_ref) [TARGET_API_MAC_CARBON]:
14683 Remove function.
14684 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
14685 Move to mactoolbox.c.
14686 (mac_event_parameters_to_lisp) [TARGET_API_MAC_CARBON]: New function.
14687
14688 * macgui.h (CGFloat) [!CGFLOAT_DEFINED]: New typedef.
14689 (mac_rect_make): New macro.
14690
14691 * macterm.c (mac_draw_image_string_atsui) [MAC_OSX]: Use CGFloat
14692 instead of float.
14693 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
14694 (init_cg_color, mac_draw_line, mac_draw_cg_image, XSetForeground)
14695 (XSetBackground) [USE_CG_DRAWING]: Likewise.
14696 (mac_draw_image_string_atsui) [MAC_OSX]: Use mac_rect_make instead of
14697 CGRectMake.
14698 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
14699 (mac_erase_rectangle, mac_draw_cg_image, mac_fill_rectangle)
14700 (mac_set_clip_rectangles) [USE_CG_DRAWING]: Likewise.
14701 (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
14702 instead of WindowRef in argument type.
14703 (XCreatePixmap) [!MAC_OS8]: Don't call SetPortWindowPort.
14704 (mac_invert_rectangle): Use CGContextSetBlendMode if available.
14705 (mac_set_clip_rectangles, mac_reset_clip_rectangles): Take argument F
14706 instead of DISPLAY. All uses changed.
14707 (mac_handle_size_change): Don't call SET_FRAME_GARBAGED.
14708 (x_calc_absolute_position): Simplify so as not to use
14709 FRAME_PIXEL_WIDTH/FRAME_PIXEL_HEIGHT.
14710
14711 * macterm.h (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
14712 instead of WindowRef in argument type.
14713 (create_apple_event_from_event_ref, create_apple_event_from_drag_ref)
14714 [TARGET_API_MAC_CARBON]: Remove externs.
14715 (create_apple_event, mac_event_parameters_to_lisp)
14716 [TARGET_API_MAC_CARBON]: Add externs.
14717
14718 * mactoolbox.c (Vmac_ts_script_language_on_focus)
14719 (saved_ts_script_language_on_focus) [USE_MAC_TSM]: Remove externs.
14720 (XTread_socket) [USE_MAC_TOOLBAR]: Select window if its structure part
14721 is clicked.
14722 (x_activate_menubar): Remove extern for saved_menu_event_location.
14723 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
14724 Move from mac.c.
14725
14726 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14727
14728 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT] (uninterrupt_malloc)
14729 [HAVE_GTK_AND_PTHREAD && !DOUG_LEA_MALLOC]: Don't use recursive mutex.
14730
14731 2008-04-23 Jason Rumney <jasonr@gnu.org>
14732
14733 * w32.c (stat): When Vw32_get_true_file_attributes is Qlocal, get
14734 attributes only for local files.
14735
14736 * w32proc.c (syms_of_ntproc): Change Vw32_get_true_file attributes
14737 default to Qlocal.
14738
14739 2008-04-22 Juri Linkov <juri@jurta.org>
14740
14741 * buffer.c (Fswitch_to_buffer): Change interactive spec to call
14742 read-buffer-to-switch instead of using the letter "B".
14743
14744 2008-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
14745
14746 * fileio.c (Qdefault_directory): New variable.
14747 (Fread_file_name): Use it to pass `dir' to the completion functions.
14748
14749 2008-04-20 Chong Yidong <cyd@stupidchicken.com>
14750
14751 * xdisp.c (pos_visible_p): Check if iterator stops on a display string.
14752
14753 2008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
14754
14755 * keyboard.c (Vpre_help_message): Remove.
14756 (show_help_echo): Remove default C code.
14757
14758 * dired.c (directory_files_internal, file_name_completion):
14759 Only call ENCODE_FILE if the string is indeed decoded.
14760
14761 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
14762
14763 * Makefile.in (TOOLKIT_DEFINES): Remove.
14764 (LIBW): Use a bit less #if, remove left over OPEN_LOOK stuff.
14765
14766 2008-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14767
14768 * Makefile.in (MAC_OBJ): Add mactoolbox.o.
14769 (mactoolbox.o): New target.
14770
14771 * mac.c [MAC_OSX] (select_and_poll_event, sys_select):
14772 Use mac_run_loop_run_once instead of CFRunLoopRunInMode.
14773
14774 * macfns.c (x_set_background_color, mac_window, x_create_tip_frame):
14775 Use mac_set_frame_window_background instead of XSetWindowBackground.
14776 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]:
14777 Use mac_is_window_toolbar_visible instead of IsWindowToolbarVisible.
14778 (x_set_name_internal) [TARGET_API_MAC_CARBON]: Use mac_set_window_title
14779 instead of SetWindowTitleWithCFString.
14780 (mac_update_proxy_icon) [TARGET_API_MAC_CARBON]: Remove BLOCK_INPUT.
14781 Move function to mactoolbox.c.
14782 (mac_update_title_bar) [TARGET_API_MAC_CARBON]:
14783 Use mac_set_window_modified instead of SetWindowModified.
14784 Add BLOCK_INPUT around mac_set_window_modified/mac_update_proxy_icon.
14785 (mac_window, x_create_tip_frame): Use mac_create_frame_window.
14786 (Fx_focus_frame): Use mac_front_non_floating_window instead of
14787 FrontNonFloatingWindow. Use mac_activate_window instead of
14788 ActivateWindow. Use mac_active_non_floating_window instead of
14789 ActiveNonFloatingWindow.
14790 (show_hourglass, hide_hourglass) [TARGET_API_MAC_CARBON]:
14791 Use mac_show_hourglass and mac_hide_hourglass.
14792 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use mac_get_global_mouse
14793 instead of GetGlobalMouse.
14794 (Fx_show_tip): Use mac_move_window/mac_size_window/mac_show_window
14795 instead of MoveWindow/SizeWindow/ShowWindow, respectively.
14796 Use mac_bring_window_to_front instead of BringToFront.
14797 (Qfile_name_history) [TARGET_API_MAC_CARBON]: Move extern to
14798 mactoolbox.c.
14799 (Fx_file_dialog) [TARGET_API_MAC_CARBON]: Move function body to
14800 mac_file_dialog in mactoolbox.c. Use mac_file_dialog.
14801 (mac_nav_event_callback) [TARGET_API_MAC_CARBON]: Move function to
14802 mactoolbox.c.
14803
14804 * macgui.h [!HAVE_CARBON]: Include Quickdraw.h instead of QuickDraw.h.
14805 (XtPointer): Move typedef from macmenu.c.
14806 (enum button_type): Move enum from macmenu.c.
14807 (widget_value): Move typedef from macmenu.c.
14808 (M_APPLE, I_ABOUT, EXTRA_STACK_ALLOC, ARGV_STRING_LIST_ID)
14809 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
14810 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
14811 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
14812 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
14813 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
14814 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
14815 (DIALOG_ICON_TOP_MARGIN): Move defines from macmenu.c.
14816 (Selection): Move typedef from macselect.c.
14817 (RAM_TOO_LARGE_ALERT_ID, ABOUT_ALERT_ID) [MAC_OS8]: Move defines from
14818 macterm.c.
14819 (mac_set_window_title, mac_set_window_modified, mac_is_window_visible)
14820 (mac_is_window_collapsed, mac_bring_window_to_front)
14821 (mac_send_window_behind, mac_hide_window, mac_show_window)
14822 (mac_collapse_window, mac_front_non_floating_window)
14823 (mac_active_non_floating_window, mac_activate_window)
14824 (mac_move_window_structure, mac_move_window, mac_size_window)
14825 (mac_get_global_mouse, mac_is_window_toolbar_visible): New defines.
14826
14827 * macmenu.c [!TARGET_API_MAC_CARBON]: Move includes to mactoolbox.c.
14828 (enum mac_menu_kind): Move enum to mactoolbox.c.
14829 (min_menu_id): Move variable to mactoolbox.c.
14830 (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]: Likewise.
14831 (DIALOG_WINDOW_RESOURCE): Move define to mactoolbox.c.
14832 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
14833 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
14834 [TARGET_API_MAC_CARBON]: Likewise.
14835 (XtPointer): Move typedef to macgui.h.
14836 (enum button_type): Move enum to macgui.h.
14837 (widget_value): Move typedef to macgui.h.
14838 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
14839 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
14840 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
14841 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
14842 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
14843 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
14844 (DIALOG_ICON_TOP_MARGIN): Move defines to macgui.h.
14845 (popup_activated_flag): Make variable non-static.
14846 (x_activate_menubar, install_menu_quit_handler, pop_down_menu)
14847 (add_menu_item, fill_menu, dispose_menus):
14848 Move functions to mactoolbox.c.
14849 (restore_show_help_function, menu_target_item_handler)
14850 (install_menu_target_item_handler, mac_handle_dialog_event)
14851 (install_dialog_event_handler, pop_down_dialog, create_and_show_dialog)
14852 [TARGET_API_MAC_CARBON]: Likewise.
14853 (menu_quit_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: Likewise.
14854 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
14855 (find_and_call_menu_selection, name_is_separator): Make function
14856 non-static.
14857 (Vshow_help_function, timer_check) [TARGET_API_MAC_CARBON]: Move extern
14858 to mactoolbox.c.
14859 (set_frame_menubar): Don't call install_menu_quit_handler.
14860 (menu_item_selection): New variable.
14861 (mac_menu_show): Use create_and_show_popup_menu.
14862 (create_and_show_dialog) [TARGET_API_MAC_CARBON]: Don't return
14863 selection but set variable menu_item_selection. All uses changed.
14864 (mac_fill_menubar): Rename from fill_menubar. All uses changed.
14865 Call install_menu_quit_handler. Move to mactoolbox.c.
14866
14867 * macselect.c [!TARGET_API_MAC_CARBON]: Don't include Scrap.h.
14868 (Selection): Move typedef to macgui.h.
14869 (Vselection_converter_alist, Qmac_scrap_name, Qmac_ostype)
14870 (Vmac_apple_event_map, Qmac_apple_event_class, Qmac_apple_event_id):
14871 Make variables non-static.
14872 (Vmac_dnd_known_types) [TARGET_API_MAC_CARBON]: Likewise.
14873 (mac_handle_apple_event, cleanup_all_suspended_apple_events):
14874 Make functions non-static.
14875 (Vmac_service_selection) [MAC_OSX]: Likewise.
14876 (mac_get_selection_from_symbol, get_flavor_type_from_symbol)
14877 (mac_valid_selection_target_p, mac_clear_selection)
14878 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
14879 (mac_put_selection_value, mac_selection_has_target_p)
14880 (mac_get_selection_value, mac_get_selection_target_list)
14881 (init_apple_event_handler, install_drag_handler, remove_drag_handler):
14882 Move functions to mactoolbox.c.
14883 (mac_do_track_drag, mac_do_receive_drag) [TARGET_API_MAC_CARBON]:
14884 Likewise.
14885 (copy_scrap_flavor_data, mac_handle_service_event)
14886 (install_service_handler) [MAC_OSX]: Likewise.
14887 (syms_of_macselect) <Vmac_dnd_known_types>:
14888 Use mac_dnd_default_known_types.
14889
14890 * macterm.h (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y):
14891 Move to mactoolbox.c.
14892 (HOURGLASS_WIDTH, HOURGLASS_HEIGHT): Change to 15.
14893 (Fx_selection_owner_p): Add EXFUN.
14894 (install_window_handler, remove_window_handler, XSetWindowBackground):
14895 Remove externs.
14896 (do_apple_menu) [!TARGET_API_MAC_CARBON]: Likewise.
14897 (mac_prepare_for_quickdraw) [USE_CG_DRAWING]: Likewise.
14898 (x_raise_frame, x_lower_frame, mac_alert_sound_play)
14899 (install_application_handler, mac_get_frame_bounds, mac_get_frame_mouse)
14900 (mac_convert_frame_point_to_global, mac_set_frame_window_background)
14901 (mac_update_begin mac_update_end, mac_frame_up_to_date, x_flush)
14902 (mac_create_frame_window, mac_dispose_frame_window, mac_begin_clip)
14903 (mac_end_clip, mac_create_scroll_bar, mac_dispose_scroll_bar)
14904 (mac_set_scroll_bar_bounds, mac_redraw_scroll_bar, mac_fill_menubar)
14905 (create_and_show_popup_menu, mac_get_selection_from_symbol)
14906 (mac_valid_selection_target_p, mac_clear_selection)
14907 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
14908 (mac_put_selection_value, mac_selection_has_target_p)
14909 (mac_get_selection_value, mac_get_selection_target_list): Add externs.
14910 (mac_update_proxy_icon, mac_show_hourglass, mac_hide_hourglass)
14911 (mac_reposition_hourglass, mac_file_dialog, create_and_show_dialog)
14912 (mac_dnd_default_known_types) [TARGET_API_MAC_CARBON]: Likewise.
14913 (mac_run_loop_run_once) [MAC_OSX]: Likewise.
14914 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
14915 (mac_begin_cg_clip, mac_end_cg_clip) [USE_CG_DRAWING]: Likewise.
14916 (x_set_toolkit_scroll_bar_thumb) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
14917 (x_scroll_bar_set_handle) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
14918
14919 * mactoolbox.c: New file.
14920
14921 2008-04-18 Jason Rumney <jasonr@gnu.org>
14922
14923 * dired.c (Ffile_attributes) [WINDOWSNT]: Cast uid and gid to unsigned.
14924
14925 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
14926
14927 * character.c (Fmultibyte_char_to_unibyte):
14928 Return latin1 chars unchanged.
14929
14930 * fileio.c (Fexpand_file_name): Refine last fix so `nm' is only
14931 relocated if it points to `name'.
14932
14933 2008-04-17 Kenichi Handa <handa@m17n.org>
14934
14935 * data.c (Faset): Allow setting a multibyte character in an
14936 ASCII-only unibyte string.
14937
14938 * lisp.h (STRING_SET_MULTIBYTE): New macro.
14939
14940 2008-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
14941
14942 * Makefile.in: Don't use HAVE_GTK and don't -DUSE_GTK since it's now
14943 done in config.h.
14944
14945 2008-04-16 Juanma Barranquero <lekktu@gmail.com>
14946
14947 * character.c (Fchar_bytes, Fchar_width, Fstring_width)
14948 (Fchar_direction): Add usage in the docstring.
14949
14950 2008-04-15 Chong Yidong <cyd@stupidchicken.com>
14951
14952 * keyboard.c (read_key_sequence): Remove always-true checks.
14953
14954 2008-04-14 Jason Rumney <jasonr@gnu.org>
14955
14956 * w32font.c (w32font_open_internal): Set max_bounds.descent in
14957 compatibility struct, for better underline positioning.
14958
14959 2008-04-13 David Hansen <david.hansen@gmx.net>
14960
14961 * dbusbind.c (dbus-get-unique-name): Remove extra copying of name
14962 string.
14963
14964 2008-04-12 Dan Nicolaescu <dann@ics.uci.edu>
14965
14966 * m/hp800.h (XUINT, XSET): Remove.
14967
14968 2008-04-12 Juanma Barranquero <lekktu@gmail.com>
14969
14970 * fileio.c (Fexpand_file_name): Add declaration for `p' missing in
14971 previous change.
14972
14973 2008-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
14974
14975 * fileio.c (Fexpand_file_name): Tighten the scope of `p' and `o' vars.
14976 Relocate `nm' after calling DECODE_FILE, in case the GC was run.
14977
14978 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
14979
14980 * keymap.h (map_keymap_canonical): Declare.
14981 * xmenu.c (single_keymap_panes): Use it.
14982
14983 2008-04-11 Glenn Morris <rgm@gnu.org>
14984
14985 * eval.c (Fdefvaralias): If the alias is bound and the target is not,
14986 set the target's value to that of the alias.
14987
14988 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
14989
14990 * term.c (set_tty_color_mode): Left over typo.
14991
14992 2008-04-10 Michael Albinus <michael.albinus@gmx.de>
14993
14994 * fileio.c (Fmake_symbolic_link): Surround code by #ifdef S_IFLNK
14995 only after check for file name handler functions. Signal, when
14996 native functionality is not supported.
14997 (syms_of_fileio): Declare it unconditionally.
14998
14999 2008-04-10 Jason Rumney <jasonr@gnu.org>
15000
15001 * w32menu.c (is_simple_dialog, simple_dialog_show): New functions.
15002 (Fx_popup_dialog): Handle simple yes/no questions as dialogs.
15003
15004 * w32.c (logon_network_drive): Also logon to remote drives that
15005 are mapped to drive letters.
15006
15007 2008-04-10 Glenn Morris <rgm@gnu.org>
15008
15009 * xdisp.c (truncate-partial-width-windows): Doc fix.
15010
15011 2008-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
15012
15013 * fileio.c (read_file_name_cleanup, Fread_file_name_internal):
15014 Move functions to minibuffer.el.
15015 (syms_of_fileio): Don't declare them.
15016
15017 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
15018
15019 * minibuf.c (Vcompletion_auto_help): Move to minibuffer.el.
15020 (syms_of_minibuf): Remove its initialization.
15021
15022 * minibuf.c (temp_echo_area_glyphs): Remove unused function.
15023
15024 2008-04-09 Juanma Barranquero <lekktu@gmail.com>
15025
15026 * editfns.c (Ffield_string_no_properties): Fix typo in docstring.
15027
15028 2008-04-09 Jason Rumney <jasonr@gnu.org>
15029
15030 * makefile.w32-in (distclean): Delete makefile too.
15031 (maintainer-clean): New target.
15032
15033 * xdisp.c (redisplay_internal) [!WINDOWSNT]: Conditionalize last change.
15034
15035 * w32term.c (w32_compute_glyph_string_overhangs): Compute overhangs
15036 for new font backend and composite cases.
15037
15038 2008-04-09 Jan Djärv <jan.h.d@swipnet.se>
15039
15040 * atimer.c (alarm_signal_handler): Call run_timers if not SYNC_INPUT.
15041 Most of the code moved to run_timers.
15042 (do_pending_atimers): Call run_timers.
15043 (run_timers): New function.
15044
15045 * sysdep.c (emacs_write): If SYNC_INPUT and pending_atimers,
15046 run atimers.
15047
15048 * process.c (wait_reading_process_output): The same as above.
15049
15050 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
15051
15052 * minibuf.c (last_exact_completion): Remove variable.
15053 (Fdelete_minibuffer_contents, do_completion, Fminibuffer_complete)
15054 (complete_and_exit_1, complete_and_exit_2)
15055 (Fminibuffer_complete_and_exit, Fminibuffer_complete_word)
15056 (Fdisplay_completion_list, display_completion_list_1)
15057 (Fminibuffer_completion_help, Fself_insert_and_exit)
15058 (Fexit_minibuffer, Fminibuffer_message): Move functions to
15059 minibuffer.el.
15060 (syms_of_minibuf): Remove corresponding initializations.
15061
15062 * keyboard.c (Qdeactivate_mark): New var.
15063 (command_loop_1): Use it to call `deactivate-mark'.
15064 (syms_of_keyboard): Initialize it.
15065
15066 * xdisp.c (redisplay_internal): Reset tty's color_mode when switching
15067 to another frame.
15068 * frame.c (do_switch_frame): Refine the top_frame/async_visible code.
15069 Don't call set_tty_color_mode.
15070 (store_frame_param): Reset previous_frame rather than call
15071 set_tty_color_mode.
15072 * term.c (set_tty_color_mode): Rewrite.
15073 * dispextern.h (set_tty_color_mode): New type.
15074 * termchar.h (struct tty_display_info): Add `previous_color_mode'.
15075
15076 2008-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
15077
15078 * keymap.c (access_keymap): Remove the value 2 for t_ok which was used
15079 for generic chars, which do not exist any more in emacs-unicode.
15080
15081 2008-04-08 Michael Albinus <michael.albinus@gmx.de>
15082
15083 * coding.c (detect_coding_emacs_mule)
15084 (Ffind_operation_coding_system): Fix typo.
15085
15086 2008-04-08 Jason Rumney <jasonr@gnu.org>
15087
15088 * w32uniscribe.c (SNAME): Extract only symbol name.
15089
15090 * w32font.h (struct w32_metric_cache): New struct.
15091 (w32font_info): Use it.
15092 (W32METRIC_NO_ATTEMPT, W32METRIC_SUCCESS, W32METRIC_FAIL)
15093 (CACHE_BLOCKSIZE): New constants.
15094
15095 * w32font.c (Qja, Qko, Qzh): New symbols.
15096 (syms_of_w32font): Initialise them.
15097 (font_matches_spec): Use them to filter by language.
15098 (recompute_cached_metrics): Remove function.
15099 (compute_metrics, clear_cached_metrics): New functions.
15100 (w32font_encode_char): Use them to manage metric cache.
15101 (w32font_text_extents): Cache metrics for all glyphs on demand.
15102 Delay converting glyph indices to WORD until needed.
15103 (w32font_open_internal): Initialize metric cache to empty.
15104 (registry_to_w32_charset): Charset should always be a symbol.
15105 (fill_in_logfont, list_all_matching_fonts): Family should
15106 always be a symbol.
15107
15108 2008-04-06 Jason Rumney <jasonr@gnu.org>
15109
15110 * w32uniscribe.c (uniscribe_shape): Increase items buffer size.
15111 Give up if glyph indices not supported. Use uniscribe obtained
15112 ABC widths for individual metrics. Map glyph clusters back to
15113 characters using fClusterStart flag. Return number of glyphs
15114 produced, not chars processed.
15115 (uniscribe_shape): Map char at FROM to current glyph.
15116
15117 2008-04-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15118
15119 * macmenu.c (fill_menu) [TARGET_API_MAC_CARBON]:
15120 Use SetMenuItemHierarchicalMenu.
15121
15122 2008-04-05 Jason Rumney <jasonr@gnu.org>
15123
15124 * image.c (pbm_load): Allow color values up to 65535.
15125 Throw an error if max_color_idx is outside the supported range.
15126 Report an error when image size is invalid.
15127 Read two bytes at a time when raw images have max_color_idx above 255.
15128
15129 2008-04-05 Kenichi Handa <handa@ni.aist.go.jp>
15130
15131 * ccl.c (ccl_driver): If ccl->quit_silently is nonzero, don't
15132 append "CCL: Quitted" when the CCL program is quitted.
15133 (setup_ccl_program): Initialize ccl->quit_silently to zero.
15134
15135 * ccl.h (struct ccl_program): New member quit_silently.
15136
15137 2008-04-05 Chong Yidong <cyd@stupidchicken.com>
15138
15139 * search.c (compile_pattern_1): Treat non-nil and non-string of
15140 search-spaces-regexp as nil.
15141
15142 * minibuf.c (Fassoc_string): Tweak docstring.
15143
15144 2008-04-05 Eli Zaretskii <eliz@gnu.org>
15145
15146 * dired.c (Ffile_attributes): Support inode numbers wider than 32
15147 bits. Remove ugly WINDOWSNT-specific kludge introduced on
15148 2008-03-14 to force inode be positive.
15149
15150 * w32.c (sys_chown, stat, fstat): Use S_* constants instead of
15151 _S_* ones, since we now use our own sys/stat.h.
15152 (stat, fstat): Don't mangle the inode number.
15153 (init_user_info): Don't restrict UID and GID to 0-60000 range.
15154
15155 2008-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
15156
15157 * frame.h (struct frame): Give one more bit to `visible' since we use
15158 values larger than 1 to indicate obscured frames on ttys.
15159
15160 * keymap.c (Qkeymap_canonicalize): New var.
15161 (Fmap_keymap_internal): New fun.
15162 (describe_map): Use keymap-canonicalize.
15163
15164 * undo.c (last_boundary_buffer, last_boundary_position): New vars.
15165 (Fundo_boundary): Set them.
15166 (syms_of_undo): Initialize them.
15167 (record_point): Use them instead of last_point_position*.
15168 (last_undo_buffer): Change type.
15169
15170 2008-04-04 Jason Rumney <jasonr@gnu.org>
15171
15172 * w32font.c (w32font_text_extents): Use font's ascent and descent.
15173 (recompute_cached_metrics): Don't set ascent and descent per char.
15174
15175 * w32uniscribe.c (uniscribe_check_otf): Fix last change.
15176 (uniscribe_check_otf): Add GC protection before consing.
15177 Rearrange loop for counting features.
15178
15179 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
15180
15181 * insdel.c (insert_from_buffer_1): Don't compare bytes in destination
15182 buffer with byte-size of source buffer.
15183
15184 2008-04-03 Chong Yidong <cyd@stupidchicken.com>
15185
15186 * callint.c (Fcall_interactively): Handle temporary region even
15187 when shift-select-mode is off.
15188
15189 2008-04-03 Jason Rumney <jasonr@gnu.org>
15190
15191 * w32uniscribe.c (uniscribe_check_otf): Sanity check otf_spec.
15192
15193 2008-04-03 Kenichi Handa <handa@m17n.org>
15194
15195 * coding.c (CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
15196 (CATEGORY_MASK_UTF_16): Likewise.
15197 (detect_coding_utf_16): Add heuristics to reject utf-16 for a
15198 binary file.
15199 (detect_coding): Add null-byte detection for a binary file.
15200 (detect_coding_system): Likewise.
15201
15202 2008-04-03 Jason Rumney <jasonr@gnu.org>
15203
15204 * w32uniscribe.c: New file.
15205
15206 * font.h (uniscribe_font_driver) [WINDOWSNT]: Declare for w32fns.c.
15207
15208 * w32font.h (uniscribe_check_otf): Declare for w32font.c.
15209
15210 * w32font.c (Qbalinese, Qbuginese, Qbuhid, Qcuneiform, Qcypriot)
15211 (Qdeseret, Qglagolitic, Qgothic, Qhanunoo, Qkharoshthi)
15212 (Qlimbu, Qlinear_b, Qold_italic, Qold_persian, Qosmanya)
15213 (Qphags_pa, Qphoenician, Qshavian, Qsyloti_nagri)
15214 (Qtagalog, Qtagbanwa, Qtai_le, Qtifinagh, Qugaritic)
15215 (Qphonetic): New symbols.
15216 (syms_of_w32font): Initialize them.
15217 (font_supported_scripts): Use them.
15218 (w32font_list_family): List all charsets.
15219 (w32font_text_extents, recompute_cached_metrics): Fix metric
15220 calculations.
15221 (w32_enumfont_pattern_entity): Make full_type a DWORD.
15222 Give opentype fonts their own format.
15223 (font_matches_spec): New arguments backend and logfont.
15224 Handle :otf spec for uniscribe backend.
15225 (add_font_entity_to_list): Match truetype fonts in uniscribe backend.
15226 (fill_in_logfont): Use DEFAULT_CHARSET when charset not supplied.
15227
15228 * w32fns.c (Fx_create_frame): Conditionally register uniscribe
15229 font backend.
15230 (globals_of_w32fns): Initialize uniscribe font backend.
15231
15232 * makefile.w32-in (CONFIG_H): New variable. Use it to clean up
15233 dependencies.
15234 (w32uniscribe.$(O)): New file to build.
15235 (FONT_OBJ): Include w32uniscribe.$(O).
15236 (LIBS): Add uniscribe libraries.
15237
15238 * ftfont.c (ftfont_get_open_type_spec): Check spec->script, not val.
15239
15240 2008-04-02 Chong Yidong <cyd@stupidchicken.com>
15241
15242 * callint.c (Vshift_select_mode): New var.
15243 (Finteractive): Document new ^ spec.
15244 (Fcall_interactively): Call handle-shift-selection if the ^ spec
15245 is present.
15246
15247 * keyboard.c (Vthis_command_keys_shift_translated): New var.
15248 (command_loop_1): Avoid running the direct display versions of
15249 forward-char and backward-char if shift-selection may occur.
15250 (read_key_sequence): Set Vthis_command_keys_shift_translated if
15251 shift-translation takes place.
15252
15253 * buffer.c (Vtransient_mark_mode): Move docstring to simple.el to
15254 avoid clobbering by define-minor-mode.
15255
15256 * cmds.c (Fforward_char, Fbackward_char, Fforward_line)
15257 (Fbeginning_of_line, Fend_of_line): Add ^ interactive spec.
15258
15259 * syntax.c (Fforward_word): Add ^ interactive spec.
15260
15261 * window.c (Fscroll_up, Fscroll_down, Fscroll_left)
15262 (Fscroll_right): Add ^ interactive spec.
15263
15264 2008-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
15265
15266 * xdisp.c (try_window_id): Don't forget to reset delta_bytes.
15267
15268 * casefiddle.c (casify_object): Fix up int/EMACS_INT mixup.
15269
15270 * charset.c (Funibyte_charset, Fset_unibyte_charset): Remove.
15271
15272 2008-03-31 Juri Linkov <juri@jurta.org>
15273
15274 * window.c (Fdisplay_buffer): Reinitialize `tem' to nil.
15275
15276 2008-03-30 Jan Djärv <jan.h.d@swipnet.se>
15277
15278 * gtkutil.c (xg_set_geometry): Fix indentation.
15279 (xg_resize_outer_widget): Remove.
15280 (x_wm_size_hint_off): Fix indentation.
15281 (xg_frame_set_char_size): Call flush_and_sync after
15282 gtk_window_resize.
15283 (x_wm_set_size_hint): Pass NULL as geometry window to
15284 gtk_window_set_geometry_hints due to Gtk+ bug nr 68668.
15285 Add menu bar and tool bar height to base height.
15286 (xg_update_frame_menubar, free_frame_menubar)
15287 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
15288 (update_frame_tool_bar, free_frame_tool_bar):
15289 Change xg_resize_outer_widget to xg_frame_set_char_size.
15290
15291 2008-03-30 Michael Albinus <michael.albinus@gmx.de>
15292
15293 * dbusbind.c (QCdbus_timeout): New D-Bus internal symbol.
15294 (Fdbus_call_method): New parameter TIMEOUT.
15295 (dbus-send-signal): Optimize UNGCPRO call.
15296
15297 2008-03-29 Juri Linkov <juri@jurta.org>
15298
15299 * window.c (Fdisplay_buffer): Move call to
15300 Vsplit_window_preferred_function out of conditions that check
15301 if window is eligible for vertical splitting.
15302 When Vsplit_window_preferred_function is non-nil, call it and use
15303 its non-nil return value as window. Otherwise, continue doing
15304 vertical splitting using Fsplit_window with arg horflag=nil.
15305 (syms_of_window) <Vsplit_window_preferred_function>: Change the
15306 default value from `split-window' to nil.
15307
15308 2008-03-29 Juri Linkov <juri@jurta.org>
15309
15310 * callint.c (Fcall_interactively): Revert 2008-03-16 change
15311 for interactive code letters 'b' and 'B'.
15312
15313 2008-03-29 Eli Zaretskii <eliz@gnu.org>
15314
15315 * fileio.c (Fexpand_file_name): Convert the value of $HOME to a
15316 multibyte string.
15317
15318 2008-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
15319
15320 * keyboard.c (pending_funcalls): New var.
15321 (timer_check): Run it.
15322 (syms_of_keyboard): Initialize it.
15323 * terminal.c (Qrun_hook_with_args, Qdelete_terminal_functions)
15324 (Vdelete_terminal_functions): New vars.
15325 (syms_of_terminal): Initialize them.
15326 (Fdelete_terminal): Run delete-terminal-functions.
15327 * xdisp.c (safe_eval): Rewrite.
15328 (safe_call2): New fun.
15329 * frame.c (Qdelete_frame_functions): New var.
15330 (syms_of_frame): Initialize it.
15331 (Fdelete_frame): Use it and use safe_call2 and pending_funcalls.
15332 * lisp.h (safe_call2, pending_funcalls): Declare.
15333
15334 2008-03-28 Andreas Schwab <schwab@suse.de>
15335
15336 * indent.c (Fmove_to_column): Move declaration before statements.
15337
15338 2008-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
15339
15340 * frame.h (enum fullscreen_type): Give it a name. Move it before use.
15341 (struct frame): Use bit fields for boolean vars.
15342
15343 * process.c (server_accept_connection): Simplify naming.
15344 (emacs_get_tty_pgrp): Use SDATA.
15345
15346 * coding.c (decode_coding_object): Fix last change.
15347
15348 2008-03-27 Jason Rumney <jasonr@gnu.org>
15349
15350 * w32fns.c (start_hourglass): Suppress hourglass on tty frames.
15351
15352 2008-03-27 Kenichi Handa <handa@ni.aist.go.jp>
15353
15354 * charset.c (Fdefine_charset_internal): Change the way of
15355 registering charsets in Vcharset_order_list.
15356 (syms_of_charset): Make the charset `eight-bit' supplementary.
15357
15358 2008-03-26 Alexandre Oliva <aoliva@redhat.com> (tiny change)
15359
15360 * regex.c (EXTEND_BUFFER): Change order of pointer addition
15361 operations, to avoid having the difference between pointers
15362 overflow.
15363
15364 2008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
15365
15366 * indent.c (check_display_width): New fun.
15367 (scan_for_column): Use it.
15368
15369 * data.c (syms_of_data): Mark most-positive-fixnum and
15370 most-negative-fixnum as constants.
15371
15372 * xdisp.c (redisplay_internal): Reset selected_frame earlier.
15373
15374 * indent.c (scan_for_column): Extract from current_column_1.
15375 Merge with the same code from Fmove_to_column.
15376 (current_column_1, Fmove_to_column): Use it.
15377
15378 2008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
15379
15380 * keymap.c (map_keymap_internal): New fun.
15381 (map_keymap): Use it.
15382 (Fmap_keymap_internal): New fun.
15383 (Fmap_keymap): Remove left-out test from before make_save_value.
15384
15385 * keymap.c (Fmap_keymap): Use `map-keymap-sorted.
15386
15387 * frame.c (Fmodify_frame_parameters, x_set_frame_parameters):
15388 Use XCAR/XCDR.
15389
15390 * process.h (struct Lisp_Process): Remove filter_multibyte.
15391 * process.c (QCfilter_multibyte): Remove.
15392 (setup_process_coding_systems): Don't use filter_multibyte.
15393 (Fstart_process, Fmake_network_process): Don't set filter_multibyte.
15394 (read_process_output): Don't adjust multibyteness to filter_multibyte.
15395 (Fset_process_filter_multibyte): Change the coding-system to
15396 approximate the previous behavior.
15397 (Fprocess_filter_multibyte_p): Get the multibyteness straight from the
15398 coding-system.
15399
15400 * coding.c (decode_coding_object): When not decoding into a buffer,
15401 obey the coding system's preference of (uni|multi)byte.
15402
15403 2008-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
15404
15405 * casefiddle.c (casify_object): Avoid pathological N^2 worst case if
15406 every char is changed and has a different byte-length.
15407 (Fupcase_word, Fdowncase_word, Fcapitalize_word, operate_on_word):
15408 Fix int -> EMACS_INT.
15409
15410 2008-03-23 David Hansen <david.hansen@gmx.net>
15411
15412 * dbusbind.c (xd_read_message): Remove extra copying of message
15413 strings. Check for NULL `interface' or `member'.
15414
15415 2008-03-22 Eli Zaretskii <eliz@gnu.org>
15416
15417 * w32.c (readdir): If FindFirstFile/FindNextFile return in
15418 cFileName a file name that includes `?' characters, use the 8+3
15419 alias in cAlternateFileName instead.
15420
15421 2008-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
15422
15423 * buffer.c (enlarge_buffer_text): Fix int -> EMACS_INT.
15424
15425 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
15426
15427 * intervals.c (temp_set_point, temp_set_point_both): Use EMACS_INT.
15428 (set_point, set_point_both): Use EMACS_INT. Remove `buffer' arg,
15429 work on current_buffer only instead (that was already the case
15430 for some of the code anyway).
15431 * buffer.h (set_point, set_point_both): Remove buffer arg, use long int.
15432 (temp_set_point, temp_set_point_both): Use EMACS_INT.
15433 (SET_PT, SET_PT_BOTH): Adjust.
15434 * intervals.h (set_point, temp_set_point, set_point_both)
15435 (temp_set_point_both): Remove redundant declarations.
15436
15437 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
15438
15439 * fileio.c (Finsert_file_contents):
15440 * lread.c (Feval_buffer): Use BUF_TEMP_SET_PT.
15441 * buffer.h (BUF_SET_PT): Remove. set_point_both doesn't work right
15442 when buffer != current_buffer anyway.
15443
15444 2008-03-20 Andreas Schwab <schwab@suse.de>
15445
15446 * callint.c (Fcall_interactively) [case 'B']: Use other-buffer
15447 as default.
15448
15449 2008-03-19 Jason Rumney <jasonr@gnu.org>
15450
15451 * w32fns.c (hourglass_timer, hourglass_hwnd): New variables.
15452 (syms_of_w32fns): Initialize them.
15453 (HOURGLASS_ID): New constant.
15454 (x_window_to_frame): Don't check hourglass_window.
15455 (w32_wnd_proc) <WM_TIMER>: Handle hourglass_timer.
15456 (w32_wnd_proc) <WM_EXITMENULOOP>: Set pending hourglass cursor.
15457 (w32_wnd_proc) <WM_SETCURSOR>: Set the hourglass or current cursor.
15458 (w32_wnd_proc) <WM_EMACS_SETCURSOR>: Set frame's current_cursor.
15459 Only change the cursor if hourglass is not active.
15460 (Fx_create_frame): Initialize frame's current_cursor.
15461 (hourglass_atimer): Remove.
15462 (hourglass_started): New function.
15463 (start_hourglass, cancel_hourglass, hide_hourglass): Adapt to w32.
15464 (show_hourglass): Adapt to w32, changing argument to frame.
15465
15466 * w32term.h (struct w32_output): Remove hourglass_window.
15467 Add current_cursor.
15468
15469 * eval.c (call_debugger, Fsignal):
15470 * keyboard.c (recursive_edit_1, cmd_error, Ftop_level)
15471 (command_loop_1, Fread_key_sequence, Fread_key_sequence_vector)
15472 (Fexecute_extended_command, cancel_hourglass_unwind):
15473 * minibuf.c (read_minibuf):
15474 * fns.c (Fy_or_n_p): Enable hourglass when HAVE_WINDOW_SYSTEM.
15475
15476 2008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
15477
15478 * window.c (run_funs): New fun.
15479 (run_window_configuration_change_hook): Use it to run the buffer-local
15480 and the global part of the hook.
15481
15482 * xdisp.c (format_mode_line_unwind_data): Add window argument.
15483 (unwind_format_mode_line): Restore selected window.
15484 (x_consider_frame_title, Fformat_mode_line): Set selected window.
15485
15486 2008-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
15487
15488 * editfns.c (Fchar_equal): Check they are valid characters.
15489
15490 * buffer.h (Fbuffer_list): Declare (for use in callint.c).
15491
15492 2008-03-17 Andreas Schwab <schwab@suse.de>
15493
15494 * regex.c (re_match_2_internal): Properly match raw 8-bit bytes
15495 against a charset.
15496
15497 * lisp.h (Fbuffer_list): Declare.
15498
15499 2008-03-17 Jan Djärv <jan.h.d@swipnet.se>
15500
15501 * gtkutil.c (free_frame_tool_bar): Only call gtk_container_remove if
15502 handlebox_widget is != 0.
15503
15504 2008-03-16 Juri Linkov <juri@jurta.org>
15505
15506 * callint.c (Fcall_interactively): For interactive code letters
15507 'b' and 'B' put the buffer list into the list of default "future"
15508 values of the minibuffer.
15509
15510 2008-03-16 Andreas Schwab <schwab@suse.de>
15511
15512 * keyboard.c (read_key_sequence): Fix downcasing of letters with
15513 modifiers.
15514
15515 * regex.c (re_match_2_internal): Correct matching of a charset
15516 against latin-1 characters.
15517
15518 2008-03-16 Kenichi Handa <handa@m17n.org>
15519
15520 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY)
15521 (STRING_CHAR_ADVANCE_NO_UNIFY): New macros.
15522 (coding_alloc_by_making_gap): Fix the way to preserve data in the gap.
15523 (alloc_destination): Fix the 2nd arg to coding_alloc_by_making_gap.
15524 (encode_coding_utf_8): Use CHAR_STRING_ADVANCE_NO_UNIFY instead of
15525 CHAR_STRING_ADVANCE.
15526 (produce_chars): Fix for the case that the source and the
15527 destination are the same buffer. Use CHAR_STRING_ADVANCE_NO_UNIFY
15528 instead of CHAR_STRING_ADVANCE.
15529 (consume_chars): Use STRING_CHAR_ADVANCE_NO_UNIFY instead of
15530 STRING_CHAR_ADVANCE.
15531
15532 2008-03-15 Andreas Schwab <schwab@suse.de>
15533
15534 * regex.c (re_match_2_internal): Correct matching of eight bit
15535 characters in unibyte strings.
15536
15537 2008-03-15 Martin Rudalics <rudalics@gmx.at>
15538
15539 * buffer.c (overlays_in, Foverlays_in): Include empty overlays
15540 at end of range when it coincides with the end of the buffer.
15541
15542 2008-03-14 Eli Zaretskii <eliz@gnu.org>
15543
15544 * dired.c (Ffile_attributes) [WINDOWSNT]: Force inode be positive.
15545
15546 * w32fns.c (globals_of_w32fns, Fx_create_frame): Fix last change.
15547
15548 2008-03-14 Jason Rumney <jasonr@gnu.org>
15549
15550 * editfns.c (initial_tz): New variable.
15551 (syms_of_editfns): Initialize it.
15552 (Fset_time_zone_rule): Set it when first called.
15553 Use it when TZSTRING is nil.
15554
15555 * w32fns.c (MONITOR_DEFAULT_TO_NEAREST, struct MONITOR_INFO)
15556 (MonitorFromPoint_Proc, GetMonitorInfo_Proc): New definitions.
15557 (monitor_from_point_fn, get_monitor_info_fn): New globals.
15558 (globals_of_w32fns): Initialize them.
15559 (compute_tip_xy): Use them to position tooltips.
15560
15561 2008-03-14 Glenn Morris <rgm@gnu.org>
15562
15563 * emacs.c (main): Revert previous change.
15564 (standard_args): Revert -internal-script back to -scriptload,
15565 and remove the long-option form.
15566
15567 2008-03-13 Glenn Morris <rgm@gnu.org>
15568
15569 * emacs.c (main, standard_args): Rename -scriptload to -internal-script.
15570 Remove option -enable-font-backend.
15571
15572 2008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
15573
15574 * buffer.c (Fswitch_to_buffer): Fall back on pop-to-buffer.
15575
15576 2008-03-11 Jan Djärv <jan.h.d@swipnet.se>
15577
15578 * xterm.c (x_connection_closed): For GTK: If this is the last
15579 terminal just exit without closing the display.
15580
15581 2008-03-11 Jason Rumney <jasonr@gnu.org>
15582
15583 * w32font.c (w32font_full_name): Use floor to round.
15584
15585 2008-03-10 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
15586
15587 * sound.c (alsa_configure): Declare vol at beginning of block.
15588
15589 * fontset.c (Ffontset_info): Remove extra semicolon.
15590
15591 2008-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
15592
15593 * fileio.c (Fsubstitute_in_file_name): Fix up computation of maximum
15594 size of resulting string.
15595
15596 2008-03-10 Jason Rumney <jasonr@gnu.org>
15597
15598 * dispnew.c (adjust_glyph_matrix): Initialize window_height.
15599
15600 2008-03-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15601
15602 * xdisp.c (handle_single_display_spec): Undo 2007-10-16 changes.
15603 Don't pretend as if characters with display property haven't been
15604 consumed for string-replacing-string case.
15605
15606 2008-03-08 Kim F. Storm <storm@cua.dk>
15607
15608 * xdisp.c (GET_NEXT_DISPLAY_ELEMENT): New macro.
15609 (get_next_display_element, next_element_from_string)
15610 (next_element_from_ellipsis, next_element_from_buffer): Use it.
15611
15612 2008-03-08 Andreas Schwab <schwab@suse.de>
15613
15614 * process.h (struct Lisp_Process): Declare bit fields as unsigned.
15615
15616 2008-03-06 Jason Rumney <jasonr@gnu.org>
15617
15618 * w32font.c (w32_registry): Take font_type argument. Use ANSI
15619 when charset not specified. Only translate ANSI to unicode when
15620 font_type is truetype.
15621 (w32font_coverage_ok): New function.
15622 (add_font_entity_to_list): Use it to filter unsuitable fonts.
15623
15624 2008-03-05 Kenichi Handa <handa@ni.aist.go.jp>
15625
15626 * lread.c (Fread_char): Resolve modifiers.
15627 (Fread_char_exclusive): Likewise.
15628
15629 * character.c (char_resolve_modifier_mask): New function.
15630 (char_string): Use char_resolve_modifier_mask.
15631 (Fchar_resolve_modifiers): New function.
15632 (syms_of_character): Declare Fchar_resolve_modifiers as Lisp
15633 function.
15634
15635 2008-03-04 Jason Rumney <jasonr@gnu.org>
15636
15637 * makefile.w32-in: Always include w32font.c in the build.
15638 * w32font.c: Wrap in USE_FONT_BACKEND conditional.
15639
15640 2008-03-04 Andreas Schwab <schwab@suse.de>
15641
15642 * Makefile.in (clean): Remove emacs-*.*.* instead of emacs-*.
15643 (versionclean): Likewise.
15644
15645 2008-03-04 Juanma Barranquero <lekktu@gmail.com>
15646
15647 * .cvsignore: Add oo.
15648
15649 2008-03-03 Andreas Schwab <schwab@suse.de>
15650
15651 * coding.c (decode_coding_object): Inhibit gap shrinking while
15652 decoding in place.
15653
15654 2008-03-03 Dan Nicolaescu <dann@ics.uci.edu>
15655
15656 * w32term.c: Remove unused include "gnu.h".
15657 * makefile.w32-in (w32term.o): Don't depend on gnu.h.
15658
15659 * gnu.h: Rename to ...
15660 * emacs-icon.h: ... this.
15661 * xterm.c: Use emacs-icon.h instead of gnu.h.
15662 * Makefile (xterm.o): Depend on emacs-icon.h, not gnu.h.
15663
15664 2008-03-03 Juanma Barranquero <lekktu@gmail.com>
15665
15666 * w32font.c: Include math.h.
15667
15668 2008-03-03 Jason Rumney <jasonr@gnu.org>
15669
15670 * w32font.c (recompute_cached_metrics): Change font arg to w32font_info.
15671 Compute options separately.
15672 (w32font_open_internal): Set glyph_idx before caching metrics.
15673
15674 * w32font.h (NTM_PS_OPENTYPE, NTM_TT_OPENTYPE, NTM_TYPE1):
15675 Define if system headers don't.
15676 (struct w32font_info): Enlarge ascii_metrics. Add glyph_idx.
15677 (w32font_encode_char): Don't declare here.
15678
15679 * w32font.c (Quniscribe, QCformat): New symbols.
15680 (syms_of_w32font): Define them.
15681 (w32font_has_char): Indicate uncertainty.
15682 (w32font_encode_char): Encode as glyph point. Make static.
15683 (recompute_cached_metrics): New function.
15684 (w32font_open_internal): Use it. Set font to use glyph points
15685 initially. Set format based on type of font.
15686 (w32font_text_extents, w32font_draw): Optionally use glyph points.
15687 (w32_enumfont_pattern_entity): Accept backend arg. Set type based
15688 on it. Set format based on information available here.
15689 (add_font_entity_to_list): Identify backend based on opentype_only.
15690
15691 2008-03-02 Andreas Schwab <schwab@suse.de>
15692
15693 * ftfont.c (ftfont_pattern_entity): Fix aliasing violations.
15694
15695 * coding.c (decode_coding_big5, produce_chars):
15696 Fix typos in last change.
15697
15698 2008-03-02 Kentaro Ohkouchi <nanasess@fsm.ne.jp>
15699
15700 * gnu.h: New icon.
15701
15702 2008-03-02 Kenichi Handa <handa@m17n.org>
15703
15704 * coding.c (decode_coding_utf_8): When eol-type of CODING is
15705 `dos', don't decode '\r' if that is the last in the source.
15706 (decode_coding_utf_16, decode_coding_emacs_mule)
15707 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
15708 (decode_coding_raw_text, decode_coding_charset): Likewise.
15709 (produce_chars): Don't decode EOL here. Use EMACS_INT.
15710
15711 2008-03-01 Jason Rumney <jasonr@gnu.org>
15712
15713 * w32font.c (w32font_full_name): Report point size for scalable fonts.
15714
15715 2008-03-01 Kim F. Storm <storm@cua.dk>
15716
15717 * dispextern.h (CHAR_GLYPH_SPACE_P): Check for default face.
15718
15719 2008-03-01 Jason Rumney <jasonr@gnu.org>
15720
15721 * w32font.c (w32font_full_name): New function.
15722 (w32font_open_internal): Use it.
15723
15724 2008-03-01 Kim F. Storm <storm@cua.dk>
15725
15726 * dispnew.c (line_draw_cost): Fix invalid glyph check.
15727
15728 2008-03-01 Jason Rumney <jasonr@gnu.org>
15729
15730 * font.c (font_unparse_fcname): Increase len when style is a symbol.
15731
15732 2008-03-01 Jan Djärv <jan.h.d@swipnet.se>
15733
15734 * xterm.c (handle_one_xevent): For Gtk+ and ConfigureNotify, call
15735 xg_frame_resized when the event is for the edit widget.
15736
15737 * gtkutil.h (xg_frame_resized): Renamed from xg_resize_widgets.
15738
15739 * gtkutil.c (xg_resize_outer_widget): Only do one of set_geometry or
15740 set_char_size.
15741 (xg_frame_resized): Renamed from xg_resize_widgets. Remove all
15742 operations on widgets here. Just set frame size if needed.
15743 (flush_and_sync, x_wm_size_hint_off, xg_pack_tool_bar): New functions.
15744 (xg_frame_set_char_size): Call x_wm_size_hint_off before resizing.
15745 (x_wm_set_size_hint): Set size hints on the edit widget only, not
15746 the whole frame.
15747 (xg_create_tool_bar): Move attachment of the tool bar to
15748 xg_pack_tool_bar. Do not attach the tool bar if there are no items.
15749 (free_frame_tool_bar): Remove call to SET_FRAME_GARBAGED.
15750
15751 2008-03-01 Jason Rumney <jasonr@gnu.org>
15752
15753 * w32fns.c (w32_msg_pump): Disable debug code.
15754
15755 2008-03-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15756
15757 * m/intel386.h [MAC_OSX || DARWIN]: Define NO_ARG_ARRAY if _LP64.
15758
15759 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
15760
15761 * xdisp.c (next_overlay_string): Don't set
15762 overlay_strings_at_end_processed_p if we're currently reading from
15763 a display string.
15764
15765 2008-02-29 Stefan Monnier <monnier@iro.umontreal.ca>
15766
15767 * xdisp.c (get_overlay_strings_1): Fix typo.
15768
15769 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
15770
15771 * xdisp.c (get_overlay_strings_1): Add missing argument type.
15772
15773 2008-02-28 Kenichi Handa <handa@ni.aist.go.jp>
15774
15775 * ftfont.c (ftfont_match): Explicitly set pixelsize in pattern.
15776
15777 * xdisp.c (display_mode_element): Cancel the previous change.
15778 (decode_mode_spec): Likewise.
15779 (handle_auto_composed_prop): Don't make composition if it->string
15780 is a string.
15781
15782 2008-02-27 Kim F. Storm <storm@cua.dk>
15783
15784 * lisp.h (GLYPH): Change type from int to struct with separate char
15785 and face_id members.
15786 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Delete macros.
15787 (GLYPH_CHAR, GLYPH_FACE): Remove slow versions with frame arg.
15788 (FAST_GLYPH_CHAR, FAST_GLYPH_FACE): Rename macros to ...
15789 (GLYPH_CHAR, GLYPH_FACE): ... these. Change users.
15790 (FAST_MAKE_GLYPH, MAKE_GLYPH): Remove. Rewrite users to use ...
15791 (SET_GLYPH, SET_GLYPH_CHAR, SET_GLYPH_FACE): ... these macros instead.
15792 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE, GLYPH_CODE_P)
15793 (GLYPH_CODE_CHAR_VALID_P, SET_GLYPH_FROM_GLYPH_CODE): New macros to
15794 handle new Lisp glyph code encoding, either an integer or a cons.
15795
15796 * disptab.h (GLYPH_SIMPLE_P): Rewrite.
15797 (GLYPH_ALIAS): Delete.
15798 (GLYPH_ALIAS_P, GLYPH_FOLLOW_ALIASES): Rewrite.
15799 (GLYPH_LENGTH, GLYPH_STRING): Use GLYPH_CHAR.
15800 (GLYPH_FROM_CHAR): Replace macro by ...
15801 (SET_GLYPH_FROM_CHAR): ... this macro. Change users.
15802
15803 * dispextern.h (CHAR_GLYPH_SPACE_P): Simplify.
15804 (GLYPH_FROM_CHAR_GLYPH): Replace macro by ...
15805 (SET_GLYPH_FROM_CHAR_GLYPH): ... this macro. Change users.
15806 (GLYPH_INVALID_P): New macro.
15807 (spec_glyph_lookup_face): Update prototype.
15808
15809 * dispnew.c (line_draw_cost): Adapt to new glyph type.
15810 (build_frame_matrix_from_leaf_window): Adapt to new glyph type and
15811 new glyph code encoding.
15812 (spec_glyph_lookup_face): No return value; update passed glyph instead.
15813 (init_display): Use SET_CHAR_GLYPH to initialize space_glyph.
15814
15815 * xdisp.c (get_next_display_element, next_element_from_display_vector):
15816 Adapt to new glyph type and new glyph code encoding.
15817
15818 * term.c (encode_terminal_code, produce_special_glyphs): Likewise.
15819
15820 * indent.c (current_column, current_column_1, Fmove_to_column)
15821 (compute_motion): Adapt to new glyph code encoding.
15822
15823 * msdos.c (IT_write_glyphs): Adapt to new glyph type.
15824
15825 2008-02-27 Chong Yidong <cyd@stupidchicken.com>
15826
15827 * process.c (wait_reading_process_output): Check for window
15828 changes caused by timers.
15829 Suggested by Johan Bockgård.
15830
15831 2008-02-27 Glenn Morris <rgm@gnu.org>
15832
15833 * emacs.c (USAGE1): Add `--disable-font-backend'.
15834
15835 2008-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
15836
15837 * fileio.c (Finsert_file_contents): Don't reset undo_list if no change
15838 is made to the buffer.
15839
15840 2008-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
15841
15842 * dispextern.h (face_at_buffer_position, face_for_overlay_string)
15843 (face_at_string_position):
15844 * xfaces.c (face_at_buffer_position, face_for_overlay_string)
15845 (face_at_string_position):
15846 * xdisp.c (display_string, next_overlay_change):
15847 * buffer.h (overlays_at):
15848 * buffer.c (overlays_at): Use EMACS_INT for buffer positions.
15849 Update callers.
15850
15851 2008-02-26 Chong Yidong <cyd@stupidchicken.com>
15852
15853 * editfns.c (Fformat): Doc fix.
15854
15855 2008-02-26 Juanma Barranquero <lekktu@gmail.com>
15856
15857 * font.c (Ffont_spec, Ffont_at): Fix typos in docstrings.
15858 (Ffont_put, Flist_families, Ffont_fill_gstring, Ffont_drive_otf)
15859 (Ffont_otf_alternates, Fquery_font): Doc fixes.
15860
15861 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
15862
15863 * buffer.c (Fbuffer_swap_text): New function.
15864 (syms_of_buffer): Defsubr it.
15865
15866 2008-02-25 Chong Yidong <cyd@stupidchicken.com>
15867
15868 * keyboard.c (command_loop_1): Revert 2006-10-09 change.
15869
15870 2008-02-25 Jason Rumney <jasonr@gnu.org>
15871
15872 * w32font.c (w32font_draw): Draw one character at a time when padding.
15873
15874 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
15875
15876 * window.c (Fdelete_window, Fadjust_window_trailing_edge):
15877 Handle a nil arg. Use run_window_configuration_change_hook.
15878 (delete_window, adjust_window_trailing_edge): Don't handle nil any more.
15879 (Fenlarge_window, Fshrink_window, Fset_window_configuration):
15880 Use run_window_configuration_change_hook.
15881
15882 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
15883
15884 * xdisp.c (x_produce_glyphs): For a visible glyph, assure at least
15885 1-pixel width.
15886
15887 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
15888
15889 * xdisp.c (fill_glyph_string): Pay attention to glyph->padding_p.
15890 (append_glyph): Set glyph->pixel_width and glyph->padding_p to 1
15891 if the glyph in the font is zero pixel with.
15892
15893 * dispextern.h (struct glyph_string): New member padding_p.
15894
15895 * w32font.c (w32font_draw): Pay attention to s->padding_p.
15896
15897 * ftxfont.c (ftxfont_draw): Pay attention to s->padding_p.
15898
15899 * xfont.c (xfont_draw): Pay attention to s->padding_p.
15900
15901 * xftfont.c (xftfont_draw): Pay attention to s->padding_p.
15902
15903 * font.c: If the font driver doesn't have `shape' function, return Qnil.
15904
15905 2008-02-25 Jason Rumney <jasonr@gnu.org>
15906
15907 * w32fns.c (enum_font_cb2): Don't use raster fonts for Unicode.
15908
15909 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
15910
15911 Allow fine-grained image-cache flushing.
15912 * dispextern.h (struct image): Add `dependencies' field.
15913 (clear_image_caches): Change arg to Lisp_Object.
15914 * image.c (make_image): Initialize `dependencies' field.
15915 (clear_image_cache): Change arg to allow fine-grained flushing.
15916 Perform the flush even if image-cache-eviction-delay is nil.
15917 (clear_image_caches): Change arg to Lisp_Object.
15918 (Fclear_image_cache): Expand meaning of the argument.
15919 (mark_image): Mark `dependencies' field.
15920 * xfaces.c (clear_face_cache): Adapt arg to call to clear_image_caches.
15921 (lface_hash): Use XHASH rather than XFASTINT.
15922 (face_at_buffer_position): Fix int -> EMACS_INT position.
15923 * xdisp.c (next_overlay_change): Fix int -> EMACS_INT position.
15924 (select_frame_for_redisplay): Remove code duplication.
15925 (redisplay_internal): Adapt arg to call to clear_image_caches.
15926
15927 2008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
15928
15929 * s/vms4-0.h:
15930 * s/vms4-2.h:
15931 * s/vms4-4.h:
15932 * s/vms5-5.h: Remove, unused.
15933
15934 * s/irix5-2.h:
15935 * s/irix6-0.h:
15936 * s/riscos5.h:
15937 * s/mach-bsd4-3.h:
15938 * m/mips4.h: Remove files for obsolete systems.
15939
15940 * Makefile.in:
15941 * filelock.c:
15942 * unexmips.c:
15943 * m/hp9000s300.h:
15944 * m/iris4d.h:
15945 * s/aix3-1.h:
15946 * s/hpux.h:
15947 * s/msdos.h:
15948 * s/usg5-0.h:
15949 * s/usg5-2-2.h:
15950 * s/usg5-2.h:
15951 * s/usg5-3.h: Remove references to obsolete variables.
15952
15953 * s/irix5-0.h: Remove, move all the contents ...
15954 * s/irix6-5.h: ... here. Simplify.
15955 * config.in: Regenerate.
15956
15957 2008-02-24 Jason Rumney <jasonr@gnu.org>
15958
15959 * w32term.c (x_draw_glyph_string_background): Clear the background
15960 manually when cleartype is in use.
15961 (x_draw_glyph_string_foreground): Draw text transparently when
15962 cleartype is in use.
15963
15964 * w32font.c (w32font_text_extents): Avoid getting HDC and selecting
15965 a font into it unless we have to.
15966
15967 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
15968
15969 * intervals.h (INT_LISPLIKE): Remove. It may misfire.
15970 (NULL_INTERVAL_P, SET_INTERVAL_PARENT): Don't use it.
15971
15972 2008-02-18 Jason Rumney <jasonr@gnu.org>
15973
15974 * w32fns.c (Fw32_shell_execute): Encode parameters.
15975
15976 2008-02-09 Eli Zaretskii <eliz@gnu.org>
15977
15978 * fileio.c (syms_of_fileio) <insert-default-directory>: Doc fix.
15979
15980 2008-02-05 Juanma Barranquero <lekktu@gmail.com>
15981
15982 * unexhp9k800.c (read_header): Replace `legal' with `valid'.
15983
15984 2008-02-24 Ulrich Neumerkel <ulrich@complang.tuwien.ac.at> (tiny change)
15985
15986 * xterm.c (x_set_offset): Don't change the gravity if
15987 CHANGE_GRAVITY is -1.
15988
15989 2008-02-23 Chong Yidong <cyd@stupidchicken.com>
15990
15991 * fileio.c (auto_save_error_occurred): New var.
15992 (auto_save_error): Set it.
15993 (Fdo_auto_save): Don't overwrite the error message if an auto-save
15994 error occurred.
15995
15996 2008-02-23 Eli Zaretskii <eliz@gnu.org>
15997
15998 * w32.c (globals_of_w32): Add initializations for
15999 g_b_init_get_sid_sub_authority and
16000 g_b_init_get_sid_sub_authority_count.
16001
16002 2008-02-22 Stefan Monnier <monnier@iro.umontreal.ca>
16003
16004 * font.c (font_match_xlfd, font_check_xlfd_parse): New funs.
16005 (font_parse_xlfd): Use them for sanity check.
16006 (Finternal_set_font_style_table): Make sure the table is bijective.
16007
16008 Consolidate the image_cache to the terminal struct.
16009 * termhooks.h (P_): Remove redundant def.
16010 (struct terminal): New field `image_cache'.
16011 * frame.h (FRAME_IMAGE_CACHE): New macro. Use it everywhere in place
16012 of FRAME_X_IMAGE_CACHE.
16013 * xterm.h (struct x_display_info): Remove image_cache field.
16014 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
16015 * w32term.h (struct w32_display_info): Remove image_cache field.
16016 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
16017 * macterm.h (struct mac_display_info): Remove image_cache field.
16018 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
16019 * xterm.c (x_term_init):
16020 * w32term.c (w32_term_init):
16021 * macterm.c (mac_term_init): Set the image_cache in the terminal.
16022 * dispextern.h (clear_image_cache, forall_images_in_image_cache):
16023 Remove declarations.
16024 (clear_image_caches, mark_image_cache): New declarations.
16025 * xfaces.c (clear_face_cache):
16026 * xdisp.c (redisplay_internal): Use clear_image_caches.
16027 * image.c (clear_image_cache): Don't check that a frame is on
16028 a window-system before checking if it shares the same cache.
16029 (clear_image_caches): New function.
16030 (Fclear_image_cache): Use it.
16031 (mark_image): Move from allo.c.
16032 (mark_image_cache): Move from alloc.c and forall_images_in_image_cache.
16033 * alloc.c (mark_image, mark_image_cache): Move to image.c.
16034 (mark_object): Don't call mark_image_cache for frames.
16035 (mark_terminals): Call mark_image_cache.
16036
16037 * lisp.h (Fdelete_terminal): Declare.
16038
16039 * charset.h (CHECK_CHARSET, CHECK_CHARSET_GET_ID)
16040 (CHECK_CHARSET_GET_ATTR): Don't use the inexistent return value of
16041 wrong_type_argument.
16042
16043 2008-02-22 Kenichi Handa <handa@ni.aist.go.jp>
16044
16045 * Makefile.in (lisp): Remove devanagari.el, kannada.el,
16046 malayalam.el, and tamil.el. Add sinhala.el.
16047
16048 2008-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
16049
16050 * xterm.c (x_connection_closed): Consolidate identical tests.
16051 (x_delete_terminal): Don't crash if called via x_connection_closed.
16052
16053 2008-02-21 Kenichi Handa <handa@ni.aist.go.jp>
16054
16055 * xdisp.c (decode_mode_spec): New arg string.
16056 (display_mode_element): Adjust for the above change.
16057
16058 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
16059
16060 * callint.c (Fcall_interactively): Use AREF.
16061
16062 2008-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
16063
16064 * font.c (font_unparse_xlfd): Don't ignore integer pixel size specs.
16065
16066 2008-02-18 Jan Djärv <jan.h.d@swipnet.se>
16067
16068 * xfns.c (Fx_show_tip): Set string to " " if empty.
16069
16070 2008-02-17 Dan Nicolaescu <dann@ics.uci.edu>
16071
16072 * callint.c (syms_of_callint): Initialize Vmark_even_if_inactive
16073 with Qt.
16074
16075 2008-02-17 Kenichi Handa <handa@m17n.org>
16076
16077 * ftfont.c (ftfont_shape): Return Lispy number.
16078
16079 * xfaces.c (prepare_face_for_display): Use display_info->font->fid
16080 for GCs.
16081 (Finternal_set_font_selection_order): Call font_update_sort_order
16082 only when enable_font_backend is set.
16083 (realize_x_face): Set face->font_info to that of default face only
16084 when enable_font_backend is set.
16085
16086 * xdisp.c (handle_composition_prop): Set it->c to the fist
16087 character of the composed region.
16088 (fill_composite_glyph_string): Set base_face->font_info to
16089 s->font_info. Get a face for ascii from base_face->ascii_face.
16090 (BUILD_COMPOSITE_GLYPH_STRING): Call fill_composite_glyph_string
16091 with a face already decided.
16092 (x_produce_glyphs): Be sure to set it->ascent and it->descent to
16093 non-negative.
16094 (x_produce_glyphs): If the composition method is ..._WITH_GLYPH_STRING,
16095 call font_prepare_composition unconditionally.
16096
16097 * xfns.c (x_make_gc): Use the default font id of the frame for GCs.
16098
16099 * xterm.h (struct x_display_info): New member font.
16100
16101 * xterm.c (x_set_cursor_gc): Use display_info->font->fid for GCs.
16102 (x_set_mouse_face_gc, x_new_font): Likewise.
16103 (x_term_init): Setup display_info->font.
16104 (x_delete_terminal): Free display_info->font.
16105
16106 * xfont.c (xfont_draw): Use BLOCK_INPUT and UNBLOCK_INPUT.
16107
16108 * ftxfont.c (ftxfont_default_fid): Delete it.
16109 (ftxfont_open): Set xfont->fid to 0.
16110 (ftxfont_end_for_frame): Clear data specific to the frame and the
16111 font-driver.
16112
16113 * xftfont.c (xftfont_default_fid): Delete it.
16114 (xftfont_open): Set xfont->fid to 0.
16115
16116 * fontset.c (FONTSET_OBJLIST): New macro.
16117 (fontset_find_font): Update font-object list of the fontset.
16118 (free_realized_fontset): New function.
16119 (free_face_fontset): Call free_realized_fontset.
16120 (Ffont_info): Call font_close_object only when enable_font_backend
16121 is set.
16122
16123 * font.c [HAVE_X_WINDOWS]: Include xterm.h.
16124 [HAVE_NTGUI]: Include w32term.h.
16125 [MAC_OS]: Include macterm.ch.
16126 (font_otf_ValueRecord): Use make_number.
16127 (font_finish_cache): Fix handling of reference count.
16128 (font_clear_cache): Update num_fonts.
16129 (font_open_entity): Update smallest_char_width and
16130 smallest_font_height of the frame.
16131 (font_close_object): Update num_fonts.
16132 (Fclear_font_cache): Fix finding the target cache data.
16133
16134 2008-02-16 Glenn Morris <rgm@gnu.org>
16135
16136 * fontset.c (Finternal_char_font): Fix compilation warning.
16137
16138 2008-02-16 Eli Zaretskii <eliz@gnu.org>
16139
16140 * w32.c (init_user_info): Use TOKEN_USER and TOKEN_PRIMARY_GROUP
16141 instead of char arrays. Enlarge the size of array passed to
16142 get_token_information.
16143
16144 * font.c (Ffont_fill_gstring, Fget_font_glyphs): Fix compilation
16145 warnings.
16146
16147 2008-02-15 Dan Nicolaescu <dann@ics.uci.edu>
16148
16149 * .gdbinit: Don't set `args', it breaks gdb --args.
16150
16151 2008-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
16152
16153 * fileio.c (Finsert_file_contents): Adjust offsets when replacing
16154 within a narrowed buffer.
16155
16156 2008-02-14 Kenichi Handa <handa@ni.aist.go.jp>
16157
16158 * coding.c (decode_coding_object, encode_coding_object):
16159 Preserve Vdeactivate_mark. Delete unnecessary call of Fcurrent_buffer.
16160
16161 2008-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
16162
16163 * coding.c (coding_set_destination): Use BEG_BYTE rather than
16164 hardcoding 1.
16165 (detect_coding_system):
16166 * lisp.h (detect_coding_system, chars_in_text, multibyte_chars_in_text)
16167 (string_char_to_byte, string_byte_to_char, insert_from_gap):
16168 * insdel.c (insert_from_gap):
16169 * fns.c (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
16170 (string_char_to_byte, string_byte_to_char, string_make_multibyte)
16171 (string_to_multibyte):
16172 * character.c (chars_in_text, multibyte_chars_in_text):
16173 * fileio.c (Finsert_file_contents): Use EMACS_INT for buffer positions.
16174
16175 * character.h (FETCH_STRING_CHAR_ADVANCE)
16176 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
16177 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SDATA and SREF.
16178 (DEC_POS, BUF_DEC_POS): Use BEG_BYTE rather than hardcoding 1.
16179
16180 * casefiddle.c (casify_region): Only call after-change and composition
16181 functions on the part of the region that was changed.
16182
16183 * keyboard.c (read_avail_input):
16184 * frame.c (Fdelete_frame): Call Fdelete_terminal.
16185
16186 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
16187
16188 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
16189 (Fbuffer_local_value, Fbuffer_local_variables): Don't forget undo_list.
16190
16191 2008-02-11 Juanma Barranquero <lekktu@gmail.com>
16192
16193 * w32menu.c (push_submenu_start, push_submenu_end)
16194 (push_left_right_boundary, push_menu_pane, push_menu_item):
16195 * keyboard.c (read_key_sequence): Don't pass args with side effects
16196 to AREF, it fails when compiling with -DENABLE_CHECKING.
16197
16198 2008-02-11 Kenichi Handa <handa@ni.aist.go.jp>
16199
16200 * Makefile.in (${lispsource}international/charprop.el):
16201 Delete this target.
16202
16203 * search.c (boyer_moore): Fix incorrect synching of the trunk and
16204 emacs-unicode-2.
16205
16206 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
16207
16208 * terminal.c (Fdelete_terminal): Clean up the `force' path.
16209
16210 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
16211
16212 * frame.c (Qnoelisp): New symbol.
16213 (syms_of_frame): Initialize it.
16214 (Fdelete_frame): Use it to distinguish a mere `force' passed from some
16215 harmless Elisp code, from a strong `force' from x_connection_closed.
16216 * frame.h (Qnoelisp): Declare.
16217 * xterm.c (x_connection_closed): Pass `noelisp'.
16218
16219 * lisp.h (struct Lisp_Misc_Any, struct Lisp_Marker)
16220 (struct Lisp_Overlay, struct Lisp_Kboard_Objfwd)
16221 (struct Lisp_Save_Value, struct Lisp_Free): Use enum Lisp_Misc_Type
16222 rather than `int' for the type of `type'.
16223
16224 2008-02-10 Dan Nicolaescu <dann@ics.uci.edu>
16225
16226 * s/gnu-linux.h: Remove support for non-ELF and linux-1.x.
16227
16228 * Makefile.in (GNUC): Remove support for gcc-1.x.
16229
16230 2008-02-10 Richard Stallman <rms@gnu.org>
16231
16232 * lisp.h (ASET): Use AREF, not ASLOT.
16233
16234 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
16235
16236 * lisp.h (ASET): Check bounds.
16237
16238 2008-02-10 Glenn Morris <rgm@gnu.org>
16239
16240 * buffer.c (mode-name): Doc fix.
16241
16242 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
16243
16244 * Makefile.in:
16245 * emacs.c:
16246 * gmalloc.c:
16247 * keyboard.c:
16248 * lisp.h:
16249 * m/ibm370aix.h:
16250 * process.c:
16251 * regex.c:
16252 * s/hpux.h:
16253 * sysdep.c:
16254 * sysselect.h:
16255 * systty.h:
16256 * unexec.c:
16257 * w32term.c:
16258 * xsmfns.c:
16259 * xterm.c: Remove code that deals with obsolete variables.
16260
16261 * s/msdos.h (DONT_NEED_ENVIRON): Don't define.
16262
16263 * ecrt0.c: Replace the DONT_NEED_ENVIRON test with MSDOS test,
16264 nothing else needs it anymore.
16265
16266 2008-02-09 Eli Zaretskii <eliz@gnu.org>
16267
16268 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use unibyte_to_multibyte_table
16269 instead of unibyte_char_to_multibyte.
16270
16271 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
16272
16273 * s/gnu-linux.h: Remove commented out code.
16274
16275 * unexec.c: Remove references to obsolete variable COFF_ENCAPSULATE.
16276
16277 * Makefile.in: Update what RMS says about using autoconf.
16278 (C_COMPILER, COFF_ENCAPSULATE, MAKE_PARALLEL): Remove obsolete variable.
16279 (C_SWITCH_MACHINE_1, C_SWITCH_SYSTEM_1, C_SWITCH_SITE_1)
16280 (C_SWITCH_X_SITE_1, C_SWITCH_X_MACHINE_1)
16281 (C_SWITCH_X_SYSTEM_1): Move invariant code outside conditional.
16282
16283 2008-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
16284
16285 * keymap.c (Fkey_description): Move side effect outside of macro call.
16286
16287 * xfaces.c (Finternal_make_lisp_face):
16288 * keyboard.c (add_command_key, parse_menu_item): Use ASET.
16289
16290 * fontset.c (free_face_fontset): Use FONTSET_FROM_ID.
16291 (syms_of_fontset): Use ASET.
16292
16293 * fns.c (concat): Move side effect outside of macro call.
16294 (hash_clear): Use ASET.
16295
16296 2008-02-08 Richard Stallman <rms@gnu.org>
16297
16298 * frame.c (Fdelete_frame): If FORCE, don't call hooks.
16299 If FORCE, and frame has a surrogate minibuffer for another frame,
16300 delete the other frame first.
16301
16302 2008-02-07 Timo Savola <timo.savola@iki.fi>
16303
16304 * xterm.c (x_detect_focus_change): Handle embed client message.
16305 (handle_one_xevent): Ditto.
16306 (handle_one_xevent): If embedded and we get a button press/release,
16307 request focus.
16308 (xembed_set_info, xembed_send_message): New functions.
16309 (x_make_frame_visible): Call xembed_set_info if embedded.
16310 (x_make_frame_invisible): Call xembed_set_info if embedded.
16311 (x_term_init): Initialize Xatom_XEMBED.
16312 (x_make_frame_visible): Check for FRAME_X_EMBEDDED_P also.
16313 (x_iconify_frame): Ditto.
16314
16315 * xterm.h (struct x_display_info): Add AtomXatom_XEMBED.
16316 (enum xembed_info, enum xembed_message, enum xembed_focus)
16317 (enum xembed_modifier, enum xembed_accelerator): New.
16318 (xembed_set_info, xembed_send_message): Declare.
16319 (FRAME_X_EMBEDDED_P): New.
16320
16321 * gtkutil.c (xg_create_frame_widgets): If frame is embedded, call
16322 gtk_plug_new.
16323
16324 * xfns.c (Fx_create_frame): Do not override the explicitly set parent
16325 window ID of a frame.
16326 (x_window): Reparent frame if embedded.
16327 (Fx_create_frame): Don't set border width if embedded.
16328
16329 * emacs.c (USAGE3): Add --parent-id.
16330 (standard_args): Ditto.
16331
16332 2008-02-07 Jan Djärv <jan.h.d@swipnet.se>
16333
16334 * coding.c (DECODE_EMACS_MULE_COMPOSITION_CHAR): Use "do...while (0)".
16335
16336 2008-02-07 Jim Meyering <meyering@redhat.com>
16337
16338 Use "do...while (0)", not "if (1)...else" in macro definitions.
16339 The latter provokes a warning from gcc about the empty else, when
16340 followed by ";". Also, without that trailing semicolon, it would
16341 silently swallow up any following statement.
16342 * syntax.h (SETUP_SYNTAX_TABLE)
16343 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Likewise.
16344 * buffer.h (DECODE_POSITION): Likewise.
16345 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
16346 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): Likewise.
16347 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Likewise.
16348 (FETCH_CHAR_ADVANCE): Likewise.
16349 (FETCH_CHAR_ADVANCE_NO_CHECK): Likewise.
16350
16351 2008-02-07 Jim Meyering <meyering@redhat.com>
16352
16353 * lread.c [lint]: Don't include <sys/inode.h>.
16354
16355 2008-02-07 Stefan Monnier <monnier@iro.umontreal.ca>
16356
16357 * xselect.c (x_handle_dnd_message):
16358 * xmenu.c (digest_single_submenu, xmenu_show):
16359 * xdisp.c (with_echo_area_buffer_unwind_data)
16360 (format_mode_line_unwind_data, unwind_format_mode_line)
16361 (display_menu_bar):
16362 * eval.c (Ffetch_bytecode):
16363 * doc.c (store_function_docstring):
16364 * ccl.c (resolve_symbol_ccl_program, ccl_get_compiled_code)
16365 (Fccl_execute, Fccl_execute_on_string, Fregister_code_conversion_map):
16366 * buffer.c (add_overlay_mod_hooklist): Use ASET.
16367
16368 2008-02-07 Kenichi Handa <handa@m17n.org>
16369
16370 * ftxfont.c (ftxfont_open): Don't set
16371 dpyinfo->smallest_font_height and dpyinfo->smallest_char_width to 0.
16372
16373 * ftfont.c (ftfont_open): Fix previous change.
16374
16375 2008-02-06 Jason Rumney <jasonr@gnu.org>
16376
16377 * w32font.c (w32font_text_extents): Fill in lbearing metric.
16378 Use cached metrics for ASCII characters.
16379 (w32font_open_internal): Don't set font's owning_frame.
16380 Cache metrics for ASCII characters.
16381
16382 * w32font.h (struct w32font_info): Add ascii_metrics.
16383 Remove owning_frame.
16384
16385 2008-02-06 Kenichi Handa <handa@ni.aist.go.jp>
16386
16387 * xdisp.c (x_produce_glyphs): Don't set it->ascent and it->descent
16388 to negative value.
16389
16390 * ftxfont.c (ftxfont_draw): Use s->font_info, not face->font_info.
16391
16392 * ftfont.c (ftfont_open): Fix calculation of font->font.average_width.
16393
16394 * charset.c (syms_of_charset): Set QCtest and Qeq.
16395
16396 2008-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
16397
16398 * process.c (Fstart_process):
16399 * callproc.c (Fcall_process): Handle the case where
16400 Funhandled_file_name_directory returns nil.
16401
16402 * font.h (enum lgstring_indices, enum lglyph_indices): New enums.
16403 (LGSTRING_SLOT, LGSTRING_SET_SLOT): New macros.
16404 * font.c (check_gstring): Use them and AREF to access the vector before
16405 we know it's really a gstring.
16406 (Ffont_shape_text): Fix typo.
16407 (Ffont_shape_text, Ffont_otf_alternates): Fix up int/Lisp_Object mixups.
16408
16409 * composite.h (Fcompose_region_internal, Fcompose_string_internal):
16410 Declare.
16411
16412 * chartab.c (make_sub_char_table): Remove noop-yet-incorrect statement.
16413
16414 2008-02-05 Jason Rumney <jasonr@gnu.org>
16415
16416 * w32font.c (w32font_open_internal): Fill min_width with tmAveCharWidth.
16417 Set smallest_font_height and smallest_char_width in display info.
16418
16419 2008-02-05 Kenichi Handa <handa@ni.aist.go.jp>
16420
16421 * coding.c (decode_eol): Pay attention to coding->dst_multibyte.
16422
16423 2008-02-05 Miles Bader <miles@gnu.org>
16424
16425 * xfaces.c (get_lface_attributes, merge_named_face)
16426 (lookup_named_face, lookup_derived_face, realize_named_face):
16427 Revert 2008-02-01 change by cyd@stupidchicken.com.
16428
16429 2008-02-04 Kenichi Handa <handa@ni.aist.go.jp>
16430
16431 * fontset.c (Ffontset_info): Handle the case of inhibitting the
16432 fallback fonts.
16433 (Ffontset_info) [USE_FONT_BACKEND]: Fix getting of opened font names.
16434
16435 2008-02-04 Jason Rumney <jasonr@gnu.org>
16436
16437 * w32font.c (w32font_open_internal): Use font_unparse_fcname to
16438 set full_name.
16439 (w32font_open_internal): Use xmalloc, xrealloc, xfree.
16440
16441 2008-02-03 Jason Rumney <jasonr@gnu.org>
16442
16443 * makefile.w32-in (OBJ1): Include font.o here.
16444 (FONTOBJ) [USE_FONTBACKEND]: Instead of here.
16445
16446 2008-02-02 Jason Rumney <jasonr@gnu.org>
16447
16448 * makefile.w32-in (temacs): Bump EMHEAP to 21.
16449
16450 2008-02-01 Jason Rumney <jasonr@gnu.org>
16451
16452 * s/cygwin.h: Define VIRT_ADDR_VARIES.
16453
16454 * puresize.h [VIRT_ADDR_VARIES]: Don't include CYGWIN in condition.
16455
16456 2008-02-01 Andreas Schwab <schwab@suse.de>
16457
16458 * Makefile.in (shortlisp, lisp): Update for rename of
16459 ../lisp/language/myanmar.el.
16460
16461 2008-02-01 Chong Yidong <cyd@stupidchicken.com>
16462
16463 * xfaces.c (get_lface_attributes): Delete function.
16464 (merge_named_face, lookup_named_face, lookup_derived_face)
16465 (realize_named_face): Call lface_from_face_name directly, and use
16466 the fact that merge_face_vectors does not alter its FROM argument.
16467
16468 2008-02-01 Jason Rumney <jasonr@gnu.org>
16469
16470 * w32term.c (w32_read_socket) <WM_CHAR>: Decode non-Unicode
16471 input in the default locale. Handle non-Unicode multibyte input.
16472
16473 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
16474
16475 * fontset.c (reorder_font_vector): Exclude nil elements from the
16476 font group. Don't try multiple fonts.
16477 (fontset_font): Adjust for the above change.
16478 (Finternal_char_font): Return nil if the found font doesn't
16479 contain the character ch.
16480
16481 * Makefile.in (lisp, shortlisp): Add cham.el.
16482
16483 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
16484
16485 * font.h (FONTP): Make it return 1 also for a font-object.
16486
16487 * .gdbinit (xfontset): New function.
16488
16489 * font.c (font_find_for_lface): Check if the character C is
16490 supported or not only for the first font.
16491
16492 * fontset.c (reorder_font_vector): Fix typo.
16493 (fontset_find_font): Don't add a font-spec specifying a script.
16494 Use 0 (not Qt) for the indication of empty font-group. Change the
16495 format of RFONT-DEF. Return Qt if no font in the font-group
16496 support the character.
16497 (fontset_font): Adjust for the above change. If no font was
16498 found the character, remember that.
16499 (face_for_char): Adjust for the change of RFONT-DEF.
16500 (Fset_fontset_font): Allow nil for FONT-SPEC to explicitly specify
16501 no font for the target.
16502 (Finternal_char_font): Adjust for the change of RFONT-DEF.
16503
16504 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
16505
16506 * font.c (font_load_for_face): Handle the case that the font in
16507 face->lface is a string.
16508
16509 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
16510
16511 * xfaces.c (set_lface_from_font_and_fontset): Set the fontname in lface.
16512
16513 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
16514
16515 * xfaces.c (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]:
16516 Fix previous change. If the frame is not on a window system,
16517 signal an error.
16518
16519 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
16520
16521 * coding.c (decode_coding_object, encode_coding_object): Adjust
16522 marker positions after conversion.
16523
16524 * lisp.h (struct Lisp_Marker): New member need_adjustment.
16525
16526 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
16527
16528 * font.c (font_find_for_lface): Fix the handling of the return
16529 value of font_has_char.
16530 (Ffont_shape_text): Fix previous change.
16531
16532 * fontset.c (FONTSET_REF_AND_RANGE): Delete it.
16533 (fontset_ref_and_range): Delete it.
16534 (fontset_find_font): Call char_table_ref_and_range instead of
16535 FONTSET_REF_AND_RANGE.
16536 (make_fontset): Don't setup font groups of Latin here.
16537 (Fset_fontset_font): Don't overwrite the setting of FONTSET_ASCII.
16538 (new_fontset_from_font): Make the specified font the default for
16539 all Latin characters.
16540
16541 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
16542
16543 * xfaces.c (Finternal_set_lisp_face_attribute): Check if the frame
16544 is on a window system before accessing the fontset of the frame.
16545
16546 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
16547
16548 * Makefile.in (lisp, shortlisp): Add kherm.el and myanmar.el.
16549
16550 * ftfont.c (ftfont_driver): Set ftfont_shape in ftfont_driver only
16551 when both HAVE_M17N_FLT and HAVE_LIBOTF are defined.
16552
16553 * font.c (Ffont_shape_text): If the font driver doesn't have a
16554 shaper function, make zero-width glyphs to have at least one-pixel
16555 width. Fix setting of `to' field of glyphs.
16556
16557 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
16558
16559 * ftfont.c (ftfont_drive_otf): Fix setting of FROM and TO slots of
16560 glyphs.
16561
16562 * font.h (struct font_driver): Improve docstring of member `shape'.
16563
16564 2008-02-01 Kenichi Handa <handa@m17n.org>
16565
16566 * composite.c (syms_of_composite): Fix docstring of
16567 auto-composition-function.
16568
16569 * font.h (LGLYPH_SIZE): New macro.
16570
16571 * font.c (Ffont_fill_gstring): Stop filling when a character not
16572 supported by the font is found.
16573 (Ffont_shape_text): When a shape callback function returns nil,
16574 try at most two more times with larger gstring.
16575 (Ffont_at): Fix getting of w. Call font_at with correct 5th argument.
16576
16577 * xdisp.c (handle_auto_composed_prop): Change the argument to
16578 auto-composition-function.
16579
16580 * ftfont.c (ftfont_encode_char): Use the macro FONT_INVALID_CODE.
16581 (ftfont_shape_by_flt): If an element of lgstring is nil, make a
16582 Lispy glyph and store it in the lgstring.
16583
16584 * xfont.c (xfont_encode_char): Use the macro FONT_INVALID_CODE.
16585
16586 * xftfont.c (xftfont_encode_char): Use the macro FONT_INVALID_CODE.
16587
16588 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
16589
16590 * font.c (Ffont_shape_text): Avoid unnecessary composition.
16591
16592 * fontset.c (Vfont_encoding_charset_alist): New variable.
16593 (syms_of_fontset): DEFVAR it.
16594 (reorder_font_vector, fontset_find_font): Optimize for the case of
16595 no need of reordering.
16596 (face_for_char): Map the charset property by
16597 Vfont_encoding_charset_alist.
16598
16599 2008-02-01 Jason Rumney <jasonr@gnu.org>
16600
16601 * w32font.c (logfonts_match): Don't check adstyle here.
16602 (font_matches_spec): Check here against physical font instead.
16603 (add_font_entity_to_list): Avoid some substitutions.
16604
16605 * font.c (font_parse_fcname): Default weight and slant to normal.
16606 (font_score): Prefer normal fonts if weight or slant unspecified.
16607 (font_score) [WINDOWSNT]: Scale weight difference down to closer
16608 match freetype scores.
16609
16610 2008-02-01 Jason Rumney <jasonr@gnu.org>
16611
16612 * w32font.c (w32font_text_extents): Don't use the frame stored in the
16613 font, as it may have been deleted.
16614 (w32_enumfont_pattern_entity): Map generic family to adstyle using
16615 most common hyphenless variation.
16616 (logfonts_match): Check generic family.
16617 (font_matches_spec): Don't check generic family here.
16618 (fill_in_logfont): Set generic family based on adstyle.
16619
16620 * w32font.h (w32font_get_cache): Update declaration.
16621
16622 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
16623
16624 * ftfont.c (ftfont_get_cache): Adjust the argument type.
16625
16626 * frame.c (x_set_font_backend): Don't call Fclear_font_cache.
16627 If none of the new drivers are available, call font_update_drivers
16628 with the old drivers.
16629
16630 * w32font.c (w32font_get_cache): Adjust the argument type.
16631
16632 * xfont.c (xfont_get_cache): Adjust the argument type.
16633
16634 * font.h (struct font_driver): Change argument type of get_cache.
16635
16636 * xftfont.c (xftfont_start_for_frame): Delete prototype.
16637
16638 * font.c (Ffont_get): Fix arguments to Fassoc.
16639 (font_prepare_cache, font_finish_cache, font_get_cache): New functions.
16640 (font_clear_cache): New function.
16641 (font_list_entities, font_matching_entity): Use font_get_cache.
16642 (font_update_drivers): Call font_clear_cache when finishing a driver.
16643
16644 * fontset.c (fontset_find_font): Fix previous change.
16645
16646 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
16647
16648 * xterm.c (x_check_font) [USE_FONT_BACKEND]: Don't access
16649 dpyinfo->font_table.
16650 (x_delete_display) [USE_FONT_BACKEND]: Likewise.
16651 (x_delete_terminal) [USE_FONT_BACKEND]: Likewise.
16652
16653 * font.c (font_at): Handle the case that the arg C is negative.
16654 Handle the unibyte case.
16655 (Ffont_at): Call font_at with the arg C -1.
16656
16657 * xdisp.c (handle_auto_composed_prop): Don't get a character at
16658 the position here, and call font_at with the arg C -1.
16659 Don't check the range of the existing composition at the point.
16660
16661 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
16662
16663 * fontset.c (fontset_add): New args charset_id and family.
16664 Change caller.
16665 (load_font_get_repertory, fontset_find_font): Assume that
16666 font_spec is always a font-spec object.
16667 (Fset_fontset_font): Always store a font-spec object in a fontset.
16668
16669 * xdisp.c (handle_auto_composed_prop): Use Fget_text_property
16670 instead of get_property_and_range.
16671
16672 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
16673
16674 * xftfont.c (struct xftfont_info): Delete the member ft_face.
16675 (xftfont_open): Don't keep locking face.
16676 (xftfont_close): Don't unlock face.
16677 (xftfont_anchor_point, xftfont_shape): Lock and unlock face.
16678
16679 * fontset.c (fontset_find_font): Don't prefer a font of
16680 supplementary charset.
16681
16682 2008-02-01 Kenichi Handa <handa@m17n.org>
16683
16684 * ftfont.c (struct OpenTypeSpec): Rename members script_tag to
16685 script, langsys_tag to langsys, new member script.
16686 (OTF_TAG_STR): Terminate by '\0'.
16687 (ftfont_get_open_type_spec): If :otf prop is spec, limit the
16688 listing to the script specified in that property. Fix arg to
16689 OTF_check_features.
16690
16691 2008-02-01 Jason Rumney <jasonr@gnu.org>
16692
16693 * w32font.h: New file.
16694
16695 * w32font.c: Include it.
16696 (struct w32font_info): Add owning_frame field. Move to w32font.h.
16697 (w32font_open): Set owning_frame.
16698 (w32font_text_extents): Use owning_frame.
16699 (struct font_callback_data): Add opentype_only field.
16700 (add_font_entity_to_list): Use it to filter fonts.
16701 Don't check against full name.
16702 (w32font_list_internal): New function.
16703 (w32font_list): Use it.
16704 (w32font_match_internal): New function.
16705 (w32font_match): Use it.
16706 (w32font_open_internal): New function.
16707 (w32font_open): Use it.
16708 (w32font_get_cache, w32font_close, w32font_has_char)
16709 (w32font_encode_char, w32font_text_extents, w32font_draw):
16710 Make non-static.
16711
16712 * makefile.w32-in (w32font.o): Depend on w32font.h.
16713
16714 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
16715
16716 * charset.c (Fdefine_charset_internal): Record a supplementary
16717 charset at the tail of Vcharset_order_list.
16718
16719 * font.c (Ffont_shape_text): Fix the return value.
16720
16721 * ftfont.c (OTF_SYM_TAG, OTF_TAG_STR): Fix argument names.
16722
16723 * xdisp.c (handle_auto_composed_prop): Fix previous change.
16724
16725 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
16726
16727 * ftfont.c (struct OpenTypeSpec): New struct.
16728 (OTF_SYM_TAG, OTF_TAG_STR): New macros.
16729 (ftfont_get_open_type_spec): New function.
16730 (ftfont_list) [HAVE_LIBOTF]: Check otf-spec property.
16731
16732 * lread.c (read1): Redo the previous change with checking Vpurify_flag.
16733
16734 2008-02-01 Jason Rumney <jasonr@gnu.org>
16735
16736 * w32font.c (add_font_entity_to_list): Compare only the beginning
16737 of full name.
16738
16739 2008-02-01 Kenichi Handa <handa@m17n.org>
16740
16741 * xdisp.c (handle_auto_composed_prop): Simplify the code.
16742 Never return HANDLED_RECOMPUTE_PROPS.
16743
16744 2008-02-01 Kenichi Handa <handa@m17n.org>
16745
16746 * font.c (font_gstring_produce): Delete it.
16747
16748 * composite.h (COMPOSITION_METHOD):
16749 Handle COMPOSITION_WITH_GLYPH_STRING.
16750
16751 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
16752
16753 * xfont.c (Qx): Delete.
16754 (syms_of_xfont): Don't initialize Qx.
16755
16756 * composite.h (enum composition_method):
16757 Define COMPOSITION_WITH_GLYPH_STRING unconditionally.
16758
16759 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
16760
16761 * xfaces.c [HAVE_WINDOW_SYSTEM]: Include "font.h" unconditionally.
16762 (choose_face_font): Accept new form of font-spec.
16763
16764 * frame.h (font_driver_list): Declare it unconditionally.
16765 (struct frame): Define members font_driver_list and font_data_list
16766 unconditionally.
16767
16768 * fontset.c: Include "font.h" unconditionally.
16769 (generate_ascii_font_name): Use font_parse_xlfd and font_unparse_xlfd.
16770 (Fset_fontset_font): Accept a font-spec object.
16771
16772 * font.c (font_unparse_xlfd): If pixel_size is zero, make the
16773 PIXEL_SIZE part a wild card.
16774
16775 * dispextern.h (struct glyph_string): Define members clip and
16776 num_clips unconditionally.
16777 (struct face): Define members font_info and extra unconditionally.
16778
16779 * ftfont.c (ftfont_open): Set members maybe_otf and otf of
16780 ftfont_info only when HAVE_LIBOTF is defined.
16781
16782 2008-02-01 Andreas Schwab <schwab@suse.de>
16783
16784 * xdisp.c (back_to_previous_visible_line_start): Fix type of beg
16785 and end.
16786
16787 2008-02-01 Jason Rumney <jasonr@gnu.org>
16788
16789 * w32font.c (w32font_driver): Add new fields.
16790
16791 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
16792
16793 * Makefile.in (ALL_CFLAGS): Add @M17N_FLT_CFLAGS@.
16794 (FONTSRC, FONTOBJ) [HAVE_WINDOW_SYSTEM]: Set them unconditionally.
16795 (LIBES): Add @M17N_FLT_CFLAGS@.
16796
16797 * composite.c (compose_text): Don't treat the new style
16798 composition specially.
16799
16800 * emacs.c (main): Call syms_of_font unconditionally.
16801
16802 * font.h (FONT_ENTITY_NOT_LOADABLE)
16803 (FONT_ENTITY_SET_NOT_LOADABLE): New macros.
16804 (LGSTRING_XXXX, LGLYPH_XXX): Adjust for the change of lispy gstring.
16805 (struct font_driver): New member shape.
16806 (font_registry_charsets): Extern it.
16807 (font_find_for_lface, font_prepare_composition): Adjust prototype.
16808 (font_otf_capability, font_drive_otf): Delete their externs.
16809
16810 * font.c [HAVE_M17N_FLT]: Include <m17n-flt.h>.
16811 (font_charset_alist, font_registry_charsets): Move from xfont.c
16812 and rename.
16813 (font_prop_validate_otf): New function.
16814 (font_property_table): Register it for QCotf.
16815 (DEVICE_DELTA, adjust_anchor, REPLACEMENT_CHARACTER)
16816 (font_drive_otf): Delete.
16817 (font_prepare_composition): New arg F. Adjust for the change of
16818 lispy gstring.
16819 (font_find_for_lface): New arg C.
16820 (font_load_for_face): Adjust for the change of font_find_for_lface.
16821 (Ffont_make_gstring, Ffont_fill_gstring): Adjust for the change of
16822 lispy gstring.
16823 (Ffont_shape_text): New function.
16824 (Fopen_font): If the font size is not given, use 12-pixel.
16825 (Ffont_at): New arg STRING.
16826 (syms_of_font): Initalize font_charset_alist.
16827 Declare Ffont_shape_text as a Lisp function. Call syms_of_XXfont
16828 conditionally.
16829
16830 * fontset.c (fontset_find_font) [USE_FONT_BACKEND]: Try multiple
16831 fonts of the same font-spec. Change the format of RFONT-DEF.
16832 (face_for_char, make_fontset_for_ascii_face, Finternal_char_font):
16833 Adjust for the change of RFONT-DEF.
16834 (Fset_fontset_font) [USE_FONT_BACKEND]: Handle new format of font-spec.
16835
16836 * ftfont.h: New file.
16837
16838 * ftfont.c: Don't include Freetype headers. Include "ftfont.h".
16839 (struct ftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
16840 (ftfont_open) [HAVE_LIBOTF]: Initialize the above members.
16841 (ftfont_driver) [HAVE_LIBOTF, HAVE_M17N_FLT]: Don't set
16842 font_otf_capability and font_drive_otf, set ftfont_shape.
16843 (ftfont_list): Adjust for the change of :otf property value.
16844 (struct MFLTFontFT) [HAVE_LIBOTF, HAVE_M17N_FLT]: New struct.
16845 (ftfont_get_glyph_id, ftfont_get_metrics, ftfont_check_otf)
16846 (adjust_anchor, ftfont_drive_otf, ftfont_shape_by_flt)
16847 (ftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
16848 (DEVICE_DELTA) [HAVE_LIBOTF, HAVE_M17N_FLT]: New macro.
16849 (otf_gstring, gstring, m17n_flt_initialized): New variables.
16850
16851 * w32term.c (x_draw_composite_glyph_string_foreground):
16852 Adjust for the change of lispy gstring.
16853
16854 * xdisp.c (handle_composition_prop): Adjust for the change of
16855 lispy gstring. Call a function for auto-composition with the
16856 third arg it->window.
16857 (fill_composite_glyph_string): Adjust for the change of lispy string.
16858 (x_produce_glyphs): Adjust for the change of font_prepare_compositionl.
16859
16860 * xfaces.c (set_font_frame_param): Adjust for the change of
16861 font_find_for_lface.
16862
16863 * xfont.c (x_font_charset_alist): Move to font.c and rename.
16864 (xfont_registry_charsets): Likewise. Change caller.
16865 (syms_of_xfont): Don't handle x_font_charset_alist.
16866
16867 * xftfont.c: Include "ftfont.h".
16868 (struct xftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
16869 (xftfont_open) [HAVE_LIBOTF]: Initialize the above members.
16870 (xftfont_close) [HAVE_LIBOTF]: Close otf.
16871 (xftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
16872 (syms_of_xftfont) [HAVE_LIBOTF, HAVE_M17N_FLT]:
16873 Set xftfont_driver.shape to xftfont_shape.
16874
16875 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
16876 the change of lispy gstring.
16877
16878 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
16879
16880 * ftxfont.c (ftxfont_end_for_frame): Fix array indexing error.
16881
16882 2008-02-01 Jason Rumney <jasonr@gnu.org>
16883
16884 * w32font.c (w32font_draw): Fill background manually.
16885
16886 2008-02-01 Jason Rumney <jasonr@gnu.org>
16887
16888 * font.c (Qfontp): Remove unused symbol.
16889 (QCantialias): New symbol.
16890 (syms_of_font): Define it.
16891 (font_property_table): Set a validator for QCantialias.
16892
16893 * w32font.c (CLEARTYPE_QUALITY, CLEARTYPE_NATURAL_QUALITY):
16894 Define if not already.
16895 (QCfamily): Share with xfaces.c.
16896 (Qstandard, Qsubpixel, Qnatural): New symbols.
16897 (syms_of_w32font): Define them. Don't define QCfamily here.
16898 (w32_antialias_type, lispy_antialias_type): New functions.
16899 (w32_enumfont_pattern_entity): New arg requested_font.
16900 Set antialias parameter if non-default was requested.
16901 (fill_in_logfont): Fill in lfQuality if :antialias specified.
16902
16903 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
16904
16905 * lread.c (read1): Undo the previous change.
16906
16907 2008-02-01 CHENG Gao <chenggao@gmail.com> (tiny change)
16908
16909 * frame.c (Fdelete_frame): Call font_update_drivers only when
16910 USE_FONT_BACKEND is defined.
16911
16912 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
16913
16914 * font.h (struct font_bitmap): New member bits_per_pixel.
16915 (struct font_driver): New members start_for_frame and end_for_frame.
16916 (struct font_data_list): New struct.
16917 (font_put_frame_data, font_get_frame_data): Extern them.
16918
16919 * frame.h (struct frame): New member font_data_list.
16920
16921 * font.c (font_update_drivers): Call driver->start_for_frame and
16922 driver->end_for_frame at proper timings.
16923 (font_put_frame_data, font_get_frame_data): New functions.
16924 (Ffont_spec): Add usage in the docstring.
16925
16926 * frame.c (make_frame): Initialize f->font_data_list to NULL.
16927 (Fdelete_frame): Call font_update_drivers.
16928
16929 * xftfont.c (struct xftface_info): Delete the member xft_draw.
16930 (xftfont_prepare_face, xftfont_done_face): Adjust for the above change.
16931 (xftfont_get_xft_draw): New function.
16932 (xftfont_draw): Get XftDraw by xftfont_get_xft_draw.
16933 (xftfont_end_for_frame): New function.
16934 (syms_of_xftfont): Set xftfont_driver.end_for_frame.
16935
16936 * ftxfont.c (ftxfont_get_gcs): Rename from ftxfont_create_gcs.
16937 Change argument. Cache GCs in the per-frame data.
16938 (struct ftxfont_frame_data): New struct.
16939 (ftxfont_draw_bitmap): New arg gc_fore and flush.
16940 (ftxfont_prepare_face, ftxfont_done_face): Delete them.
16941 (ftxfont_draw): Get GCs by ftxfont_get_gcs. Reflect s->clip in GCs.
16942 (ftxfont_end_for_frame): New function.
16943 (syms_of_ftxfont): Set ftxfont_driver.end_for_frame.
16944
16945 * ftfont.c (ftfont_get_bitmap): Set bitmap->bits_per_pixel.
16946
16947 2008-02-01 Kenichi Handa <handa@m17n.org>
16948
16949 * xselect.c (Vselection_coding_system)
16950 (Vnext_selection_coding_system): Delete them.
16951 (syms_of_xselect): Don't declare selection-coding-system and
16952 next-selection-coding-system. They are declared in select.el.
16953
16954 2008-02-01 Jason Rumney <jasonr@gnu.org>
16955
16956 * w32term.h (WM_UNICHAR, UNICODE_NOCHAR): Define if not already.
16957
16958 * w32fns.c: Include imm.h.
16959 (get_composition_string_fn, get_ime_context_fn): New optional
16960 system functions.
16961 (globals_of_w32fns): Load them from imm32.dll.
16962 (ignore_ime_char): New flag.
16963 (w32_wnd_proc): Handle WM_UNICHAR, WM_IME_CHAR and
16964 WM_IME_ENDCOMPOSITION messages.
16965
16966 * w32term.c (w32_read_socket) [WM_UNICHAR]: Handle as
16967 MULTIBYTE_CHAR_KEYSTROKE_EVENT.
16968
16969 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
16970
16971 * lread.c (READCHAR): Call readchar with the 2nd arg NULL.
16972 (READCHAR_REPORT_MULTIBYTE): New macro.
16973 (readchar): New 2nd arg MULTIBYTE.
16974 (read1): Use READCHAR_REPORT_MULTIBYTE for the first read.
16975 Make symbol's name multibyte according to the multibyteness of the
16976 source.
16977
16978 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
16979
16980 * xfaces.c (face_for_overlay_string): Call lookup_face with
16981 correct arguments (fix of synching with the trunk).
16982
16983 2008-02-01 Kenichi Handa <handa@m17n.org>
16984
16985 * font.c (font_prop_validate_symbol, font_prop_validate_style)
16986 (font_prop_validate_non_neg, font_prop_validate_spacing):
16987 Delete argument prop_index.
16988 (font_property_table): Change arguments to validater. Change Callers.
16989 (font_lispy_object): Delete.
16990 (font_at): Use font_find_object instead fo font_lispy_object.
16991
16992 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
16993
16994 * fileio.c (Fexpand_file_name): Adjust multibyteness of directory
16995 and file names.
16996
16997 2008-02-01 Jason Rumney <jasonr@gnu.org>
16998
16999 * w32font.c (add_font_name_to_list): Avoid vertical fonts.
17000 (font_matches_spec): Remove debug output.
17001 (add_font_entity_to_list): Avoid using substituted fonts.
17002
17003 2008-02-01 Jason Rumney <jasonr@gnu.org>
17004
17005 * doc.c (Fsnarf_documentation):
17006 * Makefile.in (temacs${EXEEXT}, mostlyclean): Undo last change.
17007
17008 2008-02-01 Miles Bader <miles@gnu.org>
17009
17010 * dispextern.h (struct glyph_row): Only define "clip" field if
17011 HAVE_WINDOW_SYSTEM is defined.
17012
17013 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
17014
17015 Fix up multi-tty merge.
17016
17017 * xterm.c (handle_one_xevent): Remove duplicate code and fix up nesting
17018 and indentation.
17019
17020 * xfaces.c (free_realized_face, clear_face_gcs):
17021 Include font_done_for_face in the input_blocked section, just in case.
17022
17023 * xdisp.c (decode_mode_spec): Use terminal-local coding systems.
17024 (get_char_face_and_encoding): Undo last change and remove the *other*
17025 duplicate definition (i.e. keep the one that's better scoped and that
17026 includes code for the font-backend).
17027
17028 * terminal.c (create_terminal): Default keyboard_coding to
17029 `no-conversion' and terminal_coding to `undecided'.
17030
17031 * lread.c (read1): Use XSETPVECTYPE to set a pseudovector's tag.
17032
17033 * fontset.c (free_realized_fontsets): Check that the table entry does
17034 contain a fontset before trying to compare it to `base'.
17035
17036 * emacs.c (main): Move syms_of_data, syms_of_fileio, syms_of_alloc,
17037 syms_of_charset, and syms_of_coding earlier because init_window_once
17038 now needs Vcoding_system_hash_table to be setup.
17039
17040 * coding.h (default_buffer_file_coding): Remove.
17041
17042 * coding.c (default_buffer_file_coding): Remove.
17043 (Fterminal_coding_system, Fkeyboard_coding_system): Use ->id rather
17044 than ->symbol, and use the terminal-local coding system.
17045 (syms_of_coding): Don't setup the coding-systems that are not
17046 terminal-local.
17047 (Fdefine_coding_system_internal): Use XCAR/XCDR.
17048
17049 * chartab.c (Fmake_char_table, make_sub_char_table, copy_char_table):
17050 Use XSETPVECTYPE now that XSETCHAR_TABLE doesn't set the tag anymore.
17051
17052 * alloc.c (Fmake_char_table, make_sub_char_table): Remove. They're now
17053 in chartab.c and were re-added here by mistake.
17054 (Fpurecopy): Use XSETPVECTYPE after copying a COMPILED pseudovector.
17055
17056 * doc.c (Fsnarf_documentation):
17057 * Makefile.in (temacs${EXEEXT}, mostlyclean): Move buildobj.lst from
17058 src to etc.
17059
17060 * ChangeLog.10: Add mistakenly removed entry.
17061
17062 2008-02-01 Dan Nicolaescu <dann@ics.uci.edu>
17063
17064 * Makefile.in (fringe.o, minibuf.o): Fix dependencies.
17065
17066 2008-02-01 Miles Bader <miles@gnu.org>
17067
17068 * xdisp.c (get_char_face_and_encoding): Remove extraneous definition.
17069 Add extra args to FACE_FOR_CHAR.
17070
17071 2008-02-01 Kenichi Handa <handa@m17n.org>
17072
17073 * keymap.c (where_is_internal_1): If key is a cons, store the copy
17074 in sequence.
17075
17076 * chartab.c (map_sub_char_table, map_char_table): If the range
17077 contains just one character, call the function with that character
17078 even if the depth is not 3.
17079
17080 2008-02-01 Jason Rumney <jasonr@gnu.org>
17081
17082 * w32font.c (w32font_text_extents): Calculate metrics for the
17083 whole string.
17084
17085 2008-02-01 Jason Rumney <jasonr@gnu.org>
17086
17087 * w32xfns.c (get_next_msg): Consolidate WM_PAINT messages.
17088
17089 2008-02-01 Jason Rumney <jasonr@gnu.org>
17090
17091 * w32term.c (x_set_glyph_string_clipping): Use
17092 get_glyph_string_clip_rects.
17093 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
17094 Adjust for the change of struct glyph_string.
17095
17096 * w32font.c (w32font_draw): Do clipping here.
17097
17098 2008-02-01 Kenichi Handa <handa@m17n.org>
17099
17100 * xftfont.c (xftfont_draw): Adjust for the change of struct
17101 glyph_string.
17102
17103 * xterm.c (x_set_glyph_string_clipping): Use
17104 get_glyph_string_clip_rects.
17105 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
17106 Adjust for the change of struct glyph_string.
17107
17108 * xdisp.c (get_glyph_string_clip_rects): Reflect s->row->clip to
17109 the resulting clip(s}.
17110 (expose_overlaps): Add arg r. Change callers. Set it to
17111 row->clip temporarily.
17112 (expose_window): Redraw rows overlapping the exposed area.
17113
17114 * dispextern.h (struct glyph_row): New member clip.
17115 (struct glyph_string): Delete members clip_x, clip_y, clip_width,
17116 clip_height, new member clip, and num_clips.
17117
17118 2008-02-01 Kenichi Handa <handa@m17n.org>
17119
17120 * data.c (Fchar_or_string_p): Fix docstring.
17121
17122 2008-02-01 Kenichi Handa <handa@m17n.org>
17123
17124 * xftfont.c (xftfont_draw): If s->font_info != s->face->font_info,
17125 create a temporary XftDraw object.
17126
17127 2008-02-01 Kenichi Handa <handa@m17n.org>
17128
17129 * font.c (Ffontp): Fix docstring.
17130
17131 * coding.c (detect_coding_iso_2022): Don't treat SI/SO codes as a
17132 strong evidence of ISO-2022.
17133
17134 2008-02-01 Kenichi Handa <handa@m17n.org>
17135
17136 * abbrev.c (abbrev_check_chars): Use CHAR_TABLE_REF, not
17137 SYNTAX_ENTRY_FOLLOW_PARENT.
17138
17139 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
17140
17141 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and change
17142 its type.
17143 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
17144 Update to the new type of weak_hash_tables and next_weak.
17145
17146 * lisp.h (struct Lisp_Hash_Table): Change next_weak from Lisp_Object to
17147 a plain C pointer to Lisp_Hash_Table.
17148
17149 * lisp.h (XGCTYPE, GC_HASH_TABLE_P, GC_NILP, GC_NUMBERP, GC_NATNUMP)
17150 (GC_INTEGERP, GC_SYMBOLP, GC_MISCP, GC_VECTORLIKEP, GC_STRINGP)
17151 (GC_CONSP, GC_FLOATP, GC_VECTORP, GC_OVERLAYP, GC_MARKERP)
17152 (GC_INTFWDP, GC_BOOLFWDP, GC_OBJFWDP, GC_BUFFER_OBJFWDP)
17153 (GC_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP)
17154 (GC_KBOARD_OBJFWDP, GC_PSEUDOVECTORP, GC_WINDOW_CONFIGURATIONP)
17155 (GC_PROCESSP, GC_WINDOWP, GC_SUBRP, GC_COMPILEDP, GC_BUFFERP)
17156 (GC_SUB_CHAR_TABLE_P, GC_CHAR_TABLE_P, GC_BOOL_VECTOR_P, GC_FRAMEP)
17157 (GC_EQ): Remove since they've been identical to their non-GC_
17158 alter-egos ever since the markbit was eradicated.
17159
17160 * alloc.c:
17161 * buffer.c:
17162 * buffer.h:
17163 * data.c:
17164 * fileio.c:
17165 * filelock.c:
17166 * fns.c:
17167 * frame.h:
17168 * lisp.h:
17169 * macterm.c:
17170 * print.c:
17171 * process.c:
17172 * w32fns.c:
17173 * w32menu.c:
17174 * w32term.c:
17175 * xfns.c:
17176 * xmenu.c:
17177 * xterm.c: Replace uses of GC_* macros with the non-GC_ versions.
17178
17179 2008-02-01 Kenichi Handa <handa@m17n.org>
17180
17181 * chartab.c (map_sub_char_table): Make it work for the top-level
17182 char-table. Fix handling of parent char-table.
17183 (map_char_table): Adjust for the above change.
17184
17185 2008-02-01 Jason Rumney <jasonr@gnu.org>
17186
17187 * w32font.c (Qgdi): Rename from Qw32.
17188
17189 2008-02-01 Jason Rumney <jasonr@gnu.org>
17190
17191 * w32bdf.c (get_quoted_string): Make function static.
17192
17193 2008-02-01 Kenichi Handa <handa@m17n.org>
17194
17195 * xftfont.c (xftfont_open): If one of font's ASCII glyph has
17196 bigger ascent and descent than those of the font, use them as
17197 font's ascent and descent.
17198
17199 2008-02-01 Kenichi Handa <handa@m17n.org>
17200
17201 * Makefile.in (${lispsource}international/charprop.el): Move this
17202 target within "#ifdef HAVE_UNIDATA" and "#endif".
17203
17204 2008-02-01 Kenichi Handa <handa@m17n.org>
17205
17206 * Makefile.in (lisp): Add ${lispsource}language/tai-viet.el.
17207 (shortlisp): Add ../lisp/language/tai-viet.el.
17208
17209 2008-02-01 Ulrich Mueller <ulm@gentoo.org>
17210
17211 * Makefile.in (${lispsource}international/charprop.el): Depend on
17212 temacs${EXEEXT}.
17213
17214 2008-02-01 Jason Rumney <jasonr@gnu.org>
17215
17216 * w32font.c (w32font_close): Delete the GDI font object.
17217
17218 * w32menu.c: Include character.h.
17219
17220 * w32proc.c: Likewise.
17221
17222 * w32select.c: Likewise.
17223
17224 * makefile.w32-in (w32proc.o): Depend on character.h.
17225
17226 2008-02-01 Jason Rumney <jasonr@gnu.org>
17227
17228 * w32fns.c (syms_of_w32fns): Use DEFSYM macro.
17229
17230 * w32menu.c (syms_of_w32menu): Likewise.
17231
17232 * w32proc.c (syms_of_ntproc): Likewise.
17233
17234 * w32select.c (syms_of_w32select): Likewise.
17235
17236 * w32term.c (syms_of_w32term): Likewise.
17237
17238 2008-02-01 Jason Rumney <jasonr@gnu.org>
17239
17240 * w32font.c (w32font_draw): Delete brush after using it.
17241
17242 2008-02-01 Jason Rumney <jasonr@gnu.org>
17243
17244 * w32font.c (w32font_open): Don't set font_idx.
17245 (w32font_text_extents): Try GetTextExtentPoint32W before defaulting
17246 to font settings.
17247 (w32font_draw): Fill background explicitly.
17248
17249 2008-02-01 Jason Rumney <jasonr@gnu.org>
17250
17251 * w32term.c (w32_initialize): Don't call w32font_initialize.
17252
17253 * w32font.c (w32font_info): Remove subranges.
17254 (QCsubranges, Qmodern, Qswiss, Qroman): Remove.
17255 (QCfamily, Qmonospace, Qsans_serif, Qmono, Qsans, Qsans__serif)
17256 (Qraster, Qoutline, Qlatin, Qgreek, Qcoptic, Qcyrillic, Qarmenian)
17257 (Qhebrew, Qarabic, Qsyriac, Qnko, Qthaana, Qdevanagari, Qbengali)
17258 (Qgurmukhi, Qgujarati, Qoriya, Qtamil, Qtelugu, Qkannada)
17259 (Qmalayalam, Qsinhala, Qthai, Qlao, Qtibetan, Qmyanmar, Qgeorgian)
17260 (Qhangul, Qethiopic, Qcherokee, Qcanadian_aboriginal, Qogham)
17261 (Qrunic, Qkhmer, Qmongolian, Qsymbol, Qbraille, Qhan)
17262 (Qideographic_description, Qcjk_misc, Qkana, Qbopomofo, Qkanbun)
17263 (Qyi, Qbyzantine_musical_symbol, Qmusical_symbol, Qmathematical):
17264 New symbols.
17265 (font_callback_data): New struct.
17266 (w32font_list, w32font_match): Use it.
17267 (w32font_open): Don't populate subranges.
17268 (w32font_has_char): Use script Lisp symbols, not subrange bitmask.
17269 (w32font_encode_char): Always return unicode code-point as-is.
17270 (w32font_text_extents): Supply a transformation matrix to
17271 GetGlyphOutline. Never look up by glyph index. Avoid looping
17272 twice. Use unicode version of GetTexExtentPoint32 instead of
17273 glyph index version.
17274 (set_fonts_frame): Remove.
17275 (w32_enumfont_pattern_entity): Add frame parameter, use it to
17276 set frame parameter. Use backward compatible fake foundries.
17277 Save generic family in extra slot under QCfamily. Make width slot
17278 constant. Save QCspacing value. Save list of scripts instead of
17279 binary subranges.
17280 (w32_generic_family, logfonts_match, font_matches_spec): New functions.
17281 (add_font_entity_to_list): Use font_callback_data struct. Filter
17282 unwanted fonts.
17283 (add_one_font_entity_to_list): Use font_callback_data struct.
17284 (w32_registry): Default to iso10646_1.
17285 (fill_in_logfont): Use dpi from extra slot. Don't bother with
17286 string font registries. Don't fill in font name if it is a generic
17287 family name, fill family instead. Use spacing, family and script
17288 extra info to fill pitch, family and charset fields.
17289 (list_all_matching_fonts): Use font_callback_data struct.
17290 (unicode_range_for_char): Remove.
17291 (font_supported_scripts): New function.
17292 (w32font_initialize): Remove.
17293 (syms_of_w32font): Update which symbols are defined.
17294
17295 2008-02-01 Jason Rumney <jasonr@gnu.org>
17296
17297 * font.c (font_pixel_size): Reverse assq_no_quit args.
17298
17299 * w32term.h (FONT_WIDTH): Report max width, not average.
17300 (FONT_MAX_WIDTH): Remove.
17301 (FONT_AVG_WIDTH): New macro.
17302
17303 * xfaces.c (Fx_list_fonts) [WINDOWSNT]: Remove Windows only
17304 redefinition of FONT_WIDTH.
17305
17306 * w32term.c (x_font_min_bounds): Use FONT_AVG_WIDTH.
17307 (w32_cache_char_metrics): Use FONT_WIDTH.
17308
17309 * w32fns.c (w32_load_system_font, w32_list_fonts): Use FONT_AVG_WIDTH.
17310
17311 2008-02-01 Jason Rumney <jasonr@gnu.org>
17312
17313 * w32font.c (w32font_open): Make lfHeight negative.
17314
17315 * w32fns.c (x_default_font_parameter): Use new style font name.
17316 (Fx_create_frame, x_create_tip_frame): Initialize resx and resy.
17317
17318 2008-02-01 Jason Rumney <jasonr@gnu.org>
17319
17320 * w32font.c (QCsubranges): New symbol.
17321 (w32font_open, w32font_has_char): Get subranges from subproperty
17322 of extra.
17323 (w32_enumfont_pattern_entity): Set subranges as subproperty of extra.
17324 (syms_of_w32font): Define :subranges symbol.
17325
17326 * font.c (font_put_extra): Expose externally.
17327
17328 * font.h (font_put_extra): Move declaration from font.c.
17329
17330 * font.c (Ffont_get): Use font driver to determine otf capability.
17331 (adjust_anchor): Check if driver defines anchor_point before using.
17332
17333 * w32font.c (w32font_open): Handle size, height and pixel_size better.
17334 (w32font_draw): Use options.
17335 (w32_enumfont_pattern_entity): Set size to 0 for scalable fonts.
17336 Fix detection of truetype fonts.
17337 (registry_to_w32_charset): Handle charsets other than iso8859-1
17338 expressed as lisp symbols.
17339 (w32_registry): Express charset as lisp symbol.
17340 (fill_in_logfont): Reverse pixel and point height logic.
17341 Don't set width here. Set quality to default.
17342
17343 * w32fns.c (w32_load_system_font): Fix detecting FIXED_PITCH fonts.
17344 (x_to_w32_font): Fill in lfPitchAndFamily correctly.
17345
17346 * xterm.c (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
17347 Remove redundant loop and allocation.
17348
17349 * makefile.w32-in (font.o, w32font.o): New objects.
17350 (fontset.o, xdisp.o, xfaces.o, w32fns.o, w32term.o): Depend on font.h.
17351 (FONTOBJ): New group of objects conditioned on USE_FONT_BACKEND.
17352
17353 * xdisp.c (fill_composite_glyph_string): Make the first arg to
17354 STORE_XCHARB a valid l-value.
17355
17356 * w32term.c (w32_native_per_char_metric): Swap width and rbearing
17357 calculations for non-Truetype fonts.
17358 (x_draw_glyph_string): Sync with xterm.c.
17359 (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
17360 Remove redundant code.
17361 (w32_initialize) [USE_FONT_BACKEND]: Call w32font_initialize.
17362
17363 * w32term.h (w32_output_data) [USE_FONT_BACKEND]: Add fontp member.
17364 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro from xterm.h.
17365
17366 * w32fns.c [USE_FONT_BACKEND]: Port font backend changes from xfns.c.
17367 (x_to_w32_charset, w32_to_x_charset): Expose externally.
17368
17369 * w32font.c: New file for w32 font backend.
17370
17371 2008-02-01 Kenichi Handa <handa@m17n.org>
17372
17373 * term.c: Don't include "buffer.h" twice.
17374
17375 2008-02-01 Kenichi Handa <handa@m17n.org>
17376
17377 * character.c (Funibyte_string): New function.
17378 (syms_of_character): Defsubr it.
17379
17380 2008-02-01 Jason Rumney <jasonr@gnu.org>
17381
17382 * w32term.c [USE_FONT_BACKEND]:
17383 (x_get_font_repertory, note_mouse_movement, x_set_mouse_face_gc)
17384 (x_set_glyph_string_clipping, x_set_glyph_string_clipping_exactly)
17385 (x_draw_glyph_string, x_draw_glyph_string_foreground)
17386 (x_draw_composite_glyph_string_foreground, x_new_fontset2)
17387 (x_free_frame_resources): Sync with xterm.c.
17388
17389 2008-02-01 Andreas Schwab <schwab@suse.de>
17390
17391 * lread.c (read1): Use CHAR_TABLE_STANDARD_SLOTS to validate
17392 char-table size.
17393
17394 2008-02-01 Kenichi Handa <handa@m17n.org>
17395
17396 * font.c (check_otf_features): Define it regardless of HAVE_LIBOTF.
17397
17398 2008-02-01 Kenichi Handa <handa@m17n.org>
17399
17400 * ftfont.c (ftfont_driver): Delete font_otf_gsub and
17401 font_otf_gpos, add font_drive_otf.
17402
17403 * fontset.c (fontset_find_font): Pay attention to font size
17404 specified for a font.
17405 (reorder_font_vector): Check contents of font_def.
17406
17407 * font.c (struct otf_list): Delete it.
17408 (otf_list): Make it a lisp variable.
17409 (otf_open): Use lispy otf_list.
17410 (generate_otf_features): Rename from parse_gsub_gpos_spec.
17411 (check_otf_features): New function.
17412 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
17413 New functions.
17414 (font_drive_otf): New function merging font_otf_gsub and
17415 font_otf_gpos.
17416 (font_open_for_lface): New arg spec. Change argument order.
17417 (font_load_for_face): Adjust for the change of font_open_for_lface.
17418 (Ffont_drive_otf): New function merging Ffont_otf_gsub and
17419 Ffont_otf_gpos.
17420 (syms_of_font): Staticpro otf_list. Delete defsubr of
17421 Sfont_otf_gsub and Sfont_otf_gpos. Defsubr Sfont_drive_otf.
17422
17423 * xfaces.c (set_font_frame_param): Adjust for the change of
17424 font_open_for_lface.
17425
17426 * font.h (font_open_for_lface): Adjust prototype.
17427 (struct font_driver): Delete members otf_gsub and otf_gpos, add
17428 member otf_drive.
17429 (font_otf_gsub, font_otf_gpos): Delete externs.
17430 (font_drive_otf): Extern it.
17431
17432 2008-02-01 Kenichi Handa <handa@m17n.org>
17433
17434 * font.c (font_at): If the window W is not on a window system,
17435 return Qnil.
17436
17437 * coding.c (produce_chars, encode_coding): Don't call
17438 insert_from_gap if no characters to produce.
17439
17440 2008-02-01 Kenichi Handa <handa@m17n.org>
17441
17442 * fontset.c (free_realized_fontsets): Avoid unnecessary call of
17443 Fclear_face_cache.
17444
17445 * xfaces.c (face_for_font): Check also face->font==font->font.font.
17446
17447 2008-02-01 Miles Bader <miles@gnu.org>
17448
17449 * emacs.c (main): Change default value of `enable_font_backend' to 1.
17450 Parse "--disable-font-backend" option.
17451 (standard_args): Add "--disable-font-backend" option.
17452
17453 2008-02-01 Kenichi Handa <handa@m17n.org>
17454
17455 * fontset.c (fontset_find_font): New function.
17456 (fontset_font): Use fontset_find_font.
17457 (make_fontset_for_ascii_face): Don't set face ID in rfont_def.
17458 Register the specified font for all Latin characters.
17459 (new_fontset_from_font): Register the specified font for all Latin
17460 characters.
17461 (dump_fontset): For a realized fontset, include the base fontset
17462 name in the returned vector.
17463
17464 2008-02-01 Kenichi Handa <handa@m17n.org>
17465
17466 * character.h (CHAR_STRING): Cast C to unsigned on calling
17467 char_string.
17468
17469 * character.c (char_string): Type of arg C changed to unsigned.
17470 Signal an error if C is an invalid character code.
17471
17472 * editfns.c (general_insert_function, Fchar_to_string):
17473 Use CHARACTERP, not INTEGERP.
17474
17475 2008-02-01 Kenichi Handa <handa@m17n.org>
17476
17477 * character.h (MIN_MULTIBYTE_LEADING_CODE)
17478 (MAX_MULTIBYTE_LEADING_CODE): New macros.
17479
17480 * regex.c (analyse_first): Fix for multibyte characters in "case
17481 charset:" and "case categoryspec:".
17482
17483 2008-02-01 Andreas Schwab <schwab@suse.de>
17484
17485 * Makefile.in (LIBES): Move standard libraries to the end.
17486
17487 2008-02-01 Kenichi Handa <handa@m17n.org>
17488
17489 * alloc.c (Fgarbage_collect): If nextb->text->inhibit_shrinking is
17490 nonzero, don't shrink the buffer nextb.
17491
17492 * buffer.h (struct buffer_text): New member inhibit_shrinking.
17493
17494 * coding.c (coding_alloc_by_making_gap): New arg offset.
17495 (alloc_destination): Call coding_alloc_by_making_gap with the arg
17496 offset.
17497 (decode_coding_iso_2022): Update coding->safe_charsets.
17498 (decode_coding_gap): Temporarily set
17499 current_buffer->text->inhibit_shrinking to 1.
17500
17501 2008-02-01 Kenichi Handa <handa@m17n.org>
17502
17503 * xterm.c (x_draw_composite_glyph_string_foreground): Fix
17504 indexing into elements of s->cmp and s->char2b.
17505
17506 2008-02-01 Juanma Barranquero <lekktu@gmail.com>
17507
17508 * regex.c (RE_STRING_CHAR_AND_LENGTH) [! emacs]: Add missing arg `len'.
17509
17510 2008-02-01 Kenichi Handa <handa@m17n.org>
17511
17512 * regex.c (GET_CHAR_BEFORE_2, GET_CHAR_AFTER): Check the variable
17513 target_multibyte instead of multibyte.
17514 (re_match_2_internal): Call bcmp_translate with target_multibyte.
17515 (bcmp_translate): Change the argument name from multibyte to
17516 target_multibyte.
17517
17518 2008-02-01 Kenichi Handa <handa@m17n.org>
17519
17520 These changes are to compile a regexp into a pattern that can be
17521 used both for multibyte and unibyte targets.
17522
17523 * Makefile.in (search.o): Depend on charset.h.
17524
17525 * character.c (multibyte_char_to_unibyte_safe): New function.
17526
17527 * search.c: Include "charset.h".
17528 (compile_pattern_1): Delete argument multibyte. Don't set
17529 cp->buf.target_multibyte here. Set cp->buf.charset_unibyte.
17530 (compile_pattern): Don't compare cp->buf.target_multibyte.
17531 Compare cp->buf.charset_unibyte.
17532 (compile_pattern): Set cp->buf.target_multibyte.
17533
17534 * lisp.h (multibyte_char_to_unibyte_safe): Extern it.
17535
17536 * regex.h (struct re_pattern_buffer): New member charset_unibyte.
17537
17538 * regex.c (RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
17539 multibyte. Change callers.
17540 (RE_CHAR_TO_MULTIBYTE, RE_CHAR_TO_UNIBYTE): New macros.
17541 (MAKE_CHAR_MULTIBYTE, MAKE_CHAR_UNIBYTE): Delete. Change callers
17542 to use RE_CHAR_TO_MULTIBYTE and RE_CHAR_TO_UNIBYTE, respectively.
17543 (SETUP_ASCII_RANGE, SETUP_UNIBYTE_RANGE): New macros.
17544 (SETUP_MULTIBYTE_RANGE): Generate a more compact range_table.
17545 (regex_compile): Make the compiled pattern usable both for
17546 multibyte and unibyte targets.
17547 (analyse_first): Make the fastmap usable both for multibyte and
17548 unibyte targets.
17549 (TRANSLATE_VIA_MULTIBYTE): Delete.
17550 (re_match_2_internal): Pay attention to the case that the
17551 multibyteness of bufp and target may be different.
17552
17553 2008-02-01 Kenichi Handa <handa@m17n.org>
17554
17555 * xdisp.c (x_produce_glyphs): When a font is not found, make the
17556 empty box occupy at least one column width.
17557
17558 2008-02-01 Miles Bader <miles@gnu.org>
17559
17560 * Makefile.in: Remove redundant HAVE_XFT clause.
17561
17562 2008-02-01 Kenichi Handa <handa@m17n.org>
17563
17564 * xrdb.c (x_load_resources): Setup the default fontSet X resource.
17565
17566 2008-02-01 Kenichi Handa <handa@m17n.org>
17567
17568 * fontset.c (Finternal_char_font): Fix for the case of POSITION
17569 being nil.
17570
17571 2008-02-01 Kenichi Handa <handa@m17n.org>
17572
17573 * xftfont.c (xftfont_open): Call FcConfigSubstitute.
17574
17575 2008-02-01 Kenichi Handa <handa@m17n.org>
17576
17577 * xftfont.c (xftfont_open): Don't enable antialias explicitly.
17578
17579 2008-02-01 Kenichi Handa <handa@m17n.org>
17580
17581 * search.c (simple_search): Fix previous change.
17582
17583 2008-02-01 Kenichi Handa <handa@m17n.org>
17584
17585 * xftfont.c (ftfont_font_format): Extern declaration.
17586
17587 * frame.c (x_set_font): Fix the second arg to fs_query_fontset.
17588
17589 * xfont.c (xfont_driver): Initialize ftfont_driver.type by 0.
17590 (xfont_list): Don't directly use Lisp_Object as an operand of &&.
17591
17592 * ftfont.c (ftfont_driver): Initialize ftfont_driver.type by 0.
17593 (ftfont_font_format): Fix previous change.
17594
17595 * font.h (Ffont_xlfd_name): EXFUN it.
17596
17597 * font.c (font_parse_xlfd): Fix the array size of `f'.
17598 (register_font_driver): Use EQ to compare driver->type.
17599
17600 * xfns.c (xic_create_xfontset2) [USE_FONT_BACKEND]: New function.
17601 (create_frame_xic) [USE_FONT_BACKEND]: Call xic_create_xfontset2.
17602 (xic_set_xfontset) [USE_FONT_BACKEND]: Likewise.
17603
17604 2008-02-01 Kenichi Handa <handa@m17n.org>
17605
17606 * ftfont.c (ftfont_pattern_entity, ftfont_list_generic_family)
17607 (ftfont_list, ftfont_font_format): Check if FC_FONTFORMAT is defined.
17608
17609 2008-02-01 Kenichi Handa <handa@m17n.org>
17610
17611 * xfont.c (xfont_open): Set font->format.
17612
17613 * xftfont.c (xftfont_open): Set font->format.
17614
17615 * ftfont.c (ftfont_pattern_entity): Add fontformat in a pattern.
17616 (ftfont_list): Include FC_FONTFORMAT in FcObject.
17617 (ftfont_open): Set font->format.
17618 (ftfont_font_format): New function.
17619
17620 * font.h (struct font): New member format.
17621
17622 * font.c (Qopentype): New variable.
17623 (syms_of_font): Defsym it.
17624 (Fquery_font): Change the format of the last element of the return
17625 value.
17626
17627 2008-02-01 Kenichi Handa <handa@m17n.org>
17628
17629 * xfns.c (xic_create_xfontset): Try the default fontset name as a
17630 last resort.
17631
17632 2008-02-01 Kenichi Handa <handa@m17n.org>
17633
17634 * coding.c (detect_coding_charset): Fix detection of multi-byte
17635 charset.
17636
17637 2008-02-01 Bob Halley <halley@play-bow.org> (tiny change)
17638
17639 * ccl.c (ccl_driver): If DST is NULL, set ccl->produced to 0.
17640
17641 2008-02-01 Kenichi Handa <handa@m17n.org>
17642
17643 * xdisp.c (get_next_display_element): Set it->face_id for the
17644 first component of a composition.
17645 (x_produce_glyphs): Check if the font is changed or not for composition.
17646
17647 2008-02-01 Kenichi Handa <handa@m17n.org>
17648
17649 * fontset.c (Qlatin): New variable.
17650 (syms_of_fontset): Define it as a lisp symbol.
17651 (Fset_fontset_font): If TARGET is `latin', use FONT_SPEC for ASCII.
17652
17653 2008-02-01 Kenichi Handa <handa@m17n.org>
17654
17655 * font.c (font_unparse_fcname): Pay attention to the case that
17656 some of font property is a null string.
17657
17658 2008-02-01 Kenichi Handa <handa@m17n.org>
17659
17660 * term.c: Include "composite.h".
17661 (encode_terminal_code): Output all components of composition.
17662 Check the size of encode_terminal_src.
17663 (produce_glyphs): For composition, call produce_composite_glyph.
17664 (append_composite_glyph, produce_composite_glyph): New functions.
17665
17666 * xdisp.c (x_produce_glyphs): In handling composition, if a font
17667 is not found, get font_info from the current ascii face.
17668
17669 2008-02-01 Kenichi Handa <handa@m17n.org>
17670
17671 * fileio.c (Finsert_file_contents): On replacing, temporarily bind
17672 buffer-file-name to Qnil before calling insert_from_buffer.
17673
17674 * font.c (font_unparse_fcname): Pay attention to the case that
17675 foundry is a null string.
17676
17677 2008-02-01 Kenichi Handa <handa@m17n.org>
17678
17679 * ftfont.c (ftfont_list): Allow registry "unicode-sip".
17680
17681 * font.c (Qunicode_sip): New variable.
17682 (syms_of_font): Declare it as a Lisp symbol.
17683
17684 * font.h (Qunicode_sip): Extern it.
17685
17686 2008-02-01 Kenichi Handa <handa@m17n.org>
17687
17688 * composite.c (get_composition_id): Pay attention to TAB component.
17689
17690 * xterm.c (x_draw_composite_glyph_string_foreground): Don't draw
17691 TAB. Adjust for the change of s->char2b which always points to
17692 the first element of allocated memory.
17693
17694 * xftfont.c (xftfont_text_extents): Fix calculation of descent value.
17695
17696 * xdisp.c (handle_composition_prop): Set it->c to the first
17697 non-TAB component.
17698 (fill_composite_glyph_string): Change argument.
17699 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the above change.
17700 (x_produce_glyphs): Fix handling of left/right padding.
17701
17702 2008-02-01 Kenichi Handa <handa@m17n.org>
17703
17704 * coding.c (detect_coding_system): Fix for handling off
17705 inhibit_iso_escape_detection. Fix for the case that no coding
17706 system is defined for a specific coding category.
17707
17708 2008-02-01 Kenichi Handa <handa@m17n.org>
17709
17710 * font.c (font_matching_entity): Delete unused local var.
17711
17712 * xftfont.c (xftfont_open): Call XftDefaultSubstitute before
17713 opening a font.
17714
17715 * fileio.c (Finsert_file_contents): On recovering a file, assume
17716 Unix-like eol.
17717 (choose_write_coding_system): On auto-saving a file, force
17718 Unix-like eol.
17719
17720 * coding.c (setup_coding_system): Fix setting of
17721 coding->common_flags based on eol_type.
17722 (coding_inherit_eol_type): If PARENT is not nil, be sure to
17723 inherit from it.
17724
17725 2008-02-01 Kenichi Handa <handa@m17n.org>
17726
17727 * alloc.c (NSTATICS): Increas to 0x600.
17728
17729 2008-02-01 Kenichi Handa <handa@m17n.org>
17730
17731 * ftfont.c (ftfont_driver): Set ftfont_driver.match to ftfont_match.
17732 (ftfont_list): Don't check :name property.
17733 (ftfont_match): New function.
17734 (ftfont_pattern_entity): If the pattern doesn't contain
17735 FC_SPACING, don't assume FC_MONO.
17736
17737 * font.h (struct font_driver): New member `match'.
17738 (font_update_drivers): Adjust prototype.
17739
17740 * font.c (font_parse_fcname, font_parse_name): Don't change :name
17741 property of FONT.
17742 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE, check_gstring): Define
17743 them unconditionally.
17744 (font_matching_entity): New function.
17745 (font_open_by_name): Try font_matching_entity if exact match is
17746 not found.
17747 (font_update_drivers): Delete the arg FONT. Return a list of
17748 actually used backends. Don't free faces, font caches here.
17749 Don't store data in frame parameters. Don't call x_set_font.
17750 (Ffont_spec): Store :name property as is.
17751 (Ffont_get): Check HAVE_LIBOTF before calling font_otf_capability.
17752 (Ffont_otf_gsub): Call font->driver->otf_gsub instead of font_otf_gsub.
17753 (Ffont_otf_gpos): Call font->driver->otf_gpos instead of font_otf_gpos.
17754 (Ffont_otf_alternates): Check if the driver has otf_gsub function.
17755 Call font->driver->otf_gsub instead of font_otf_gsub.
17756
17757 * frame.c (x_set_font_backend): Do more works that were done in
17758 font_update_drivers before.
17759
17760 * xfont.c (xfont_match): New function.
17761 (xfont_driver): Set xfont_driver.match to xfont_match.
17762 (xfont_draw): Set font in GC if necessary.
17763
17764 * ftxfont.c (ftxfont_match): New function.
17765 (syms_of_ftxfont): Set ftxfont_driver.match to ftxfont_match.
17766
17767 * xftfont.c (xftfont_match): New function.
17768 (syms_of_xftfont): Set xftfont_driver.match to xftfont_match.
17769
17770 2008-02-01 Kenichi Handa <handa@m17n.org>
17771
17772 * font.h (struct font): New member scalable.
17773 (struct font_driver): New arg ALTERANTE_SUBST to otf_gsub.
17774 (font_otf_gsub): Adjust prototype.
17775
17776 * font.c (font_otf_capability): Fix handling of the default langsys.
17777 (parse_gsub_gpos_spec): Change type to void. New arg nbytes.
17778 Check the contents of SPEC.
17779 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE): New macros.
17780 (check_gstring): New function.
17781 (REPLACEMENT_CHARACTER): New macro.
17782 (font_otf_gsub): New arg alternate_subst. Be sure to set all
17783 glyph codes of GSTRING.
17784 (font_otf_gpos): Be sure to set all glyph codes of GSTRING.
17785 (font_prepare_composition): Set cmp->glyph_len.
17786 (font_open_entity): Set font->scalable.
17787 (Ffont_get): Handle :otf property.
17788 (Ffont_otf_gsub, Ffont_otf_gpos, Ffont_otf_alternates): New
17789 functions.
17790 (Fquery_font): Use font->font.full_name.
17791 (syms_of_font): Defsubr Sfont_otf_gsub, Sfont_otf_gpos, and
17792 Sfont_otf_alternates.
17793
17794 * ftfont.c (ftfont_open): Set font->font.full_name and
17795 font->font.name properly. Fix calculation of font->font.height
17796 and font->min_width.
17797
17798 * ftxfont.c (ftxfont_create_gcs): New function.
17799 (ftxfont_draw_bitmap): Fix arg to ftfont_driver.get_bitmap.
17800 (ftxfont_draw_backgrond): Fix filling region.
17801 (ftxfont_default_fid): New function.
17802 (ftxfont_open): Set xfont->fid to the return value of
17803 ftxfont_default_fid.
17804 (ftxfont_prepare_face): Use ftxfont_create_gcs to create GCs.
17805 (ftxfont_done_face): Free only GCs that are created by
17806 ftxfont_create_gcs.
17807 (ftxfont_draw): If face->gc != s->gc, create proper GCs.
17808
17809 * xterm.c (x_set_glyph_string_clipping_exactly) [USE_FONT_BACKEND]:
17810 Clip to src->width, etc (not src->clip_XXX).
17811
17812 * xfns.c (x_create_tip_frame) [USE_FONT_BACKEND]: Handle
17813 FontBackend frame parameter.
17814
17815 2008-02-01 Kenichi Handa <handa@m17n.org>
17816
17817 * font.h (struct font_driver_list): New member `on'.
17818 (Fclear_font_cache): EXFUN it.
17819 (font_update_drivers): Extern it.
17820
17821 * font.c (font_unparse_fcname): Fix typo (swidth->width).
17822 (font_list_entities): Check driver_list->on.
17823 (register_font_driver): Initalize `on' member to 0.
17824 (font_update_drivers): New function.
17825 (Fclear_font_cache): Check driver_list->on.
17826
17827 * frame.h (Qfont_backend): Extern it.
17828 (x_set_font_backend): Extern it.
17829
17830 * frame.c (Qfont_backend): New variable.
17831 (frame_parms): New element for font-backend.
17832 (x_set_font_backend): New function.
17833
17834 * xfns.c (Fx_create_frame) [USE_FONT_BACKEND]: Handle
17835 FontBackend frame parameter.
17836 (x_frame_parm_handlers) [USE_FONT_BACKEND]: New element
17837 x_set_font_backend.
17838
17839 * xfont.c (xfont_list): Don't try listing by :name property if the
17840 name is not for XLFD.
17841
17842 2008-02-01 Kenichi Handa <handa@m17n.org>
17843
17844 * font.h (LGLYPH_FROM, LGLYPH_TO, LGLYPH_SET_FROM)
17845 (LGLYPH_SET_TO): New macros.
17846 (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WADJUST): Check if adjustment
17847 element of G is vector or not.
17848 (font_at): Extern it.
17849
17850 * font.c: Include window.h.
17851 (font_lispy_object): New function.
17852 (font_prepare_composition): Check LGLYPH_FORM (g) to detect the
17853 end of valid glyph.
17854 (font_close_object): Fix getting (struct font *).
17855 (font_at): New function.
17856 (Ffont_get): If FONT is a font-object, get entity from it.
17857 (Ffont_make_gstring): Initialize elements of glyphs with nil.
17858 (Ffont_fill_gstring): Use macro LGSTRING_XXX and LGLYPH_XXX. Fix
17859 range check.
17860 (Ffont_at): New function.
17861 (syms_of_font): Defsubr Sfont_at.
17862
17863 * xdisp.c (it_props): Move the entry for Qauto_composed to just
17864 before the entry for Qcomposition.
17865 (handle_auto_composed_prop): Call auto-composition-function with 4 args.
17866 (handle_composition_prop) [USE_FONT_BACKEND]: Set it->face_id from
17867 the font in gstring.
17868 (fill_composite_glyph_string) [USE_FONT_BACKEND]: Check
17869 LGLYPH_FORM (g) to detect the end of valid glyph.
17870 (x_produce_glyphs) [USE_FONT_BACKEND]: Don't update it->face_id if
17871 we are composing with gstring.
17872
17873 * xterm.c (x_draw_composite_glyph_string_foreground) [USE_FONT_BACKEND]:
17874 Check if adjustment is vector or not.
17875
17876 * Makefile.in (font.o): Make it depends on window.h.
17877
17878 2008-02-01 Kenichi Handa <handa@m17n.org>
17879
17880 * xterm.c (x_draw_composite_glyph_string_foreground): Check if
17881 adjustment is vector or not.
17882
17883 2008-02-01 Miles Bader <miles@gnu.org>
17884
17885 * character.h (CHECK_CHARACTER): Redefine in terms of CHECK_TYPE.
17886
17887 2008-02-01 Kenichi Handa <handa@m17n.org>
17888
17889 * font.h (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WIDTH, LGLYPH_WADJUST)
17890 (LGLYPH_SET_WIDTH): Adjusted for the change of LGLYPH format.
17891 (LGLYPH_ADJUSTMENT, LGLYPH_SET_ADJUSTMENT): New macros.
17892
17893 * font.c (font_merge_old_spec): Treat '*' in foundry as a wild card.
17894 (DEVICE_DELTA): Fix typo.
17895 (font_otf_gpos, font_prepare_compositio): Adjust for the change of
17896 LGLYPH format.
17897
17898 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
17899 the change of LGLYPH format.
17900
17901 2008-02-01 Kenichi Handa <handa@m17n.org>
17902
17903 * ftfont.c (ftfont_list): Fix typo.
17904 (ftfont_build_basic_charsets): Don't include letters with diacritics.
17905
17906 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
17907
17908 * xfaces.c (realize_non_ascii_face): Set face->extra to NULL.
17909
17910 * xftfont.c (xftfont_done_face): Call XftDrawDestroy only if
17911 xftface_info is non-NULL.
17912
17913 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
17914
17915 * ftfont.c (ftfont_list): Move misplaced #endif.
17916
17917 2008-02-01 Kenichi Handa <handa@m17n.org>
17918
17919 * ftfont.c (ftfont_list): Pay attention to the case that
17920 FC_CAPABILITY is not defined.
17921
17922 2008-02-01 Kenichi Handa <handa@m17n.org>
17923
17924 * xftfont.c (xftfont_open): Set charset related members to -1.
17925
17926 * ftfont.c (ftfont_list): Handle QCotf property. Fix handling of
17927 QCname.
17928 (ftfont_open): Set charset related members to -1.
17929
17930 * fontset.c (Votf_script_alist): New variable.
17931 (syms_of_fontset): Initialize it.
17932 (fontset_font): Delete unused variable.
17933
17934 * fontset.h (Votf_script_alist): Extern it.
17935
17936 * font.c (font_find_for_lface): Optimize code.
17937
17938 * font.h (font_close_object, font_merge_old_spec): Extern them.
17939
17940 2008-02-01 Kenichi Handa <handa@m17n.org>
17941
17942 * font.c (QCscalable, Qc, Qm, Qp, Qd): New variables.
17943 (syms_of_font): Initialize them.
17944 (font_pixel_size): Allow float value in dpi.
17945 (font_prop_validate_type): Delete.
17946 (font_prop_validate_symbol, font_prop_validate_style): Change argument.
17947 Change caller.
17948 (font_prop_validate_non_neg): Rename from font_prop_validate_size.
17949 (font_prop_validate_extra): Delete.
17950 (font_prop_validate_spacing): New function.
17951 (font_property_table): Add elements for all known properties.
17952 (get_font_prop_index): Rename from check_font_prop_name. New
17953 argument FROM. Change caller.
17954 (font_prop_validate): Validate all known properties.
17955 (font_put_extra): Delete argument force. Change caller.
17956 (font_expand_wildcards): Make it static. Fix the way of shrinking
17957 the possible range.
17958 (font_parse_xlfd): Delete argument merge. Fix handling of RESX,
17959 RESY, SPACING, and AVGWIDTH. Don't validate property values here.
17960 Change caller.
17961 (font_unparse_xlfd): Handle dpi, spacing, and scalable properties.
17962 (font_parse_fcname): Delete argument merge. Fix parsing of point
17963 size. Don't validate properties values here. Change caller.
17964 (font_unparse_fcname): Handle dpi, spacing, and scalable properties.
17965 (font_open_by_name): Delete unused variable.
17966 (Ffont_spec): Likewise. Validate property values.
17967 (Ffont_match_p): New function.
17968
17969 * font.h (QCscalable): Extern it.
17970 (font_parse_xlfd, font_parse_fcname): Adjust prototype.
17971
17972 * ftfont.c (ftfont_list): Handle properties dpi, spacing, and scalable.
17973
17974 * xfont.c (xfont_query_font): Adjust for the change of font_parse_xlfd.
17975 (xfont_list_pattern): New function.
17976 (xfont_list): Use xfont_list_pattern.
17977
17978 2008-02-01 Kenichi Handa <handa@m17n.org>
17979
17980 * font.h (Flist_fonts): EXFUN it.
17981
17982 2008-02-01 Jason Rumney <jasonr@gnu.org>
17983
17984 * w32term.c (w32_initialize): Add back smoothing_type and
17985 smoothing_enabled definitions.
17986
17987 2008-02-01 Kenichi Handa <handa@m17n.org>
17988
17989 * xterm.c (x_draw_glyph_string) [USE_FONT_BACKEND]: Check
17990 s->face->font on determining underline position.
17991
17992 2008-02-01 Kenichi Handa <handa@m17n.org>
17993
17994 * font.c (font_parse_xlfd): Fix generating of CHARSET_REGISTRY field.
17995 (font_has_char): Accept font-object too.
17996 (font_find_for_lface): Try at first with a size specified in face.
17997
17998 2008-02-01 Kenichi Handa <handa@m17n.org>
17999
18000 * frame.c (x_set_font) [USE_FONT_BACKEND]: Fix argument to
18001 font_open_by_name.
18002
18003 2008-02-01 Kenichi Handa <handa@m17n.org>
18004
18005 * font.h (QCspacing, QCdpi): Extern them.
18006 (enum font_spacing): New enum.
18007 (FONT_PIXEL_SIZE_QUANTUM): New macro.
18008
18009 * font.c (POINT_TO_PIXEL): Don't divide POINT by 10.
18010 (QCspacing, QCdpi): New variables.
18011 (syms_of_font): Initialize them.
18012 (font_pixel_size): New function.
18013 (font_put_extra): New function.
18014 (font_parse_xlfd): Fix handling of font size. Add QCdpi property
18015 in FONT_EXTRA.
18016 (font_parse_fcname): Handle enumerated values (e.g. bold).
18017 Fix handling font size. Add QCname property that contains only
18018 unknown properties.
18019 (font_score): Change argument. Change caller. Pay attention to
18020 FONT_PIXEL_SIZE_QUANTUM.
18021 (font_sort_entites, font_list_entities, font_find_for_lface)
18022 (font_open_for_lface, font_open_by_name): Fix handling of font size.
18023 (Ffont_spec): Add QCname property that contains only unknown properties.
18024
18025 * ftfont.c (ftfont_list): Use assq_no_quit, not Fassq. Don't
18026 include weight in listing pattern, instead check weight of each
18027 listed font. Don't include scalable in pattern. Pay attention to
18028 FONT_PIXEL_SIZE_QUANTUM.
18029
18030 2008-02-01 Kenichi Handa <handa@m17n.org>
18031
18032 * font.c (font_parse_fcname): Fix parsing of point-size.
18033 (font_unparse_fcname): Produce symbolic names for style properties.
18034 (font_list_entities): Handle float size correctly.
18035 (font_open_by_name): Prefer `normal' property values if the name
18036 doesn't specify them.
18037
18038 * fontset.c (Finternal_char_font): Use font_get_name, not
18039 Ffont_xlfd_name.
18040
18041 * ftfont.c (ftfont_pattern_entity): Use the numeric value 100 for
18042 FC_WEIGHT_REGULAR. Exclude FC_SIZE and FC_PIXEL_SIZE from listing
18043 pattern. Don't force scalable.
18044
18045 * xftfont.c (xftfont_open): For generating a name, start from
18046 96-byte buffer.
18047
18048 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
18049
18050 * frame.h (x_new_fontset2): Fix prototype.
18051
18052 2008-02-01 Kenichi Handa <handa@m17n.org>
18053
18054 * font.h (struct font_driver): Delete member parse_name.
18055 (font_match_p, font_get_spec, font_parse_fcname)
18056 (font_unparse_fcname): Extern them.
18057 (font_get_name): Adjust prototype.
18058
18059 * font.c (XLFD_SMALLNUM_MASK): Delete this macro.
18060 (XLFD_LARGENUM_MASK): Delete XLFD_ENCODING_MASK from it.
18061 (font_expand_wildcards): Fix handling ENCODING field. Avoid
18062 unnecessary checks for weight, slant, and swidth.
18063 (font_parse_fcname): New function.
18064 (font_unparse_fcname): New function.
18065 (font_parse_name): New function.
18066 (font_match_p): New function.
18067 (font_get_name): Change return value to Lisp string.
18068 (font_get_spec): New function.
18069 (Qunspecified, Qignore_defface): Don't extern them.
18070 (font_find_for_lface): Assume that LFACE is fully specified.
18071 (font_load_for_face): If lface[LFACE_FONT_INDEX] is an font
18072 object, use it for FACE.
18073 (font_open_by_name): Call Ffont_spec with QCname prop. Don't call
18074 driver->parse_name.
18075 (Ffont_spec): Call font_parse_name, not font_parse_xlfd.
18076
18077 * fontset.h (new_fontset_from_font) [USE_FONT_BACKEND]: Adjust
18078 prototype.
18079
18080 * fontset.c (new_fontset_from_font) [USE_FONT_BACKEND]: Delete
18081 argument F. Don't call Fnew_fontset. Instead, directly call
18082 make_fontset.
18083
18084 * frame.h (x_new_fontset2) [USE_FONT_BACKEND]: Adjust prototype.
18085
18086 * frame.c (x_set_font) [USE_FONT_BACKEND]: Adjust for the change
18087 of x_new_fontset2.
18088
18089 * ftfont.c (Qmonospace, Qsans_serif, Qserif, Qmono, Qsans)
18090 (Qsans__serif): New variables.
18091 (ftfont_generic_family_list): New variable.
18092 (syms_of_ftfont): Initialize the above variables.
18093 (ftfont_pattern_entity): Delete argument NAME.
18094 (ftfont_list_generic_family): New function.
18095 (ftfont_parse_name): Delete this function.
18096 (ftfont_list): Try generic family only when FcFontList found no font.
18097 (ftfont_list_family): Fix args to FcObjectSetBuild.
18098
18099 * xfaces.c (check_lface_attrs) [USE_FONT_BACKEND]: Accept font
18100 object in attrs[LFACE_FONT_INDEX].
18101 (set_lface_from_font_name): Cancel all changes for font-backend.
18102 (set_lface_from_font_and_fontset) [USE_FONT_BACKEND]: New
18103 function.
18104 (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]: Accept a
18105 font object in QCfont attribute.
18106 (set_font_frame_param) [USE_FONT_BACKEND]: Likewise.
18107 (realize_default_face) [USE_FONT_BACKEND]: Call
18108 set_lface_from_font_and_fontset.
18109
18110 * xfns.c (x_default_font_parameter) [USE_FONT_BACKEND]: Try also
18111 "fixed", and signal error here if no suitable font was found.
18112
18113 * xfont.c (xfont_parse_name): Delete this function.
18114
18115 * xftfont.c (xftfont_open): Change coding style of error
18116 handling. Generate fontconfig's fontname pattern.
18117
18118 * xterm.h (struct x_output) [USE_FONT_BACKEND]: New member fontp.
18119 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro.
18120
18121 * xterm.c (x_new_fontset2) [USE_FONT_BACKEND]: Change arguments.
18122 Both args FONTSET and FONT_OBJECT must be existing ones.
18123
18124 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18125
18126 * macterm.c (mac_set_unicode_keystroke_event): Don't use MAKE_CHAR.
18127
18128 2008-02-01 Kenichi Handa <handa@m17n.org>
18129
18130 * xfont.c (xfont_open, xfont_encode_char): Fix typo.
18131
18132 * font.h (struct font): Fix typo.
18133
18134 * font.c (enum xlfd_field_index): Rename XLFD_XXX_SIZE_INDEX to
18135 XLFD_XXX_INDEX.
18136 (enum xlfd_field_mask): New enum.
18137 (intern_font_field): Changed argument. Change caller. If digits
18138 are followed by non-digits, return a symbol.
18139 (font_expand_wildcards): New function.
18140 (font_parse_xlfd): Fix wildcard handling.
18141 (Ffont_spec): If :name is specified, reflect the info in the other
18142 properties.
18143
18144 * ftfont.c (ftfont_pattern_entity): Fix typo.
18145 (ftfont_list): Enforce FC_LANG in PATTERN to cancel the effect of
18146 locale.
18147
18148 2008-02-01 Kenichi Handa <handa@m17n.org>
18149
18150 * font.h (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Extern them.
18151
18152 * font.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move from ftfont.c.
18153 (font_unparse_xlfd): Fix argument type declaration. Append "*" if
18154 registry doesn't specify encoding part.
18155 (font_find_for_lface): Pay attention to LFACE_FONT_INDEX.
18156 (font_open_by_name): At first try parsing the name.
18157 (syms_of_font): Declare Qiso8859_1, Qiso10646_1, and Qunicode_bmp
18158 as Lisp symbols.
18159
18160 * fontset.c (reorder_font_vector): Pay attention to the case that
18161 the 3rd element of font_def is nil.
18162 (fontset_font): For the default fontset, append one more fontset
18163 elements for a script-based font specification. Don't add script
18164 attribute on finding a font.
18165 (new_fontset_from_font): Unconditionally set FONTSET_ASCII to the
18166 font name.
18167 (fontset_ascii_font): If a font can't be opened, return nil.
18168
18169 * ftfont.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move to font.c.
18170 (ftfont_pattern_entity): New function.
18171 (ftfont_get_cache): Assume that freetype_font_cache is already
18172 initialized.
18173 (ftfont_list): Handle the case that a file is specified in font
18174 name. Use ftfont_pattern_entity to generate entities.
18175 (ftfont_has_char): Check if the pattern contains FC_CHARSET.
18176 (syms_of_ftfont): Initialize freetype_font_cache.
18177
18178 * xftfont.c (xftfont_open): Make the font name fontconfig's
18179 style. Add BLOCK_INPUT and UNBLOCK_INPUT.
18180 (xftfont_close): Free font->font.name if not NULL.
18181
18182 * xfont.c (xfont_list): If script is specified for a font, return
18183 null_vector.
18184 (xfont_list_family): Declare argument type.
18185
18186 * xfaces.c (set_lface_from_font_name): If a font doesn't have a
18187 name, set LFACE_FONT (lface) to nil.
18188
18189 * xterm.c (x_new_fontset2): If an ASCII font couldn't be loaded,
18190 return Qnil.
18191
18192 2008-02-01 Kenichi Handa <handa@m17n.org>
18193
18194 * emacs.c (main): Check -enable-font-backend arg after the check of -nl.
18195 (standard_args): Add "-enable-font-backend".
18196
18197 2008-02-01 Kenichi Handa <handa@m17n.org>
18198
18199 * xftfont.c (xftfont_default_fid): Set fid_known to 1.
18200 (struct xftdraw_list, xftdraw_list): Delete them.
18201 (register_xftdraw, check_xftdraw): Delete them.
18202 (xftfont_prepare_face): Don't call register_xftdraw.
18203 (xftfont_done_face): Don't call check_xftdraw.
18204 (xftfont_draw): Get background color only when with_background is
18205 nonzero.
18206
18207 * xfont.c (xfont_encode_char): Fix calculation of char2b.
18208
18209 2008-02-01 Kenichi Handa <handa@m17n.org>
18210
18211 These changes are for the new font handling codes.
18212
18213 * Makefile.in (ALL_CFLAGS): Add @FREETYPE_CFLAGS@,
18214 @FONTCONFIG_CFLAGS@, and @LIBOTF_CFLAGS@.
18215 (LIB_X11_LIB): If HAVE_XFT is defined, set to @XFT_LIBS@.
18216 (FONTSRC, FONTOBJ): New variables.
18217 (obj): Add $(FONTOBJ).
18218 (SOME_MACHINE_OBJECTS): Lib_X11_Lib.
18219 (LIBES): Add @FREETYPE_LIBS@, @FONTCONFIG_LIBS@, and
18220 @LIBOTF_LIBS@.
18221 (font.o, ftfont.o, xfont.o, xftfont.o, ftxfont.o): New targets.
18222 (fontset.o, xdisp.o, xfaces.o, xfns.o, xterm.o): Depend on $(FONTSRC).
18223
18224 * font.h, font.c, xfont.c, ftfont.c, xftfont.c, ftxfont.c: New files.
18225
18226 * character.h (Vscript_representative_chars): Extern it.
18227
18228 * character.c (Vscript_representative_chars): New variable.
18229 (syms_of_character): Declare it as a Lisp variable.
18230
18231 * composite.c (get_composition_id) [USE_FONT_BACKEND]: If
18232 enable_font_backend is nonzero, accept the composition method
18233 COMPOSITION_WITH_GLYPH_STRING.
18234
18235 * composite.h (enum composition_method) [USE_FONT_BACKEND]: New
18236 enumeration COMPOSITION_WITH_GLYPH_STRING.
18237
18238 * dispextern.h (struct glyph_string) [USE_FONT_BACKEND]: New
18239 members clip_x, clip_y, clip_width, and clip_height.
18240 (struct face) [USE_FONT_BACKEND]: New members font_info and extra.
18241
18242 * emacs.c (main) [USE_FONT_BACKEND]: Handle arg
18243 --enable-font-backend. Call syms_of_font.
18244
18245 * fns.c (assoc_no_quit): New function.
18246
18247 * fontset.h (FONT_INFO_FROM_FACE): New macro.
18248 (face_for_font, new_fontset_from_font)
18249 (fontset_ascii_font) [USE_FONT_BACKEND]: Extern them.
18250
18251 * fontset.c [USE_FONT_BACKEND]: Include "font.h".
18252 (fontset_font, fontset_ascii, face_for_char)
18253 (make_fontset_for_ascii_face, Ffont_info)
18254 (Finternal_char_font) [USE_FONT_BACKEND]: If enable_font_backend
18255 is nonzero, use font-backend mechanism.
18256 (find_font_encoding): Make it non-static.
18257 (new_fontset_from_font, fontset_ascii_font) [USE_FONT_BACKEND]:
18258 New functions.
18259
18260 * frame.h (struct frame): New members resx and resy.
18261 (struct frame) [USE_FONT_BACKEND]: New member font_driver_list.
18262 (x_new_fontset2) [USE_FONT_BACKEND]: Extern it.
18263
18264 * frame.c [USE_FONT_BACKEND]: Include "font.h".
18265 (make_frame, x_set_font) [USE_FONT_BACKEND]: Use font-backend mechanism.
18266
18267 * lisp.h (assoc_no_quit): Extern it.
18268
18269 * xdisp.c: If USE_FONT_BACKEND is defined, include "font.h".
18270 Through out the file, use FONT_INFO_FROM_FACE instead of
18271 FONT_INFO_FROM_ID, use get_per_char_metric instead of
18272 rif->per_char_metric.
18273 (handle_composition_prop) [USE_FONT_BACKEND]: If the composition
18274 method is COMPOSITION_WITH_GLYPH_STRING, just set it->c to ' '.
18275 (get_glyph_face_and_encoding, fill_composite_glyph_string)
18276 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
18277 (x_produce_glyphs) [USE_FONT_BACKEND]: If enable_font_backend is
18278 nonzero, use font-backend mechanism.
18279 (get_per_char_metric): New function.
18280
18281 * xfaces.c [USE_FONT_BACKEND]: Include "font.h".
18282 (set_lface_from_font_name)
18283 (set_font_frame_param, free_realized_face)
18284 (prepare_face_for_display, clear_face_gcs)
18285 (Finternal_set_font_selection_order, realize_x_face)
18286 [USE_FONT_BACKEND]: If enable_font_backend is nonzero, use
18287 font-backend mechanism.
18288 (clear_face_cache) [USE_FONT_BACKEND]: Don't call clear_font_table.
18289 (load_face_font) [USE_FONT_BACKEND]: Abort.
18290 (face_symbolic_value, face_symbolic_weight, face_symbolic_slant)
18291 (face_symbolic_swidth, face_for_font) [USE_FONT_BACKEND]: New functions.
18292
18293 * xfns.c [USE_FONT_BACKEND]: Include "font.h".
18294 (x_default_font_parameter) [USE_FONT_BACKEND]: New function.
18295 (Fx_create_frame) [USE_FONT_BACKEND]: If enable_font_backend is
18296 nonzero, register all available font drivers. Call
18297 x_default_font_parameter for deciding a font.
18298 (x_create_tip_frame) [USE_FONT_BACKEND]: Likewise.
18299
18300 * xterm.c [USE_FONT_BACKEND]: Include "font.h".
18301 (x_set_mouse_face_gc, x_set_glyph_string_clipping)
18302 (x_set_glyph_string_clipping_exactly)
18303 (x_compute_glyph_string_overhangs)
18304 (x_draw_glyph_string_foreground)
18305 (x_draw_composite_glyph_string_foreground, x_draw_glyph_string)
18306 (x_free_frame_resources) [USE_FONT_BACKEND]: If
18307 enable_font_backend is nonzero, use font-backend mechanism.
18308 (x_new_fontset2) [USE_FONT_BACKEND]: New function.
18309
18310 2008-02-01 Kenichi Handa <handa@m17n.org>
18311
18312 * coding.c (coding_inherit_eol_type): If PARENT is nil, inherit from
18313 system_eol_type.
18314 (syms_of_coding): Initialize system_eol_type.
18315
18316 * process.c (Fset_process_coding_system): Inherit system's eol
18317 format if necessary.
18318
18319 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18320
18321 * macgui.h (USE_ATSUI): Don't enable on emacs-unicode-2 branch.
18322
18323 2008-02-01 Kenichi Handa <handa@m17n.org>
18324
18325 * coding.c (decode_eol): Pay attention to buffer relocation in
18326 del_range_2.
18327 (decode_coding): Call decode_eol before restoring undo_list.
18328
18329 2008-02-01 Kenichi Handa <handa@m17n.org>
18330
18331 * charset.c (Fdefine_charset_internal): Fix setting of
18332 emacs_mule_bytes.
18333
18334 2008-02-01 Kenichi Handa <handa@m17n.org>
18335
18336 * keyboard.c (read_char): Check if C is a character or not before
18337 looking up Vkeyboard_translate_table.
18338
18339 2008-02-01 Kenichi Handa <handa@m17n.org>
18340
18341 * coding.c (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Fix
18342 condition to terminate the loop.
18343
18344 2008-02-01 Kenichi Handa <handa@m17n.org>
18345
18346 * coding.c (produce_composition): Compare charbuf[i] instead of
18347 args[i] against 0.
18348 (Fterminal_coding_system): Use EQ to compare Lisp objects.
18349
18350 2008-02-01 Kenichi Handa <handa@m17n.org>
18351
18352 * coding.c (DECODE_COMPOSITION_START): If the source is short, set
18353 coding->result to CODING_RESULT_INSUFFICIENT_SRC.
18354 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK after the call of
18355 detect_coding.
18356 (emacs_mule_char): Handle old style (Emacs 20) component character
18357 of a composition.
18358 (DECODE_EMACS_MULE_COMPOSITION_RULE_20)
18359 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Fix parsing a
18360 composition rule.
18361 (decode_coding_emacs_mule): Handle invalid bytes correctly.
18362
18363 2008-02-01 Kenichi Handa <handa@m17n.org>
18364
18365 * coding.c (encode_coding_ccl): Allocate destination dynamically
18366 when necessary.
18367
18368 2008-02-01 Kenichi Handa <handa@m17n.org>
18369
18370 * ccl.c (Fccl_execute_on_string): Fix the condition of terminating
18371 the loop. When quitted, show a proper error message.
18372
18373 2008-02-01 Kenichi Handa <handa@m17n.org>
18374
18375 * xterm.c (x_set_glyph_string_clipping_exactly): Set
18376 src->clip_head and src->clip_tail temporarily instead of src->hl.
18377
18378 * ccl.c (CCL_WRITE_STRING): Handle a flag bit for multibyte
18379 character sequence.
18380 (Fccl_execute_on_string): Use ASET, not XSET.
18381
18382 2008-02-01 Kenichi Handa <handa@m17n.org>
18383
18384 * search.c (search_buffer): Fix handling of "\\" in a trivial regexp.
18385
18386 2008-02-01 Kenichi Handa <handa@m17n.org>
18387
18388 * coding.c (decode_coding): Fix the condition of terminating the
18389 decoding loop.
18390
18391 2008-02-01 Kenichi Handa <handa@m17n.org>
18392
18393 * data.c (Faset): On setting a character bigger than 255 in a
18394 unibyte string, signal an error instead of make the string multibyte.
18395
18396 2008-02-01 Kenichi Handa <handa@m17n.org>
18397
18398 * charset.c (map_charset_chars): Fix for ascii-compatible charset
18399 made by a mapping table.
18400
18401 2008-02-01 Kenichi Handa <handa@m17n.org>
18402
18403 * xdisp.c (fill_composite_glyph_string): Check s->face is NULL or
18404 not.
18405 (BUILD_COMPOSITE_GLYPH_STRING): If C is TAB, set s->face to NULL.
18406 (x_produce_glyphs): If CH is TAB, set cmp->offsets properly.
18407
18408 * xterm.c (x_draw_composite_glyph_string_foreground): Check
18409 s->face is NULL or not.
18410
18411 2008-02-01 Kenichi Handa <handa@m17n.org>
18412
18413 * xterm.c (x_set_glyph_string_clipping_exactly): New function.
18414 (x_draw_glyph_string): Fix drawing of right_overhang and
18415 left_overhang around/on cursor.
18416
18417 * xdisp.c (draw_glyphs): Fix inclusion of right_overwriting glyphs.
18418
18419 2008-02-01 Kenichi Handa <handa@m17n.org>
18420
18421 * xdisp.c (x_produce_glyphs): Handle composition with TAB.
18422
18423 2008-02-01 Kenichi Handa <handa@m17n.org>
18424
18425 * coding.c (Fdefine_coding_system_internal)
18426 (Fdefine_coding_system_alias): Avoid a duplicated element in
18427 Vcoding_system_alist.
18428
18429 2008-02-01 Kenichi Handa <handa@m17n.org>
18430
18431 * xterm.c (handle_one_xevent): Handle keysyms 0x1000000..0x10000FF.
18432
18433 * coding.c (Qcoding_system_define_form): New variable.
18434 (syms_of_coding): Intern and staticpro it.
18435 (Fcoding_system_p): Check Qcoding_system_define_form.
18436 (Fcheck_coding_system): Try to autoload the definition of CODING-SYSTEM.
18437
18438 * coding.h (CODING_SYSTEM_P): If ID is not available, call
18439 Fcoding_system_p.
18440 (CHECK_CODING_SYSTEM): If ID is not available, call
18441 Fcheck_coding_system.
18442 (CHECK_CODING_SYSTEM_GET_SPEC, CHECK_CODING_SYSTEM_GET_ID):
18443 Try also Fcheck_coding_system.
18444
18445 2008-02-01 Kenichi Handa <handa@m17n.org>
18446
18447 * coding.c (code_conversion_restore): GCPRO arg.
18448
18449 2008-02-01 Kenichi Handa <handa@m17n.org>
18450
18451 * character.c (lisp_string_width): Check multibyteness of STRING.
18452
18453 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18454
18455 * macterm.c (mac_encode_char): Call ccl_driver with the last arg
18456 Qnil. Use JIS_TO_SJIS instead of ENCODE_SJIS.
18457 (decode_mac_font_name): Use decode_coding_c_string instead of
18458 decode_coding.
18459 (x_load_font): Initialize fontp->fontset to -1. Set
18460 fontp->encoding_type.
18461
18462 2008-02-01 Kenichi Handa <handa@m17n.org>
18463
18464 * search.c (search_buffer): Give up BM search on case-fold-search
18465 if one of a target character has a case-equivalence of different
18466 byte length even if that target charcter is an ASCII.
18467 (simple_search): Fix calculation of byte length of matched text.
18468 (boyer_moore): Fix handling of case-equivalent multibyte characters.
18469
18470 2008-02-01 Kenichi Handa <handa@m17n.org>
18471
18472 * coding.c (decode_coding): Fix handling of invalid bytes.
18473
18474 2008-02-01 Kenichi Handa <handa@m17n.org>
18475
18476 * xterm.c (handle_one_xevent): Handle keysyms directly mapped to
18477 Unicode characters.
18478
18479 2008-02-01 Kenichi Handa <handa@m17n.org>
18480
18481 * coding.c (encode_coding_object): If a pre-write-conversion
18482 function makes a new buffer, kill it.
18483
18484 2008-02-01 Kenichi Handa <handa@m17n.org>
18485
18486 * coding.c (QCascii_compatible_p): New variable.
18487 (syms_of_coding): Initialize it.
18488 (ONE_MORE_BYTE, ONE_MORE_BYTE_NO_CHECK): Decrement `src' before
18489 calling string_char.
18490 (record_conversion_result): Add `default:' case.
18491 (coding_charset_list): Delete unused variable `coding_type'.
18492 (Fdefine_coding_system_internal): Add `ascii-compatible-p'
18493 property in the plist of the coding system.
18494 (Fcoding_system_put): Check QCascii_compatible_p.
18495
18496 2008-02-01 Miles Bader <miles@gnu.org>
18497
18498 * xfaces.c (Finternal_lisp_face_equal_p): Restore previously
18499 removed calculation of frame `f', as it's now used.
18500
18501 2008-02-01 Kenichi Handa <handa@m17n.org>
18502
18503 * Makefile.in (RUN_TEMACS): Include "-nl" if HAVE_SHM is defined.
18504 (emacs${EXEEXT}): Run $(RUN_TEMACS) unconditionally.
18505 (UNIDATA): New variable.
18506 (${lispsource}international/charprop.el): Depends on ${UNIDATA}.
18507 (bootstrap-emacs${EXEEXT}): Depends on charprop.el. Run
18508 $(RUN_TEMACS) unconditionally.
18509
18510 2008-02-01 Kenichi Handa <handa@m17n.org>
18511
18512 * Makefile.in (temacs${EXEEXT}): Build charprop.el if necessary.
18513 (admindir): New variable.
18514 ($(lispsource)international/charprop.el): New target.
18515
18516 2008-02-01 Miles Bader <miles@gnu.org>
18517
18518 * character.c (chars-in-region): Remove obsolete function.
18519 (syms_of_character): Remove its initialization.
18520
18521 2008-02-01 Benjamin Riefenstahl <b.riefenstahl@turtle-trading.net>
18522
18523 * w32select.c (validate_coding_system)
18524 (setup_windows_coding_system): New functions.
18525 (convert_to_handle_as_coded, Fw32_get_clipboard_data): Use
18526 setup_windows_coding_system.
18527 (setup_config, Fw32_get_clipboard_data): Use
18528 validate_coding_system.
18529 (Fx_selection_exists): Move call to setup_config to a place
18530 where signals are allowed.
18531
18532 * lisp.h (Fcoding_system_base, Fcoding_system_eol_type)
18533 (Fcheck_coding_system): Add declarations.
18534
18535 2008-02-01 Kenichi Handa <handa@m17n.org>
18536
18537 * charset.c (load_charset_map_from_vector): Fix for the first iteration.
18538
18539 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18540
18541 * macfns.c (Fx_create_frame, x_create_tip_frame): Pass Lisp
18542 string as the second argument for x_new_fontset.
18543
18544 2008-02-01 Kenichi Handa <handa@m17n.org>
18545
18546 * coding.c (decode_coding_object): Use safe_call1 instead of call1.
18547 (encode_coding_object): Use safe_call instead of call2.
18548
18549 2008-02-01 Kenichi Handa <handa@m17n.org>
18550
18551 * fontset.c (Fset_fontset_font): Check family element of a given vector.
18552
18553 * Makefile.in (lisp): Include charprop.el.
18554
18555 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18556
18557 * macfns.c (Fx_create_frame, x_create_tip_frame): Fix crash.
18558 Not sure if it's unnecessary.
18559
18560 2008-02-01 Steven Tamm <steventamm@mac.com>
18561
18562 * macfns.c (Fx_create_frame, x_create_tip_frame): ifdef'd out
18563 some possibly unnecessary fontset checking code that crashed
18564 when creating a new frame.
18565
18566 2008-02-01 Kenichi Handa <handa@m17n.org>
18567
18568 * xfaces.c (merge_faces): Fix argument to lookup_derived_face and
18569 lookup_face.
18570
18571 * xdisp.c (Fformat_mode_line): Fix argument to lookup_named_face.
18572
18573 * fringe.c (draw_fringe_bitmap_1): Fix argument to lookup_named_face.
18574
18575 2008-02-01 Kenichi Handa <handa@m17n.org>
18576
18577 * coding.c: Cancel the change done in HEAD on 2008-02-01.
18578 (coding_charset_list): New function.
18579
18580 * coding.h (coding_charset_list): Extern it.
18581
18582 2008-02-01 Kenichi Handa <handa@m17n.org>
18583
18584 * fontset.c (Fset_fontset_font): Call find_font_encoding with
18585 concatenation of family and registry.
18586
18587 2008-02-01 Kenichi Handa <handa@m17n.org>
18588
18589 * character.h (BYTE8_STRING): Fix typo.
18590
18591 * editfns.c (Ftranslate_region_internal): Don't convert unibyte
18592 string to multibyte (sync to HEAD).
18593
18594 * casefiddle.c (casify_region): Handle changes in byte-length
18595 using replace_range_2 (sync to HEAD).
18596
18597 2008-02-01 Andreas Schwab <schwab@suse.de>
18598
18599 * chartab.c (map_char_table): GCPRO table and arg.
18600
18601 2008-02-01 Kenichi Handa <handa@m17n.org>
18602
18603 * syntax.c (skip_syntaxes): Return lispy 0 (not nil) if point is
18604 already at limit.
18605
18606 2008-02-01 Kenichi Handa <handa@m17n.org>
18607
18608 * fontset.c (fs_load_font): Use fast_string_match_ignore_case
18609 instead of fast_c_string_match_ignore_case.
18610 (find_font_encoding): Change argument to Lisp_Object. Use
18611 fast_string_match_ignore_case instead of
18612 fast_c_string_match_ignore_case. Change caller.
18613
18614 2008-02-01 Kenichi Handa <handa@m17n.org>
18615
18616 * xdisp.c (get_next_display_element): In unibyte case, decide to
18617 display in octal form by checking a character by
18618 UNIBYTE_CHAR_HAS_MULTIBYTE_P.
18619
18620 * charset.c (Fset_unibyte_charset): Setup unibyte_has_multibyte_table.
18621
18622 * character.c (unibyte_has_multibyte_table): New variable.
18623
18624 * character.h (unibyte_has_multibyte_table): Extern it.
18625 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): New macro.
18626
18627 2008-02-01 Kenichi Handa <handa@m17n.org>
18628
18629 * coding.c (encode_coding_iso_2022): Fix handling of charset
18630 annotation.
18631
18632 2008-02-01 Kenichi Handa <handa@m17n.org>
18633
18634 * coding.c (setup_coding_system): If coding_system is nil, use
18635 Qundecided.
18636 (Fterminal_coding_system): Return nil if terminal coding system is
18637 `undecided'.
18638 (syms_of_coding): Define coding-system `undecided' here. Setup
18639 terminal_coding as `undecided'.
18640
18641 2008-02-01 Kenichi Handa <handa@m17n.org>
18642
18643 * xdisp.c (message_dolog, set_message_1): Call
18644 unibyte_char_to_multibyte with arg type int.
18645
18646 * lread.c (read1): Fix reading of a char-table.
18647
18648 * print.c (print_object): Include sub char-table in circularities
18649 detection.
18650
18651 2008-02-01 Kenichi Handa <handa@m17n.org>
18652
18653 * keymap.c (where_is_internal_2): Fix for the case that KEY is a cons.
18654 Append the found sequences in car of ARGS instead of prepending.
18655
18656 2008-02-01 Kenichi Handa <handa@m17n.org>
18657
18658 * fileio.c (report_file_error): Make a unibyte string from
18659 strerror (errorno).
18660 (Fsubstitute_in_file_name): Fix the arg to
18661 unibyte_char_to_multibyte. It is evaluated twice.
18662
18663 2008-02-01 Kenichi Handa <handa@m17n.org>
18664
18665 * charset.h (CHAR_CHARSET): Shortcut for ASCII case.
18666
18667 2008-02-01 Kenichi Handa <handa@m17n.org>
18668
18669 * coding.c (detect_coding_utf_16): Don't set detect_info->found if
18670 BOM is not found.
18671 (detect_coding, detect_coding_system): Optimization for ISO-2022
18672 when no 8-bit data is found.
18673
18674 2008-02-01 Jason Rumney <jasonr@gnu.org>
18675
18676 * w32fns.c (x_to_w32_font): Update to use new coding struct.
18677
18678 2008-02-01 Kenichi Handa <handa@m17n.org>
18679
18680 * charset.c (Fdeclare_equiv_charset, Fiso_charset): Fix handing of
18681 CHARS.
18682
18683 2008-02-01 Steven Tamm <steventamm@mac.com>
18684
18685 * macterm.c (mac_encode_char): Add charset argument and update
18686 to use encoding_type.
18687 (x_new_font, x_new_fontset): Merge in changes from xterm.c;
18688 switch to pure fontset.
18689 (decode_mac_font_name): Temporarily remove decoding.
18690 (x_font_name_to_mac_font_name): Temporarily remove encoding.
18691 (x_load_font): Temporarily remove encoding.
18692
18693 2008-02-01 Kenichi Handa <handa@m17n.org>
18694
18695 * xfaces.c (Fface_font): If frame is not on a window system,
18696 ignore CHARACTER arg. If HAVE_WINDOW_SYSTEM is not defined, don't
18697 refer to face->font.
18698 (split_font_name_into_vector, build_font_name_from_vector)
18699 (lookup_non_ascii_face, realize_non_ascii_face): Define them only
18700 when HAVE_WINDOW_SYSTEM is defined.
18701
18702 2008-02-01 Kenichi Handa <handa@m17n.org>
18703
18704 * xdisp.c (BUILD_GLYPH_STRINGS): Check if s is NULL.
18705 (x_produce_glyphs): Fix setting of members of cmp in case
18706 cmp->glyph_len is zero.
18707
18708 * fontset.c (Fset_fontset_font): Fix docstring.
18709 (Ffontset_info): Make it backward compatible. New arg ALL.
18710
18711 2008-02-01 Kim F. Storm <storm@cua.dk>
18712
18713 * process.c (read_process_output): Grow decoding_buf when needed;
18714 this could cause a crash in allocate_string and compact_small_strings.
18715
18716 2008-02-01 Kenichi Handa <handa@m17n.org>
18717
18718 * fileio.c (WRITE_BUF_SIZE): Delete this macro.
18719
18720 2008-02-01 Kenichi Handa <handa@m17n.org>
18721
18722 * coding.c (setup_coding_system): Set coding->common_flags
18723 correctly for raw-text.
18724 (consume_chars): On encoding unibyte text by raw-text, don't check
18725 multibyte form.
18726 (encode_coding): On encoding by raw-text, never use translation tables.
18727
18728 * fileio.c (e_write): Short cut for the case of no encoding.
18729
18730 2008-02-01 Kenichi Handa <handa@m17n.org>
18731
18732 * coding.c (detect_coding, detect_coding_system): Delete unused
18733 variables.
18734
18735 2008-02-01 Kenichi Handa <handa@m17n.org>
18736
18737 * coding.c (encode_coding_utf_8): Fix handling of raw-byte char.
18738 (consume_chars): Fix handling of 8-bit bytes in unibyte source.
18739
18740 2008-02-01 Kenichi Handa <handa@m17n.org>
18741
18742 * coding.c (Ffind_coding_systems_region_internal): Include
18743 raw-text and no-conversion in the result.
18744
18745 2008-02-01 Kenichi Handa <handa@m17n.org>
18746
18747 * fontset.c (find_font_encoding): Return `ascii' for unknown encoding.
18748 (load_font_get_repertory): Delete unnecessary check of ENCODING of
18749 FONT_DEF.
18750 (font_def_arg, add_arg, from_arg, to_arg): New args.
18751 (set_fontset_font): Change argument.
18752 (Fset_fontset_font): Fix for the case that TARGET is a script
18753 name and charset name.
18754 (new_fontset_from_font_name): Fix argument to Fnew_fontset.
18755
18756 2008-02-01 Kenichi Handa <handa@m17n.org>
18757
18758 * fontset.c (fontset_font): Rename from fontset_face. Change return
18759 value.
18760 (face_suitable_for_char_p, face_for_char): Adjust for the change
18761 of fontset_font.
18762 (make_fontset_for_ascii_face): Fix setting of the fontset element
18763 for ASCII.
18764 (Finternal_char_font): Use fontset_font instead of FACE_FOR_CHAR
18765 to get a font name.
18766 (Ffontset_info): Adjust for the change of fontset_font.
18767
18768 * coding.c (emacs_mule_char): Check invalid code more rigidly.
18769
18770 * character.h (LEADING_CODE_LATIN_1_MIN)
18771 (LEADING_CODE_LATIN_1_MAX): Delete these macros.
18772
18773 2008-02-01 Kenichi Handa <handa@m17n.org>
18774
18775 * editfns.c (check_translation): New function.
18776 (Ftranslate_region_internal): Handle M:N mapping.
18777
18778 2008-02-01 Kenichi Handa <handa@m17n.org>
18779
18780 * xfaces.c (xlfd_point_size): Set font->numeric[XLFD_PIXEL_SIZE].
18781
18782 2008-02-01 Kenichi Handa <handa@m17n.org>
18783
18784 * coding.c (DECODE_DESIGNATION): Set chars_96 to -1 instead of
18785 goto invalid_code.
18786 (decode_coding_iso_2022): Fix handling of invalid designation.
18787
18788 * fileio.c (Finsert_file_contents): Be sure to call unbind_to
18789 after calling code_conversion_save.
18790
18791 2008-02-01 Kenichi Handa <handa@m17n.org>
18792
18793 * xdisp.c (handle_auto_composed_prop): Fix Lisp_Object/int mixup.
18794
18795 * print.c (print_prune_string_charset): Fix Lisp_Object/int mixup.
18796
18797 * fontset.c: Include "intervals.h".
18798 (fontset_face): Fix comparing of Lisp_Objects.
18799 (free_face_fontset, new_fontset_from_font_name): Fix
18800 Lisp_Object/int mixup.
18801
18802 * editfns.c (Ftranslate_region_internal): Fix Lisp_Object/int mixup.
18803
18804 * coding.c: Add many prototypes for static functions.
18805 (get_translation_table): Allow max_lookup to be NULL.
18806 (decode_coding, Ffind_coding_systems_region_internal)
18807 (Funencodable_char_position, Fcheck_coding_systems_region): Call
18808 get_translation_table with max_lookup NULL.
18809
18810 2008-02-01 Kenichi Handa <handa@m17n.org>
18811
18812 * coding.c (get_translation_table): Declare it as Lisp_Object.
18813 (LOOKUP_TRANSLATION_TABLE): New macro.
18814 (produce_chars, consume_chars): Use LOOKUP_TRANSLATION_TABLE
18815 instead of CHAR_TABLE_REF.
18816
18817 2008-02-01 Kenichi Handa <handa@m17n.org>
18818
18819 * coding.c (MAX_ANNOTATION_LENGTH): Adjust for the change of
18820 annotation data format.
18821 (ADD_ANNOTATION_DATA, ADD_COMPOSITION_DATA, ADD_CHARSET_DATA):
18822 Change arguments FROM and TO to single argument NCHARS. Change caller.
18823 (decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule)
18824 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
18825 (decode_coding_ccl, decode_coding_charset): Pay attention to
18826 coding->charbuf_used.
18827 (get_translation): New function.
18828 (produce_chars): New arguments translation_table and last_block.
18829 Translate characters here. Return number of carryover chars.
18830 Change caller.
18831 (produce_composition): New argument pos. Change caller.
18832 Adjust for the change of annotation data format.
18833 (produce_charset, produce_annotation): Likewise.
18834 (decode_coding, encode_coding): Don't call translate_chars.
18835 (consume_chars): New arg translation_table. Change caller.
18836 (translate_chars): Delete.
18837 (syms_of_coding): Make translation-table's number of extra slots 2.
18838
18839 2008-02-01 Kenichi Handa <handa@m17n.org>
18840
18841 * search.c (simple_search): Fix setting this_pos_byte in backward
18842 search.
18843
18844 * coding.c (detect_coding_emacs_mule): Fix counting of encoded
18845 byte sequence.
18846 (detect_coding_ccl): Fix setting of the variable valids.
18847
18848 2008-02-01 Kenichi Handa <handa@m17n.org>
18849
18850 * xterm.c (x_list_fonts): Fix the detection of an auto-scaled font.
18851
18852 * coding.c (decode_coding_utf_16): Fix handling of surrogate pair.
18853
18854 * editfns.c (Ftranslate_region_internal): Rename from
18855 Ftranslate_region. Accept a char-table in TABLE.
18856 (syms_of_editfns): Defsubr Stranslate_region_internal.
18857
18858 * xfaces.c (set_lface_from_font_name): If a font is specified for
18859 a frame, generate a fontset from the font.
18860 (build_scalable_font_name): If the scalable font is requested for
18861 a specific size, don't change that size.
18862 (try_font_list): Try a scalable font also in the case that a
18863 pattern string is specified.
18864
18865 2008-02-01 Kenichi Handa <handa@m17n.org>
18866
18867 * xfaces.c (Fface_font): New optional arg CHARACTER.
18868
18869 2008-02-01 Kenichi Handa <handa@m17n.org>
18870
18871 * charset.h (CHARSET_OFFSET): New macro.
18872
18873 2008-02-01 Kenichi Handa <handa@m17n.org>
18874
18875 * xterm.c (x_get_font_repertory): Fix for non-Unicode-bmp charset.
18876
18877 * fontset.c (fontset_face): Handle the case that repertory is a
18878 char-table.
18879 (find_font_encoding): Return nil for unknown encoding.
18880 (Fset_fontset_font): Ignore a font of unknown encoding.
18881
18882 2008-02-01 Kenichi Handa <handa@m17n.org>
18883
18884 * keymap.c (describe_vector): Handle default value of a char table.
18885
18886 * fontset.c (fontset_face): Handle fallback fonts correctly.
18887 (Ffontset_info): Return infomation about fallback fonts.
18888
18889 2008-02-01 Kenichi Handa <handa@m17n.org>
18890
18891 * fontset.c (FONTSET_DEFAULT): New macro.
18892 (FONTSET_ADD, fontset_add): Handle the case that range is nil.
18893 (Fset_fontset_font): Change the 2nd arg name to TARGET, and handle
18894 the case that it is nil.
18895 (dump_fontset): Call FONTSET_DEFAULT, not FONTSET_FALLBACK.
18896 (syms_of_fontset): Set char-table-extra-slots property of fontset to 9.
18897
18898 * charset.h (CHAR_CHARSET_P): Fix for the case that the method is
18899 subset or superset.
18900
18901 2008-02-01 Kenichi Handa <handa@m17n.org>
18902
18903 * emacs.c (main): Call init_charset after syms_of_XXX.
18904
18905 * charset.c (Vcharset_map_directory): Delete.
18906 (Vcharset_map_path): New variable.
18907 (load_charset_map_from_file): Use Vcharset_map_path instead.
18908 (init_charset): Initialize Vcharset_map_path.
18909 (syms_of_charset): Delete declaration of "charset-map-directory",
18910 add declaration of "charset-map-path".
18911
18912 2008-02-01 Kenichi Handa <handa@m17n.org>
18913
18914 * fns.c (string_char_to_byte, string_byte_to_char): Optimize for
18915 ASCII only string.
18916
18917 * fileio.c (Finsert_file_contents): Avoid detecting a code twice.
18918
18919 * coding.c (detect_coding_iso_2022): Fix handling of SS2 and SS3.
18920 (detect_coding, detect_coding_system): Treat '\0' as normal ASCII byte.
18921
18922 2008-02-01 Kenichi Handa <handa@m17n.org>
18923
18924 * coding.h (SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
18925
18926 * coding.c (QCmnemonic, QCdefalut_char)
18927 (QCdecode_translation_table, QCencode_translation_table)
18928 (QCpost_read_conversion, QCpre_write_conversion): New variables.
18929 (get_translation_table): Return a list of translation tables if
18930 necessary.
18931 (decode_coding): Call get_translation_table with ENCODEP 0.
18932 (char_encodable_p): If translation_table is non-nil, always call
18933 translate_char.
18934 (Fdefine_coding_system_internal): Accept list of translation
18935 tables as :encode-translation-table and :decode-translation-table.
18936 (Fcoding_system_put): New function.
18937 (syms_of_coding): Declare new symbols. Defsubr
18938 Scoding_system_put.
18939 (decode_coding_sjis, encode_coding_sjis): Handle 4th charset,
18940 typically JISX0212.
18941
18942 * charset.c (map_charset_chars): Fix arg to map_charset_chars in
18943 when the charset is superset type.
18944
18945 * character.c (translate_char): Accept list of translation tables.
18946
18947 2008-02-01 Kenichi Handa <handa@m17n.org>
18948
18949 * coding.h (enum coding_attr_index): New member coding_attr_trans_tbl.
18950 (CODING_ATTR_TRANS_TBL): New macro.
18951
18952 * coding.c (get_translation_table): New function.
18953 (translate_chars): Fix the bug of skipping annotation data.
18954 (decode_coding, encode_coding): Utilize get_translation_table.
18955 (char_encodable_p, Funencodable_char_position): Translate char if
18956 necessary.
18957 (Ffind_coding_systems_region_internal)
18958 (Fcheck_coding_systems_region): Setup translation table for encode
18959 in a coding system attribute vector in advance.
18960 (Fdefine_coding_system_internal): Allow a symbol as translation
18961 table. For shift-jis type coding system, allow 4th charset.
18962
18963 2008-02-01 Kenichi Handa <handa@m17n.org>
18964
18965 * coding.c (decode_coding_sjis): Check the first byte rigidly.
18966
18967 * xdisp.c (get_next_display_element): Pass -1 as POS to
18968 FACE_FOR_CHAR if displaying a C-string.
18969
18970 2008-02-01 Kenichi Handa <handa@m17n.org>
18971
18972 * composite.c (get_composition_id): Handle xoff and yoff in a
18973 composition rule.
18974
18975 * composite.h (COMPOSITION_DECODE_RULE): New arg xoff and yoff.
18976 (struct composition): New member lbearing and rbearing.
18977
18978 * xdisp.c (move_it_to): Optimize for the case (op & MOVE_TO_Y).
18979 (x_get_glyph_overhangs): Handle a composition glyph.
18980 (x_produce_glyphs): Setup lbearing and rbreaing for a composition glyph.
18981
18982 * xterm.c (x_compute_glyph_string_overhangs): Handle also a
18983 composition glyph.
18984
18985 2008-02-01 Kenichi Handa <handa@m17n.org>
18986
18987 * print.c: Include charset.h.
18988 (Vprint_charset_text_property): New variable.
18989 (Qdefault): Extern it.
18990 (PRINT_STRING_NON_CHARSET_FOUND)
18991 (PRINT_STRING_UNSAFE_CHARSET_FOUND): New macros.
18992 (print_check_string_result): New variable.
18993 (print_check_string_charset_prop): New function.
18994 (print_prune_charset_plist): New variable.
18995 (print_prune_string_charset): New function.
18996 (print_object): Call print_prune_string_charset if
18997 Vprint_charset_text_property is not t.
18998 (print_interval): Print nothing if interval->plist is nil.
18999 (syms_of_print): Declare Vprint_charset_text_property as a lisp
19000 variable. Init and staticpro print_prune_charset_plist.
19001
19002 2008-02-01 Kenichi Handa <handa@m17n.org>
19003
19004 * fontset.c (new_fontset_from_font_name): Use the specified font
19005 for all characters in the new fontset.
19006
19007 * macterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
19008 OBJECT args.
19009
19010 * xdisp.c (x_produce_glyphs): Call FACE_FOR_CHAR with POS and
19011 OBJECT args for composition too.
19012
19013 * w32term.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
19014 OBJECT args.
19015
19016 2008-02-01 Kenichi Handa <handa@m17n.org>
19017
19018 * dispextern.h (FACE_FOR_CHAR): New args POS and OBJECT.
19019
19020 * fontset.c (reorder_font_vector): Adjust for the change of
19021 FONT_DEF format.
19022 (fontset_face): New arg id. Change caller.
19023 (face_for_char): New args pos and object.
19024 (make_fontset_for_ascii_face): Adjust for the change of FONT_DEF format.
19025 (fs_query_fontset): Check NAME by Fassoc too.
19026 (Fset_fontset_font): Allow non-XLFD font name.
19027 (Ffontset_info): Adjust for the change of FONT_DEF format.
19028
19029 * fontset.h (face_for_char): Adjust prototype.
19030
19031 * xdisp.c (face_before_or_after_it_pos, get_next_display_element)
19032 (append_space, extend_face_to_end_of_line)
19033 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
19034 (x_produce_glyphs): Call FACE_FOR_CHAR with POS and OBJECT args.
19035
19036 * xfaces.c (compute_char_face): Call FACE_FOR_CHAR with
19037 POS and OBJECT args.
19038
19039 * xterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with
19040 POS and OBJECT args.
19041
19042 2008-02-01 Jason Rumney <jasonr@gnu.org>
19043
19044 * w32select.c (Fw32_set_clipboard_data): Avoid potential realloc
19045 of GlobalAlloc'ed memory.
19046
19047 2008-02-01 Kenichi Handa <handa@m17n.org>
19048
19049 * ccl.c (Fccl_execute_on_string): Fix the condition of loop.
19050
19051 * charset.h (charset_table_used): Delete extern.
19052
19053 * charset.c (charset_table_used): Make it static.
19054 (map_charset_chars): Fix args to c_function with.
19055
19056 * chartab.c (map_sub_char_table_for_charset): Fix args to
19057 c_function with.
19058
19059 * coding.h (enum coding_result_code): Delete
19060 CODING_RESULT_INSUFFICIENT_CMP, add CODING_RESULT_INVALID_SRC.
19061
19062 * coding.c (Qinsufficient_source, Qinconsistent_eol)
19063 (Qinvalid_source, Qinterrupted, Qinsufficient_memory): New variables.
19064 (Vlast_code_conversion_error): New variables.
19065 (syms_of_coding): DEFSYM or DEFVAR_LISP them.
19066 (ONE_MORE_BYTE): Record error if any instead of signaling an
19067 error. If non-ASCII multibyte char is found, return the negative
19068 value of the code. All callers changed to check it.
19069 (ONE_MORE_BYTE_NO_CHECK): Likewise.
19070 (record_conversion_result): New function. Change all codes setting
19071 coding->result to call this function.
19072 (detect_coding_utf_8, decode_coding_utf_8)
19073 (detect_coding_emacs_mule, detect_coding_sji, detect_coding_big5):
19074 Don't use the local variable incomplete.
19075 (emacs_mule_char): Change the second arg to `const'.
19076 (decode_coding): Fix of flushing out unprocessed data.
19077 (make_conversion_work_buffer): Fix making of a work buffer.
19078 (decode_coding_object): Return coding->dst_object.
19079
19080 * fontset.c (set_fontset_font): Fix args.
19081
19082 * lisp.h (CHARACTERBITS): Define as 22.
19083
19084 * process.c (send_process): Be sure to set coding->src_multibyte.
19085
19086 * xdisp.c (handle_auto_composed_prop): Fix setting of limit.
19087
19088 2008-02-01 Kenichi Handa <handa@m17n.org>
19089
19090 * xdisp.c (handle_auto_composed_prop): Give limit to
19091 Fnext_single_char_property_change.
19092
19093 2008-02-01 Kenichi Handa <handa@m17n.org>
19094
19095 * composite.c (syms_of_composite): Don't make the composition hash
19096 table weak.
19097
19098 * fontset.c (Fset_fontset_font): Fix docstring.
19099
19100 * lisp.h (detect_coding_system): Adjust prototype.
19101
19102 * fileio.c (kill_workbuf_unwind): Delete this function.
19103 (Finsert_file_contents): Adjust the call of detect_coding_system.
19104 Get conversion_buffer by code_conversion_save. Use the macro
19105 CODING_MAY_REQUIRE_DECODING. After decoding, update
19106 coding_system.
19107
19108 * coding.h (make_conversion_work_buffer): Delete extern.
19109 (code_conversion_save): Extern it.
19110
19111 * coding.c (enum iso_code_class_type): Delete ISO_carriage_return.
19112 (CODING_GET_INFO): Delete argument eol_type. Change callers.
19113 (decode_coding_utf_8): Don't do eol converion.
19114 (detect_coding_utf_16): Check coding->src_chars, not
19115 coding->src_bytes. Add heuristics for those that have no signature.
19116 (decode_coding_emacs_mule, decode_coding_iso_2022)
19117 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
19118 Don't do eol converion.
19119 (adjust_coding_eol_type): Return a new coding system.
19120 (detect_coding): Don't detect eol. Fix for utf-16 detection.
19121 (decode_eol): In case of CRLF->LF conversion, use del_range_2 on
19122 each change.
19123 (decode_coding): Pay attention to undo_list. Do eol conversion for
19124 all types of coding-systems (if necessary).
19125 (Vcode_conversion_work_buf_list): Delete it.
19126 (Vcode_conversion_reused_workbuf): Rename from
19127 Vcode_conversion_reused_work_buf.
19128 (Vcode_conversion_workbuf_name): New variable.
19129 (reused_workbuf_in_use): New variable.
19130 (make_conversion_work_buffer): Delete the arg DEPTH.
19131 (code_conversion_restore): Change argument to cons.
19132 (code_conversion_save): Delete the argument BUFFER. Change callers.
19133 (detect_coding_system): New argument src_chars. Change callers.
19134 Fix for utf-16 detection.
19135 (init_coding_once): Don't use ISO_carriage_return.
19136 (syms_of_coding): Initialize Vcode_conversion_workbuf_name and
19137 reused_workbuf_in_use.
19138
19139 2008-02-01 Kenichi Handa <handa@m17n.org>
19140
19141 * keymap.c (store_in_keymap): Pay attention to the case that idx
19142 is a cons specifying a character range.
19143
19144 2008-02-01 Kenichi Handa <handa@m17n.org>
19145
19146 * xdisp.c (handle_auto_composed_prop): Fix the case of returning
19147 HANDLED_RECOMPUTE_PROPS.
19148
19149 * coding.c (Fdefine_coding_system_internal): Fix checking of
19150 ascii compatibility.
19151
19152 2008-02-01 Kenichi Handa <handa@m17n.org>
19153
19154 * charset.c (find_charsets_in_text): Delete unused locale variable.
19155 (Fset_charset_priority): Update Vemacs_mule_charset_list too.
19156
19157 * coding.c (encode_coding_emacs_mule): Emit bytes with MSB.
19158 Resync charset_list to Vemacs_mule_charset_list.
19159
19160 * keymap.c (store_in_keymap): Pay attention to the case that idx
19161 is a cons specifying a character range.
19162
19163 2008-02-01 Kenichi Handa <handa@m17n.org>
19164
19165 * composite.c (update_compositions): Bind inhibit-read-only, etc
19166 to t before calling remove-list-of-text-properties.
19167
19168 * print.c (print_object): Always print ASCII chars as is.
19169
19170 2008-02-01 Kenichi Handa <handa@m17n.org>
19171
19172 * keymap.c (Fdefine_key): Fix handling of Lucid style event type list.
19173
19174 * fns.c (Fmapconcat, Fmapcar, Fmapc): Signal an error if SEQUENCE
19175 is a char table.
19176
19177 2008-02-01 Kenichi Handa <handa@m17n.org>
19178
19179 * syntax.c (skip_chars): Be sure to alloca char_ranges when necessary.
19180
19181 2008-02-01 Kenichi Handa <handa@m17n.org>
19182
19183 * xfaces.c (set_lface_from_font_name): Fix for the case that
19184 FONTNAME is not fontset name.
19185
19186 2008-02-01 Kenichi Handa <handa@m17n.org>
19187
19188 * fns.c (base64_encode_1): Fix previous change.
19189
19190 2008-02-01 Kenichi Handa <handa@m17n.org>
19191
19192 * fontset.c (set_fontset_font): New function.
19193 (Fset_fontset_font): If a font is specified for a charset, use
19194 map_charset_chars to store the font spec in a fontset.
19195
19196 2008-02-01 Kenichi Handa <handa@m17n.org>
19197
19198 * fontset.c (fontset_face): Create a fallback fontset on demand.
19199 (make_fontset): Don't create a fallback fontset here.
19200 (free_face_fontset): Free a fallback fontset (if any) too.
19201 (n_auto_fontsets): Delete this variable.
19202 (auto_fontset_alist): New variable.
19203 (new_fontset_from_font_name): Check auto_fontset_alist.
19204 (dump_fontset) [FONTSET_DEBUG]: Fully re-written.
19205 (Ffontset_list_all) [FONTSET_DEBUG]: New function.
19206 (syms_of_fontset): Initialize and staticpro auto_fontset_alist.
19207 Defsubr Sfontset_list_all.
19208
19209 2008-02-01 Kenichi Handa <handa@m17n.org>
19210
19211 * xterm.c (x_list_fonts): Fix excluding of auto-scaled fonts.
19212
19213 2008-02-01 Kenichi Handa <handa@m17n.org>
19214
19215 * fontset.c (Fnew_fontset): Check NAME more rigidly.
19216
19217 2008-02-01 Kenichi Handa <handa@m17n.org>
19218
19219 * editfns.c (Fgoto_char): Fix docstring.
19220
19221 2008-02-01 Kenichi Handa <handa@m17n.org>
19222
19223 * insdel.c (insert_from_gap): Adjust intervals correctly.
19224
19225 2008-02-01 Jason Rumney <jasonr@gnu.org>
19226
19227 * w32term.c (GLYPHSET, WCRANGE): Define if system headers don't.
19228 (pfnGetFontUnicodeRanges): New dynamically loaded function.
19229 (w32_initialize): Try to load it.
19230 (x_get_font_repertory): Use it if available.
19231 (w32_encode_char): Add shortcut for unicode output.
19232
19233 * w32fns.c (w32_load_system_font): Default charset to -1.
19234 (x_to_w32_charset): Match all fonts for unicode.
19235 (w32_to_x_charset): New parameter matching. Don't return partial
19236 or wildcard charsets.
19237 (w32_to_all_x_charsets): Don't return partial or wildcard charsets.
19238 (w32_codepage_for_font): Return CP_UNICODE for unicode.
19239 (w32_to_x_font): Match charset to real charset.
19240 (enum_font_cb2): Always list unicode versions.
19241
19242 * makefile.w32-in (temacs): Increase EMHEAP.
19243
19244 2008-02-01 Jason Rumney <jasonr@gnu.org>
19245
19246 * w32term.c (w32_encode_char): New charset parameter.
19247 font_info.encoding becomes encoding_type.
19248 (x_get_font_repertory): New function. Warning: stub only!
19249 (x_new_font): Return quickly if font already set.
19250 (x_new_fontset): fontsetname parameter is Lisp_Object.
19251 Use new fs_query_fontset. Try new_fontset_from_font_name.
19252 Use fontset_name for return value.
19253
19254 * w32term.h: Declare x_get_font_repertory.
19255
19256 * w32select.c (Fw32_set_clipboard_data): Use string_x_string_p in
19257 place of find_charset_in_text. Use encode_coding_object in place
19258 of encode_coding.
19259 (Fw32_get_clipboard_data): Use decode_coding_c_string in place of
19260 decode_coding.
19261
19262 * w32fns.c (Fx_create_frame, x_create_tip_frame): Use new version
19263 of x_new_fontset.
19264 (w32_load_system_font): Initialize charset as unicode.
19265 font_info.encoding becomes encoding_type.
19266 (w32_to_x_font): Use decode_coding_c_string in place of decode_coding.
19267 (x_to_w32_font): Use encode_coding_object in place of encode_coding.
19268 (syms_of_w32fns): Set get_font_repertory_func.
19269
19270 * w32console.c: Include character.h. Use terminal_encode_buffer
19271 from term.c.
19272 (write_glyphs): Use new version of encode_terminal_code. Use
19273 encode_coding_object in place of encode_coding.
19274
19275 * w32bdf.c (w32_load_bdf_font): Clear font_info before filling.
19276 encoding becomes encoding_type.
19277
19278 * term.c (terminal_encode_buffer): Make externally visible.
19279
19280 * makefile.w32-in: Add character.h dependancies.
19281 (character.o, chartab.o): New targets.
19282
19283 2008-02-01 Kenichi Handa <handa@m17n.org>
19284
19285 * fileio.c (Finsert_file_contents) [DOS_NT]: Use the macro
19286 CODING_ID_EOL_TYPE.
19287
19288 2008-02-01 Andreas Schwab <schwab@suse.de>
19289
19290 * coding.c (produce_chars): Revert last change.
19291
19292 2008-02-01 Kenichi Handa <handa@m17n.org>
19293
19294 * charset.h (charset_unicode): Extern it.
19295
19296 * charset.c (string_xstring_p): Check by (C >= 0x100).
19297 (find_charsets_in_text): Change format of the arc CHARSETS. New
19298 arg MULTIBYTE.
19299 (Ffind_charset_region, Ffind_charset_string): Adjust for the
19300 change of find_charsets_in_text.
19301 (Fsplit_char): Fix doc. Never return unknown.
19302
19303 * chartab.c (char_table_translate): Use CHARACTERP, not INTEGERP.
19304
19305 * coding.c (Fdefine_coding_system_alias): Update
19306 Vcoding_system_list.
19307
19308 * fontset.c (load_font_get_repertory): Pay attention to the case
19309 that ENCODING of a font is specified by a char-table.
19310
19311 * xterm.c (x_get_font_repertory): Handle the case that the
19312 encoding of font is other than Unicode.
19313
19314 2008-02-01 Kenichi Handa <handa@m17n.org>
19315
19316 * term.c (encode_terminal_code): Don't handle glyph-table. Check
19317 if a character is encodable by the terminal coding system. If
19318 not, produces proper number of `?'s. Update
19319 terminal_encode_buffer and terminal_encode_buf_size if necessary.
19320 (produce_glyphs): Check by CHAR_BYTE8_P, not SINGLE_BYTE_CHAR_P.
19321
19322 2008-02-01 Kenichi Handa <handa@m17n.org>
19323
19324 * term.c (terminal_encode_buffer, terminal_encode_buf_size): New
19325 variables.
19326 (encode_terminal_code): Change argument. Encode multiple
19327 characters at once. Store the result of encoding in
19328 terminal_encode_buffer.
19329 (write_glyphs, insert_glyphs): Adjust for the change of
19330 encode_terminal_code.
19331 (term_init): Initialize terminal_encode_buffer and
19332 terminal_encode_buf_size.
19333
19334 * coding.c (consume_chars): If coding->src_object is nil, don't
19335 check annotation.
19336
19337 2008-02-01 Kenichi Handa <handa@m17n.org>
19338
19339 * character.c (char_string): Use ASCII_CHAR_P instead of
19340 SINGLE_BYTE_CHAR_P.
19341
19342 2008-02-01 Kenichi Handa <handa@m17n.org>
19343
19344 * xdisp.c (handle_auto_composed_prop): Check if the last
19345 characters of auto-composed region is newly composed with the
19346 following characters.
19347 (handle_composition_prop): Fix checking of point being inside
19348 composition.
19349
19350 2008-02-01 Kenichi Handa <handa@m17n.org>
19351
19352 * fns.c (concat): Don't change multibyteness of the result by
19353 concatenating an 8-bit character.
19354
19355 * data.c (Faset): Check newelt by CHECK_CHARACTER. Don't change
19356 multibyteness of the result when newelt is an 8-bit character.
19357
19358 2008-02-01 Dave Love <fx@gnu.org>
19359
19360 * xmenu.c (find_and_call_menu_selection): Make menu_bar_items_used
19361 EMACS_INT.
19362
19363 * xfns.c (DefaultDepthOfScreen, x_encode_text): Remove unused vars.
19364
19365 * xfaces.c (face_numeric_value): Declare dim size_t.
19366 (Finternal_lisp_face_equal_p): Remove unused f.
19367
19368 * xdisp.c (BUILD_CHAR_GLYPH_STRINGS, display_and_set_cursor)
19369 (MATRIX_ROW): Remove unused vars.
19370 (draw_glyphs, x_insert_glyphs, fast_find_position)
19371 (fast_find_position, fast_find_string_pos): Use EMACS_INT for
19372 byte/char counts.
19373
19374 * regex.c (regex_compile): Remove unused var.
19375
19376 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
19377
19378 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap)
19379 (Faccessible_keymaps, where_is_internal): Remove unused vars.
19380
19381 * keyboard.c (cancel_hourglass_unwind): Return Qnil.
19382
19383 * frame.c (frame_name_fnn_p): Make len EMACS_INT.
19384
19385 * fileio.c (Fwrite_region): Remove unused var.
19386
19387 * dispnew.c (adjust_frame_glyphs_for_frame_redisplay)
19388 (adjust_frame_glyphs_for_window_redisplay): Remove unused ch_dim.
19389
19390 * composite.c (Fremove_list_of_text_properties): Declare.
19391
19392 * coding.c (inhibit_pre_post_conversion): Remove (unused).
19393 (alloc_destination, produce_chars): Use EMACS_INT for byte/char counts.
19394 (coding_inherit_eol_type): Remove unused attrs.
19395 (detect_coding): Cast arg of detect_eol.
19396
19397 * charset.c (syms_of_charset): Remove unused var p.
19398 (find_charsets_in_text, Ffind_charset_region): Use EMACS_INT for
19399 byte/char counts.
19400
19401 * casetab.c (set_case_table): Remove unused var.
19402
19403 * window.c (Fdisplay_buffer, Fframe_selected_window): Remove
19404 unused vars.
19405
19406 2008-02-01 Dave Love <fx@gnu.org>
19407
19408 * xterm.c (x_bitmap_mask): Declare.
19409
19410 2008-02-01 Dave Love <fx@gnu.org>
19411
19412 * xterm.c (x_term_init): Fix type error.
19413
19414 * lisp.h: Add Funibyte_char_to_multibyte.
19415
19416 * coding.c (Fread_coding_system): Fix arg of XSETSTRING.
19417 (Fset_coding_system_priority): Doc fix.
19418
19419 * ccl.c (ccl_driver): Fix arg of CHARACTERP.
19420
19421 * indent.c (check_composition): Make start and end EMACS_INT.
19422
19423 * character.c (lisp_string_width): Make ignore and end EMACS_INT.
19424
19425 * xdisp.c (handle_composition_prop, check_point_in_composition):
19426 Make buffer positions EMACS_INT.
19427
19428 * composite.c (find_composition, run_composition_function)
19429 (update_compositions, Ffind_composition_internal): Make buffer
19430 positions EMACS_INT.
19431
19432 * composite.h (find_composition, update_compositions): Make
19433 position args EMACS_INT.
19434
19435 * keyboard.c (adjust_point_for_property): Make beg and end EMACS_INT.
19436
19437 * intervals.c (get_property_and_range):
19438 * intervals.h (get_property_and_range): Make start and end EMACS_INT.
19439
19440 * unexalpha.c: Don't include varargs.h.
19441
19442 2008-02-01 Dave Love <fx@gnu.org>
19443
19444 * coding.h (ENCODE_UTF_8): New.
19445
19446 * Makefile.in (gtkutil.o): Depend on coding.h.
19447
19448 * coding.c (Fset_coding_system_priority): Doc fix.
19449
19450 2008-02-01 Kenichi Handa <handa@m17n.org>
19451
19452 * fileio.c (Finsert_file_contents): Call setup_coding_system in
19453 the case of auto saving.
19454
19455 2008-02-01 Andreas Schwab <schwab@suse.de>
19456
19457 * chartab.c (map_char_table, map_char_table_for_charset): Protect
19458 `range' from GC.
19459
19460 2008-02-01 Kenichi Handa <handa@m17n.org>
19461
19462 * coding.c (decode_coding_sjis): Check bytes more rigidly.
19463
19464 2008-02-01 Kenichi Handa <handa@m17n.org>
19465
19466 * fileio.c (choose_write_coding_system): Return a decided coding system.
19467 (Fwrite_region): Set Vlast_coding_system_used to the return value
19468 of choose_write_coding_system.
19469
19470 2008-02-01 Kenichi Handa <handa@m17n.org>
19471
19472 * charset.c (Fset_charset_priority): Pay attention to duplicated
19473 arguments.
19474
19475 * coding.c (QCcategory): New variable.
19476 (syms_of_coding): Defsym it. Set all elements of
19477 Vcoding_category_table and their symbol values.
19478 (Fset_coding_system_priority): Doc fix. Update symbol qvalues of
19479 coding-category-XXX, and coding-category-list.
19480 (Fdefine_coding_system_internal): Add category in the plist.
19481
19482 2008-02-01 Kenichi Handa <handa@m17n.org>
19483
19484 * callproc.c (Fcall_process): Handle carryover correctly.
19485
19486 * coding.c (decode_coding_iso_2022): Fix handling of invalid bytes.
19487 (raw_text_coding_system): Check NILP (coding_system).
19488 (coding_inherit_eol_type): Check NILP (coding_system) and
19489 NILP (parent).
19490 (consume_chars): Fix for the case of raw-text.
19491
19492 * process.c (read_process_output): Handle carryover correctly.
19493
19494 2008-02-01 Dave Love <fx@gnu.org>
19495
19496 * regex.c (re_search_2): Fix last change.
19497
19498 2008-02-01 Kenichi Handa <handa@m17n.org>
19499
19500 * regex.c (GET_CHAR_BEFORE_2): Check multibyte, not
19501 target_multibyte. Even in a unibyte case, return a converted
19502 multibyte char.
19503 (GET_CHAR_AFTER): New macro.
19504 (PATFETCH): Translate via multibyte char.
19505 (HANDLE_UNIBYTE_RANGE): Delete this macro.
19506 (SETUP_MULTIBYTE_RANGE): New macro.
19507 (regex_compile): Setup compiled code so that its multibyteness
19508 matches that of a target. Fix the handling of "[X-YZ]" using
19509 SETUP_MULTIBYTE_RANGE.
19510 (analyse_first) <charset>: For filling fastmap for all multibyte
19511 characters, don't check by BASE_LEADING_CODE_P.
19512 (re_search_2): Don't check RE_TARGET_MULTIBYTE_P (bufp). It is
19513 the same as RE_MULTIBYTE_P (bufp) now.
19514 (mutually_exclusive_p): Check by (! multibyte || IS_REAL_ASCII (c)).
19515 (TARGET_CHAR_AND_LENGTH): Delete this macro.
19516 (TRANSLATE_VIA_MULTIBYTE): New macro.
19517 (re_match_2_internal): Don't check RE_TARGET_MULTIBYTE_P (bufp).
19518 It is the same as RE_MULTIBYTE_P (bufp) now.
19519 <exactn>: Translate via multibyte.
19520 <anychar>: Fetch a character by RE_STRING_CHAR_AND_LENGTH. Don't
19521 translate it.
19522 <charset, charset_not>: Fetch a character by
19523 RE_STRING_CHAR_AND_LENGTH. Translate via multibyte.
19524 <duplicate>: Call bcmp_translate with the last arg `multibyte'.
19525 <wordbound, notwordbound, wordbeg, wordend, syntaxspec,
19526 notsyntaxspec, categoryspec, notcategoryspec> Fetch a character
19527 by GET_CHAR_AFTER.
19528 (bcmp_translate): Likewise.
19529
19530 * search.c (compile_pattern): Check the member target_multibyte,
19531 not the member multibyte of buf.
19532
19533 * lread.c (read1): While reading a string, set force_singlebyte
19534 and force_multibyte correctly.
19535
19536 * charset.c (Fset_unibyte_charset, init_charset_once): Fix setting
19537 up of unibyte_to_multibyte_table.
19538
19539 2008-02-01 Kenichi Handa <handa@m17n.org>
19540
19541 * coding.c (setup_coding_system): If coding has
19542 post-read-conversion or pre-write-conversion, set
19543 CODING_REQUIRE_DECODING_MASK and CODING_REQUIRE_ENCODING_MASK
19544 respectively.
19545 (decode_coding_gap): Run post-read-conversion if any.
19546
19547 * fileio.c (Finsert_file_contents): Even if we read into a
19548 unibyte buffer, check if we must decode the result or not.
19549
19550 2008-02-01 Kenichi Handa <handa@m17n.org>
19551
19552 * coding.c (make_conversion_work_buffer): Change the work buffer
19553 name to the same one as that of Emacs 21.
19554
19555 2008-02-01 Kenichi Handa <handa@m17n.org>
19556
19557 * coding.h (make_conversion_work_buffer): Adjust prototype.
19558 (code_conversion_restore): Don't extern it.
19559
19560 * coding.c (detected_mask): Delete unused variable.
19561 (decode_coding_iso_2022): Pay attention to the byte sequence of
19562 CTEXT extended segment, and retain those bytes as is.
19563 (decode_coding_ccl): Delete unused variable `valids'.
19564 (setup_coding_system): Delete unused variable `category'.
19565 (consume_chars): Delete unused variable `category'. Make it work
19566 for non-multibyte case.
19567 (make_conversion_work_buffer): Change argument.
19568 (saved_coding): Delete unused variable.
19569 (code_conversion_restore): Don't check saved_coding->destination.
19570 (code_conversion_save): New function.
19571 (decode_coding_gap, encode_coding_gap): Call code_conversion_save
19572 instead of record_unwind_protect.
19573 (decode_coding_object, encode_coding_object): Likewise. Recover PT.
19574 (detect_coding_system): Delete unused variable `mask'.
19575 (Fdefine_coding_system_internal): Delete unused variable id.
19576
19577 * fileio.c (kill_workbuf_unwind): New function.
19578 (Finsert_file_contents): On replacing, call
19579 make_conversion_work_buffer with correct args, and call
19580 record_unwind_protect with the first arg kill_workbuf_unwind.
19581
19582 * lisp.h (Fgenerate_new_buffer_name): EXFUN it.
19583
19584 2008-02-01 Kenichi Handa <handa@m17n.org>
19585
19586 * fontset.c (BASE_FONTSET_P): Check FONTSET_BASE, not FONTSET_NAME.
19587 (fontset_add): Fix for the case that TO is less than TO1.
19588 (Ffontset_info): Don't use fallback fontset on checking the
19589 default fontset.
19590 (dump_fontset): New function for debugging.
19591
19592 * coding.c (Fdefine_coding_system_internal): Fix for the case that
19593 coding_type is Qcharset.
19594
19595 2008-02-01 Kenichi Handa <handa@m17n.org>
19596
19597 * chartab.c (map_sub_char_table): New argument DEFAULT_VAL.
19598 (map_char_table): Don't inherit the value from the parent on
19599 initializing VAL. Adjust for the above change.
19600
19601 2008-02-01 Kenichi Handa <handa@m17n.org>
19602
19603 * coding.c (Qsignature, Qendian): Delete these variables.
19604 (syms_of_coding): Don't initialize them.
19605 (CATEGORY_MASK_UTF_16_AUTO): New macro.
19606 (detect_coding_utf_16): Add CATEGORY_MASK_UTF_16_AUTO in
19607 detect_info->found.
19608 (decode_coding_utf_16): Don't detect BOM here.
19609 (encode_coding_utf_16): Produce BOM if CODING_UTF_16_BOM (coding)
19610 is NOT utf_16_without_bom.
19611 (setup_coding_system): For a coding system of type utf-16, check
19612 if the attribute :endian is Qbig or not (not nil or not), and set
19613 CODING_REQUIRE_DETECTION_MASK if BOM detection is required.
19614 (detect_coding): If coding type is utf-16 and BOM detection is
19615 required, detect it.
19616 (Fdefine_coding_system_internal): For a coding system of type
19617 utf-16, check if the attribute :endian is Qbig or not (not nil or not).
19618
19619 2008-02-01 Kenichi Handa <handa@m17n.org>
19620
19621 * coding.c (coding_set_source): Fix for the case that the current
19622 buffer is different from coding->src_object.
19623 (decode_coding_object): Don't use the conversion work buffer if
19624 DST_OBJECT is a buffer.
19625
19626 2008-02-01 Dave Love <fx@gnu.org>
19627
19628 * lread.c (read_emacs_mule_char) [len==2]: Index
19629 emacs_mule_charset correctly.
19630
19631 2008-02-01 Dave Love <fx@gnu.org>
19632
19633 * coding.c (Qbig5, Vbig5_coding_system, CATEGORY_MASK_BIG5)
19634 (detect_coding_big5, decode_coding_big5, encode_coding_big5)
19635 (Fdecode_big5_char, Fencode_big5_char): Delete. (Big5 no longer
19636 treated specially.)
19637 (setup_coding_system, coding_category, CATEGORY_MASK_ANY)
19638 (detected_mask): Remove Big5 bits.
19639
19640 2008-02-01 Kenichi Handa <handa@m17n.org>
19641
19642 The following changes are to make the font rescaling facility
19643 compatible with Emacs 21.
19644
19645 * xfaces.c (Vface_font_rescale_alist): Rename from
19646 Vface_resizing_fonts.
19647 (struct font_name): Rename member resizing_ratio to rescale_ratio.
19648 (font_rescale_ratio): Rename from font_resizing_ratio.
19649 (split_font_name): Set font->rescale_ratio.
19650 (better_font_p): Pay attention to font->rescale_ratio.
19651 (build_scalable_font_name): Likewise. Change RESX, and RESY
19652 fields.
19653 (syms_of_xfaces): Declare Vface_font_rescale_alist as a Lisp variable.
19654
19655 2008-02-01 Kenichi Handa <handa@m17n.org>
19656
19657 * coding.c (Qutf_16_be_nosig, Qutf_16_be, Qutf_16_le_nosig)
19658 (Qutf_16_le): Remove these variables.
19659 (syms_of_coding): Don't DEFSYM them.
19660 (decode_coding_utf_16): Fix handling of BOM.
19661 (encode_coding_utf_16): Fix handling of BOM.
19662
19663 2008-02-01 Kenichi Handa <handa@m17n.org>
19664
19665 * fileio.c (Finsert_file_contents): On replacing, before decoding
19666 the file into the work buffer, set point of the work buffer to the end.
19667
19668 2008-02-01 Dave Love <fx@gnu.org>
19669
19670 * coding.c (Fcheck_coding_systems_region): Fix type errors.
19671
19672 2008-02-01 Dave Love <fx@gnu.org>
19673
19674 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
19675 and fix C types.
19676
19677 2008-02-01 Kenichi Handa <handa@m17n.org>
19678
19679 * xdisp.c (SKIP_GLYPHS): New macro.
19680 (set_cursor_from_row): Pay attention to string display properties.
19681
19682 * category.c (copy_category_entry): Fix for the case that RANGE
19683 is an integer.
19684
19685 * xterm.c (x_encode_char): Call ccl_driver with the last arg Qnil.
19686
19687 * w32term.c (w32_encode_char): Call ccl_driver with the last arg Qnil.
19688
19689 2008-02-01 Kenichi Handa <handa@m17n.org>
19690
19691 * charset.c (Fcharset_id_internal): New function.
19692 (syms_of_charset): Defsubr it.
19693
19694 * coding.c (decode_coding_ccl, encode_coding_ccl): Call ccl_driver
19695 with the last arg charset_list acquired from coding.
19696 (Fdefine_coding_system_internal): For ccl-based coding system, fix
19697 the attribute coding_attr_ccl_valids.
19698
19699 * coding.h (enum define_coding_ccl_arg_index): Set the first
19700 member coding_arg_ccl_decoder to coding_arg_max.
19701
19702 * ccl.h (ccl_driver): Adjust prototype.
19703
19704 * ccl.c (CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
19705 (ccl_driver): New arg CHARSET_LIST. Use the above macros instead
19706 of DECODE_CHAR, ENCODE_CHAR, CHAR_CHARSET.
19707 (Fccl_execute, Fccl_execute_on_string): Call ccl_driver with the
19708 last arg Qnil.
19709
19710 2008-02-01 Kenichi Handa <handa@m17n.org>
19711
19712 * charset.h (ENCODE_CHAR): If the method is SUBSET or SUPERSET,
19713 call encode_char.
19714
19715 * charset.c (encode_char): Fix handling of methods SUBSET and SUPERSET.
19716
19717 2008-02-01 Dave Love <fx@gnu.org>
19718
19719 * composite.c (syms_of_composite): Make composition_hash_table weak.
19720
19721 2008-02-01 Kenichi Handa <handa@m17n.org>
19722
19723 * dispextern.h (check_face_attributes, generate_ascii_font_name)
19724 (font_name_registry): Don't extern them.
19725 (split_font_name_into_vector, build_font_name_from_vector): Extern them.
19726
19727 * fontset.h (Qfontset): Don't extern it.
19728 (new_fontset_from_font_name): Extern it.
19729
19730 * fontset.c: Give 8 extra slots to fontset objects.
19731 (Qfontset_info): New variable.
19732 (syms_of_fontset): Defsym it.
19733 (FONTSET_FALLBACK): New macro.
19734 (fontset_face): Try also the default fontset.
19735 (make_fontset): Realize a fallback fontset from the default fontset.
19736 (generate_ascii_font_name): Move from xfaces.c. Rewritten by
19737 using split_font_name_into_vector and build_font_name_from_vector.
19738 (Fset_fontset_font): Access the elements of font_spec by enum
19739 FONT_SPEC_INDEX. If font_spec is a string, extract the registry
19740 name by using split_font_name_into_vector.
19741 (Fnew_fontset): If no ASCII font is specified in FONTLIST,
19742 generate a proper font name from the fontset name. Update
19743 Vfontset_alias_alist.
19744 (n_auto_fontsets): New variable.
19745 (new_fontset_from_font_name): New function.
19746 (Ffont_info): Store the information about fonts generated from the
19747 default fontset in the first extra slot of the returned char-table.
19748
19749 * xfaces.c (generate_ascii_font_name): Move to fontset.c.
19750 (font_name_registry): Delete function.
19751 (split_font_name_into_vector): New function.
19752 (build_font_name_from_vector): New function.
19753 (font_list): The argument REGISTRY is now a list of registry names.
19754 (choose_face_font): If we are choosing an ASCII font, and ATTRS
19755 specifies an explicit font name, return the name as is. Make a
19756 list of registy names.
19757
19758 * xfns.c (x_set_font, x_create_tip_frame): Adjust for the change
19759 of x_new_fontset.
19760 (Fx_create_frame): Don't call x_new_fontset here. Just use
19761 x_list_fonts to check the existence of fonts.
19762
19763 * xterm.h (x_new_fontset): Adjust prototype.
19764
19765 * xterm.c (x_new_fontset): Change the arg FONTSETNAME to Lisp
19766 string. Use new_fontset_from_font_name to create a fontset from a
19767 font name.
19768
19769 2008-02-01 Kenichi Handa <handa@m17n.org>
19770
19771 * syntax.c (Vfind_word_boundary_function_table): New name for
19772 Vnext_word_boundary_function_table.
19773 (find-word-boundary-function-table): New name for
19774 next-word-boundary-function-table.
19775
19776 2008-02-01 Dave Love <fx@gnu.org>
19777
19778 * Makefile.in: Fix some dependencies.
19779
19780 * keymap.c (Fapropos_internal): Don't gcpro apropos_predicate but
19781 set it to nil before returning.
19782
19783 * composite.c (update_compositions): Fix type error.
19784
19785 * syntax.c (skip_chars, skip_syntaxes): Fix type errors.
19786
19787 2008-02-01 Kenichi Handa <handa@m17n.org>
19788
19789 * xterm.c (x_new_font): Optimize for the case that the font is
19790 already set for the frame.
19791
19792 2008-02-01 Kenichi Handa <handa@m17n.org>
19793
19794 * chartab.c (char_table_ascii): Check if the char table contents
19795 is sub-char-table or not.
19796 (char_table_set, char_table_set_range): Fix argument to
19797 char_table_ascii.
19798
19799 * coding.c (CATEGORY_MASK_RAW_TEXT): New macro.
19800 (detect_coding_utf_8, detect_coding_utf_16)
19801 (detect_coding_emacs_mule, detect_coding_iso_2022)
19802 (detect_coding_sjis, detect_coding_big5)
19803 (detect_coding_ccl, detect_coding_charset): Change argument MASK
19804 to DETECT_INFO. Update DETECT_INFO and return 1 if the byte
19805 sequence is valid in this coding system. Change callers.
19806 (MAX_ANNOTATION_LENGTH): New macro.
19807 (ADD_ANNOTATION_DATA): New macro.
19808 (ADD_COMPOSITION_DATA): Change argument. Change callers. Call
19809 ADD_ANNOTATION_DATA. Change the format of annotation data.
19810 (ADD_CHARSET_DATA): New macro.
19811 (emacs_mule_char): New argument ID. Change callers.
19812 (decode_coding_emacs_mule, decode_coding_iso_2022)
19813 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
19814 Produce charset annotation data in coding->charbuf.
19815 (encode_coding_emacs_mule, encode_coding_iso_2022): Pay attention
19816 to charset annotation data in coding->charbuf.
19817 (setup_coding_system): Add CODING_ANNOTATE_CHARSET_MASK
19818 coding->common_flags if the coding system is iso-2022 based and
19819 uses designation.
19820 (produce_composition): Adjust for the new annotation data format.
19821 (produce_charset): New function.
19822 (produce_annotation): Handle charset annotation.
19823 (handle_composition_annotation, handle_charset_annotation): New
19824 functions.
19825 (consume_chars): Handle charset annotation. Utilize the above two
19826 functions.
19827 (encode_coding_object): If SRC_OBJECT and DST_OBJECT are the same
19828 buffer, get the deleted text as a string and set
19829 coding->src_object to that string.
19830 (detect_coding, detect_coding_system): Use the new struct
19831 coding_detection_info.
19832
19833 * coding.h (struct coding_detection_info): New structure.
19834 (struct coding_system): Adjust prototype of the member `detector'.
19835 (CODING_ANNOTATE_CHARSET_MASK): New macro.
19836
19837 2008-02-01 Kenichi Handa <handa@m17n.org>
19838
19839 * insdel.c (insert_from_gap): Fix argument to offset_intervals.
19840
19841 2008-02-01 Dave Love <fx@gnu.org>
19842
19843 * keymap.c (apropos_predicate, apropos_accumulate): Declare static.
19844 (Fapropos_internal): Don't gcpro apropos_accumulate. Set result
19845 to new local and nullify apropos_accumulate before returning.
19846 (syms_of_keymap): Staticpro and initialize apropos_accumulate.
19847
19848 2008-02-01 Kenichi Handa <handa@m17n.org>
19849
19850 * charset.c (Fdefine_charset_internal): Setup charset.fast_map
19851 correctly.
19852
19853 2008-02-01 Dave Love <fx@gnu.org>
19854
19855 * fns.c (Flanginfo): Call synchronize_system_time_locale.
19856
19857 2008-02-01 Kenichi Handa <handa@m17n.org>
19858
19859 The following changes are to make character composition happen
19860 automatically on displaying.
19861
19862 * Makefile.in (lisp, shortlisp): Add composite.elc.
19863
19864 * composite.h (Qauto_composed, Vauto_composition_function)
19865 (Qauto_composition_function): Extern them.
19866
19867 * composite.c (Vcomposition_function_table)
19868 (Qcomposition_function_table): Delete variables.
19869 (Qauto_composed, Vauto_composition_function)
19870 (Qauto_composition_function): New variables.
19871 (run_composition_function): Don't call
19872 compose-chars-after-function.
19873 (update_compositions): Clear `auto-composed' text property.
19874 (compose_chars_in_text): Delete this function.
19875 (syms_of_composite): Staticpro Qauto_composed and
19876 Qauto_composition_function. Declare Vauto_composition_function as
19877 a Lisp variable.
19878
19879 * dispextern.h (enum prop_idx): Add member AUTO_COMPOSED_PROP_IDX.
19880
19881 * xdisp.c (it_props): Add an entry for Qauto_composed.
19882 (handle_auto_composed_prop): New function.
19883
19884 * xselect.c (selection_data_to_lisp_data): Don't call
19885 compose_chars_in_text.
19886
19887 2008-02-01 Dave Love <fx@gnu.org>
19888
19889 * keyboard.c (read_char): Modify checking around use of
19890 Vkeyboard_translate_table.
19891
19892 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
19893 and fix C types.
19894
19895 2008-02-01 Kenichi Handa <handa@m17n.org>
19896
19897 * coding.c (decode_coding_utf_8, decode_coding_emacs_mule)
19898 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
19899 (decode_coding_charset, produce_chars): When eol_type is Qdos, handle
19900 the case that the last byte is '\r' correctly.
19901 (decode_coding): Flush out the unprocessed data correctly.
19902 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK bit of coding->mode.
19903
19904 2008-02-01 Dave Love <fx@gnu.org>
19905
19906 * xterm.c (XTread_socket): Fix changes for defined keysyms.
19907 Add XK_ISO... case.
19908 (xaw_scroll_callback): Revert last change.
19909
19910 2008-02-01 Kenichi Handa <handa@m17n.org>
19911
19912 * charset.c (Fset_charset_priority): Update Viso_2022_charset_list.
19913
19914 2008-02-01 Kenichi Handa <handa@m17n.org>
19915
19916 * xfaces.c (Vface_resizing_fonts): New variable.
19917 (struct font_name): New member `resizing_ratio'.
19918 (font_resizing_ratio): New function.
19919 (split_font_name): Set font->resizing_ratio.
19920 (better_font_p): Pay attention to font->resizing_ratio.
19921 (build_scalable_font_name): Likewise. Don't change POINT_SIZE,
19922 RESX, and RESY fields.
19923 (try_alternative_families): Try scalable fonts if
19924 Vscalable_fonts_allowed is not Qt.
19925 (syms_of_xfaces): Declare Vface_resizing_fonts as a Lisp variable.
19926
19927 2008-02-01 Dave Love <fx@gnu.org>
19928
19929 * xterm.c (xaw_scroll_callback): Cast correctly.
19930
19931 2008-02-01 Dave Love <fx@gnu.org>
19932
19933 * keyboard.c (lispy_accent_codes, lispy_accent_keys): Extend.
19934 (lispy_kana_keys): Comment out.
19935 (make_lispy_event) [XK_kana_A]: Comment out.
19936
19937 * xterm.c (xaw_scroll_callback): Cast call_data.
19938 (XTread_socket): Deal with ASCII keysyms.
19939 (syms_of_xterm) <Vx_keysym_table>: Fix args of make_hash_table.
19940
19941 2008-02-01 Dave Love <fx@gnu.org>
19942
19943 * xterm.c (Vx_keysym_table): New.
19944 (syms_of_xterm): Initialize it.
19945 (XTread_socket): Use it.
19946 From head: Eliminate incorrect optimization that tried to avoid
19947 decoding the output of X*LookupString.
19948 (x_get_font_repertory): Delete charset declaration.
19949
19950 2008-02-01 Kenichi Handa <handa@m17n.org>
19951
19952 * coding.c (detect_coding_charset): If only ASCII bytes are found,
19953 return 0.
19954 (Fdefine_coding_system_internal): Setup
19955 CODING_ATTR_ASCII_COMPAT (attrs) correctly.
19956
19957 2008-02-01 Dave Love <fx@gnu.org>
19958
19959 * coding.c (Fcheck_coding_system): Doc fix.
19960
19961 * editfns.c (Finsert_byte): Return a proper value.
19962
19963 2008-02-01 Kenichi Handa <handa@m17n.org>
19964
19965 * coding.c (decode_coding): Fix args to translate_chars. Pay
19966 attention to Vstandard_translation_table_for_decode.
19967 (encode_coding): Fix args to translate_chars. Pay attention to
19968 Vstandard_translation_table_for_encode.
19969
19970 * data.c (Faset): Check NEWELT by ASCII_CHAR_P, not by
19971 SINGLE_BYTE_CHAR_P.
19972
19973 * editfns.c (general_insert_function): Check VAL by ASCII_CHAR_P,
19974 not by SINGLE_BYTE_CHAR_P.
19975
19976 * fns.c (concat): Check CH by ASCII_CHAR_P, not by
19977 SINGLE_BYTE_CHAR_P.
19978
19979 * insdel.c (copy_text): Check C by ASCII_CHAR_P, not by
19980 SINGLE_BYTE_CHAR_P.
19981
19982 * keymap.c (Ftext_char_description): Check C by ASCII_CHAR_P, not
19983 by SINGLE_BYTE_CHAR_P.
19984
19985 * search.c (Freplace_match): Check C by ASCII_CHAR_P, not by
19986 SINGLE_BYTE_CHAR_P.
19987
19988 2008-02-01 Dave Love <fx@gnu.org>
19989
19990 * fns.c (Fstring_as_multibyte, Fstring_to_multibyte): Doc fix.
19991
19992 2008-02-01 Dave Love <fx@gnu.org>
19993
19994 * fns.c (Flanginfo): Fix typo.
19995
19996 * unexelf.c (unexec): Make last change conditional on Irix 6.5.
19997
19998 2008-02-01 Kenichi Handa <handa@m17n.org>
19999
20000 * coding.c (detect_coding_utf_8, detect_coding_utf_16)
20001 (detect_coding_emacs_mule, detect_coding_iso_2022)
20002 (detect_coding_sjis, detect_coding_big5, detect_coding_ccl): Check
20003 incomplete byte sequence. Don't update *mask when correctly detected.
20004 (decode_coding_sjis): Fix decoding of katakana-jisx0201.
20005 (detect_eol): Delete the argument CODING, and add the argument CATEGORY.
20006 (detect_coding, detect_coding_system): Adjust for the changes above.
20007
20008 2008-02-01 Kenichi Handa <handa@m17n.org>
20009
20010 * character.c (char_string): Rename from
20011 char_string_with_unification. Pay attention to CHAR_MODIFIER_MASK.
20012 (string_char): Rename from string_char.
20013
20014 * character.h (CHAR_STRING, CHAR_STRING_ADVANCE): Call char_string
20015 if C is greater than MAX_3_BYTE_CHAR.
20016 (STRING_CHAR, STRING_CHAR_AND_LENGTH, STRING_CHAR_ADVANCE): Call
20017 string_char instead of string_char_with_unification.
20018
20019 2008-02-01 Dave Love <fx@gnu.org>
20020
20021 * coding.c (decode_coding_utf_8): Treat surrogates as invalid.
20022
20023 2008-02-01 Kenichi Handa <handa@m17n.org>
20024
20025 * keymap.c (push_key_description): Pay attention to force_multibyte.
20026
20027 * regex.c (re_search_2): Fix for the case of unibyte buffer.
20028
20029 2008-02-01 Dave Love <fx@gnu.org>
20030
20031 * charset.c (define_charset_internal): Rename `supprementary'.
20032
20033 * Makefile.in (lisp, shortlisp): Remove latin-N.
20034
20035 2008-02-01 Dave Love <fx@gnu.org>
20036
20037 * xfns.c (x_window, x_window): Use use_xim.
20038
20039 * xterm.c (use_xim): Initialize.
20040 (xim_open_dpy, xim_initialize, xim_close_dpy): Use use_xim.
20041 (x_term_init): Maybe set use_xim.
20042
20043 * xterm.h (use_xim) [HAVE_X_I18N]: Declare.
20044
20045 2008-02-01 Kenichi Handa <handa@m17n.org>
20046
20047 * search.c (search_buffer): Fix case-fold-search of multibyte
20048 characters.
20049 (boyer_moore): Rename the last argument to char_high_bits.
20050
20051 2008-02-01 Kenichi Handa <handa@m17n.org>
20052
20053 * xdisp.c (display_string): Fix for the case of zero width glyph.
20054
20055 * xfns.c (x_set_font): Change the error message of the case that
20056 x_new_fontset returns Qt.
20057
20058 * xfaces.c (set_lface_from_font_name): Reject the default fontset.
20059 (Finternal_set_lisp_face_attribute): Use signal_error for the
20060 error of invalid fontset.
20061
20062 * xterm.c (x_new_fontset): If FONTSETNAME specifies the default
20063 fontset, return Qt.
20064
20065 2008-02-01 Dave Love <fx@gnu.org>
20066
20067 * unexelf.c (unexec): Make .got handling not SGI-specific.
20068
20069 * syntax.c (syms_of_syntax) <multibyte-syntax-as-symbol>: Doc fix.
20070
20071 * regex.c: Use `ifdef HAVE_ALLOCA_H', not `if HAVE_ALLOCA_H'.
20072
20073 * keyboard.c (read_key_sequence): Fix type error.
20074
20075 * buffer.c (Fset_buffer_multibyte, Fset_buffer_multibyte): Fix
20076 type error.
20077
20078 * fontset.c (fontset_add): Return Lisp_Object.
20079
20080 2008-02-01 Dave Love <fx@gnu.org>
20081
20082 * charset.h (charset_ordered_list_tick): Declare extern.
20083
20084 2008-02-01 Kenichi Handa <handa@m17n.org>
20085
20086 The following changes (and some of 2008-02-01 changes of mine) are
20087 for handling syntax, category, and case conversion for unibyte
20088 characters by converting them to multibyte on the fly. With these
20089 changes, we don't have to setup syntax and case tables for unibyte
20090 characters in each language environment.
20091
20092 * abbrev.c (Fexpand_abbrev): Convert a unibyte character to
20093 multibyte if necessary.
20094
20095 * bytecode.c (Fbyte_code): Likewise.
20096
20097 * character.h (LEADING_CODE_LATIN_1_MIN)
20098 (LEADING_CODE_LATIN_1_MAX): New macros.
20099 (unibyte_to_multibyte_table): Extern it.
20100 (unibyte_char_to_multibyte): New macro.
20101 (MAKE_CHAR_MULTIBYTE): Use unibyte_to_multibyte_table.
20102 (CHAR_LEADING_CODE): New macro.
20103 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): New macro.
20104
20105 * character.c (unibyte_to_multibyte_table): New variable.
20106 (unibyte_char_to_multibyte): Move to character.h and define as macro.
20107 (multibyte_char_to_unibyte): If C is an eight-bit character,
20108 convert it to the corresponding byte value.
20109
20110 * charset.c (Fset_unibyte_charset): If the dimension of CHARSET is
20111 not 1, signals an error. Update the elements of
20112 unibyte_to_multibyte_table.
20113 (init_charset_once): Initialize unibyte_to_multibyte_table.
20114 (syms_of_charset): Define the charset `iso-8859-1'.
20115
20116 * cmds.c (internal_self_insert): In a multibyte buffer, insert C
20117 as is without converting it to unibyte. In a unibyte buffer,
20118 convert C to multibyte before checking the syntax.
20119
20120 * lisp.h (unibyte_char_to_multibyte): Delete extern.
20121
20122 * minibuf.c (Fminibuffer_complete_word): Use the macro
20123 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE.
20124
20125 * regex.h (struct re_pattern_buffer): New member target_multibyte.
20126
20127 * regex.c (RE_TARGET_MULTIBYTE_P): New macro.
20128 (GET_CHAR_BEFORE_2): Check target_multibyte, not multibyte. If
20129 that is zero, convert an eight-bit char to multibyte.
20130 (MAKE_CHAR_MULTIBYTE, CHAR_LEADING_CODE): New dummy new macros for
20131 non-emacs case.
20132 (PATFETCH): Convert an eight-bit char to multibyte.
20133 (HANDLE_UNIBYTE_RANGE): New macro.
20134 (regex_compile): Setup the compiled pattern for multibyte chars
20135 even if the given regex string is unibyte. Use PATFETCH_RAW
20136 instead of PATFETCH in many places. To handle `charset'
20137 specification of unibyte, call HANDLE_UNIBYTE_RANGE. Use bitmap
20138 only for ASCII chars.
20139 (analyse_first) <exactn>: Simplify because the compiled pattern
20140 is multibyte.
20141 <charset_not>: Setup fastmap from bitmap only for ASCII chars.
20142 <charset>: Use CHAR_LEADING_CODE to get leading codes.
20143 <categoryspec>: If multibyte, setup fastmap only for ASCII chars here.
20144 (re_compile_fastmap) [emacs]: Call analyse_first with the arg
20145 multibyte always 1.
20146 (re_search_2): In emacs, set the locale variable multibyte to 1,
20147 otherwise to 0. New local variable target_multibyte. Check it
20148 to decide the multibyteness of STR1 and STR2. If
20149 target_multibyte is zero, convert unibyte chars to multibyte
20150 before translating and checking fastmap.
20151 (TARGET_CHAR_AND_LENGTH): New macro.
20152 (re_match_2_internal): In emacs, set the locale variable multibyte
20153 to 1, otherwise to 0. New local variable target_multibyte. Check
20154 it to decide the multibyteness of STR1 and STR2. Use
20155 TARGET_CHAR_AND_LENGTH to fetch a character from D.
20156 <charset, charset_not>: If multibyte is nonzero, check fastmap
20157 only for ASCII chars. Call bcmp_translate with
20158 target_multibyte, not with multibyte.
20159 <begline>: Declare the local variable C as `unsigned'.
20160 (bcmp_translate): Change the last arg name to target_multibyte.
20161
20162 * search.c (compile_pattern_1): Don't adjust the multibyteness of
20163 the regexp pattern and the matching target. Set cp->buf.multibyte
20164 to the multibyteness of the regexp pattern. Set
20165 cp->but.target_multibyte to the multibyteness of the matching target.
20166 (wordify): Use FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE instead of
20167 FETCH_STRING_CHAR_ADVANCE.
20168 (Freplace_match): Convert unibyte chars to multibyte.
20169
20170 * syntax.c (char_quoted, back_comment, scan_words)
20171 (Fforward_comment, scan_lists, Fbackward_prefix_chars)
20172 (scan_sexps_forward): Use FETCH_CHAR_AS_MULTIBYTE to convert
20173 unibyte chars to multibyte.
20174 (skip_chars): Delete the arg syntaxp, and move the code for
20175 handling syntaxes to skip_syntaxes. Change callers.
20176 Fix the case that the multibyteness of STRING and the current
20177 buffer doesn't match.
20178 (skip_syntaxes): New function.
20179 (SYNTAX_WITH_MULTIBYTE_CHECK): Check C by ASCII_CHAR_P, not by
20180 SINGLE_BYTE_CHAR_P.
20181
20182 2008-02-01 Kenichi Handa <handa@m17n.org>
20183
20184 * xfaces.c (QCfontset): New variable.
20185 (LFACE_FONTSET): New macro.
20186 (check_lface_attrs): Check also LFACE_FONTSET_INDEX.
20187 (set_lface_from_font_name): Setup LFACE_FONTSET (lface).
20188 (Finternal_set_lisp_face_attribute)
20189 (Finternal_get_lisp_face_attribute): Handle QCfontset.
20190 (lface_same_font_attributes_p): Fix checking of LFACE_FONT_INDEX,
20191 check also LFACE_FONTSET_INDEX.
20192 (face_fontset): Check attrs[LFACE_FONTSET_INDEX], not
20193 attrs[LFACE_FONT_INDEX].
20194 (syms_of_xfaces): Intern and staticpro QCfontset.
20195
20196 * dispextern.h (enum lface_attribute_index): New member
20197 LFACE_FONTSET_INDEX.
20198
20199 * fns.c (base64_encode_1): Handle eight-bit chars correctly.
20200
20201 2008-02-01 Kenichi Handa <handa@m17n.org>
20202
20203 * coding.c (coding_set_destination): Fix coding->destination for
20204 the case converting a region.
20205 (encode_coding_utf_8): Encode eight-bit chars as single byte.
20206 (encode_coding_object): Fix coding->dst_pos and
20207 coding->dst_pos_byte for the case converting a region.
20208
20209 * insdel.c (insert_from_gap): Make it work even if PT != GTP.
20210
20211 * character.h (BYTE8_STRING): New macro.
20212
20213 * fns.c (base64_decode_1): Insert eight-bit chars correctly.
20214
20215 2008-02-01 Kenichi Handa <handa@m17n.org>
20216
20217 * xdisp.c (get_next_display_element): Don't display unibyte 8-bit
20218 characters by octal form.
20219
20220 * abbrev.c (Fexpand_abbrev): Fix for the multibyte case.
20221
20222 * buffer.h (_fetch_multibyte_char_len): Delete extern.
20223 (FETCH_MULTIBYTE_CHAR, BUF_FETCH_MULTIBYTE_CHAR): Don't use
20224 _fetch_multibyte_char_len.
20225 (FETCH_CHAR_AS_MULTIBYTE): New macro.
20226
20227 * casetab.c (set_canon, set_identity, shuffle): Simplify.
20228
20229 * casefiddle.c (casify_object): Simplify. Handle the case that
20230 the case conversion change the byte length.
20231 (casify_region): Likewise.
20232
20233 * character.h (MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
20234
20235 * character.c (_fetch_multibyte_char_len): Delete this variable.
20236 (syms_of_character): Setup Vprintable_chars.
20237
20238 * editfns.c (Fchar_equal): Fix for the unibyte case.
20239 (Finsert_byte): New function.
20240 (syms_of_editfns): Defsubr it.
20241
20242 * keyboard.c (read_key_sequence): Use ~CHAR_MODIFIER_MASK instead
20243 of direct code 0x3ffff.
20244
20245 * search.c (Freplace_match): Fix for the unibyte case.
20246
20247 2008-02-01 Kenichi Handa <handa@m17n.org>
20248
20249 * lread.c (safe_to_load_p): Fix the logic.
20250
20251 * syntax.c (scan_words): Don't treat characters belonging to
20252 different scripts as constituting a word.
20253
20254 * editfns.c (Fformat): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
20255
20256 * fontset.c (Fset_fontset_font): Treat `ascii' as charset, not script.
20257
20258 * emacs.c (main): In the case of --unibyte, instead of aborting on
20259 finding non-empty buffer, make it unibyte.
20260
20261 2008-02-01 Kenichi Handa <handa@m17n.org>
20262
20263 * xterm.c (x_new_fontset): Call `create-fontset-from-ascii-font'
20264 to create a fontset.
20265
20266 2008-02-01 Dave Love <fx@gnu.org>
20267
20268 * character.c (Funibyte_char_to_multibyte): Doc fix.
20269
20270 * xfns.c [HAVE_STDLIB_H]: Fix last change.
20271
20272 2008-02-01 Kenichi Handa <handa@m17n.org>
20273
20274 * fontset.c (fontset_add): Make the type `int'.
20275 (fontset_id_valid_p): Define it if FONTSET_DEBUG is defined.
20276
20277 * character.c (unibyte_char_to_multibyte)
20278 (multibyte_char_to_unibyte, Funibyte_char_to_multibyte): Refer to
20279 charset_unibyte, not charset_primary.
20280
20281 * charset.h (charset_unibyte): Extern it instead of charset_primary.
20282
20283 * charset.c (charset_unibyte): Rename from charset_primary.
20284 (Funibyte_charset): Rename from Fprimary_charset.
20285 (Fset_unibyte_charset): Rename from Fset_primary_charset.
20286 (syms_of_charset): Adjust for the above changes.
20287
20288 * w32term.c (x_produce_glyphs): Use ASCII_CHAR_P, not
20289 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
20290 it->multibyte_p is zero.
20291
20292 * lisp.h (nonascii_insert_offset, Vnonascii_translation_table):
20293 Delete extern.
20294
20295 2008-02-01 Kenichi Handa <handa@m17n.org>
20296
20297 * coding.c (Fdefine_coding_system_internal): Fix category setting
20298 for a coding system of type iso-2022.
20299
20300 2008-02-01 Kenichi Handa <handa@m17n.org>
20301
20302 * fontset.h (FS_LOAD_FONT): Call fs_load_font with the arg CHARSET -1.
20303
20304 2008-02-01 Kenichi Handa <handa@m17n.org>
20305
20306 * syntax.c (Vnext_word_boundary_function_table): New variable.
20307 (next-word-boundary-function-table): Declare it as a Lisp variable
20308 in syms_of_syntax.
20309 (scan_words): Call functions in Vnext_word_boundary_function_table
20310 if any.
20311
20312 * xterm.c (x_load_font): Initialize fontp->fontset to -1.
20313
20314 * fontset.c (fs_load_font): If fontp->charset is not negative,
20315 return fontp without setting its members.
20316
20317 2008-02-01 Dave Love <fx@gnu.org>
20318
20319 * xfns.c [HAVE_STDLIB_H]: Change logic (instead of fixing typo).
20320
20321 * m/sparc.h (HAVE_ALLOCA): Delete.
20322
20323 * s/irix6-5.h: Don't include strings.h.
20324 (bcopy, bzero, bcmp): Don't undef.
20325
20326 * s/irix6-0.h (bcopy, bzero, bcmp): Don't undef.
20327
20328 * s/usg5-4.h (NO_SIOCTL_H): Don't define.
20329 (TIOCSIGSEND): Don't test IRIX6.
20330 (bcopy, bzero, bcmp): Define conditionally.
20331
20332 2008-02-01 Kenichi Handa <handa@m17n.org>
20333
20334 * buffer.c (Qas, Qmake, Qto): New variables.
20335 (Fset_buffer_multibyte): New optional arg METHOD. Change caller.
20336 (syms_of_buffer): Intern and staticpro Qas, Qmake, and Qto.
20337
20338 * callproc.c (Fcall_process): Don't call insert_1_both directly if
20339 we are inserting a process output into a multibyte buffer.
20340
20341 * character.h (CHAR_TO_BYTE8): If C is not eight-bit char, call
20342 multibyte_char_to_unibyte.
20343
20344 * character.c (Funibyte_char_to_multibyte): If C can't be decoded
20345 by the primary charset, make it eight-bit char.
20346 (Fmultibyte_char_to_unibyte): Call CHAR_TO_BYTE8.
20347
20348 * charset.c (charset_eight_bit, Qeight_bit_control): New variables.
20349 (charset_8_bit__control, charset_8_bit_graphic)
20350 (Qeight_bit_control, Qeight_bit_graphic): Delete these variables.
20351 (define_charset_internal): New function.
20352 (syms_of_charset): Call define_charset_internal for pre-defined
20353 charsets.
20354
20355 * charset.h (charset_8_bit): Extern it.
20356
20357 * coding.c (make_conversion_work_buffer): Adjust for the change
20358 of Fset_buffer_multibyte.
20359 (encode_coding_raw_text): Increment p0 in the loop.
20360
20361 * lisp.h (Fset_buffer_multibyte): Adjust prototype.
20362
20363 * xdisp.c (setup_echo_area_for_printing, set_message_1): Adjust
20364 for the change of Fset_buffer_multibyte.
20365
20366 * fns.c (Fstring_to_multibyte): New function.
20367 (syms_of_fns): Declare Fstring_to_multibyte as Lisp subroutine.
20368
20369 2008-02-01 Dave Love <fx@gnu.org>
20370
20371 * xfns.c (x_put_x_image): Declare args.
20372
20373 * xfaces.c (font_name_registry, choose_face_font): Delete unused vars.
20374 (try_font_list): Declare an arg.
20375
20376 * xdisp.c (message2_nolog, set_message): Declare an arg.
20377
20378 * terminfo.c (tparam): Declare an arg. Use P_ to declare tparm.
20379
20380 * syntax.c (scan_sexps_forward): Declare an arg.
20381
20382 * scroll.c (calculate_scrolling, calculate_direct_scrolling):
20383 Declare an arg.
20384
20385 * lisp.h (Fnew_fontset): Declare.
20386
20387 * keymap.c (push_key_description): Call CHARACTERP correctly.
20388
20389 * fontset.c (fontset_add): Declare args. Call make_number correctly.
20390 (face_for_char): Delete unused vars.
20391 (Fset_fontset_font): Doc fix. Delete unused vars.
20392
20393 * doc.c (Fsubstitute_command_keys): Delete unused vars.
20394
20395 * composite.c (update_compositions): Declare arg.
20396
20397 * cm.c (calccost, cmgoto): Declare args.
20398
20399 * charset.c: Remove `emacs' conditional. Doc fixes.
20400 (map_char_table_for_charset): Declare.
20401
20402 * character.c (syms_of_character) <translation-table-vector>: Doc fix.
20403
20404 * ccl.c: Remove `emacs' conditional.
20405
20406 2008-02-01 Kenichi Handa <handa@m17n.org>
20407
20408 The following changes are to allow specifying multiple font
20409 patterns for a character range (specified by script or charset).
20410
20411 * Makefile.in (abbrev.o): Depend on syntax.h.
20412 (xfaces.o): Depend on charset.h.
20413
20414 * alloc.c (Fmake_string): Use ASCII_CHAR_P, not
20415 SINGLE_BYTE_CHAR_P.
20416
20417 * ccl.c (Fccl_execute_on_string): Add `const' to local variables.
20418
20419 * character.h (Vchar_script_table): Extern it.
20420
20421 * character.c (Vscript_alist): Delete.
20422 (Vchar_script_table, Qchar_script_table): New variable.
20423 (syms_of_character): Declare Vchar_script_table as a lisp variable
20424 and initialize it.
20425
20426 * chartab.c (Fmake_char_table): Doc fix. If PURPOSE doesn't
20427 have property char-table-extra-slots, make no extra slot.
20428
20429 * dispextern.h (struct face): Delete member `charset'.
20430 (FACE_SUITABLE_FOR_CHAR_P, FACE_FOR): Use ASCII_CHAR_P, not
20431 SINGLE_BYTE_CHAR_P.
20432 (choose_face_font, lookup_non_ascii_face, font_name_registry):
20433 Add prototypes.
20434 (lookup_face, lookup_named_face, lookup_derived_face): Fix prototype.
20435 (generate_ascii_font_name): Rename from generate_ascii_font.
20436
20437 * fontset.h (get_font_repertory_func): New prototype.
20438 (make_fontset_for_ascii_face, fs_load_font): Fix prototypes.
20439 (FS_LOAD_FONT): Call fs_load_font with the 3rd arg charset_ascii.
20440
20441 * fontset.c (Qprepend, Qappend): New variables.
20442 (FONTSET_CHARSET_ALIST, FONTSET_FACE_ALIST): Delete.
20443 (FONTSET_NOFONT_FACE, FONTSET_REPERTORY): New macros.
20444 (FONTSET_REF): Optimize if FONTSET is Vdefault_fontset.
20445 (FONTSET_REF_AND_RANGE, FONTSET_ADD): New macros.
20446 (fontset_ref_and_range, fontset_add, reorder_font_vector)
20447 (load_font_get_repertory): New functions.
20448 (fontset_set): Delete.
20449 (fontset_face): New arg FACE. Return face ID, not face.
20450 Complete re-write to handle new fontset structure. Change caller.
20451 (free_face_fontset): Use ASET istead of AREF (X) = Y.
20452 (face_for_char): Don't call lookup_face.
20453 (make_fontset_for_ascii_face): New arg FACE.
20454 (fs_load_font): New arg CHARSET_ID. Don't check
20455 Vfont_encoding_alist here.
20456 (find_font_encoding): New function.
20457 (list_fontsets): Use STRINGP, not ! NILP.
20458 (accumulate_script_ranges): New function.
20459 (Fset_fontset_font, Fnew_fontset, Ffontset_info): Completely
20460 re-written to handle new fontset structure.
20461 (Ffontset_font): Return a copy of element.
20462 (syms_of_fontset): Define symbols Qprepend and Qappend. Fix
20463 docstring of font-encoding-alist.
20464
20465 * lisp.h (CHAR_TABLE_REF): Remove unnecessary check (IDX >= 0).
20466 (Fset_fotset_font): Fix arguments to 5.
20467
20468 * msdos.c (XMenuActivate): Adjust for the change of lookup_derived_face.
20469
20470 * xdisp.c (message_dolog, set_message_1, extend_face_to_end_of_line):
20471 Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
20472 (highlight_trailing_whitespace): Adjust for the change of
20473 lookup_named_face.
20474
20475 * xfaces.c: Include charset.h.
20476 (load_face_font): Delete argument C. Change caller.
20477 (generate_ascii_font_name): Rename from generate_ascii_font.
20478 (font_name_registry): New function.
20479 (cache_face): Store ascii faces before non-ascii faces in buckets.
20480 (lookup_face): Delete arguments C and BASE_FACE. Change caller.
20481 Lookup only ascii faces.
20482 (lookup_non_ascii_face): New function.
20483 (lookup_named_face): Delete argument C. Change caller.
20484 (lookup_derived_face): Delete argument C. Change caller.
20485 (try_font_list): New arg PATTERN. Change caller. If PATTERN is
20486 a string, just call font_list with it.
20487 (choose_face_font): Delete arguments FACE and C. New arg
20488 FONT_SPEC. Change caller.
20489 (realize_face, realize_x_face): Delete arguments C and BASE_FACE.
20490 Change caller.
20491 (realize_non_ascii_face): New function.
20492 (realize_x_face): Call load_face_font here.
20493 (realize_tty_face): Delete argument C. Change caller.
20494 (compute_char_face): If CH is not ascii, call FACE_FOR_CHAR to
20495 get a face ID.
20496 (dump_realized_face): Don't print charset of FACE.
20497
20498 * xfns.c (x_set_font): Always call x_new_fontset and
20499 store_frame_parameter.
20500 (Fx_create_frame): Call x_new_fontset, not x_new_font.
20501 (syms_of_xfns): Set get_font_repertory_func to x_get_font_repertory.
20502
20503 * xterm.h (x_get_font_repertory): Extern it.
20504
20505 * xterm.c (x_produce_glyphs): Use ASCII_CHAR_P, not
20506 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
20507 it->multibyte_p is zero.
20508 (XTread_socket): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
20509 (x_new_fontset): If FONTSETNAME doesn't match any existing
20510 fontsets, create a new one.
20511 (x_get_font_repertory): New function.
20512
20513 2008-02-01 Kenichi Handa <handa@m17n.org>
20514
20515 * coding.c (Ffind_coding_systems_region_internal): Detect an
20516 ASCII only string correctly.
20517
20518 * lread.c (Fload): Don't load with Qload_force_doc_strings t if
20519 version is 0.
20520
20521 2008-02-01 Kenichi Handa <handa@m17n.org>
20522
20523 * lread.c: Include "coding.h".
20524 (Qget_emacs_mule_file_char, Qload_force_doc_strings)
20525 (load_each_byte, unread_char): New variables.
20526 (readchar_backlog): Delete.
20527 (readchar): Return a character unless load_each_byte is nonzero.
20528 Handle the case that readcharfun is Qget_emacs_mule_file_char or a
20529 cons. If unread_char is not -1, simply return it.
20530 (unreadchar): Handle the case that readcharfun is
20531 Qget_emacs_mule_file_char or a cons. Set unread_char if necessary.
20532 (read_multibyte): Delete.
20533 (readbyte_for_lambda, readbyte_from_file, readbyte_from_string)
20534 (read_emacs_mule_char): New functions.
20535 (Fload): Even if the file doesn't have the extension ".elc", if
20536 safe_to_load_p returns a positive version number, assume that the
20537 file contains bytecompiled code. If the version is less than 22,
20538 load the file while decoding multibyte sequences by emacs-mule.
20539 (readevalloop): Don't use readchar_backlog.
20540 (Fread): Likewise. Pay attention to the case that STREAM is a cons.
20541 (Fread_from_string): Pay attention to the case that STREAM is a cons.
20542 (read_escape): Delete the arg BYTEREP.
20543 (read1): Set load_each_byte to 1 temporarily while handling
20544 #@NUMBER. Don't call read_multibyte.
20545 (read_vector): Call Fread with a cons. If readcharfun is
20546 Qget_emacs_mule_file_char, decode the read string by emacs-mule.
20547 (read_list): If doc_reference is 2, make the cdr part string as unibyte.
20548 (syms_of_lread): Intern and staticpro Qget_emacs_mule_file_char
20549 and Qload_force_doc_strings.
20550
20551 2008-02-01 Kenichi Handa <handa@m17n.org>
20552
20553 * xdisp.c (face_before_or_after_it_pos): Call
20554 FETCH_MULTIBYTE_CHAR with byte postion, not char position.
20555
20556 2008-02-01 Kenichi Handa <handa@m17n.org>
20557
20558 * character.h (TRAILING_CODE_P): New macro.
20559 (MAYBE_UNIFY_CHAR): Adjust for the change of Funify_charset.
20560 (string_char_with_unification): Fix prototype.
20561 (Vscript_alist): Extern it.
20562
20563 * character.c (Vscript_alist): New variable.
20564 (string_char_with_unification, str_as_unibyte)
20565 (string_escape_byte8): Add `const' to local variables.
20566 (syms_of_character): Declare script-alist as a Lisp variable.
20567
20568 * charset.h (Vcharset_ordered_list): Extern it.
20569 (charset_ordered_list_tick): Extern it.
20570 (EMACS_MULE_LEADING_CODE_PRIVATE_11)
20571 (EMACS_MULE_LEADING_CODE_PRIVATE_12)
20572 (EMACS_MULE_LEADING_CODE_PRIVATE_21)
20573 (EMACS_MULE_LEADING_CODE_PRIVATE_22): New macros.
20574 (Funify_charset): Adjust for the change of Funify_charset.
20575
20576 * charset.c (charset_ordered_list_tick): New variable.
20577 (Fdefine_charset_internal): Increment charset_ordered_list_tick.
20578 (Funify_charset): New optional arg DEUNIFY. If it is non-nil,
20579 deunify intead of unify a charset.
20580 (string_xstring_p): Add `const' to local variables.
20581 (find_charsets_in_text): Add `const' to arguments and local variables.
20582 (encode_char): Adjust for the change of Funify_charset. Fix
20583 detecting of invalid code.
20584 (Fset_charset_priority): Increment charset_ordered_list_tick.
20585 (Fmap_charset_chars): Fix handling of default value for FROM_CODE
20586 and TO_CODE.
20587
20588 * coding.c (LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12)
20589 (LEADING_CODE_PRIVATE_21, LEADING_CODE_PRIVATE_22): Delete macros.
20590 Changed callers to use EMACS_MULE_LEADING_CODE_PRIVATE_11, etc.
20591 (decode_coding_ccl, consume_chars)
20592 (Ffind_coding_systems_region_internal)
20593 (Fcheck_coding_systems_region): Add `const' to local variables.
20594
20595 * print.c (print_object): Use octal form for printing the
20596 contents of a bool vector.
20597
20598 2008-02-01 Dave Love <fx@gnu.org>
20599
20600 * lread.c (Fload) <!load_dangerous_libraries>: Don't leak fd.
20601 <version == 20>: Refuse to load.
20602
20603 2008-02-01 Dave Love <fx@gnu.org>
20604
20605 * fns.c: Move coding.h.
20606 (Qcodeset, Qdays, Qmonths): New.
20607 (concat): Use CHARACTERP instead of INTEGERP.
20608 (Flocale_codeset): Delete.
20609 (Flanginfo): New function.
20610 (syms_of_fns): Change accordingly.
20611
20612 * coding.c (adjust_coding_eol_type): Fix eol_type/eol_seen mixup.
20613
20614 2008-02-01 Dave Love <fx@gnu.org>
20615
20616 * casetab.c (init_casetab_once, init_casetab_once): Fix
20617 CHAR_TABLE_SET call.
20618
20619 * category.c (Fmodify_category_entry): Fix CATEGORY_MEMBER call.
20620
20621 * character.c (syms_of_character): Fix CHAR_TABLE_SET call.
20622
20623 * charset.c (Fmap_charset_chars): Check args. Convert Lisp types.
20624 (load_charset_map, Fdeclare_equiv_charset, Fencode_char)
20625 (Fset_charset_priority, syms_of_charset): Convert Lisp types.
20626
20627 * charset.h (CHECK_CHARSET_GET_ID): Use XINT on AREF result.
20628
20629 * coding.c (ENCODE_DESIGNATION, decode_eol)
20630 (make_conversion_work_buffer, code_conversion_restore)
20631 (Fdefine_coding_system_internal): Convert Lisp types.
20632 (code_conversion_restore): Use EQ, not ==.
20633 (Fencode_coding_string): Fix code_convert_string call.
20634
20635 * coding.h (code_convert_region): Fix prototype.
20636
20637 * dispextern.h (redraw_frame, redraw_garbaged_frames): Remove.
20638
20639 * fontset.c (fontset_ref, fontset_set, fs_load_font)
20640 (Ffontset_info): Convert Lisp types.
20641
20642 * syntax.h (SYNTAX_ENTRY_INT): Don't use make_number.
20643
20644 * xterm.c (note_mouse_movement): Fix call of window_from_coordinates.
20645
20646 * xdisp.c (display_mode_element): Fix call of Fset_text_properties.
20647
20648 * chartab.c: Include "...h", not <...h> in some cases.
20649
20650 * callproc.c (Fcall_process): Remove unused variables.
20651
20652 2008-02-01 Dave Love <fx@gnu.org>
20653
20654 * coding.c (Fset_coding_system_priority): Allow null arg list.
20655
20656 2008-02-01 Dave Love <fx@gnu.org>
20657
20658 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
20659 (Fself_insert_and_exit): Use CHARACTERP.
20660
20661 * callproc.c (Fcall_process): Remove unused vars.
20662
20663 * xterm.c (XTread_socket): Add extra dead keysyms.
20664
20665 * xdisp.c (decode_mode_spec_coding): Use CHARACTERP.
20666
20667 * dispextern.h: Remove prototypes for redraw_frame,
20668 redraw_garbaged_frames.
20669
20670 * cmds.c (Fself_insert_command): Use CHARACTERP.
20671
20672 * chartab.c (make_sub_char_table): Remove unused var.
20673 (Fset_char_table_default, Fmap_char_table): Doc fix.
20674
20675 * keymap.c (access_keymap): Remove generic char code.
20676 (push_key_description): Use CHARACTERP.
20677
20678 2008-02-01 Dave Love <fx@gnu.org>
20679
20680 * charset.c: Doc fixes.
20681 (Funify_charset): Extra checking.
20682
20683 2008-02-01 Dave Love <fx@gnu.org>
20684
20685 * lread.c: Remove some unused variables.
20686 (safe_to_load_p): If safe, return the magic number version byte.
20687 (Fload): Maybe use load-with-code-conversion.
20688
20689 2008-02-01 Kenichi Handa <handa@m17n.org>
20690
20691 * category.c (Fmodify_category_entry): Don't modify the contents
20692 of category_set for characters out of the range. Avoid
20693 unnecessary modification.
20694
20695 * character.h (MAYBE_UNIFY_CHAR): Adjust for the change of
20696 Vchar_unify_table. The default value of the table is now nil.
20697
20698 * character.c (syms_of_character): Setup Vchar_width_table for
20699 eight-bit-control and raw-byte chars.
20700
20701 * charset.h (enum define_charset_arg_index): Delete
20702 charset_arg_parents and add charset_arg_subset and
20703 charset_arg_superset.
20704 (enum charset_attr_index): Delete charset_parents and add
20705 charset_subset and charset_superset.
20706 (enum charset_method): Delete CHARSET_METHOD_INHERIT and add
20707 CHARSET_METHOD_SUBSET and CHARSET_METHOD_SUPERSET.
20708 (CHARSET_ATTR_PARENTS, CHARSET_PARENTS): Delete.
20709 (CHARSET_ATTR_SUBSET, CHARSET_ATTR_SUPERSET, CHARSET_SUBSET)
20710 (CHARSET_SUPERSET): New macros.
20711 (charset_work): Extern it.
20712 (ENCODE_CHAR): Use charset_work.
20713 (CHAR_CHARSET_P): Adjust for the change of encoder format.
20714 (map_charset_chars): Extern it.
20715
20716 * charset.c (load_charset_map): Set the default value of encoder
20717 and deunifier char-tables to nil.
20718 (map_charset_chars): Change argument. Change callers. Use
20719 map_char_table_for_charset instead of map_char_table.
20720 (Fmap_charset_chars): New optional args from_code and to_code.
20721 (Fdefine_charset_internal): Adjust for the change of
20722 `define-charset' (:parents -> :subset or :superset).
20723 (charset_work): New variable.
20724 (encode_char, syms_of_charset): Adjust for the change of
20725 Fdefine_charset_internal.
20726 (Ffind_charset_string): Setup the vector `charsets' correctly.
20727
20728 * chartab.c (sub_char_table_ref_and_range): New arg default. Fix
20729 the previous change.
20730 (char_table_ref_and_range): Adjust for the above change.
20731 (map_sub_char_table_for_charset): New function.
20732 (map_char_table_for_charset): New function.
20733
20734 * keymap.c (describe_vector): Handle a char-table directly here.
20735 (describe_char_table): Delete.
20736
20737 * lisp.h (map_charset_chars): Delete.
20738
20739 2008-02-01 Dave Love <fx@gnu.org>
20740
20741 * fns.c (count_combining): Comment out (unused).
20742 (Flocale_codeset): New.
20743 (syms_of_fns): Defsubr it.
20744
20745 * config.in (HAVE_PTY_H, HAVE_SIZE_T, HAVE_LANGINFO_CODESET): New.
20746 (size_t): Remove.
20747
20748 2008-02-01 Dave Love <fx@gnu.org>
20749
20750 * Makefile.in (chartab.o): Depend on charset.h.
20751
20752 2008-02-01 Kenichi Handa <handa@m17n.org>
20753
20754 * character.c (syms_of_character): Set the default value of
20755 Vprintable_chars to Qnil.
20756
20757 2008-02-01 Dave Love <fx@gnu.org>
20758
20759 * Makefile.in (lisp, shortlisp): Change indian.elc to indian.el.
20760
20761 2008-02-01 Kenichi Handa <handa@m17n.org>
20762
20763 * charset.c (load_charset_map): Handle the case that from < to
20764 correctly.
20765
20766 * coding.c (encode_coding_emacs_mule, encode_coding_iso_2022)
20767 (encode_coding_sjis, encode_coding_big5, encode_coding_charset):
20768 Pay attention to raw-8-bit chars.
20769
20770 2008-02-01 Kenichi Handa <handa@m17n.org>
20771
20772 * Makefile.in (lisp, shortlisp): Change chinese.elc to chinese.el.
20773 It is not bytecompiled now.
20774
20775 * charset.c (charset_jisx0201_roman, charset_jisx0208_1978)
20776 (charset_jisx0208): New variables.
20777 (Fdefine_charset_internal): Setup them if appropriate.
20778 (init_charset_once): Initialize them to -1.
20779
20780 * charset.h (charset_jisx0201_roman, charset_jisx0208_1978)
20781 (charset_jisx0208): Extern them.
20782
20783 * coding.c (CODING_ISO_FLAG_USE_ROMAN): New macro.
20784 (CODING_ISO_FLAG_USE_OLDJIS): New macro.
20785 (CODING_ISO_FLAG_FULL_SUPPORT): Change macro definition.
20786 (setup_iso_safe_charsets): Fix arguments to Fassq.
20787 (DECODE_DESIGNATION, ENCODE_ISO_CHARACTER_DIMENSION1)
20788 (ENCODE_ISO_CHARACTER_DIMENSION2): Pay attention to
20789 CODING_ISO_FLAG_USE_ROMAN and CODING_ISO_FLAG_USE_OLDJIS.
20790 (encode_coding_iso_2022): Change the 1st arg to
20791 ENCODE_ISO_CHARACTER to a variable.
20792
20793 2008-02-01 Kenichi Handa <handa@m17n.org>
20794
20795 * charset.h (enum define_charset_arg_index): New enums
20796 charset_arg_min_code and charset_arg_max_code.
20797 (struct charset): New member char_index_offset.
20798
20799 * charset.c (CODE_POINT_TO_INDEX, INDEX_TO_CODE_POINT):
20800 Take charset->char_index_offset into account.
20801 (Fdefine_charset_internal): Handle args[charset_arg_min_code] and
20802 args[charset_arg_max_code]. Setup charset.char_index_offset.
20803 (syms_of_charset): Fix args to Fdefine_charset_internal.
20804
20805 2008-02-01 Dave Love <fx@gnu.org>
20806
20807 * coding.c (decode_coding_utf_8): Reject overlong sequences.
20808
20809 2008-02-01 Dave Love <fx@gnu.org>
20810
20811 * coding.c: Doc fixes.
20812 (Fcoding_system_aliases): Fix return value.
20813 (Qmac): Remove (duplicated) definition.
20814
20815 2008-02-01 Dave Love <fx@gnu.org>
20816
20817 * charset.c (Fcharset_priority_list, Fset_charset_priority):
20818 New functions.
20819
20820 * character.c (Fstring): Doc fix.
20821
20822 * charset.c (Fdefine_charset_alias): Update Vcharset_list.
20823
20824 * fontset.c (Ffontset_info): Doc fix. Return charset names, not ids.
20825 (font-encoding-alist): Doc fix.
20826
20827 2008-02-01 Dave Love <fx@gnu.org>
20828
20829 * term.c (costs_set): Declare static, non-initialized for pcc.
20830 (encode_terminal_code): Remove unused var.
20831
20832 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal decl
20833 for K&R.
20834
20835 * xterm.c (xlwmenu_window_p): Fix prototype for K&R.
20836
20837 * coding.c (setup_iso_safe_charsets): Fix arg decl for K&R.
20838 (suffixes): Move out of make_subsidiaries for K&R.
20839
20840 * charset.c (map_charset_chars): Fix c_function declaration for K&R.
20841
20842 * lisp.h (DEFUN) [!PROTOTYPES]: Remove spurious `args'.
20843
20844 2008-02-01 Dave Love <fx@gnu.org>
20845
20846 * data.c (Fchar_or_string_p): Doc fix. Use CHARACTERP.
20847
20848 * category.c (Fmodify_category_entry): Doc fix. Remove unused vars.
20849
20850 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
20851
20852 * charset.c (Fdefine_charset_internal): Fix argument to bzero.
20853
20854 * coding.c (decode_coding_charset): Workaround for the bug of GCC 2.96.
20855
20856 2008-02-01 Kenichi Handa <handa@m17n.org>
20857
20858 * Makefile.in (lisp, shortlisp): Change cyrillic.elc to cyrillic.el,
20859 vietnamese.elc to vietnamese.el. They are not bytecompiled now.
20860
20861 2008-02-01 Kenichi Handa <handa@m17n.org>
20862
20863 * coding.c (decode_coding_charset): Adjust for the change of
20864 Fdefine_coding_system_internal.
20865 (Fdefine_coding_system_internal): For a coding system of
20866 `charset' type, store a list of charset IDs in
20867 `charset_attr_charset_valids' element of coding attributes.
20868
20869 2008-02-01 Kenichi Handa <handa@m17n.org>
20870
20871 * coding.c (ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
20872 (emacs_mule_char): New arg src. Delete arg `composition'. Change
20873 caller. Handle 2-byte and 3-byte charsets correctly.
20874 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): Rename from
20875 DECODE_EMACS_MULE_COMPOSITION_RULE. Change caller.
20876 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New macro.
20877 (DECODE_EMACS_MULE_21_COMPOSITION): Call
20878 DECODE_EMACS_MULE_COMPOSITION_RULE_21. Produce correct annotation
20879 sequence.
20880 (decode_coding_emacs_mule): Handle composition correctly. Rewind
20881 `src' and `consumed_chars' correctly before calling emacs_mule_char.
20882 (DECODE_COMPOSITION_START): Correctly handle the case of altchar
20883 and alt&rule composition.
20884 (decode_coding_iso_2022): Handle composition correctly.
20885 (init_coding_once): Setup emacs_mule_bytes for private charsets.
20886
20887 * charset.c (Fdefine_charset_internal): Fix bug for the case of
20888 re-defining a charset. If the charset has :emacs-mule-id, setup
20889 emacs_mule_bytes.
20890 (Fmake_char): If CODE1 is nil, use the minimum code of the charset.
20891
20892 2008-02-01 Kenichi Handa <handa@m17n.org>
20893
20894 * coding.c (encode_coding_iso_2022, encode_coding_sjis)
20895 (encode_coding_big5, encode_coding_charset): If coding requires safe
20896 encoding, produce a character specified by
20897 CODING_INHIBIT_CHARACTER_SUBSTITUTION.
20898
20899 2008-02-01 Dave Love <fx@gnu.org>
20900
20901 * xterm.c (XSetIMValues): Declare.
20902
20903 * process.c: Conditionally include sys/wait.h, pty.h.
20904
20905 * print.c (print_object): Fix print format for 64-bit systems.
20906
20907 * keyboard.c (modify_event_symbol): Fix print format for 64-bit systems.
20908
20909 * buffer.c (emacs_strerror): Declare.
20910
20911 * fontset.c (Fclear_face_cache): Declare.
20912 (accumulate_font_info): Comment-out (unused).
20913 (face_for_char, Fset_fontset_font, Ffontset_info): Remove unused
20914 variables.
20915
20916 * character.h (string_escape_byte8): Declare.
20917
20918 * charset.c (load_charset_map, load_charset_map_from_file): Remove
20919 unused vars.
20920 (Fdefine_charset_internal, Fsplit_char, syms_of_charset)
20921 (Fmap_charset_chars): Doc fix.
20922
20923 * coding.c (Vchar_coding_system_table, Qchar_coding_system): Remove.
20924 (Fset_coding_system_priority, Fset_coding_system_priority)
20925 (Fdefine_coding_system_internal): Doc fix.
20926
20927 2008-02-01 Dave Love <fx@gnu.org>
20928
20929 * s/osf5-0.h (C_SWITCH_SYSTEM) [!__GNUC__]: Remove -nointrinsics.
20930
20931 2008-02-01 Kenichi Handa <handa@m17n.org>
20932
20933 * character.c (string_escape_byte8): Make multibyte string with
20934 correct size.
20935
20936 * charset.c (Fmake_char): Delete unnecessary code.
20937
20938 2008-02-01 Kenichi Handa <handa@m17n.org>
20939
20940 * xfns.c (x_encode_text): Allocate coding.destination here, and
20941 call encode_coding_object with dst_object Qnil.
20942
20943 * buffer.c (Fset_buffer_multibyte): Convert 8-bit bytes to
20944 multibyte form correctly.
20945
20946 * fontset.c (fs_load_font): Check fontp->full_name (not fontname)
20947 against Vfont_encoding_alist.
20948
20949 * coding.c (Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
20950 handling of charset list.
20951 (encode_coding_iso_2022): Setup coding->safe_charsets in advance.
20952 (decode_coding_object): Move point to coding->dst_pos before
20953 calling post-read-conversion function.
20954 (encode_coding_object): Give correct arguments to
20955 pre-write-conversion. Ignore the return value of
20956 pre-write-conversion function. Pay attention to the case that
20957 pre-write-conversion changes the current buffer. If dst_object is
20958 Qt, even if coding->src_bytes is zero, allocate at least one byte
20959 to coding->destination.
20960
20961 * coding.h (JIS_TO_SJIS): Fix typo (j1->s1, j2->s2).
20962
20963 * charset.c (Fmake_char): Make it more backward compatible.
20964 (Fmap_charset_chars): Fix docstring.
20965
20966 2008-02-01 Dave Love <fx@gnu.org>
20967
20968 * coding.c: Doc fixes.
20969 (Fdefine_coding_system_alias): Use names, not symbols, in
20970 coding-system-alist.
20971
20972 2008-02-01 Kenichi Handa <handa@m17n.org>
20973
20974 * fontset.c (free_realized_fontsets): Call Fclear_face_cache instead
20975 of calling free_realized_face.
20976
20977 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
20978
20979 * charset.c (read_hex): Don't treat SPC as a comment starter.
20980 (decode_char): If CODE_POINT_TO_INDEX returns -1, always return -1.
20981 (Fdecode_char): Fix typo.
20982
20983 2008-02-01 Kenichi Handa <handa@m17n.org>
20984
20985 * charset.h (struct charset): New member `code_space_mask'.
20986
20987 * coding.c (coding_set_source): Delete the local variable beg_byte.
20988 (encode_coding_charset, Fdefine_coding_system_internal):
20989 Delete the local variable charset.
20990 (Fdefine_coding_system_internal): Setup
20991 attrs[coding_attr_charset_valids] correctly.
20992
20993 * charset.c (CODE_POINT_TO_INDEX): Utilize `code_space_mask'
20994 member to check if CODE is valid or not.
20995 (Fdefine_charset_internal): Initialize `code_space_mask' member.
20996 (encode_char): Before calling CODE_POINT_TO_INDEX, check if CODE
20997 is within the range of charset->min_code and carset->max_code.
20998
20999 2008-02-01 Dave Love <fx@gnu.org>
21000
21001 * syntax.h (syntax_temp) [!__GNUC__]: Declare.
21002
21003 * dispextern.h (generate_ascii_font): Fix return type.
21004
21005 * xfaces.c (generate_ascii_font): Fix arg declaration.
21006
21007 * coding.c (coding_inherit_eol_type)
21008 (Fset_terminal_coding_system_internal)
21009 (Fset_safe_terminal_coding_system_internal): Fix arg declarations.
21010
21011 2008-02-01 Kenichi Handa <handa@m17n.org>
21012
21013 * coding.c (decode_coding_charset, encode_coding_charset): Handle
21014 multiple charsets correctly.
21015
21016 2008-02-01 Kenichi Handa <handa@m17n.org>
21017
21018 * search.c (boyer_moore): Fix handling of multibyte character
21019 translation.
21020
21021 * xdisp.c (display_mode_element): When the variable `elt' is
21022 changed, update `this' and `lisp_string'.
21023
21024 2008-02-01 Kenichi Handa <handa@m17n.org>
21025
21026 * buffer.c (Fset_buffer_multibyte): Fix 8-bit char handling.
21027
21028 * callproc.c (Fcall_process): Be sure to give the current buffer
21029 to decode_coding_c_string. Update PT and PT_BYTE after the insertion.
21030
21031 * charset.c (struct charset_map_entries): New struct.
21032 (load_charset_map): Rename from parse_charset_map. New args
21033 entries and n_entries. Change caller.
21034 (load_charset_map_from_file): Rename from load_charset_map.
21035 Change caller. New arg control_flag. Call load_charset_map at
21036 the tail.
21037 (load_charset_map_from_vector): New function.
21038 (Fdefine_charset_internal): Setup charset.compact_codes_p.
21039 (encode_char): If the charset is compact, change a character index
21040 to a code point.
21041
21042 * coding.c (coding_alloc_by_making_gap): Check the case that the
21043 source and destination are the same correctly.
21044 (decode_coding_raw_text): Set coding->consumed_char and
21045 coding->consumed to 0.
21046 (produce_chars): If coding->chars_at_source is nonzero, update
21047 coding->consumed_char and coding->consumed before calling
21048 alloc_destination.
21049 (Fdefine_coding_system_alias): Register ALIAS in
21050 Vcoding_system_alist.
21051 (syms_of_coding): Define `no-conversion' coding system at the tail.
21052
21053 * fileio.c (Finsert_file_contents): Set coding_system instead of
21054 val. If the current buffer is multibyte, always call
21055 decode_coding_gap.
21056
21057 * xfaces.c (try_font_list): Give higher priority to fontset's
21058 family than face's family.
21059
21060 2008-02-01 Kenichi Handa <handa@m17n.org>
21061
21062 * callproc.c (Fcall_process): Be sure to give the current buffer
21063 to decode_coding_c_string.
21064
21065 * xfaces.c (try_font_list): Give a family specified in a fontset
21066 higher priority than a family specified in a face.
21067
21068 2008-02-01 Kenichi Handa <handa@m17n.org>
21069
21070 * fileio.c (Finsert_file_contents): Fix calculation of `inserted'.
21071 Fix arguments to insert_from_buffer.
21072
21073 * xdisp.c (display_mode_element): Fix calculation of `bytepos'.
21074
21075 2008-02-01 Kenichi Handa <handa@m17n.org>
21076
21077 * coding.c (produce_chars): Set the variable `multibytep' correctly.
21078 (decode_coding_gap): Set coding->dst_multibyte correctly.
21079
21080 2008-02-01 Kenichi Handa <handa@m17n.org>
21081
21082 * coding.c (encode_coding_utf_8): Initialize produced_chars to 0.
21083 (decode_coding_utf_16): Fix converting high and low bytes to code-point.
21084 (encode_coding_utf_16): Substitute coding->default_char for
21085 non-Unicode characters.
21086 (decode_coding): Don't call record_insert here.
21087 (setup_coding_system): Initialize `surrogate' of
21088 coding->spec.utf_16 to 0.
21089 (EMIT_ONE_BYTE): Fix for multibyte case.
21090
21091 * insdel.c (insert_from_gap): Call record_insert.
21092
21093 2008-02-01 Kenichi Handa <handa@m17n.org>
21094
21095 * casefiddle.c (casify_region): Fix multibyte case.
21096
21097 * character.c (c_string_width): Add return type `int'.
21098 (char_string_with_unification): Delete arg ADVANCED.
21099
21100 * character.h (CHAR_VALID_P): Don't call CHARACTERP.
21101 (CHAR_STRING): Adjust for the change of char_string_with_unification.
21102 (CHAR_STRING_ADVANCE): Make it do-while statement.
21103
21104 * chartab.c (sub_char_table_set_range): Optimize for the case
21105 DEPTH == 3. Add workaround code for a GCC optimization bug.
21106
21107 * charset.c (parse_charset_map): Remove an unused variable.
21108
21109 * coding.c: Delete unused variables.
21110
21111 * fileio.c (Finsert_file_contents): Set coding_system to Qnil
21112 earlier. If inserted is zero and the coding system doesn't
21113 require flushing, don't call decode_coding_gap.
21114
21115 * syntax.h (SET_RAW_SYNTAX_ENTRY): Don't call make_number.
21116
21117 2008-02-01 Kenichi Handa <handa@m17n.org>
21118
21119 The following changes are for using Unicode as an internal
21120 character model, and use UTF-8 format for buffer/string
21121 representation.
21122
21123 * .gdbinit (xchartable): Adjust for the change of char table structure.
21124 (xsubchartable, xcoding, xcharset, xcurbuf): New commands.
21125
21126 * Makefile.in (obj): Add character.o and chartab.o.
21127 (lisp, shortlisp): Remove utf-8.elc.
21128 (*.o): For many files, change dependency on charset.h to
21129 character.h, and add dependency on character.h.
21130 (character.o, chartab.o): New targets.
21131
21132 * abbrev.c, bytecode.c, casefiddle.c, cmds.c, dispnew.c, doc.c:
21133 * doprnt.c, dosfns.c, frame.c, marker.c, minibuf.c, msdos.c:
21134 * w16select.c, w32bdf.c, w32console.c: Include "character.h" instead
21135 of "charset.h".
21136
21137 * dired.c, filelock.c: Include "character.h".
21138
21139 * alloc.c: Include "character.h" instead of "charset.h".
21140 (Fmake_char_table, make_sub_char_table): Move to chartab.c.
21141 (syms_of_alloc): Remove defsubr for Smake_char_table.
21142
21143 * buffer.c: Include "character.h" instead of "charset.h", don't
21144 include "coding.h".
21145 (Fset_buffer_multibyte): Adjust for UTF-8.
21146
21147 * buffer.h: EXFUN Fbuffer_live_p.
21148
21149 * callproc.c: Include "character.h" instead of "charset.h".
21150 (Fcall_process): Big change for the new code-conversion APIs.
21151
21152 * casetab.c: Include "character.h" instead of "charset.h".
21153 (set_canon, set_identity, shuffle): Adjust for the new
21154 map_char_table spec.
21155 (init_casetab_once): Call CHAR_TABLE_SET instead of directly
21156 accessing the char table structure.
21157
21158 * chartab.c: New file that implements char table.
21159
21160 * category.c: Include "character.h".
21161 (copy_category_entry): New function.
21162 (copy_category_table): Call map_char_table and copy_category_entry.
21163 (Fmake_category_table): Initialize all top-level slots.
21164 (char_category_set): New function.
21165 (modify_lower_category_set): Delete.
21166 (Fmodify_category_entry): Call char_table_ref_and_range.
21167
21168 * category.h (CATEGORY_SET): Just call char_category_set.
21169
21170 * ccl.c: Include "character.h".
21171 (Qccl, Qcclp): New variables.
21172 (CCL_WRITE_CHAR): Alway treat the arg CH as a character even if
21173 it's less than 256.
21174 (CCL_WRITE_MULTIBYTE_CHAR): Delete.
21175 (CCL_WRITE_STRING, CCL_READ_CHAR): Adjust for the change of SRC
21176 and DST type.
21177 (ccl_driver): Change types of argument, adjust code accordingly.
21178 (Fccl_execute, Fccl_execute_on_string): Adjust for the change of
21179 ccl_driver.
21180 (syms_of_ccl): Intern and staticpro Qccl and Qcclp.
21181
21182 * ccl.h (struct ccl_program): Delete members eol_type and multibyte.
21183 New members src_multibyte, dst_multibyte, consumed, and produced.
21184 (struct ccl_spec): Delete members decoder and encoder. New member ccl.
21185 (CODING_SPEC_CCL_PROGRAM): New macro.
21186 (ccl_driver): Update prototype.
21187 (Qccl, Qcclp, Fccl_program_p): Extern them.
21188 (CHECK_CCL_PROGRAM): New macro.
21189
21190 * character.c, character.h, chartab.c: New files.
21191
21192 * charset.c: Mostly re-written. Move character and multibyte sequence
21193 handling codes to character.c.
21194
21195 * charset.h: Mostly re-written. Move character and multibyte sequence
21196 handling codes to character.h.
21197
21198 * coding.c, coding.h: Mostly re-written.
21199
21200 * composite.c: Include "character.h" instead of "charset.h".
21201 (CHAR_WIDTH): Move to character.h.
21202 (HASH_KEY, HASH_VALUE): Delete.
21203
21204 * composite.h (enum composition_method): Change order of enumeration
21205 symbols.
21206
21207 * data.c: Include "character.h" instead of "charset.h".
21208 (Faref): Call CHAR_TABLE_REF for a char table.
21209 (Faset): Call CHAR_TABLE_SET for a char table.
21210
21211 * dispextern.h (free_realized_face, check_face_attribytes)
21212 (generate_ascii_font): Extern them.
21213 (free_realized_multibyte_face): Delete extern.
21214
21215 * disptab.h (DISP_CHAR_VECTOR): Adjust for the change of char
21216 table structure.
21217
21218 * editfns.c: Include "character.h" instead of "charset.h".
21219 (Fchar_to_string): Always call CHAR_STRING.
21220
21221 * emacs.c (main): Call init_charset_once, init_charset,
21222 syms_of_chartab, and syms_of_character.
21223
21224 * fileio.c: Include "character.h" instead of "charset.h".
21225 (Finsert_file_contents): Big change for the new code-conversion API.
21226 (choose_write_coding_system, Fwrite_region): Likewise.
21227 (build_annotations_2): Delete.
21228 (e_write): Big change for the new code-conversion API.
21229
21230 * fns.c: Include "character.h" instead of "charset.h".
21231 (copy_sub_char_table): Move to chartab.c.
21232 (Fcopy_sequence): Call copy_char_table for a char table.
21233 (concat): Delete codes calling count_multibyte.
21234 (string_char_to_byte, string_byte_to_char): Adjust for the new
21235 multibyte form.
21236 (internal_equal): Adjust for the change of char table structure.
21237 (Fchar_table_subtype, Fchar_table_parent, Fset_char_table_parent)
21238 (Fchar_table_extra_slot, Fset_char_table_extra_slot)
21239 (Fchar_table_range, Fset_char_table_range, Fset_char_table_default)
21240 (char_table_translate, optimize_sub_char_table)
21241 (Foptimize_char_table, map_char_table, Fmap_char_table): Move to
21242 chartab.c.
21243 (char_table_ref_and_index): Delete.
21244 (HASH_KEY, HASH_VALUE): Move to lisp.h.
21245 (Fmd5): Call preferred_coding_system instead of accessing
21246 Vcoding_category_list. Adjust for the new code-conversion API.
21247 (syms_of_fns): Move defsubr for char table related functions to
21248 chartab.c.
21249
21250 * fontset.c: Mostly re-written.
21251
21252 * fontset.h (struct font_info): Change type of the member encoding_type.
21253 (enum FONT_SPEC_INDEX): New enum.
21254 (fontset_font_pattern, fs_load_font): Update prototype.
21255 (FS_LOAD_FONT): Adjust for the change of fs_load_font.
21256
21257 * indent.c: Include "character.h" instead of "charset.h".
21258 (MULTIBYTE_BYTES_WIDTH): Call CHAR_WIDTH instead of WIDTH_BY_CHAR_HEAD.
21259
21260 * insdel.c: Include "character.h" instead of "charset.h".
21261 (copy_text): Don't refer to Vnonascii_translation_table.
21262 (insert_from_gap): New function.
21263
21264 * keyboard.c: Include "character.h" instead of "charset.h".
21265 (command_loop_1): Never call direct_output_forward_char before
21266 a non-ASCII character.
21267 (read_char): If Vkeyboard_translate_table is a char table, always
21268 translate a character.
21269
21270 * keymap.c: Include "character.h".
21271 (store_in_keymap): Handle the case that IDX is a cons.
21272 (Fdefine_key): Handle the case that KEY is a cons and the car part
21273 is also a cons (range).
21274 (push_key_description): Adjust for the new character code.
21275 (describe_vector): Call describe_char_table for a char table.
21276 (describe_char_table): New function.
21277
21278 * keymap.h (describe_char_table): Extern it.
21279
21280 * lisp.h (enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
21281 (XSUB_CHAR_TABLE, XSETSUB_CHAR_TABLE): New macros.
21282 (CHAR_TABLE_ORDINARY_SLOTS, CHAR_TABLE_SINGLE_BYTE_SLOTS)
21283 (SUB_CHAR_TABLE_ORDINARY_SLOTS, SUB_CHAR_TABLE_STANDARD_SLOTS):
21284 Delete.
21285 (CHAR_TABLE_REF, CHAR_TABLE_SET): Adjust for the new char table
21286 structure.
21287 (CHAR_TABLE_TRANSLATE): Just call char_table_translate.
21288 (CHARTAB_SIZE_BITS_0, CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2)
21289 (CHARTAB_SIZE_BITS_3): New macros.
21290 (chartab_size): Extern it.
21291 (struct Lisp_Char_Table): Re-design.
21292 (struct Lisp_Sub_Char_Table): New structure.
21293 (HASH_KEY, HASH_VALUE): Move from fns.c.
21294 (CHARACTERBITS): Define as 22.
21295 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Adjust for the above change.
21296 (SUB_CHAR_TABLE_P): Check PVEC_CHAR_TABLE.
21297 (GC_SUB_CHAR_TABLE_P): New macro.
21298 (Fencode_coding_string, Fdecode_coding_string): Update EXFUN.
21299 (code_convert_string_norecord): Deleted extern.
21300 (init_character_once, syms_of_character, init_charset)
21301 (syms_of_composite, Qeq, Fmakehash, insert_from_gap): Extern them.
21302
21303 * lread.c: Include "character.h".
21304 (read_multibyte): New arg NBYTES.
21305 (read_escape): Change the meaning of returned *BYTEREP.
21306 (to_multibyte): Delete.
21307 (read1): Adjust the handling of char table and string.
21308
21309 * print.c: Include "character.h" instead of "charset.h".
21310 (print_string): Convert 8-bit raw bytes to octal form by
21311 string_escape_byte8.
21312 (print_object): Adjust for the new multibyte form. Print 8-bit
21313 raw bytes always in octal form. Handle sub char table correctly.
21314
21315 * process.c: Include "character.h" instead of "charset.h".
21316 (read_process_output, send_process): Adjust for the new
21317 code-conversion API.
21318
21319 * puresize.h (BASE_PURESIZE): Increase.
21320
21321 * regex.c: Include "character.h" instead of "charset.h".
21322 (BYTE8_TO_CHAR, CHAR_BYTE8_P) [not emacs]: New dummy macros.
21323 (regex_compile): Accept a range whose starting and ending
21324 character have different leading bytes.
21325 (analyse_first): Adjust for the above change.
21326
21327 * search.c: Include "character.h" instead of "charset.h".
21328 (search_buffer, boyer_moore): Adjust for the new multibyte form.
21329 (Freplace_match): Adjust for the change of multibyte_char_to_unibyte.
21330
21331 * syntax.c: Include "character.h" instead of "charset.h".
21332 (syntax_parent_lookup): Delete.
21333 (Fmodify_syntax_entry): Accept a cons as CHAR.
21334 (skip_chars): Adjust for the new multibyte form.
21335 (init_syntax_once): Call char_table_set_range instead of directly
21336 accessing the structure of a char table.
21337
21338 * syntax.h (SET_RAW_SYNTAX_ENTRY): Call CHAR_TABLE_SET.
21339 (SYNTAX_ENTRY_FOLLOW_PARENT): Delete macro.
21340 (SET_RAW_SYNTAX_ENTRY_RANGE): New macro.
21341 (SYNTAX_ENTRY_INT): Call CHAR_TABLE_REF.
21342
21343 * term.c: Include "buffer.h" and "character.h".
21344 (encode_terminal_code, write_glyphs): Adjust for the new
21345 code-conversion API.
21346 (produce_glyphs): Call CHAR_WIDTH instead of CHARSET_WIDTH.
21347
21348 * w32term.c (x_new_font): Adjust for the change of FS_LOAD_FONT.
21349
21350 * xdisp.c: Include "character.h".
21351 (get_next_display_element): Adjust for the new multibyte form.
21352 (disp_char_vector): Adjust for the new char table structure.
21353 (decode_mode_spec_coding): Adjust for the new structure of
21354 coding system.
21355 (decode_mode_spec): Adjust for the new code-conversion API.
21356
21357 * xfaces.c: Include "character.h" instead of "charset.h".
21358 (load_face_font): Adjust for the change of choose_face_font and
21359 FS_LOAD_FONT.
21360 (generate_ascii_font): New function.
21361 (set_lface_from_font_name): Adjust for the change of FS_LOAD_FONT.
21362 (set_font_frame_param): Adjust for the change of choose_face_font.
21363 (free_realized_face): Make it public.
21364 (free_realized_faces_for_fontset): Rename from
21365 free_realized_multibyte_face. Free also faces realized for ASCII.
21366 (choose_face_font): Change arguments. Adjust for the change of
21367 fontset_font_pattern and FS_LOAD_FONT.
21368
21369 * xfns.c: Include "character.h".
21370 (x_encode_text): Adjust for the new code-conversion API.
21371
21372 * xselect.c: Don't include "charset.h".
21373 (selection_data_to_lisp_data): Adjust for the new code conversion API.
21374
21375 * xterm.c: Include "character.h".
21376 (x_encode_char): New argument CHARSET. Change caller.
21377 (x_get_char_face_and_encoding, x_get_glyph_face_and_encoding):
21378 Call ENCODE_CHAR instead of SPLIT_CHAR.
21379 (x_produce_glyphs): Don't check Vnonascii_translation_table Call
21380 CHAR_WIDTH instead of CHARSET_WIDTH.
21381 (XTread_socket): Adjust for the new code-conversion API.
21382 (x_new_font): Adjust for the change of FS_LOAD_FONT.
21383 (x_load_font): Adjust for the change of struct font.
21384
21385 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
21386
21387 * xfaces.c (face_at_buffer_position): Remove unused vars.
21388
21389 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21390
21391 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR):
21392 Fix overflow checking.
21393
21394 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21395
21396 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR, ccl_driver):
21397 Cancel previous change.
21398
21399 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
21400
21401 * ccl.c (CCL_WRITE_CHAR): Increment extra_bytes only when
21402 ccl->eight_bit_control. Fix check for buffer overflow.
21403 (CCL_WRITE_MULTIBYTE_CHAR): Fix check for buffer overflow.
21404 (ccl_driver): Initialize extra_bytes to 0.
21405
21406 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
21407
21408 * keyboard.c (make_ctrl_char): If C is a multibyte character, just
21409 return it ORed with ctrl_modifier.
21410
21411 2008-01-29 Miles Bader <miles@gnu.org>
21412
21413 * macterm.c (XTset_vertical_scroll_bar): Fix merge mistake.
21414
21415 2008-01-28 Jason Rumney <jasonr@gnu.org>
21416
21417 * w32.c (stat): Don't double check for networked drive.
21418
21419 2008-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
21420
21421 * window.c (run_window_configuration_change_hook): New function.
21422 Code extracted from set_window_buffer. Set the selected frame.
21423 (set_window_buffer): Use it.
21424 * window.h (run_window_configuration_change_hook): Declare.
21425 * dispnew.c (change_frame_size_1): Use it instead of set-window-buffer.
21426
21427 * keyboard.c (read_char): Yet another int/Lisp_Object mixup (YAILOM).
21428
21429 2008-01-27 Dan Nicolaescu <dann@ics.uci.edu>
21430
21431 * Makefile.in: Remove references to unused macros.
21432
21433 2008-01-26 Eli Zaretskii <eliz@gnu.org>
21434
21435 * w32.c (g_b_init_get_sid_sub_authority)
21436 (g_b_init_get_sid_sub_authority_count): New static variables.
21437 (GetSidSubAuthority_Proc, GetSidSubAuthorityCount_Proc): New typedefs.
21438 (get_sid_sub_authority, get_sid_sub_authority_count): New functions.
21439 (init_user_info): Use them to retrieve uid and gid.
21440 Use 500/513, the Windows defaults, as Administrator's uid/gid.
21441 (fstat): Use pw_uid and pw_gid from the_passwd structure for
21442 st_uid and st_gid of the file.
21443
21444 2008-01-26 Jason Rumney <jasonr@gnu.org>
21445
21446 * w32.c (logon_network_drive): New function.
21447 (stat): Use it.
21448
21449 2008-01-26 Chong Yidong <cyd@stupidchicken.com>
21450
21451 * xdisp.c (pos_visible_p): Handle the case where charpos falls on
21452 invisible text covered with an ellipsis.
21453
21454 2008-01-25 Richard Stallman <rms@gnu.org>
21455
21456 * xdisp.c (redisplay_window): Run Qwindow_text_change_functions and
21457 jump back to beginning. Move some other initializations after that.
21458 (Qwindow_text_change_functions, Vwindow_text_change_functions):
21459 New variables.
21460 (syms_of_xdisp): Init them.
21461
21462 * keyboard.c (read_char): Restore echo_message_buffer after redisplay.
21463
21464 * buffer.c (reset_buffer_local_variables):
21465 Implement `permanent-local-hook'.
21466 (Qpermanent_local_hook): New variable.
21467 (syms_of_buffer): Init and staticpro it.
21468
21469 2008-01-25 Michael Albinus <michael.albinus@gmx.de>
21470
21471 * dbusbind.c (xd_retrieve_arg): Pacify GCC on x86_64 GNU/Linux.
21472
21473 2008-01-25 Thien-Thi Nguyen <ttn@gnuvola.org>
21474
21475 * fns.c (Fclrhash): Return TABLE.
21476
21477 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21478
21479 * macterm.c (x_scroll_bar_create): Initialize bar->redraw_needed_p.
21480 (XTset_vertical_scroll_bar): Redraw scroll bar if bar->redraw_needed_p
21481 is set even without positional changes.
21482 (x_scroll_bar_clear): Set bar->redraw_needed_p.
21483
21484 * macterm.h (struct scroll_bar): New member `redraw_needed_p'.
21485
21486 2008-01-23 Jason Rumney <jasonr@gnu.org>
21487
21488 * xterm.c (handle_one_xevent): Revert to counting chars not bytes.
21489
21490 * w32term.c (w32_read_socket) <WM_CHAR>: Decode characters outside
21491 the unicode range available in MULE by locale-coding-system.
21492 Improve dbcs lead byte detection. Set event timestamp and modifiers
21493 earlier.
21494
21495 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21496
21497 * mac.c (mac_emacs_pid) [MAC_OSX]: New variable.
21498 [MAC_OSX] (init_mac_osx_environment): Initialize it.
21499 [MAC_OSX] (mac_try_close_socket) [SELECT_USE_CFSOCKET]: Return 0
21500 when used on child processes.
21501
21502 2008-01-21 Michael Albinus <michael.albinus@gmx.de>
21503
21504 * dbusbind.c (Fdbus_method_return_internal): Rename from
21505 Fdbus_method_return.
21506 (Fdbus_unregister_object): Move to dbus.el.
21507 (Fdbus_call_method, Fdbus_method_return_internal)
21508 (Fdbus_send_signal): Improve debug messages.
21509
21510 2008-01-20 Martin Rudalics <rudalics@gmx.at>
21511
21512 * undo.c (undo_inhibit_record_point): New variable.
21513 (syms_of_undo): Initialize it.
21514 (record_point): Don't record point when undo_inhibit_record_point
21515 is set.
21516
21517 2008-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
21518
21519 * process.c (list_processes_1): Don't use SCHARS on a nil buffer name.
21520
21521 * xdisp.c (Qauto_hscroll_mode): New var.
21522 (syms_of_xdisp): Initialize it.
21523 (hscroll_window_tree): Use it to lookup `auto-hscroll-mode' in each
21524 window's buffer.
21525 (hscroll_windows): Don't check automatic_hscrolling_p here.
21526
21527 * window.c (set_window_buffer): Don't unnecessarily reset hscroll and
21528 vscroll if we're setting window-buffer to the value it already has.
21529
21530 2008-01-18 Dan Nicolaescu <dann@ics.uci.edu>
21531
21532 * m/intel386.h: Remove references to XENIX.
21533
21534 2008-01-17 Andreas Schwab <schwab@suse.de>
21535
21536 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Use HAVE_LIB64_DIR
21537 instead of HAVE_X86_64_LIB64_DIR.
21538 * m/ibms390x.h (START_FILES, LIB_STANDARD): Likewise.
21539
21540 2008-01-17 Glenn Morris <rgm@gnu.org>
21541
21542 * m/ibms390x.h (START_FILES, LIB_STANDARD): Adjust value according
21543 to HAVE_X86_64_LIB64_DIR.
21544
21545 2008-01-16 Dan Nicolaescu <dann@ics.uci.edu>
21546
21547 * s/irix3-3.h:
21548 * s/irix4-0.h:
21549 * s/386-ix.h:
21550 * s/domain.h:
21551 * s/hpux9-x11r4.h:
21552 * s/hpux9shxr4.h: Remove files for systems no longer supported.
21553
21554 * sysdep.c: Remove code containing references to symbols defined
21555 by unsupported systems.
21556
21557 2008-01-16 Glenn Morris <rgm@gnu.org>
21558
21559 * coding.c (select-safe-coding-system-function): Doc fix.
21560
21561 2008-01-15 Glenn Morris <rgm@gnu.org>
21562
21563 * config.in: Revert 2008-01-13 change: this is a generated file.
21564
21565 2008-01-13 Tom Tromey <tromey@redhat.com>
21566
21567 * lisp.h: Fix typo.
21568
21569 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
21570
21571 * m/sequent-ptx.h:
21572 * m/sequent.h:
21573 * s/ptx.h:
21574 * s/ptx4-2.h:
21575 * s/ptx4.h: Remove files for systems no longer supported.
21576
21577 * callproc.c (Fcall_process): Fix previous change.
21578
21579 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
21580
21581 * unexsunos4.c: Remove file, system not supported anymore.
21582
21583 * m/mips.h:
21584 * m/intel386.h:
21585 * callproc.c:
21586 * config.in:
21587 * ecrt0.c:
21588 * emacs.c:
21589 * fileio.c:
21590 * frame.c:
21591 * getpagesize.h:
21592 * keyboard.c:
21593 * lread.c:
21594 * process.c:
21595 * puresize.h:
21596 * sysdep.c:
21597 * systty.h:
21598 * syswait.h:
21599 * unexec.c:
21600 * xdisp.c:
21601 * alloc.c: Remove code containing references to symbols defined by
21602 unsupported systems.
21603
21604 2008-01-11 Kenichi Handa <handa@ni.aist.go.jp>
21605
21606 * coding.c (detect_coding_mask): Fix previous change.
21607
21608 2008-01-09 Kenichi Handa <handa@ni.aist.go.jp>
21609
21610 * coding.c (detect_coding_iso2022): New arg
21611 latin_extra_code_state. Allow Latin extra codes only
21612 when *latin_extra_code_state is nonzero.
21613 (detect_coding_mask): If there is a NULL byte, detect the encoding
21614 as UTF-16 or binary. If Latin extra codes exist, detect the
21615 encoding as ISO-2022 only when there's no other proper encoding is
21616 found.
21617
21618 2008-01-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21619
21620 * frame.c (Fmake_terminal_frame): Use #ifdef MAC_OS8 instead of
21621 #ifdef MAC_OS.
21622
21623 2008-01-08 Richard Stallman <rms@gnu.org>
21624
21625 * fileio.c (Ffile_name_directory, Fexpand_file_name): Doc fixes.
21626
21627 2008-01-06 Nick Roberts <nickrob@snap.net.nz>
21628
21629 * keyboard.c (parse_menu_item): Don't enclose key bindings on
21630 menu bar in parentheses.
21631
21632 2008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
21633
21634 * m/7300.h:
21635 * m/acorn.h:
21636 * m/alliant-2800.h:
21637 * m/alliant.h:
21638 * m/alliant1.h:
21639 * m/alliant4.h:
21640 * m/altos.h:
21641 * m/amdahl.h:
21642 * m/apollo.h:
21643 * m/att3b.h:
21644 * m/aviion-intel.h:
21645 * m/aviion.h:
21646 * m/celerity.h:
21647 * m/clipper.h:
21648 * m/cnvrgnt.h:
21649 * m/convex.h:
21650 * m/cydra5.h:
21651 * m/delta88k.h:
21652 * m/dpx2.h:
21653 * m/dual.h:
21654 * m/elxsi.h:
21655 * m/f301.h:
21656 * m/gould-np1.h:
21657 * m/gould.h:
21658 * m/i860.h:
21659 * m/ibmps2-aix.h:
21660 * m/ibmrt-aix.h:
21661 * m/ibmrt.h:
21662 * m/irist.h:
21663 * m/is386.h:
21664 * m/isi-ov.h:
21665 * m/mega68.h:
21666 * m/mg1.h:
21667 * m/news-r6.h:
21668 * m/news-risc.h:
21669 * m/news.h:
21670 * m/nh3000.h:
21671 * m/nh4000.h:
21672 * m/ns16000.h:
21673 * m/ns32000.h:
21674 * m/nu.h:
21675 * m/orion.h:
21676 * m/orion105.h:
21677 * m/paragon.h:
21678 * m/pfa50.h:
21679 * m/plexus.h:
21680 * m/pyramid.h:
21681 * m/pyrmips.h:
21682 * m/sh3el.h:
21683 * m/sps7.h:
21684 * m/sr2k.h:
21685 * m/stride.h:
21686 * m/sun1.h:
21687 * m/sun2.h:
21688 * m/sun3-68881.h:
21689 * m/sun3-fpa.h:
21690 * m/sun3-soft.h:
21691 * m/sun3.h:
21692 * m/sun386.h:
21693 * m/symmetry.h:
21694 * m/tad68k.h:
21695 * m/tahoe.h:
21696 * m/targon31.h:
21697 * m/tek4300.h:
21698 * m/tekxd88.h:
21699 * m/tower32.h:
21700 * m/tower32v3.h:
21701 * m/ustation.h:
21702 * m/wicat.h:
21703 * m/xps100.h:
21704 * s/cxux.h:
21705 * s/cxux7.h:
21706 * s/dgux.h:
21707 * s/dgux4.h:
21708 * s/dgux5-4-3.h:
21709 * s/dgux5-4r2.h:
21710 * s/esix.h:
21711 * s/esix5r4.h:
21712 * s/hiuxmpp.h:
21713 * s/hiuxwe2.h:
21714 * s/iris3-5.h:
21715 * s/iris3-6.h:
21716 * s/isc2-2.h:
21717 * s/isc3-0.h:
21718 * s/isc4-0.h:
21719 * s/isc4-1.h:
21720 * s/newsos5.h:
21721 * s/newsos6.h:
21722 * s/osf1.h:
21723 * s/osf5-0.h:
21724 * s/riscix1-1.h:
21725 * s/riscix12.h:
21726 * s/sco4.h:
21727 * s/sco5.h:
21728 * s/sunos4-0.h:
21729 * s/sunos4-1.h:
21730 * s/sunos413.h:
21731 * s/sunos4shr.h:
21732 * s/umax.h:
21733 * s/unipl5-2.h:
21734 * s/xenix.h:
21735 * cxux-crt0.s:
21736 * unexapollo.c:
21737 * unexconvex.c:
21738 * unexenix.c:
21739 * unexsni.c: Remove files for systems no longer supported.
21740
21741 * m/intel386.h: Remove references to unsupported systems.
21742
21743 * w32.c (get_emacs_configuration): Remove reference to i860.
21744
21745 * sysdep.c: Remove dead code.
21746
21747 2008-01-05 Dan Nicolaescu <dann@ics.uci.edu>
21748
21749 * s/rtu.h:
21750 * m/masscomp.h: Remove files. Platform is obsolete.
21751
21752 2008-01-04 Michael Albinus <michael.albinus@gmx.de>
21753
21754 * dbusbind.c (Fdbus_method_return): New function.
21755 (xd_read_message): Add the serial number to the event.
21756 (Fdbus_register_method): Activate the function.
21757
21758 2008-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
21759
21760 * keyboard.c (read_key_sequence): Fix typo.
21761
21762 2008-01-03 Michael Albinus <michael.albinus@gmx.de>
21763
21764 * dbusbind.c (all): Replace XCAR by CAR_SAFE and XCDR by CDR_SAFE.
21765 (xd_signature, xd_append_arg): Handle element type detection for
21766 empty arrays.
21767 (Fdbus_call_method, Fdbus_send_signal): Undo type casting for
21768 SDATA () calls; this must be solved more general.
21769 (Fdbus_register_signal): Use SBYTES instead of strlen.
21770
21771 2008-01-03 Magnus Henoch <magnus@zemdatav>
21772
21773 * dbusbind.c (xd_append_arg): Use unsigned char instead of
21774 unsigned int for byte values (necessary for big-endian platform).
21775 (Fdbus_call_method): Handle the case of no returned arguments.
21776
21777 2007-12-31 Tom Tromey <tromey@redhat.com> (tiny change)
21778
21779 * dbusbind.c (xd_read_message): Use non-static input_event struct.
21780
21781 2007-12-31 Magnus Henoch <mange@freemail.hu>
21782
21783 * dbusbind.c (xd_signature): Signature of variant is just "v".
21784
21785 2007-12-30 Michael Albinus <michael.albinus@gmx.de>
21786
21787 * dbusbind.c: Fix several errors and compiler warnings.
21788 Reported by Tom Tromey <tromey@redhat.com>.
21789 (XD_ERROR, XD_DEBUG_MESSAGE)
21790 (XD_DEBUG_VALID_LISP_OBJECT_P): Wrap code with "do ... while (0)".
21791 (xd_append_arg): Part for basic D-Bus types rewritten.
21792 (xd_retrieve_arg): Split implementation of DBUS_TYPE_BYTE and
21793 DBUS_TYPE_(U)INT16. Don't call XD_DEBUG_MESSAGE with "%f" if not
21794 appropriate.
21795 (xd_read_message): Return Qnil. Don't signal an error; it is not
21796 useful during event reading.
21797 (Fdbus_register_signal): Signal an error if the check for
21798 FUNCTIONP fails.
21799 (Fdbus_register_method): New function. The implementation is not
21800 complete, the call of the function signals an error therefore.
21801 (Fdbus_unregister_object): New function, renamed from
21802 Fdbus_unregister_signal. The initial check signals an error, if
21803 the object is not well formed.
21804
21805 2007-12-30 Richard Stallman <rms@gnu.org>
21806
21807 * textprop.c (get_char_property_and_overlay):
21808 Signal error if POSITION is out of range in a buffer.
21809
21810 2007-12-29 Martin Rudalics <rudalics@gmx.at>
21811
21812 * w32fns.c (Fx_create_frame): Make copy of frame parameters
21813 because the original parameters are in pure storage now.
21814
21815 2007-12-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21816
21817 * xdisp.c (phys_cursor_in_rect_p): Check if cursor is in fringe area.
21818
21819 2007-12-22 Eli Zaretskii <eliz@gnu.org>
21820
21821 * callint.c (syms_of_callint) <command-history>: Add reference to
21822 history-length in the doc string.
21823
21824 2007-12-17 Jason Rumney <jasonr@gnu.org>
21825
21826 * w32fns.c (w32_wnd_proc) <WM_KEYDOWN>: Cast char to unsigned
21827 before passing as wParam.
21828
21829 2007-12-22 Michael Albinus <michael.albinus@gmx.de>
21830
21831 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_BYTE,
21832 DBUS_TYPE_INT16, DBUS_TYPE_UINT16, DBUS_TYPE_INT64,
21833 DBUS_TYPE_UINT64, DBUS_TYPE_DOUBLE and DBUS_TYPE_SIGNATURE.
21834 Return float when DBUS_TYPE_INT32 or DBUS_TYPE_UINT32 do not fit
21835 as number.
21836 (Fdbus_call_method): Fix docstring.
21837
21838 2007-12-21 Michael Albinus <michael.albinus@gmx.de>
21839
21840 * dbusbind.c (XD_BASIC_DBUS_TYPE, XD_DBUS_TYPE_P, XD_NEXT_VALUE):
21841 New macros.
21842 (XD_SYMBOL_TO_DBUS_TYPE): Rename from XD_LISP_SYMBOL_TO_DBUS_TYPE.
21843 (XD_OBJECT_TO_DBUS_TYPE): Rename from XD_LISP_OBJECT_TO_DBUS_TYPE.
21844 Simplify.
21845 (xd_signature): New function.
21846 (xd_append_arg): Compute also signatures. Major rewrite.
21847 (xd_retrieve_arg): Make debug messages friendly.
21848 (Fdbus_call_method, Fdbus_send_signal): Extend docstring.
21849 Check for signatures of arguments.
21850
21851 2007-12-19 Michael Albinus <michael.albinus@gmx.de>
21852
21853 * dbusbind.c (QCdbus_type_byte, QCdbus_type_boolean)
21854 (QCdbus_type_int16, QCdbus_type_uint16, QCdbus_type_int32)
21855 (QCdbus_type_uint32, QCdbus_type_int64, QCdbus_type_uint64)
21856 (QCdbus_type_double, QCdbus_type_string, QCdbus_type_object_path)
21857 (QCdbus_type_signature, QCdbus_type_array, QCdbus_type_variant)
21858 (QCdbus_type_struct, QCdbus_type_dict_entry): New D-Bus type symbols.
21859 (XD_LISP_SYMBOL_TO_DBUS_TYPE): New macro.
21860 (XD_LISP_OBJECT_TO_DBUS_TYPE): Add compound types.
21861 (xd_retrieve_value): Remove. Functionality included in ...
21862 (xd_append_arg): New function.
21863 (Fdbus_call_method, Fdbus_send_signal): Apply it.
21864
21865 2007-12-16 Michael Albinus <michael.albinus@gmx.de>
21866
21867 * dbusbind.c (top): Include <stdio.h>.
21868 (Fdbus_call_method, Fdbus_send_signal): Apply type cast in
21869 dbus_message_new_method_call and dbus_message_new_signal.
21870 (Fdbus_register_signal): Rename unique_name to uname.
21871 Check handler for FUNCTIONP instead of CHECK_SYMBOL. Handle case of
21872 non-existing unique name. Fix typos in matching rule. Return an
21873 object which is useful in Fdbus_unregister_signal.
21874 (Fdbus_unregister_signal): Reimplementation, in order to remove
21875 only the corresponding entry.
21876 (Vdbus_registered_functions_table): Change the order of entries.
21877 Apply these changes in xd_read_message and Fdbus_register_signal.
21878
21879 2007-12-16 Andreas Schwab <schwab@suse.de>
21880
21881 * fileio.c (Finsert_file_contents): Fix overflow check to not
21882 depend on undefined integer overflow.
21883
21884 2007-12-14 Jason Rumney <jasonr@gnu.org>
21885
21886 * w32term.c (w32_read_socket): Use MULTIBYTE_CHAR_KEYSTROKE_EVENT
21887 for characters above 127.
21888
21889 2007-12-13 Jason Rumney <jasonr@gnu.org>
21890
21891 * w32fns.c (w32_wnd_proc, Fw32_reconstruct_hot_key): Range check
21892 before dereferencing array.
21893 (lookup_vk_code): Remove zero comparison.
21894
21895 2007-12-14 Michael Albinus <michael.albinus@gmx.de>
21896
21897 * dbusbind.c (xd_retrieve_value, xd_retrieve_arg)
21898 (Fdbus_call_method, Fdbus_send_signal, xd_read_message):
21899 Use `unsigned int' instead of `uint'.
21900 (xd_read_message, Fdbus_register_signal): Split expressions into
21901 multiple lines before operators "&&" and "||", according to the
21902 GNU Coding Standards.
21903
21904 2007-12-14 Eli Zaretskii <eliz@gnu.org>
21905
21906 * dispextern.h (WINDOWS_NT): Fix incorrect spelling of WINDOWSNT.
21907
21908 2007-12-12 Juri Linkov <juri@jurta.org>
21909
21910 * buffer.c (Frename_buffer): In interactive spec replace
21911 `read-buffer' with `read-string' that uses `buffer-name-history'
21912 as history, and the current buffer's name as default.
21913
21914 2007-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
21915
21916 * keyboard.c (Fcommand_execute): Call Qcall_interactively instead of
21917 manipulating the backtrace manually.
21918 (make_lispy_event): Merge the ASCII and MULTIBYTE cases.
21919 (struct backtrace, backtrace_list): Remove.
21920 (command_loop_1): Remove dead var `no_direct'.
21921
21922 * buffer.c (reset_buffer_local_variables): If permanent_too is 0, also
21923 preserve non-built-in buffer-local variables.
21924 (Fkill_all_local_variables): Don't re-create&re-set permanent
21925 buffer-local variables.
21926
21927 2007-12-09 Juri Linkov <juri@jurta.org>
21928
21929 * buffer.c (Frename_buffer): Change interactive spec from "s" to
21930 Lisp code that uses `read-buffer' with current buffer as default.
21931
21932 2007-12-08 Michael Albinus <michael.albinus@gmx.de>
21933
21934 * dbusbind.c (xd_read_message): Generate an event for every
21935 registered handler. There might be several handlers registered
21936 for the same signal.
21937 (Fdbus_register_signal): Don't overwrite a registration for the
21938 same signal. Add a new registration if handlers are different.
21939 (Vdbus_registered_functions_table): Rework doc string.
21940
21941 2007-12-07 Michael Albinus <michael.albinus@gmx.de>
21942
21943 * dbusbind.c (Fdbus_get_unique_name, xd_read_message)
21944 (Fdbus_register_signal): Use DBUS_MAXIMUM_NAME_LENGTH and
21945 DBUS_MAXIMUM_MATCH_RULE_LENGTH for string lengths.
21946 (Fdbus_call_method, Fdbus_send_signal, Fdbus_register_signal):
21947 Unify argument lists.
21948 (xd_read_message, Fdbus_register_signal): Reorder and extend event
21949 arguments and hash table keys. Use unique name for service.
21950 (Fdbus_unregister_signal): Remove checks.
21951 (Vdbus_registered_functions_table): Fix doc string.
21952
21953 2007-12-05 Magnus Henoch <mange@freemail.hu>
21954
21955 * process.c (make_process): Initialize pty_flag to 0.
21956
21957 2007-12-05 Jason Rumney <jasonr@gnu.org>
21958
21959 * image.c (xbm_load) [WINDOWSNT]: Shuffle the bits of directly
21960 specified XBMs.
21961
21962 2007-12-05 Richard Stallman <rms@gnu.org>
21963
21964 * xdisp.c (syms_of_xdisp) <scroll-conservatively>: Doc fix.
21965
21966 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21967
21968 * mac.c (cfsockets_for_select) [MAC_OSX && SELECT_USE_CFSOCKET]:
21969 New variable.
21970 (mac_try_close_socket) [MAC_OSX]: New function.
21971 [MAC_OSX] (sys_select) [SELECT_USE_CFSOCKET]:
21972 Update cfsockets_for_select. Replace invalid CFRunLoop source.
21973
21974 * sysdep.c (emacs_close) [MAC_OSX && HAVE_CARBON]:
21975 Use mac_try_close_socket.
21976
21977 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21978
21979 * unexmacosx.c (unrelocate): New argument BASE. Use it instead of
21980 reloc_base.
21981 (copy_dysymtab): Compute relocation base here.
21982 (rebase_reloc_address) [__ppc64__]: New function.
21983 (copy_dysymtab) [__ppc64__]: Use it if relocation base needs to be
21984 changed.
21985
21986 2007-12-05 Jason Rumney <jasonr@gnu.org>
21987
21988 * w32proc.c (sys_spawnve): Quote args with wildcards.
21989
21990 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21991
21992 * unexmacosx.c (copy_data_segment): Also copy __gcc_except_tab and
21993 __objc_* sections.
21994 (unrelocate) [_LP64]: Set relocation base to address of data segment.
21995
21996 2007-12-05 Michael Albinus <michael.albinus@gmx.de>
21997
21998 * dbusbind.c (xd_read_message): Return value is a Lisp_Object.
21999 Move check for Vdbus_registered_functions_table to
22000 xd_read_queued_messages.
22001 (xd_read_queued_messages): Protect xd_read_message calls by
22002 internal_condition_case_1.
22003
22004 2007-12-04 Michael Albinus <michael.albinus@gmx.de>
22005
22006 * dbusbind.c (QCdbus_system_bus, QCdbus_session_bus): Rename from
22007 Qdbus_system_bus and Qdbus_session_bus, respectively.
22008 (Vdbus_intern_symbols): Remove.
22009 (Vdbus_registered_functions_table): New hash table.
22010 (XD_SYMBOL_INTERN_SYMBOL): Remove.
22011 (xd_read_message, Fdbus_register_signal, Fdbus_unregister_signal):
22012 Rewrite in order to manage registered functions by hash table
22013 Vdbus_registered_functions_table.
22014
22015 2007-12-03 Jan Djärv <jan.h.d@swipnet.se>
22016
22017 * xterm.c: Update URL to Window Manager Specification in comment.
22018
22019 2007-12-02 Michael Albinus <michael.albinus@gmx.de>
22020
22021 * config.in (HAVE_DBUS): Add.
22022
22023 * Makefile.in (HAVE_DBUS): Add D-Bus definitions if defined.
22024 (ALL_CFLAGS): Add ${DBUS_CFLAGS}.
22025 (obj): Add $(DBUS_OBJ).
22026 (LIBES): Add $(DBUS_LIBS).
22027 (dbusbind.o): New target.
22028
22029 * dbusbind.c: New file.
22030
22031 * emacs.c (main): Call syms_of_dbusbind when HAVE_DBUS is defined.
22032
22033 * keyboard.c: All D-Bus related code is wrapped by "#ifdef HAVE_DBUS".
22034 (Qdbus_event): New Lisp symbol.
22035 (kbd_buffer_get_event, make_lispy_event): Handle DBUS_EVENT.
22036 (gobble_input): Call xd_read_queued_messages, reading D-Bus messages.
22037 (keys_of_keyboard): Define dbus-event.
22038
22039 * termhooks.h (event_kind): Add DBUS_EVENT when HAVE_DBUS is defined.
22040
22041 2007-12-01 Richard Stallman <rms@gnu.org>
22042
22043 * search.c (syms_of_search) <inhibit-changing-match-data>: Doc fix.
22044
22045 2007-11-30 Jason Rumney <jasonr@gnu.org>
22046
22047 * w32console.c (w32con_ins_del_lines, scroll_line): Clip to window.
22048 (w32con_reset_terminal_modes): Clear screen buffer.
22049 (w32_face_attributes): Don't use color indexes that are out of range.
22050 Only reverse the default colors.
22051
22052 * xfaces.c (map_tty_color, tty_color_name): Remove special case for
22053 WINDOWSNT.
22054
22055 * w32console.c, w32term.h (vga_stdcolor_name): Remove.
22056
22057 2007-11-29 Jason Rumney <jasonr@gnu.org>
22058
22059 * w32console.c: Leave HAVE_WINDOW_SYSTEM defined.
22060 (w32_face_attributes): Use Vtty_defined_color_alist to determine
22061 if the terminal colors are initialized.
22062 (unspecified_fg, unspecified_bg): Remove unused declarations.
22063
22064 2007-11-29 Andreas Schwab <schwab@suse.de>
22065
22066 * keyboard.c (apply_modifiers): Fix typo.
22067
22068 2007-11-29 Richard Stallman <rms@gnu.org>
22069
22070 * keymap.c (Fcurrent_local_map): Doc fix.
22071
22072 2007-11-28 Petr Salinger <Petr.Salinger@seznam.cz> (tiny change)
22073
22074 * s/gnu-kfreebsd.h: New file.
22075
22076 2007-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
22077
22078 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
22079 Don't cast redundantly.
22080
22081 * keyboard.c (KEY_TO_CHAR): New macro.
22082 (parse_modifiers, apply_modifiers): Accept integer arguments.
22083 (read_key_sequence): Use them to unify the "shift->unshift" mapping
22084 for chars and symbol keys.
22085 After doing such remapping, apply function-key-map again.
22086
22087 2007-11-27 Dan Nicolaescu <dann@ics.uci.edu>
22088
22089 * Makefile.in (SOME_MACHINE_LISP): Remove VMS files, they are not
22090 compiled anymore.
22091
22092 2007-11-26 Andreas Schwab <schwab@suse.de>
22093
22094 * process.c (list_processes_1): Fix indentation level of the
22095 command column.
22096
22097 2007-11-23 Andreas Schwab <schwab@suse.de>
22098
22099 * editfns.c (Fformat): Handle %c specially since it requires the
22100 argument to be of type int.
22101
22102 2007-11-23 Markus Triska <markus.triska@gmx.at>
22103
22104 * emacs.c (main): Call init_editfns before init_process, since
22105 init_process sets Vprocess_connection_type depending on OS release.
22106
22107 2007-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
22108
22109 * data.c (do_symval_forwarding): Use same code as in find_symbol_value.
22110 (find_symbol_value): Use do_symval_forwarding.
22111
22112 * data.c (set_internal): Set the value in the `cons-cell' (for
22113 Buffer_Local_values) not only for frame-local variables.
22114
22115 2007-11-22 Andreas Schwab <schwab@suse.de>
22116
22117 * data.c (Fnumber_to_string): Add cast when passing EMACS_INT
22118 values to sprintf.
22119 * keymap.c (Fsingle_key_description): Likewise.
22120 * print.c (print_object): Likewise.
22121
22122 2007-11-22 Jan Djärv <jan.h.d@swipnet.se>
22123
22124 * gtkutil.c (update_frame_tool_bar): Don't call x-gtk-map-stock if
22125 file for image is nil.
22126
22127 2007-11-22 Dan Nicolaescu <dann@ics.uci.edu>
22128
22129 * term.c: Include stdarg.h.
22130 (fatal): Implement using varargs.
22131 * lisp.h (fatal): Add argument types. (Restore 2005-09-30 change).
22132
22133 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
22134
22135 * lisp.h (struct Lisp_Buffer_Objfwd): Add a `slottype' field.
22136 * data.c (store_symval_forwarding): Get type from buffer_objfwd.
22137 Update call to buffer_slot_type_mismatch.
22138 * buffer.h (buffer_local_types, PER_BUFFER_TYPE): Remove.
22139 (buffer_slot_type_mismatch): Update.
22140 * buffer.c (buffer_local_types): Remove.
22141 (buffer_slot_type_mismatch): Get the symbol and type as arguments.
22142 (defvar_per_buffer): Set the type in the buffer_objfwd.
22143
22144 2007-11-21 Jason Rumney <jasonr@gnu.org>
22145
22146 * w32bdf.c (w32_init_bdf_font, w32_BDF_to_x_font):
22147 CreateFileMapping returns NULL on failure.
22148
22149 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
22150
22151 * search.c (Fset_match_data): Remove the `evaporate' feature.
22152 (unwind_set_match_data): Don't use the `evaporate' feature.
22153
22154 2007-11-21 Jason Rumney <jasonr@gnu.org>
22155
22156 * dispnew.c (init_display) [WINDOWSNT]: Hardcode terminal_type.
22157
22158 * w32console.c (w32con_write_glyphs): Remove unused variables.
22159
22160 2007-11-20 Dan Nicolaescu <dann@ics.uci.edu>
22161
22162 * macterm.c (mac_term_init): Call add_keyboard_wait_descriptor.
22163
22164 * s/darwin.h (MULTI_KBOARD): Remove.
22165
22166 * macfns.c (x_create_tip_frame, Fx_create_frame)
22167 (x_create_tip_frame): Don't deal with MULTI_KBOARD.
22168
22169 2007-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
22170
22171 * buffer.c (Fbuffer_local_value): Remove redundant test.
22172 (swap_out_buffer_local_variables): Swap out binding in `buffer' rather
22173 than in `current-buffer' to match the comment.
22174 Do the swap using swap_in_global_binding.
22175
22176 * data.c (store_symval_forwarding, set_internal):
22177 * eval.c (specbind): Remove dead code.
22178
22179 * coding.c (detect_coding, Fupdate_coding_systems_internal):
22180 * fns.c (Fmd5): Use find_symbol_value rather than SYMBOL_VALUE
22181 Since we do not want to see internal Lisp_*fwd objects here.
22182
22183 2007-11-18 Jan Djärv <jan.h.d@swipnet.se>
22184
22185 * sysdep.c (init_system_name): Use getaddrinfo if available.
22186
22187 * xterm.c (x_scroll_bar_set_handle, x_scroll_bar_handle_click)
22188 (x_scroll_bar_note_movement): start, end, with, height in struct
22189 scroll_bar are integers and not Lisp_Object, so remove XINT for them.
22190
22191 2007-11-17 Dan Nicolaescu <dann@ics.uci.edu>
22192
22193 * puresize.h (BASE_PURESIZE): Increase to 1190000.
22194
22195 2007-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
22196
22197 * buffer.h (struct buffer): Move `undo_list' back to before `name'.
22198 This undoes Richard's change of 14-Oct-2002.
22199
22200 * alloc.c (allocate_other_vector):
22201 * lisp.h (allocate_other_vector): Remove.
22202
22203 * window.c (struct save_window_data): Move non-lisp data to the end
22204 and make it `int' rather than Lisp_Object.
22205 (Fcurrent_window_configuration): Use ALLOCATE_PSEUDOVECTOR.
22206 Done wrap/unwrap integer values.
22207 (Fset_window_configuration, compare_window_configurations):
22208 Update use of fields to their new types.
22209
22210 * xterm.h (struct scroll_bar): Only use Lisp_Object for lisp data.
22211 Turn integer fields into `int'. Merge x_window_low and x_window_high.
22212 (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK, SCROLL_BAR_X_WINDOW)
22213 (SET_SCROLL_BAR_X_WINDOW): Remove.
22214 (SCROLL_BAR_X_WIDGET, SET_SCROLL_BAR_X_WIDGET):
22215 Access the new x_window field directly.
22216 * xterm.c (x_scroll_bar_create): Use a pseudovector.
22217 Don't wrap/unwrap integers into Lisp_Objects.
22218 (XTset_vertical_scroll_bar, x_scroll_bar_handle_click)
22219 (x_scroll_bar_report_motion):
22220 Don't wrap/unwrap integers into Lisp_Objects.
22221 (x_term_init): Use SDATA.
22222 (x_window_to_scroll_bar, x_create_toolkit_scroll_bar)
22223 (x_scroll_bar_set_handle, x_scroll_bar_remove)
22224 (XTset_vertical_scroll_bar, x_scroll_bar_expose)
22225 (x_scroll_bar_report_motion, x_scroll_bar_clear):
22226 * xfns.c (x_set_background_color):
22227 * gtkutil.c (xg_create_scroll_bar, xg_set_toolkit_scroll_bar_thumb):
22228 Access the new x_window field directly.
22229
22230 * alloc.c (ALLOCATE_PSEUDOVECTOR): Move to lisp.h.
22231 (allocate_pseudovector): Make non-static.
22232
22233 * lisp.h (enum pvec_type): New tag PVEC_OTHER.
22234 (allocate_pseudovector): Declare.
22235 (ALLOCATE_PSEUDOVECTOR): Move from alloc.c.
22236
22237 2007-11-15 Andreas Schwab <schwab@suse.de>
22238
22239 * editfns.c (Fformat): Correctly format EMACS_INT values.
22240 Also take precision into account when formatting an integer.
22241
22242 * keyboard.c (Fevent_symbol_parse_modifiers): Fix declaration.
22243
22244 2007-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
22245
22246 * keyboard.c (Fevent_symbol_parse_modifiers): New function.
22247 (syms_of_keyboard): Defsubr it.
22248
22249 * data.c (swap_in_global_binding): Fix longstanding bug where
22250 store_symval_forwarding was not called with the right second argument,
22251 thus causing objfwd-ing from being dropped.
22252
22253 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
22254
22255 * macfns.c (Fx_create_frame, Fx_display_pixel_width)
22256 (Fx_display_pixel_height, Fx_display_planes)
22257 (Fx_display_color_cells, Fx_server_max_request_size)
22258 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
22259 (Fx_display_visual_class, Fx_display_save_under):
22260 * w32fns.c (Fx_create_frame, Fx_display_pixel_width)
22261 (Fx_display_pixel_height, Fx_display_planes)
22262 (Fx_display_color_cells, Fx_server_max_request_size)
22263 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
22264 (Fx_display_mm_height, Fx_display_mm_width)
22265 (Fx_display_backing_store, Fx_display_visual_class)
22266 (Fw32_select_font, Fx_display_save_under):
22267 * xfns.c (Fx_create_frame, Fx_display_pixel_width)
22268 (Fx_display_pixel_height, Fx_display_planes)
22269 (Fx_display_color_cells, Fx_server_max_request_size)
22270 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
22271 (Fx_display_save_under): Fix typos in docstrings.
22272
22273 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
22274
22275 * w32fns.c (Fw32_registered_hot_keys): Don't return the nil values
22276 corresponding to deleted entries; they are an implementation detail.
22277 (gray_bitmap_width, gray_bitmap_height, gray_bitmap_bits):
22278 Remove variables.
22279 (w32_pass_extra_mouse_buttons_to_system, w32_strict_fontnames)
22280 (w32_pass_multimedia_buttons_to_system, w32_strict_painting)
22281 (Vw32_charset_info_alist, w32_to_x_color, w32_init_class)
22282 (w32_createscrollbar, w32_createwindow, my_post_msg, w32_get_modifiers)
22283 (w32_grabbed_keys, cancel_all_deferred_msgs): Make static.
22284 (Fw32_define_rgb_color, Fw32_load_color_file)
22285 (syms_of_w32fns) <w32-pass-multimedia-buttons-to-system>:
22286 Fix typos in docstrings.
22287 (Fx_server_version): Reflow docstring.
22288 (Fw32_shell_execute): Doc fixes.
22289
22290 2007-11-13 Juanma Barranquero <lekktu@gmail.com>
22291
22292 * w32fns.c (Fw32_register_hot_key): Don't try to register hot key
22293 if w32_parse_hot_key returned nil.
22294
22295 2007-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
22296
22297 * xdisp.c (load_overlay_strings): Fix copy&paste typo.
22298
22299 2007-11-09 Jason Rumney <jasonr@gnu.org>
22300
22301 * s/ms-w32.c (USE_TOOLKIT_SCROLL_BARS): Define.
22302
22303 * w32term.c (w32_scroll_bar_handle_click): Use SCROLL_BAR_CLICK_EVENT.
22304
22305 * keyboard.c (discard_mouse_events, make_lispy_event) [WINDOWSNT]:
22306 Remove W32_SCROLL_BAR_CLICK_EVENT.
22307
22308 * termhooks.h (enum event_kind) [WINDOWSNT]: Likewise.
22309 Add MULTIMEDIA_KEY_EVENT.
22310
22311 * keyboard.c (lispy_function_keys) [WINDOWSNT]: Add more keys.
22312 (lispy_multimedia_keys) [WINDOWSNT]: New array.
22313 (make_lispy_event) [WINDOWSNT]: Use it to translate
22314 MULTIMEDIA_KEY_EVENT.
22315
22316 * w32term.h (WM_APPCOMMAND): Define if not already.
22317 (GET_APPCOMMAND_LPARAM): Likewise.
22318
22319 * w32term.c (w32_read_socket): Generate MULTIMEDIA_KEY_EVENT from
22320 WM_APPCOMMAND.
22321
22322 * w32fns.c (w32_pass_multimedia_buttons_to_system): New user option.
22323 (syms_of_w32fns): Export and initialize it.
22324 (w32_wnd_proc): Pass WM_APPCOMMAND on to w32_read_socket.
22325
22326 2007-11-09 Chong Yidong <cyd@stupidchicken.com>
22327
22328 * dispextern.h (struct it): Don't define OVERLAY_STRING_CHUNK_SIZE
22329 twice.
22330
22331 * xdisp.c (handle_face_prop): Fix last change.
22332
22333 2007-11-09 Richard Stallman <rms@gnu.org>
22334
22335 * xdisp.c (handle_face_prop): Test for strings that came from overlays,
22336 not just for after-strings and before-strings.
22337 Call face_for_overlay_string and pass the overlay to it.
22338 (handle_display_prop): Determine whether property came from an overlay.
22339 Pass OVERLAY arg to handle_single_display_spec.
22340 (handle_single_display_spec): New arg OVERLAY sets it->from_overlay.
22341 (load_overlay_strings): Fill in it->string_overlays.
22342 (get_overlay_strings_1, push_it, pop_it): Handle it->from_overlays.
22343
22344 * xfaces.c (face_for_overlay_string): Function renamed from
22345 face_at_buffer_position_no_overlays, and add arg OVERLAY.
22346
22347 * dispextern.h (struct it): New elt string_overlays.
22348 New elt from_overlay, also in stack.
22349 Rearrange a few elements.
22350 (face_for_overlay_string): Decl renamed from
22351 face_at_buffer_position_no_overlays, and add argument.
22352
22353 2007-11-09 Richard Stallman <rms@gnu.org>
22354
22355 * xdisp.c (handle_face_prop): Use face_at_buffer_position_no_overlays
22356 to get the base face for an overlay string.
22357
22358 * dispextern.h (face_at_buffer_position_no_overlays): Add decl.
22359
22360 * xfaces.c (face_at_buffer_position_no_overlays): New function.
22361
22362 * xdisp.c (handle_stop): Move some code out of loop.
22363
22364 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22365
22366 * macfns.c [USE_ATSUI] (Fmac_atsu_font_face_attributes):
22367 Fix conversion from Lisp object to ATSUFontID.
22368
22369 2007-11-09 Jason Rumney <jasonr@gnu.org>
22370
22371 * xdisp.c (Fformat_mode_line): Do nothing when noninteractive.
22372
22373 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22374
22375 * unexmacosx.c (unexec_regions_recorder, unexec_regions_merge):
22376 Don't assume regions are aligned to page boundary.
22377 (print_load_command_name): Add LC_UUID if defined.
22378
22379 2007-11-09 Richard Stallman <rms@gnu.org>
22380
22381 * emacs.c (syms_of_emacs) <installation-directory>: Reflow docstring.
22382
22383 2007-11-07 Jason Rumney <jasonr@gnu.org>
22384
22385 * s/windows95.h: Remove.
22386
22387 2007-11-06 Jan Djärv <jan.h.d@swipnet.se>
22388
22389 * gtkutil.c (xg_tool_bar_menu_proxy): Handle GTK_IMAGE_ICON_NAME and
22390 abort with a message on unhandled store_type values.
22391
22392 2007-11-01 Jan Djärv <jan.h.d@swipnet.se>
22393
22394 * xterm.c, xfns.c, xselect.c, xterm.h, s/msdos.h, s/sco4.h, s/sco5.h:
22395 Remove HAVE_X11R5 and HAVE_X11R4.
22396
22397 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
22398
22399 * Makefile.in: Remove references to sunfns.c and sunfns.o.
22400
22401 2007-11-01 Johan Bockgård <bojohan@gnu.org>
22402
22403 * macterm.c, w32term.c, xterm.c (x_draw_stretch_glyph_string):
22404 Don't set s->stippled_p here, since it has already been set by
22405 x_set_glyph_string_gc from x_draw_glyph_string.
22406
22407 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
22408
22409 * sunfns.c: Remove file.
22410
22411 * m/sun386.h:
22412 * m/sun2.h:
22413 * m/sparc.h: Remove Sun windows code.
22414
22415 2007-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
22416
22417 * keyboard.c (syms_of_keyboard): Initialize the initial_kboard.
22418 (init_keyboard): Set current_kboard's window-system to nil.
22419 (tty_read_avail_input): Typo.
22420 * frame.c (make_initial_frame): Don't initialize the initial_kboard.
22421
22422 2007-10-31 Dan Nicolaescu <dann@ics.uci.edu>
22423
22424 * s/usg5-4.h:
22425 * s/usg5-3.h:
22426 * s/ptx.h:
22427 * m/is386.h:
22428 * m/ibmps2-aix.h:
22429 * Makefile.in: Remove all mentions of X10.
22430
22431 * dispnew.c (syms_of_display): Don't mention version 10.
22432
22433 2007-10-28 Juanma Barranquero <lekktu@gmail.com>
22434
22435 * makefile.w32-in (OBJ1): Remove abbrev.$(O).
22436 ($(BLD)/abbrev.$(O)): Remove.
22437
22438 2007-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
22439
22440 Rewrite abbrev.c in Elisp.
22441 * image.c (Qcount): Don't declare as extern.
22442 (syms_of_image): Initialize and staticpro `Qcount'.
22443 * puresize.h (BASE_PURESIZE): Increase for the new abbrev.el functions.
22444 * emacs.c (main): Don't call syms_of_abbrev.
22445 * Makefile.in (obj): Remove abbrev.o.
22446 (abbrev.o): Remove.
22447 * abbrev.c: Remove.
22448
22449 2007-10-26 Martin Rudalics <rudalics@gmx.at>
22450
22451 * window.c (window_min_size_2): Don't count header-line.
22452
22453 2007-10-26 Dan Nicolaescu <dann@ics.uci.edu>
22454
22455 * frame.h (struct frame): Move all bit fields after the first bit
22456 field to take advantage of the available space. Group all the
22457 chars together to reduce wasted space due to padding.
22458
22459 2007-10-26 Juanma Barranquero <lekktu@gmail.com>
22460
22461 * minibuf.c (Fread_minibuffer, Feval_minibuffer): Reflow docstrings.
22462
22463 * alloc.c (spare_memory, stack_copy, stack_copy_size, ignore_warnings)
22464 (Vdead, dont_register_blocks, staticvec, staticidx, interval_block)
22465 (n_interval_blocks, init_strings, check_string_bytes, check_sblock)
22466 (init_float, free_float, n_cons_blocks, init_cons, all_vectors)
22467 (n_vectors, symbol_block, symbol_block_index, symbol_free_list)
22468 (n_symbol_blocks, init_symbol, marker_block, marker_free_list)
22469 (n_marker_blocks, init_marker, valid_pointer_p, make_pure_float)
22470 (last_marked, mark_object_loop_halt): Make static.
22471
22472 * frame.c (syms_of_frame) <delete-frame-functions>:
22473 Fix typo in docstring.
22474
22475 2007-10-25 Juanma Barranquero <lekktu@gmail.com>
22476
22477 * w32.c (init_environment): Fix tiny memory leak.
22478 (w32_get_resource): Remove unused variable `ok'.
22479
22480 2007-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
22481
22482 Make `window-system' into a keyboard-local variable (rather than
22483 frame-local as done originally by multi-tty).
22484
22485 * keyboard.h (struct kboard): Add Vwindow_system.
22486 * keyboard.c (init_kboard): Set a default for Vwindow_system.
22487 (mark_kboards): Mark Vwindow_system.
22488
22489 * dispnew.c (syms_of_display) <window-system>: Declare terminal-local.
22490 (init_display): Don't set the obsolete `window-system' frame-param.
22491
22492 * xterm.c (x_term_init):
22493 * w32term.c (w32_create_terminal):
22494 * term.c (init_tty): Set Vwindow_system.
22495 * macterm.c (mac_create_terminal): Set a keyboard (missing piece of the
22496 multi-tty merge maybe?), copied from w32term.c. Set Vwindow_system.
22497
22498 * xfns.c (Fx_create_frame, x_create_tip_frame):
22499 * w32fns.c (Fx_create_frame, x_create_tip_frame):
22500 * macfns.c (Fx_create_frame):
22501 Don't set the obsolete `window-system' frame-param.
22502
22503 * frame.h (Qwindow_system): Remove.
22504 * frame.c (Qwindow_system): Remove. In `syms_of_frame' as well.
22505 (Fmake_terminal_frame): Don't set obsolete `window-system' frame-param.
22506
22507 2007-10-24 Richard Stallman <rms@gnu.org>
22508
22509 * frame.c (x_figure_window_size): For fullscreen case,
22510 set USPosition | PPosition without clobbering rest of window_prompting.
22511
22512 * keyboard.c (Fcurrent_idle_time): Doc fix.
22513
22514 * print.c (Fwith_output_to_temp_buffer): Doc fix.
22515
22516 2007-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
22517
22518 * process.c (unwind_request_sigio): Only define if __ultrix__.
22519
22520 * callproc.c (child_setup): Remove spurious *.
22521
22522 * lisp.h (Fget_text_property): Declare.
22523 (have_menus_p): Declare it here rather than in sys-dep header files.
22524 * macterm.h (have_menus_p):
22525 * msdos.h (have_menus_p):
22526 * xterm.h (have_menus_p): Remove.
22527
22528 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
22529 (Fmake_variable_frame_local): Just check the variable's const-ness
22530 rather than checking nil or t.
22531
22532 2007-10-22 Jason Rumney <jasonr@gnu.org>
22533
22534 * w32fns.c: Include math.h.
22535 (w32_abort): Declaration moved to nt/config.nt.
22536
22537 * s/ms-w32.h (HAVE_STDLIB_H): Define.
22538 (abort): Redefinition moved to nt/config.nt.
22539
22540 * m/windowsnt.h: Remove.
22541
22542 2007-10-22 Juanma Barranquero <lekktu@gmail.com>
22543
22544 * emacs.c (Fdump_emacs): Fix typo in message.
22545 (syms_of_emacs) <kill-emacs-hook>: Fix typo in docstring.
22546 <installation-directory>: Reflow docstring.
22547
22548 2007-10-22 Juri Linkov <juri@jurta.org>
22549
22550 * minibuf.c: Allow minibuffer default to be a list of default values.
22551 With empty input use the first element of this list as returned default.
22552 (string_to_object)
22553 (read_minibuf_noninteractive): If defalt is cons, set val to its car.
22554 (read_minibuf): If defalt is cons, set histstring to its car.
22555 (Fread_string): If default_value is cons, set val to its car.
22556 (Fread_buffer): If def is cons, use its car.
22557 (Fcompleting_read): If defalt is cons, set val to its car.
22558
22559 2007-10-21 Michael Albinus <michael.albinus@gmx.de>
22560
22561 * fileio.c (Fcopy_file): Call file name handler with preserve_uid_gid.
22562
22563 2007-10-20 Juanma Barranquero <lekktu@gmail.com>
22564
22565 * doc.c (Fdocumentation): Check for advice in all cases.
22566
22567 2007-10-19 Chong Yidong <cyd@stupidchicken.com>
22568
22569 * Makefile.in [HAVE_LIBRESOLV]: Add -lresolv to linker flags.
22570
22571 2007-10-19 Richard Stallman <rms@gnu.org>
22572
22573 * doc.c (Fdocumentation): Check for and handle an advised function.
22574
22575 2007-10-19 Juanma Barranquero <lekktu@gmail.com>
22576
22577 * process.c (Fset_process_filter): Doc fix.
22578
22579 2007-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
22580
22581 * keyboard.c (read_key_sequence): Undo a change introduced by multi-tty
22582 which caused key-translation-map to applied repeatedly (thus breaking
22583 double-mode).
22584
22585 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
22586
22587 * xselect.c (x_own_selection, x_handle_selection_clear)
22588 (x_clear_frame_selections):
22589 * w32menu.c (list_of_panes, list_of_items):
22590 * w32fns.c (w32_color_map_lookup, Fx_create_frame, Fx_display_list):
22591 * textprop.c (validate_plist, interval_has_all_properties)
22592 (interval_has_some_properties, interval_has_some_properties_list)
22593 (add_properties, text_property_list):
22594 * process.c (Fget_buffer_process, list_processes_1, status_notify):
22595 * minibuf.c (Fassoc_string):
22596 * macselect.c (x_own_selection, x_clear_frame_selections)
22597 (Fx_disown_selection_internal):
22598 * keymap.c (Fcommand_remapping, where_is_internal, describe_map_tree):
22599 Use CONSP rather than !NILP and XC[AD]R rather than Fc[ad]r.
22600
22601 2007-10-17 Chong Yidong <cyd@stupidchicken.com>
22602
22603 * process.c: Link to libs for calling res_init() if available.
22604 (Fmake_network_process): Call res_init() before getaddrinfo or
22605 gethostbyname, if possible.
22606
22607 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
22608
22609 * lread.c (read1): Set pvectype for char_tables.
22610
22611 * lisp.h (XMISCANY, XMARKER, XINTFWD, XBOOLFWD, XOBJFWD, XOVERLAY)
22612 (XBUFFER_OBJFWD, XBUFFER_LOCAL_VALUE, XKBOARD_OBJFWD, XSAVE_VALUE):
22613 Add type checks.
22614 (SOME_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP): Remove.
22615
22616 * alloc.c (free_misc): Use XMISCTYPE.
22617 (live_misc_p, gc_sweep): Use Lisp_Misc_Any.
22618
22619 2007-10-17 Glenn Morris <rgm@gnu.org>
22620
22621 * minibuf.c (Qcompletion_ignore_case): New Lisp_Object.
22622 (syms_of_minibuf): Add Qcompletion_ignore_case.
22623 * dired.c (Qcompletion_ignore_case): Change to external.
22624 (syms_of_dired) [VMS]: Remove Qcompletion_ignore_case.
22625 * fileio.c (Qcompletion_ignore_case): New external Lisp_Object.
22626 (Fread_file_name): Use it rather than intern'ing.
22627
22628 * coding.c (Qcompletion_ignore_case): New external Lisp_Object.
22629 (Fread_coding_system): Ignore case of user input.
22630
22631 2007-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22632
22633 * xdisp.c (handle_display_prop): Ignore display specs after
22634 replacing one when string text is being replaced.
22635 (handle_single_display_spec): Pretend as if characters with display
22636 property haven't been consumed only when buffer text is being replaced.
22637
22638 2007-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
22639
22640 * xfns.c (Fx_create_frame, Fx_display_list):
22641 * window.c (window_fixed_size_p, enlarge_window)
22642 (shrink_window_lowest_first):
22643 * macterm.c (init_font_name_table):
22644 * macfns.c (Fx_create_frame, Fx_display_list):
22645 * lread.c (close_load_descs):
22646 * keyboard.c (read_char_x_menu_prompt):
22647 * fns.c (Fmember, Fmemql, Fdelete, Fset_char_table_parent):
22648 * coding.c (code_convert_region_unwind): Test the type of an object
22649 rather than just !NILP before extracting data from it.
22650
22651 * alloc.c (Fpurecopy): Set the pvec tag on pseudo vectors.
22652
22653 * lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
22654 (XMISCANY): New macro.
22655 (XMISCTYPE): Use it.
22656 (struct Lisp_Misc_Any): New type.
22657 (union Lisp_Misc): Use it.
22658 (struct Lisp_Buffer_Local_Value): Add `local_if_set' bit.
22659 * data.c (Fboundp, store_symval_forwarding, swap_in_global_binding)
22660 (find_symbol_value, set_internal, default_value, Fset_default)
22661 (Fmake_variable_buffer_local, Fmake_local_variable)
22662 (Fkill_local_variable, Fmake_variable_frame_local, Flocal_variable_p)
22663 (Flocal_variable_if_set_p, Fvariable_binding_locus):
22664 The SOME_BUFFER_LOCAL_VALUEP distinction is replaced by local_if_set.
22665 * alloc.c (allocate_buffer): Set the size and tag.
22666 (allocate_misc, mark_maybe_object, mark_object, survives_gc_p):
22667 Use XMISCANY.
22668 (die): Follow the GNU convention for error messages.
22669 * print.c (print_object): SOME_BUFFER_LOCAL_VALUEP -> local_if_set.
22670 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Don't set the
22671 tag any more.
22672 (set_buffer_internal_1):
22673 * frame.c (store_frame_param):
22674 * eval.c (specbind):
22675 * xdisp.c (select_frame_for_redisplay): Drop SOME_BUFFER_LOCAL_VALUEP.
22676
22677 * doc.c (Fsnarf_documentation): Simplify.
22678
22679 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
22680
22681 * w32term.c (w32_font_is_double_byte, my_create_scrollbar): Make static.
22682 (syms_of_w32term) <w32-enable-unicode-output>: Fix typo in docstring.
22683
22684 2007-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
22685
22686 * buffer.c (Fmake_indirect_buffer): Set the buffer's tag.
22687
22688 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
22689
22690 * eval.c (do_autoload): Don't save autoloads.
22691
22692 * data.c (Ffset): Save autoload of the function being set.
22693
22694 2007-10-07 John Paul Wallington <jpw@pobox.com>
22695
22696 * xfns.c (x_create_tip_frame): Set the `display-type' frame
22697 parameter before setting up faces.
22698
22699 2007-10-13 Eli Zaretskii <eliz@gnu.org>
22700
22701 * ccl.c (Fregister_code_conversion_map):
22702 * keyboard.c (append_tool_bar_item): Reformat last change.
22703
22704 * lisp.h (eabs): Rename from `abs'. All callers changed.
22705
22706 2007-10-05 Dmitry Antipov <dmantipov@yandex.ru>
22707
22708 * buffer.c (add_overlay_mod_hooklist):
22709 * ccl.c (Fregister_ccl_program, Fregister_code_conversion_map):
22710 * fontset.c (make_fontset):
22711 * keyboard.c (GROW_RAW_KEYBUF, menu_bar_items, menu_bar_item)
22712 (append_tool_bar_item):
22713 * macmenu.c (grow_menu_items):
22714 * w32menu.c (grow_menu_items):
22715 * xmenu.c (grow_menu_items): Use larger_vector.
22716
22717 2007-10-13 Eli Zaretskii <eliz@gnu.org>
22718
22719 * msdos.c (dos_rawgetc): Undo last change (there's no ``leaving
22720 selected frame'' on MSDOS).
22721
22722 2007-10-12 Martin Rudalics <rudalics@gmx.at>
22723
22724 * frame.c (Qexplicit_name): New variable.
22725 (x_report_frame_params): Report it in parameter alist.
22726 (syms_of_frame): Intern and staticpro it.
22727
22728 2007-10-10 Patrick Mahan <mahan@mahan.org> (tiny change)
22729
22730 * macfns.c (x_create_tip_frame): Set terminal for frame.
22731
22732 2007-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
22733
22734 * frame.c (Qenvironment): Remove.
22735 (syms_of_frame) <Qenvironment>: Don't initialize.
22736 (Fdelete_frame): Don't treat the `environment' param specially.
22737 * frame.h (Qenvironment): Don't declare.
22738 * callproc.c (set_initial_environment): Don't set unused frame param.
22739
22740 * frame.c (Fframe_with_environment): Remove.
22741 (syms_of_frame) <Sframe_with_environment>: Don't declare.
22742
22743 * lisp.h (Fframe_with_environment): Don't declare.
22744
22745 2007-10-10 Juanma Barranquero <lekktu@gmail.com>
22746
22747 * indent.c (indent_tabs_mode, last_known_column)
22748 (last_known_column_modified): Make static.
22749 (syms_of_indent) <indent-tabs-mode>: Remove redundant info in docstring.
22750
22751 2007-10-10 Katsumi Yamaoka <yamaoka@jpl.org>
22752
22753 * puresize.h (BASE_PURESIZE): Increase to 1170000.
22754
22755 2007-10-09 Jason Rumney <jasonr@gnu.org>
22756
22757 * w32term.c (x_set_window_size): Disable code that attempts to tell
22758 Lisp code about a size change before it actually happens.
22759
22760 2007-10-09 Richard Stallman <rms@gnu.org>
22761
22762 * xdisp.c (handle_invisible_prop): After setting up an ellipsis,
22763 return HANDLED_RETURN.
22764
22765 2007-10-08 Martin Rudalics <rudalics@gmx.at>
22766
22767 * keyboard.c (kbd_buffer_get_event): Break loop waiting for input
22768 when there's an unread command event.
22769
22770 * frame.c (focus_follows_mouse): Move here from frame.el to allow
22771 window autoselection act appropriately when leaving selected frame.
22772 (syms_of_frame): Initialize focus_follows_mouse.
22773 * frame.h (focus_follows_mouse): Extern it.
22774 * macterm.c (XTread_socket): When focus_follows_mouse is nil
22775 make SELECT_WINDOW_EVENT only if we don't leave the selected frame.
22776 * msdos.c (dos_rawgetc): Likewise.
22777 * w32term.c (w32_read_socket): Likewise.
22778 * xterm.c (handle_one_xevent): Likewise.
22779 * xdisp.c (syms_of_xdisp): In doc-string of
22780 mouse-autoselect-window mention focus-follows-mouse.
22781
22782 2007-10-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22783
22784 * macterm.c (mac_load_query_font): Fix missing return value.
22785 [USE_CG_DRAWING] (mac_define_fringe_bitmap, mac_destroy_fringe_bitmap):
22786 Add BLOCK_INPUT.
22787
22788 2007-10-08 Richard Stallman <rms@gnu.org>
22789
22790 * xdisp.c (get_window_cursor_type): Implement documented behavior
22791 for cursor-in-non-selected-windows = t.
22792
22793 2007-10-08 Jason Rumney <jasonr@gnu.org>
22794
22795 * w32.c (w32_get_resource): Always close registry keys.
22796
22797 2007-10-08 Jason Rumney <jasonr@gnu.org>
22798
22799 * makefile.w32-in (LIBS): Add COMCTL32.
22800
22801 * w32fns.c (globals_of_w32fns): Init common controls.
22802
22803 2007-10-08 Richard Stallman <rms@gnu.org>
22804
22805 * image.c (our_memory_buffer): Rename from omfib_buffer.
22806
22807 2007-10-08 Richard Stallman <rms@gnu.org>
22808
22809 * buffer.c (Foverlays_at): Doc fix.
22810
22811 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
22812
22813 * fns.c (Fplist_put): Preserve uneven tail data.
22814
22815 2007-10-08 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change)
22816
22817 * termhooks.h (enum event_kind): Remove trailing comma.
22818
22819 * frame.h (enum): Remove trailing comma.
22820
22821 2007-10-08 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
22822
22823 * w32proc.c (delete_child): Don't terminate threads of zombies.
22824
22825 2007-10-08 Martin Rudalics <rudalics@gmx.at>
22826
22827 * keyboard.h (struct kboard): New elt Vlast_repeatable_command.
22828
22829 * keyboard.c (syms_of_keyboard): Set up new Lisp variable
22830 last-repeatable-command.
22831 (init_kboard): Initialize Vlast_repeatable_command.
22832 (command_loop_1): Set it to real_this_command unless that was
22833 bound to an input event.
22834 (mark_kboards): Mark it.
22835
22836 2007-10-08 Richard Stallman <rms@gnu.org>
22837
22838 * eval.c (condition-case): Doc fix.
22839
22840 2007-10-08 Masatake YAMATO <jet@gyve.org>
22841
22842 * xfaces.c (tty_supports_face_attributes_p): Fix code
22843 for LFACE_INVERSE_INDEX and LFACE_BACKGROUND_INDEX; code
22844 was copied and not edited.
22845
22846 2007-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
22847
22848 Add new `input-decode-map' keymap and use it for terminal
22849 escape sequences.
22850 * keyboard.h (struct kboard): Add Vinput_decode_map.
22851 Remove Vlocal_key_translation_map.
22852 * keyboard.c (read_key_sequence): Add support for input-decode-map.
22853 (init_kboard): Init input-decode-map.
22854 Replace local-key-translation-map back with key-translation-map.
22855 (syms_of_keyboard): Declare input-decode-map.
22856 Remove local-key-translation-map. Update docstrings.
22857 (mark_kboards): Mark Vinput_decode_map.
22858 Don't mark Vlocal_key_translation_map.
22859 * keymap.c (Fdescribe_buffer_bindings): Describe input-decode-map.
22860 Replace local-key-translation-map back with key-translation-map.
22861 * term.c (term_get_fkeys_1, CONDITIONAL_REASSIGN):
22862 Bind in input-decode-map rather than function-key-map.
22863
22864 * lisp.h (XSETPSEUDOVECTOR): Don't set the tag anymore.
22865 This was made redundant by the previous introduction of XSETPVECTYPE.
22866
22867 2007-10-09 Richard Stallman <rms@gnu.org>
22868
22869 * image.c (free_bitmap_record): Rename from Free_Bitmap_Record.
22870
22871 2007-09-29 Richard Stallman <rms@gnu.org>
22872
22873 * eval.c (internal_condition_case_2, internal_condition_case_1)
22874 (internal_condition_case): Reenable abort if x_catching_errors ()
22875 to see if that really happens and why.
22876
22877 2007-10-06 Andreas Schwab <schwab@suse.de>
22878
22879 * fileio.c (Fwrite_region): Ignore EINVAL error from fsync.
22880
22881 2007-10-04 Juanma Barranquero <lekktu@gmail.com>
22882
22883 * image.c (syms_of_image) <image-types>: Fix typo in docstring.
22884
22885 2007-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
22886
22887 * frame.h (struct frame): Don't try to GC-mark menu_bar_items_used.
22888
22889 2007-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
22890
22891 * window.h (struct window):
22892 * window.c (struct save_window_data, struct saved_window):
22893 * termhooks.h (struct terminal):
22894 * process.h (struct Lisp_Process):
22895 * frame.h (struct frame):
22896 * buffer.h (struct buffer):
22897 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table)
22898 (struct Lisp_Bool_Vector, struct Lisp_Subr, struct Lisp_Hash_Table):
22899 The size field of (pseudo)vectors is now unsigned.
22900 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Simplify accordingly.
22901
22902 * lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
22903 Turn `count' into an integer.
22904
22905 * fns.c (make_hash_table, hash_put, hash_remove, hash_clear)
22906 (sweep_weak_table, sweep_weak_hash_tables, Fhash_table_count):
22907 * print.c (print_object) <HASH_TABLE_P>: `count' is an int.
22908 * alloc.c (allocate_hash_table): Use ALLOCATE_PSEUDOVECTOR.
22909 (mark_object) <HASH_TABLE_P>: Use mark_vectorlike.
22910
22911 * alloc.c (allocate_pseudovector): New fun.
22912 (ALLOCATE_PSEUDOVECTOR): New macro.
22913 (allocate_window, allocate_terminal, allocate_frame)
22914 (allocate_process): Use it.
22915 (mark_vectorlike): New function.
22916 (mark_object) <FRAMEP, WINDOWP, BOOL_VECTOR_P, VECTORP>: Use it.
22917 (mark_terminals): Use it.
22918 (Fmake_bool_vector, Fmake_char_table, make_sub_char_table)
22919 (Fmake_byte_code): Use XSETPVECTYPE.
22920
22921 * frame.c (Fframe_parameters): Minor simplification.
22922
22923 * insdel.c (adjust_markers_for_insert): Generalize assertion checks.
22924
22925 * marker.c (Fmarker_buffer): Make test for odd case into a failure.
22926
22927 * buffer.c (Fget_buffer_create, init_buffer_once):
22928 * lread.c (defsubr):
22929 * window.c (Fcurrent_window_configuration): Use XSETPVECTYPE.
22930
22931 * lisp.h (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Don't let them be
22932 defined differently in the m/*.h files.
22933 (XCHAR_TABLE, XBOOL_VECTOR): Add assertion checking.
22934 (XSETPVECTYPE): New macro.
22935 (XSETPSEUDOVECTOR): Use it.
22936
22937 * buffer.c (syms_of_buffer) <local-abbrev-table>: Move from abbrev.c.
22938 (DEFVAR_PER_BUFFER, defvar_per_buffer): Move from lisp.h and lread.c.
22939
22940 * lisp.h (defvar_per_buffer, DEFVAR_PER_BUFFER):
22941 * lread.c (defvar_per_buffer):
22942 * abbrev.c (syms_of_abbrev) <local-abbrev-tabl>: Move to buffer.c.
22943
22944 * window.c (candidate_window_p): Only consider as visible frames that
22945 are on the same terminal.
22946
22947 * m/ibms390x.h (MARKBIT): Remove unused macro.
22948
22949 2007-10-01 Juanma Barranquero <lekktu@gmail.com>
22950
22951 * lread.c (Fload): Fix typo in docstring.
22952
22953 2007-10-01 Michaël Cadilhac <michael@cadilhac.name>
22954
22955 * floatfns.c (Fexpt): Manually check for overflows, so that a power
22956 of a non-zero value can't yield zero.
22957
22958 2007-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
22959
22960 * term.c (term_clear_mouse_face, term_mouse_highlight)
22961 (tty_write_glyphs_with_face): Only define is HAVE_GPM.
22962
22963 * print.c (safe_debug_print): Use XHASH.
22964
22965 * lisp.h (DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
22966 Lisp elements such as tags.
22967 (XHASH): New macro.
22968 (EQ): Use it.
22969 (SREF, SSET, STRING_COPYIN): Use SDATA.
22970 (VOID_TO_LISP, CVOID_TO_LISP, LISP_TO_VOID, LISP_TO_CVOID): Remove.
22971
22972 * alloc.c (mark_terminal): Remove left-over declaration.
22973 (enum mem_type): Replace all vector subtypes -> MEM_TYPE_VECTORLIKE.
22974 (allocate_vectorlike): Remove type argument. Adjust callers.
22975 (live_vector_p, mark_maybe_pointer, valid_lisp_object_p):
22976 Only handle the one remaining MEM_TYPE_VECTORLIKE.
22977
22978 * alloc.c (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): New macros
22979 to avoid unnecessary BLOCK_INPUTs when SYNC_INPUT is used.
22980 (xmalloc, xrealloc, xfree, lisp_malloc, lisp_free, lisp_align_malloc)
22981 (lisp_align_free, make_interval, allocate_string, allocate_string_data)
22982 (make_float, Fcons, allocate_vectorlike, Fmake_symbol, allocate_misc):
22983 Use them.
22984
22985 * xfaces.c (load_face_font, free_realized_face, clear_face_gcs):
22986 Don't let signal handlers run when a GC is freed but not yet NULL'ed.
22987 (x_free_gc): Remove BLOCK_INPUT since it's now redundant.
22988
22989 2007-09-28 Dan Nicolaescu <dann@ics.uci.edu>
22990
22991 * Makefile.in (lisp, shortlisp): Delete server.elc, it is not
22992 loaded by default.
22993
22994 2007-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
22995
22996 * term.c (Fgpm_mouse_start): Don't signal an error if already activated
22997 on this tty.
22998 (Fgpm_mouse_stop): Only deactivate if it was activated on this tty.
22999
23000 * term.c (mouse_face_window): Rename from Qmouse_face_window.
23001 Update all users.
23002 (handle_one_term_event): Use Gpm_DrawPointer.
23003 (Fgpm_mouse_start): Rename from Fterm_open_connection.
23004 Signal errors instead of returning nil. Always return nil.
23005 (Fgpm_mouse_stop): Rename from Fterm_close_connection.
23006 Make it a noop if gpm-mouse was not activated.
23007 (syms_of_term): Update names.
23008
23009 2007-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
23010
23011 * sysdep.c (narrow_foreground_group, widen_foreground_group): Static.
23012 (init_sys_modes): Check that gpm_tty is the current tty.
23013
23014 * alloc.c (allocate_terminal): Set the vector size to only count the
23015 lisp fields. Initialize those to nil.
23016 (mark_object): Don't treat terminals specially.
23017 (mark_terminal): Remove.
23018 (mark_terminals): Use mark_object instead.
23019
23020 * termhooks.h (struct terminal): Move all Lisp_Object fields traced by
23021 the GC to the beginning.
23022
23023 * indent.h:
23024 * indent.c: Use EMACS_INT for ints coming from Elisp data.
23025
23026 * indent.c (Fmove_to_column): Use EMACS_INT for buffer positions.
23027
23028 2007-09-25 Jason Rumney <jasonr@gnu.org>
23029
23030 * frame.c (make_terminal_frame): Remove special case for WINDOWSNT.
23031
23032 * w32console.c (create_w32cons_output): Remove.
23033
23034 * term.c (init_tty): Call init_sys_modes on WINDOWSNT also.
23035
23036 * sysdep.c (init_sys_modes): Use set_terminal_modes_hook.
23037 (reset_sys_modes): Use reset_terminal_modes_hook.
23038
23039 2007-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
23040
23041 * eval.c (do_autoload): Don't output any message.
23042
23043 2007-09-24 Juri Linkov <juri@jurta.org>
23044
23045 * emacs.c (standard_args): Change priority of "--no-splash"
23046 from 40 to 3. Add "--no-desktop" with the same priority.
23047
23048 2007-09-23 Dmitry Antipov <dmantipov@yandex.ru>
23049
23050 * alloc.c (gc_sweep): Check cons cell mark bits word by word
23051 and optimize the case where they are all 1.
23052
23053 2007-09-23 Johannes Weiner <hannes@saeurebad.de>
23054
23055 * lisp.h (abs): Define if not defined.
23056 * keyboard.c, sound.c, w32term.c, xfaces.c, xterm.c:
23057 Don't define `abs', since it's defined in lisp.h.
23058
23059 2007-09-22 Eli Zaretskii <eliz@gnu.org>
23060
23061 * term.c (DEV_TTY): New macro. Provide a definition for MS-Windows.
23062 (FRAME_TERMCAP_P) [WINDOWSNT]: Don't define to zero.
23063 (Fcontrolling_tty_p, Fresume_tty, dissociate_if_controlling_tty)
23064 (init_tty): Use DEV_TTY instead of "/dev/tty".
23065 [WINDOWSNT]: No need to protect from NAME arg being null.
23066
23067 2007-09-21 Dan Nicolaescu <dann@ics.uci.edu>
23068
23069 * term.c (Fsuspend_tty): Run suspend-tty-functions before cleaning
23070 up the tty state.
23071
23072 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
23073
23074 * termhooks.h (term_gpm): Delete. Use gpm_tty's NULLness instead.
23075 (gpm_tty): Change its type.
23076 * term.c (term_gpm): Delete. Use gpm_tty's NULLness instead.
23077 (gpm_tty): Change its type and initialize it.
23078 (Fterm_open_connection): Check the frame is indeed a tty.
23079 Use the new gpm_tty.
23080 (Fterm_close_connection): Use the new gpm_tty.
23081 * keyboard.c (tty_read_avail_input): Use the new gpm_tty.
23082 * sysdep.c (init_sys_modes): term_gpm -> gpm_tty.
23083
23084 2007-09-21 Juanma Barranquero <lekktu@gmail.com>
23085
23086 * w32term.c (x_draw_glyph_string): Use strike_through_color, not
23087 underline_color, to draw strike-through.
23088
23089 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
23090
23091 * lisp.h (allocate_terminal): Declare.
23092
23093 * window.c (candidate_window_p): Consider frames that are being placed
23094 by the user as somewhere between visible and iconified.
23095 (window_loop): Prefer windows on the current frame.
23096 (Fselect_window): Move the use of select-frame to the beginning so we
23097 can just delegate all the work (it'll call us back anyway).
23098
23099 * frame.c (Qdisplay_environment_variable):
23100 * frame.h (Qdisplay_environment_variable): Delete.
23101
23102 * .gdbinit (xbacktrace): Print the arg's address rather than the value
23103 of the first arg, since that value may be a union.
23104
23105 * callproc.c (child_setup, getenv_internal): Use the frame's `display'
23106 parameter rather than Qdisplay_environment_variable. If all else
23107 fails, look for DISPLAY in initial-environment.
23108
23109 2007-09-21 Glenn Morris <rgm@gnu.org>
23110
23111 * Makefile.in (emacstool): Remove target.
23112 (lisp, shortlisp): Remove termdev.elc.
23113
23114 2007-09-21 Markus Triska <markus.triska@gmx.at>
23115
23116 * xterm.c (x_delete_display): Compile session management conditionally.
23117
23118 2007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
23119
23120 * callproc.c (getenv_internal_1): New function.
23121 (getenv_internal): Use it.
23122 (Fgetenv_internal): Use it. Accept an env-list as optional arg.
23123
23124 * terminal.c (get_terminal): Don't accept ints to represent terminals.
23125 (Fterminal_name, Fterminal_parameters, Fterminal_parameter)
23126 (Fset_terminal_parameter): Work with dead terminals as well.
23127 (Fmodify_terminal_parameters): Remove.
23128
23129 * terminal.c (get_terminal): Handle terminals.
23130 Make sure the terminal returned is live.
23131 (create_terminal): Use allocate_terminal.
23132 (mark_terminals): Move to alloc.c.
23133 (delete_terminal): Use terminal->name as liveness status.
23134 NULL out fields after freeing their contents.
23135 Don't deallocate the object.
23136 (Fframe_terminal): Use FRAME_TERMINAL. Return the terminal object
23137 rather than an int.
23138 (Fterminal_live_p): Accept non-integer arguments.
23139 (Fterminal_list): Return terminal objects rather than an ints.
23140
23141 * alloc.c (enum mem_type): New member for `terminal' objects.
23142 (allocate_terminal): New function.
23143 (mark_maybe_pointer, valid_lisp_object_p, mark_object):
23144 Handle terminals.
23145 (mark_terminal): New fun.
23146 (mark_terminals): Move from terminal.c.
23147
23148 * term.c (get_tty_terminal): Don't treat output_initial specially.
23149 (Fsuspend_tty, Fresume_tty): Use terminal objects rather than ints.
23150 (delete_tty): Use terminal->name as liveness status.
23151
23152 * termhooks.h (struct terminal): Make it into a pseudovector.
23153 Remove `deleted' replaced by checking `name's nullness.
23154
23155 * print.c (print_object): Handle terminals.
23156
23157 * lisp.h (enum pvec_type): New `terminal' pseudovector.
23158 (XTERMINAL, XSETTERMINAL, TERMINALP, GC_TERMINALP): New macros.
23159
23160 * frame.c (make_terminal_frame):
23161 * keyboard.c (tty_read_avail_input):
23162 * w32term.c (x_delete_terminal):
23163 * xfns.c (Fx_create_frame, x_create_tip_frame):
23164 * xterm.c (x_delete_terminal): Use terminal->name as liveness status.
23165
23166 2007-09-20 Glenn Morris <rgm@gnu.org>
23167
23168 * process.c (Fmake_network_process): Doc fix.
23169
23170 2007-09-19 Jason Rumney <jasonr@gnu.org>
23171
23172 * dispextern.h (w32_init_fringe, mac_init_fringe): Declare rif argument.
23173
23174 2007-09-19 Michaël Cadilhac <michael@cadilhac.name>
23175
23176 * coding.c (detect_eol_type, detect_eol_type_in_2_octet_form):
23177 Fix a C warning regarding variable constness.
23178
23179 * xterm.c (handle_one_xevent): Fix a C warning.
23180
23181 2007-09-18 Jason Rumney <jasonr@gnu.org>
23182
23183 * w32fns.c (Fx_focus_frame): Rename from Fw32_focus_frame.
23184
23185 2007-09-17 Jan Djärv <jan.h.d@swipnet.se>
23186
23187 * gtkutil.c (gdpy_def): New variable.
23188 (xg_initialize): Initialize gdpy_def.
23189 (xg_display_close): If no other display exists, set gdpy_def to a
23190 new connection.
23191
23192 2007-09-16 Jan Djärv <jan.h.d@swipnet.se>
23193
23194 * gtkutil.c (xg_get_image_for_pixmap): Always create a GdkPixbuf
23195 when we have no file name for the icon.
23196 (xg_tool_bar_expose_callback): Remove.
23197 (xg_create_tool_bar): Don't connect expose signal to
23198 xg_tool_bar_expose_callback.
23199 (xg_get_file_with_chooser): Move GCPRO1 after declarations.
23200
23201 2007-09-16 Andreas Schwab <schwab@suse.de>
23202
23203 * alloc.c (reset_malloc_hooks): Set the hooks to the previous
23204 values instead of zapping them.
23205
23206 2007-09-14 Glenn Morris <rgm@gnu.org>
23207
23208 * fringe.c (init_fringe_bitmap) <swap_nibble>: Move to file scope.
23209 * gtkutil.c (xg_separator_p) <separator_names>: Move to file scope.
23210 * image.c (our_memory_fill_input_buffer) <buffer>: Move to file
23211 scope and rename to omfib_buffer for clarity.
23212 (gif_load) <interlace_start, interlace_increment>: Move to file scope.
23213
23214 2007-09-14 Kenichi Handa <handa@m17n.org>
23215
23216 * xterm.c (handle_one_xevent): Skip decoding if nbytes is zero.
23217
23218 2007-09-13 Jason Rumney <jasonr@gnu.org>
23219
23220 * fringe.c (w32_init_fringe, mac_init_fringe): Add rif argument.
23221
23222 * w32term.c (w32_term_init): Pass rif to w32_init_fringe.
23223
23224 * macterm.c (mac_initialize): Don't call mac_init_fringe here.
23225 (mac_term_init): Call here instead, passing rif.
23226
23227 2007-09-13 Glenn Morris <rgm@gnu.org>
23228
23229 * s/hpux.h: No longer define `static' as nothing.
23230
23231 2007-09-13 Johan Bockgård <bojohan@gnu.org>
23232
23233 * callint.c (Fcall_interactively): Remove unused var `fun'.
23234
23235 2007-09-12 Romain Francoise <romain@orebokech.com>
23236
23237 * window.c (prefer_window_split_horizontally, display_buffer):
23238 Revert 2007-09-08 change.
23239
23240 2007-09-12 Glenn Morris <rgm@gnu.org>
23241
23242 * alloca.c: Remove file.
23243 * Makefile.in (alloca): Do not undef.
23244 (allocaobj, alloca.o): Remove.
23245 (otherobj): Remove allocaobj.
23246 * keyboard.c (command_loop_1): Remove #ifdef C_ALLOCA block.
23247 * regex.c (C_ALLOCA): Remove all references and code that was only
23248 used when this was defined.
23249 * search.c (boyer_moore): Remove #ifdef C_ALLOCA block.
23250 * xmenu.c (xmenu_show): Remove #ifdef C_ALLOCA block.
23251 * m/ibms390x.h, m/sh3el.h (C_ALLOCA): Remove references to this.
23252
23253 * Makefile.in (SOURCES, unlock, relock): Delete.
23254
23255 * gtkutil.c (cnt): Rename to menu_grab_callback_cnt for clarity.
23256 (menu_grab_callback): All uses changed.
23257
23258 * xselect.c (cnt): Rename to x_reply_selection_request_cnt for clarity.
23259 (x_reply_selection_request): All uses changed.
23260
23261 2007-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
23262
23263 * lread.c (load_warn_old_style_backquotes): Change message to look
23264 better when it appears in the middle of byte-compiler messages.
23265
23266 2007-09-10 Dan Nicolaescu <dann@ics.uci.edu>
23267
23268 * s/darwin.h (MULTI_KBOARD): Only define for Carbon.
23269
23270 * xterm.c (x_create_terminal): Add comment.
23271
23272 * term.c (clear_tty_hooks, set_tty_hooks): Add comments.
23273
23274 2007-09-10 Richard Stallman <rms@gnu.org>
23275
23276 * xterm.c (x_term_init): Give error if can't open DISPLAY_NAME.
23277
23278 2007-09-10 Michaël Cadilhac <michael@cadilhac.name>
23279
23280 * lisp.h (struct Lisp_Subr): Rename `prompt' field to `intspec'.
23281 (DEFUN): Document `intspec', use it instead of `prompt'.
23282
23283 * eval.c (Fcommandp): Change `->prompt' to `->intspec'.
23284
23285 * data.c (Finteractive_form): If the interactive specification starts
23286 with a `(', use it as a Lisp form.
23287
23288 * fileio.c (Fset_file_modes): Add an interactive spec that reads a file
23289 name and file modes.
23290
23291 * callint.c (Fcall_interactively): Comment fixes.
23292
23293 2007-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
23294
23295 * callint.c (Fcall_interactively): Use Finteractive_form also for subrs
23296 and compiled functions.
23297
23298 2007-09-08 Fredrik Axelsson <f.axelsson@gmail.com>
23299
23300 * window.c (prefer_window_split_horizontally): New variable.
23301 (display_buffer): Consider splitting window horizontally depending
23302 on prefer_window_split_horizontally.
23303
23304 2007-09-08 Eli Zaretskii <eliz@gnu.org>
23305
23306 * sysdep.c [WINDOWSNT]: Don't include sysselect.h.
23307
23308 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
23309
23310 * s/cygwin.h (GC_MARK_STACK): Enable conservative stack marking.
23311
23312 * frame.c (x_set_frame_parameters): Check number is positive before
23313 using XFASTINT.
23314
23315 * window.c (freeze_window_start): Don't presume selected_window holds
23316 a window object.
23317 (Fdisplay_buffer): Remove `register' since `buffer' needs to be gcpro'd.
23318
23319 2007-09-07 Angelo Graziosi <Angelo.Graziosi@roma1.infn.it> (tiny change)
23320
23321 * term.c (dissociate_if_controlling_tty): Call setsid on CYGWIN.
23322
23323 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
23324
23325 * window.c (Vsplit_window_preferred_function): New var.
23326 (Fdisplay_buffer): Use it.
23327 (syms_of_window): Export, and initialize it.
23328
23329 2007-09-06 Pixel <pixel@mandriva.com> (tiny change)
23330
23331 * image.c (gif_load): Fix bug: Handle nonexistent colormap.
23332
23333 2007-09-06 Glenn Morris <rgm@gnu.org>
23334
23335 * gtkutil.c (menu_grab_callback) <cnt>:
23336 * xselect.c (x_reply_selection_request) <cnt>: Move static
23337 variable to file scope.
23338
23339 2007-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
23340
23341 * xdisp.c (redisplay_internal): Make sure Elisp code always sees
23342 consistent values of selected_frame and selected_window.
23343
23344 2007-09-04 Jason Rumney <jasonr@gnu.org>
23345
23346 * w32console.c (initialize_w32_display): Zero unused hooks.
23347
23348 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
23349
23350 * term.c (Vsuspend_tty_functions, Vresume_tty_functions)
23351 (syms_of_term, Fsuspend_tty, Fresume_tty): Undo previous change.
23352
23353 2007-09-04 Jason Rumney <jasonr@gnu.org>
23354
23355 * term.c (init_tty) [WINDOWSNT]: Add hooks that are not accessible
23356 in w32console.c. Set up input. Remove XXX comments that have been
23357 confirmed as correct.
23358
23359 * s/ms-w32.h (MULTI_KBOARD): Define.
23360
23361 * w32console.c (one_and_only_w32cons): Remove.
23362 (initialize_w32_display): Take terminal argument.
23363
23364 * term.c (init_tty) [WINDOWSNT]: Pass terminal to
23365 initialize_w32_display.
23366 (init_tty) [MULTI_KBOARD]: Include this code on WINDOWSNT too.
23367
23368 * termhooks.h (enum event_kind) <HORIZ_WHEEL_EVENT>: New event.
23369
23370 * keyboard.c (discard_mouse_events): Discard it.
23371 (make_lispy_event): Translate it to a lisp event.
23372 (lispy_wheel_names): Add wheel-left and right events.
23373 (syms_of_keyboard): Enlarge wheel_syms.
23374
23375 * w32fns.c (w32_wnd_proc) <WM_DROPFILES>: Merge with WM_MOUSEWHEEL.
23376 <WM_MOUSEHWHEEL>: Pass new system message to lisp.
23377
23378 * w32term.h (WM_MOUSEHWHEEL): Define if system headers don't.
23379
23380 * w32term.c (construct_mouse_wheel): Make HORIZ_WHEEL_EVENT
23381 from WM_MOUSEHWHEEL.
23382 (w32_read_socket) <WM_MOUSEHWHEEL>: Treat as WM_MOUSEWHEEL.
23383
23384 * w32fns.c (x_create_tip_frame) [MULTI_KBOARD]: Get keyboard from
23385 terminal.
23386
23387 * w32term.c (w32_create_terminal) [MULTI_KBOARD]: Create a new
23388 keyboard for the terminal.
23389
23390 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
23391
23392 * term.c (Vsuspend_tty_hook): Rename from Vsuspend_tty_functions.
23393 (Vresume_tty_hook): Rename from Vresume_tty_functions.
23394 (syms_of_term): Rename suspend-tty-functions to suspend-tty-hook
23395 and resume-tty-function to resume-tty-hook.
23396 (Fsuspend_tty, Fresume_tty): Use new names.
23397
23398 2007-09-02 Jan Djärv <jan.h.d@swipnet.se>
23399
23400 * gtkutil.c (update_frame_tool_bar): Handle stock name as a named icon
23401 if it starts with "n:".
23402
23403 2007-08-31 Jan Djärv <jan.h.d@swipnet.se>
23404
23405 * gtkutil.c (update_frame_tool_bar): Initialize wbutton to NULL.
23406
23407 2007-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
23408
23409 * frame.h:
23410 * frame.c (Qterm_environment_variable): Remove.
23411 (syms_of_frame): Don't init and staticpro it.
23412
23413 * callproc.c (getenv_internal): Remove special case for $TERM.
23414
23415 * callproc.c (Vinitial_environment): New variable.
23416 (set_initial_environment): Initialize it.
23417 (syms_of_callproc): Declare it.
23418 (child_setup): Don't mess with TERM via Qterm_environment_variable; the
23419 TERM under which a process runs is never related to the TERM in which
23420 Emacs is running.
23421
23422 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
23423
23424 * config.in (HAVE_WINDOW_SYSTEM): Don't undef MULTI_KBOARD here...
23425 * s/darwin.h: ... do it here.
23426
23427 2007-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
23428
23429 * lisp.h (set_initial_environment): Rename from set_global_environment.
23430
23431 * Makefile.in (${etc}DOC): Re-add a ${EXEEXT} which seems to have been
23432 removed by mistake on the multi-tty branch.
23433
23434 * frame.c (make_terminal_frame): Yet Another Int/Lisp_Object Mixup.
23435 (Fmodify_frame_parameters): Return a value.
23436
23437 * image.c (png_load): Comment-out var only used in commented-out code.
23438
23439 * term.c (mark_ttys): Don't bother checking top_frame (incorrectly)
23440 before passing it to mark_object.
23441
23442 * xfaces.c (internal_resolve_face_name): Return a value.
23443 (internal_resolve_face_name, resolve_face_name_error): Comment out.
23444
23445 * xfns.c (check_x_display_info): Yet Another Int/Lisp_Object Mixup.
23446 (x_icon): Comment-out var only used in commented-out code.
23447
23448 2007-08-29 Romain Francoise <romain@orebokech.com>
23449
23450 * keyboard.c (Fset_input_mode): Don't call `Fset_quit_char' if
23451 QUIT hasn't been provided.
23452
23453 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
23454
23455 * callproc.c (child_setup, getenv_internal): Use the
23456 display-environment-variable and term-environment-variable frame params.
23457 (set_initial_environment): Initialise Vprocess_environment.
23458
23459 * config.in: Disable multi-keyboard support on a mac.
23460
23461 * frame.c (Qterm_environment_variable)
23462 (Qdisplay_environment_variable): New variables.
23463 (syms_of_frame): Intern and staticpro them.
23464 (Fmake_terminal_frame): Disable output method test.
23465
23466 * frame.h: Declare them here.
23467
23468 * macfns.c (x_set_mouse_color): Get rif from the frame.
23469 (x_set_tool_bar_lines): Don't use updating_frame.
23470 (mac_window): Add 2 new parameters for consistency with other systems.
23471 (Fx_create_frame): Fix doc string. Rename the parameter. Set the
23472 frame parameters following what is done in X11 and w32. Don't use
23473 FRAME_MAC_DISPLAY_INFO.
23474 (Fx_open_connection, start_hourglass): Remove window-system check.
23475 (x_create_tip_frame): Get the keyboard from the terminal.
23476
23477 * macmenu.c: Reorder includes.
23478 (Fx_popup_menu): Use terminal specific mouse_position_hook.
23479
23480 * macterm.c (XTset_terminal_modes, XTreset_terminal_modes): Add a
23481 terminal parameter.
23482 (x_clear_frame): Add a frame parameter.
23483 (note_mouse_movement): Get rif from the frame.
23484 (mac_term_init): Initialize the terminal.
23485 (mac_initialize): Make static and move terminal initialization ...
23486 (mac_create_terminal): ... to this new function.
23487
23488 * macterm.h (struct mac_display_info): Add terminal.
23489 (mac_initialize): Delete declaration.
23490
23491 * puresize.h (BASE_PURESIZE): Increase base value to 1164000.
23492
23493 * sysdep.c: Comment out text after #endif.
23494
23495 * term.c (init_tty): Only use terminal->kboard when MULTI_KBOARD
23496 is defined. Better initialize ttys in windows. Use terminal
23497 specific mouse_position_hook.
23498
23499 * termhooks.h (union display_info): Add mac_display_info.
23500
23501 * w32fns.c (Fx_create_frame): Use kboard from the terminal.
23502 Set the default minibuffer frame, window_system and the rest of the
23503 frame parameters following what is done in X11.
23504
23505 * w32term.c (w32_initialize): Make static.
23506
23507 * xselect.c (x_handle_selection_clear): Only access
23508 terminal->kboard when MULTI_KBOARD is defined.
23509
23510 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Define here.
23511 (SYSTEM_PURESIZE_EXTRA): Only define on Carbon.
23512
23513 2007-08-29 Jason Rumney <jasonr@gnu.org>
23514
23515 * frame.c (Fdelete_frame): Only get kboard when MULTI_KBOARD defined.
23516 (make_terminal_frame) [WINDOWSNT]: Initialize terminal.
23517
23518 * fringe.c (w32_init_fringe w32_reset_fringes) [HAVE_NTGUI]:
23519 (mac_init_fringe) [MAC_OS]: Get rif from selected_frame.
23520
23521 * keyboard.c (restore_kboard_configuration): Only define when
23522 MULTI_KBOARD defined.
23523
23524 * makefile.w32-in: Update dependancies from Makefile.in.
23525 (OBJ1): Add terminal.$(O)
23526
23527 * term.c (dissociate_if_controlling_tty) [WINDOWSNT]:
23528 Don't define function body.
23529 (init_tty) [WINDOWSNT]: Use selected_frame for initializing.
23530
23531 * termhooks.h (display_info) [WINDOWSNT]: Add w32.
23532
23533 * w32.c (request_sigio, unrequest_sigio): Remove.
23534
23535 * w32console.c (w32con_move_cursor, w32con_clear_to_end)
23536 (w32con_clear_frame, w32con_clear_end_of_line)
23537 (w32con_ins_del_lines, w32con_insert_glyphs, w32con_write_glyphs)
23538 (w32con_delete_glyphs, w32con_set_terminal_window)
23539 (scroll_line, w32_sys_ring_bell): Add frame arg.
23540 (w32con_set_terminal_modes, w32con_reset_terminal_modes):
23541 Add terminal arg.
23542 (PICK_FRAME): Remove.
23543 (w32con_write_glyphs): Use frame specific terminal coding.
23544 (one_and_only_w32cons): New global variable.
23545 (initialize_w32_display): Use it for storing hooks.
23546 (create_w32cons_output): New function.
23547
23548 * w32inevt.c, w32inevt.h (w32_console_read_socket): Make first
23549 arg a frame.
23550
23551 * w32fns.c (x_create_tip_frame): Set terminal and ref count.
23552 Set window_system.
23553 (x_set_tool_bar_lines): Don't use updating_frame.
23554 (Fx_create_frame): Set terminal and ref count.
23555 (Fx_open_connection): Remove window-system check.
23556
23557 * w32menu.c (Fx_popup_menu): Use terminal specific mouse_position_hook.
23558
23559 * w32term.c (w32_term_init): Call add_keyboard_wait_descriptor.
23560 (w32_set_terminal_modes, w32_reset_terminal_modes): Add terminal arg.
23561 (x_clear_frame, x_delete_glyphs, w32_ring_bell, x_ins_del_lines):
23562 Add frame arg.
23563 (x_delete_terminal, w32_create_terminal): New functions.
23564 (w32_term_init): Create a terminal.
23565 (w32_initialize): Move terminal specific initialization to
23566 w32_create_terminal.
23567
23568 * w32term.h (x_output): Remove foreground_pixel and background_pixel.
23569 (w32_clear_rect, w32_clear_area): Use background from frame.
23570 (w32_display_info): Add terminal.
23571 (w32_sys_ring_bell, x_delete_display): Declare here.
23572
23573 * xdisp.c (display_menu_bar) [HAVE_NTGUI]: Check frame type.
23574
23575 * s/ms-w32.h (SYSTEM_PURESIZE_EXTRA): Bump to 50k.
23576
23577 2007-08-29 Kalle Olavi Niemitalo <kon@iki.fi> (tiny change)
23578
23579 * keyboard.c (interrupt_signal, handle_interrupt, Fset_quit_char):
23580 Fix get_named_tty calls for the controlling tty.
23581
23582 2007-08-29 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
23583
23584 * term.c (dissociate_if_controlling_tty) [USG]: Fix parse error.
23585
23586 2007-08-29 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
23587
23588 * term.c (tty_insert_glyphs): Add missing first parameter.
23589
23590 2007-08-29 Károly Lőrentey <karoly@lorentey.hu>
23591
23592 * buffer.c (Fbuffer_list, Fbury_buffer):
23593 Take frame->buried_buffer_list into account.
23594
23595 * cm.c (current_tty): New variable, for cmputc().
23596 (cmputc): Use it.
23597 (cmcheckmagic): Add tty parameter, look up terminal streams there.
23598 (calccost): Add tty parameter. Use emacs_tputs() instead of tputs().
23599 (cmgoto): Add tty parameter. Pass it on to calccost().
23600 Use emacs_tputs() instead of tputs().
23601
23602 * cm.h (emacs_tputs): New macro to set current_tty, and then call
23603 tputs().
23604 (current_tty): New variable, for cmputc().
23605 (cmcheckmagic, cmputc, cmgoto): Add prototypes.
23606
23607 * eval.c (unwind_to_catch): Don't call x_fully_uncatch_errors.
23608 (internal_condition_case, internal_condition_case_1)
23609 (internal_condition_case_2): Don't abort when x_catching_errors.
23610
23611 * fns.c (Fyes_or_no_p): Don't try to open an X dialog on tty terminals.
23612 (Fy_or_n_p): Likewise. Use temporarily_switch_to_single_kboard to
23613 prevent crashes caused by bogus longjmps in read_char.
23614
23615 * keymap.h (Fset_keymap_parent): Add EXFUN.
23616
23617 * macterm.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL)
23618 * w32term.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
23619 Remove redundant definition.
23620
23621 * macfns.c (x_set_mouse_color, x_make_gc):
23622 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
23623
23624 * w32term.c (x_free_frame_resources):
23625 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
23626 (w32_initialize): Use the accessor macros for terminal characteristics.
23627
23628 * macterm.c (mac_initialize): Use Fset_input_interrupt_mode.
23629 Use the accessor macros for terminal characteristics.
23630 * msdos.c (internal_terminal_init): Use the accessor macros for
23631 terminal characteristics.
23632 (ScreenVisualBell, internal_terminal_init):
23633 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
23634
23635 * termopts.h (no_redraw_on_reenter): Declare.
23636
23637 * alloc.c (emacs_blocked_malloc): Disable mallopt call.
23638 (mark_terminals, mark_ttys): Declare.
23639 (Fgarbage_collect): Call them.
23640 (mark_object): Mark buried_buffer_list.
23641
23642 * prefix-args.c: Include stdlib.h for exit.
23643
23644 * syssignal.h: Add comment.
23645
23646 * indent.c: Include stdio.h.
23647
23648 * window.h (Vinitial_window_system): Declare.
23649 (Vwindow_system): Delete declaration.
23650
23651 * fontset.c (Finternal_char_font): Use FRAME_RIF.
23652
23653 * image.c (lookup_image): Don't initialize `c' until the xasserts
23654 have been run.
23655
23656 * gtkutil.c (xg_create_frame_widgets): Use FRAME_BACKGROUND_PIXEL and
23657 FRAME_FOREGROUND_PIXEL.
23658
23659 * print.c (print_preprocess): Don't lose print_depth levels while
23660 iterating.
23661
23662 * widget.c (update_from_various_frame_slots):
23663 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
23664
23665 * window.c (set_window_buffer): Don't call clear_mouse_face on tty
23666 frames.
23667 (window_internal_height): Remove bogus make_number call.
23668 (init_window_once): Call make_terminal_frame with two zero parameters.
23669
23670 * fileio.c (Fread_file_name): Update comment.
23671
23672 * callint.c (Fcall_interactively):
23673 Use temporarily_switch_to_single_kboard instead of single_kboard_state.
23674 Make sure it is correctly unwound.
23675
23676 * xsmfns.c (x_session_close): New function.
23677
23678 * coding.h (terminal_coding, safe_terminal_coding, keyboard_coding):
23679 Delete declarations.
23680
23681 * xterm.h: Remove declaration for x_fully_uncatch_errors.
23682 (x_output): Remove background_pixel and foreground_pixel fields.
23683 (x_display_info): Add new field TERMINAL. Remove KBOARD field.
23684 (x_delete_device, x_session_close): Declare.
23685
23686 * lread.c: Include setjmp.h. Update declaration of `read_char'.
23687 (read_filtered_event): Call `read_char' with a local
23688 `wrong_kboard_jmpbuf'.
23689
23690 * minibuf.c (read_minibuf): Call temporarily_switch_to_single_kboard.
23691 Don't call single_kboard_state. Use FRAME_RIF.
23692
23693 * process.c (Fmake_network_process): Don't unrequest_sigio on modern
23694 systems.
23695
23696 * lisp.h (set_process_environment): Rename to `set_global_environment'.
23697 (Fframe_with_environment, Fset_input_meta_mode)
23698 (Fset_quit_char): EXFUN.
23699 (x_create_device, tty_output, terminal, tty_display_info): Declare.
23700 (init_sys_modes, reset_sys_modes): Update prototypes.
23701 (init_all_sys_modes, reset_all_sys_modes): New prototypes.
23702
23703 * keyboard.h (struct kboard): Add new fields Vlocal_function_key_map,
23704 Vlocal_key_translation_map, and Vkeyboard_translate_table.
23705 (Vfunction_key_map, Vkeyboard_translate_table, single_kboard_state):
23706 Delete declarations.
23707 (Vfunction_key_map, Vkey_translation_map, push_kboard, pop_kboard)
23708 (temporarily_switch_to_single_kboard, tty_read_avail_input):
23709 New declarations.
23710
23711 * emacs.c (main): Don't call init_sys_modes(), the new term_init()
23712 already does that during init_display(). Call syms_of_keymap
23713 before syms_of_keyboard. Call `syms_of_terminal'.
23714 Call set_initial_environment, not set_process_environment.
23715 (shut_down_emacs): Call reset_all_sys_modes() instead of
23716 reset_sys_modes().
23717
23718 * xfaces.c (x_free_gc): Protect xassert with GLYPH_DEBUG.
23719 (internal_resolve_face_name, resolve_face_name_error): New functions.
23720 (resolve_face_name): Protect against loops and errors thrown by Fget.
23721 (realize_default_face): Don't use FRAME_FONT unless frame is an X frame.
23722 (Ftty_supports_face_attributes_p): Update tty_capable_p call.
23723
23724 * scroll.c: Replace CURTTY() with local variables throughout the
23725 file (where applicable).
23726 (calculate_scrolling, calculate_direct_scrolling)
23727 (scrolling_1, scroll_cost): Use the accessor macros for terminal
23728 characteristics.
23729
23730 * keymap.c (Vfunction_key_map): Remove.
23731 (Fdescribe_buffer_bindings): Update references to Vfunction_key_map.
23732 (syms_of_keymap): Remove DEFVAR for Vfunction_key_map.
23733 (Vkey_translation_map): Remove.
23734 (syms_of_keymap): Remove DEFVAR for key-translation-map.
23735 (Fdescribe_buffer_bindings)
23736 (read_key_sequence, init_kboard, syms_of_keyboard, mark_kboards):
23737 Update for terminal-local key-translation-map.
23738
23739 * Makefile.in (callproc.o): Update dependencies.
23740 (lisp, shortlisp): Add termdev.elc.
23741 (obj): Add terminal.o.
23742 (terminal.o): Add dependencies.
23743 [HAVE_CARBON]: Make terminal.o depend on macgui.h.
23744 (data.o, fns.o): Add termhooks.h dependency.
23745 (SOME_MACHINE_LISP): Add dnd.elc.
23746 (minibuf.o): Fix typo.
23747 Update dependencies.
23748
23749 * data.c (do_symval_forwarding, store_symval_forwarding)
23750 (find_symbol_value): Use the selected frame's keyboard, not
23751 current_kboard.
23752
23753 * .gdbinit (init_sys_modes): Use Vinitial_window_system instead of
23754 Vwindow_system.
23755
23756 * xmenu.c (Fx_menu_bar_open) [USE_X_TOOLKIT, USE_GTK]: Rename from
23757 Fmenu_bar_open.
23758 (syms_of_xmenu): Update defsubr.
23759 (mouse_position_for_popup, Fx_popup_menu)
23760 (Fx_popup_dialog, x_activate_menubar, update_frame_menubar)
23761 (set_frame_menubar, free_frame_menubar)
23762 (create_and_show_popup_menu, xmenu_show)
23763 (create_and_show_dialog, xdialog_show, xmenu_show): Abort if not
23764 an X frame.
23765
23766 * xselect.c (x_own_selection): Abort if not an X frame.
23767 (some_frame_on_display): Check if it is an X frame.
23768 (x_handle_selection_clear): Deal with MULTI_KBOARD.
23769
23770 * coding.c: Include frame.h and termhooks.h.
23771 (terminal_coding, keyboard_coding): Delete.
23772 (Fset_terminal_coding_system_internal)
23773 (Fset_keyboard_coding_system_internal)
23774 (Fkeyboard_coding_system)
23775 (Fterminal_coding_system): Add a terminal parameter.
23776 Get terminal_coding from the terminal.
23777 (init_coding_once): Don't call setup_coding_system here.
23778
23779 * dispextern.h (set_scroll_region, turn_off_insert)
23780 (turn_off_highlight, background_highlight, clear_end_of_line_raw)
23781 (tty_clear_end_of_line, tty_setup_colors)
23782 (delete_tty, updating_frame)
23783 (produce_special_glyphs, produce_glyphs, write_glyphs)
23784 (insert_glyphs): Remove.
23785 (raw_cursor_to, clear_to_end, tty_turn_off_insert)
23786 (tty_turn_off_highlight, get_tty_size): Add declaration.
23787 (tabs_safe_p, init_baud_rate, get_tty_terminal): Update prototypes.
23788
23789 * frame.h (enum output_method): Add output_initial.
23790 (struct x_output): Delete.
23791 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
23792 Access foreground_pixel and background_pixel directly from the frame.
23793 (tty_display): Delete.
23794 (struct frame): Add buried_buffer_list, foreground_pixel,
23795 background_pixel and terminal. Delete kboard.
23796 (union output_data): Add tty.
23797 (FRAME_KBOARD): Get the kboard from the terminal.
23798 (FRAME_INITIAL_P): New macro.
23799 (Qtty, Qtty_type, Qterminal, Qterminal_live_p, Qenvironment)
23800 (Qterm_environment_variable, Qdisplay_environment_variable)
23801 (make_terminal_frame, Qburied_buffer_list, Qwindow_system):
23802 New declarations.
23803
23804 * termchar.h (tty_output, tty_display_info): New structures.
23805 (tty_list): Declare.
23806 (FRAME_TTY, CURTTY): New macros.
23807 (must_write_spaces, min_padding_speed, fast_clear_end_of_line)
23808 (line_ins_del_ok, char_ins_del_ok, scroll_region_ok)
23809 (scroll_region_cost, memory_below_frame, fast_clear_end_of_line)
23810 (dont_calculate_costs, no_redraw_on_reenter): Remove declarations.
23811
23812 * callproc.c: Include frame.h and termhooks.h, for terminal
23813 parameters.
23814 (add_env): New function.
23815 (child_setup): Use it.
23816 (child_setup, getenv_internal): Handle the new Vprocess_environment.
23817 (getenv_internal): Fix get_terminal_param call.
23818 (Fgetenv_internal, egetenv): Update doc.
23819 (syms_of_callproc): Initialize Vprocess_environment to nil.
23820 Register and initialize them. Remove obsolete defvars. Update doc
23821 strings.
23822 (child_setup): Handle Vlocal_environment_variables.
23823 (getenv_internal): Add terminal parameter.
23824 Handle Vlocal_environment_variables.
23825 (Fgetenv_internal): Add terminal parameter.
23826 (child_setup, getenv_internal, Fgetenv_internal): Store the local
23827 environment in a frame (not terminal) parameter. Update doc strings.
23828 (set_initial_environment): Rename from set_global_environment.
23829 Store Emacs environment in initial frame parameter.
23830
23831 * xdisp.c (redisplay_internal): Update references to
23832 `previous_terminal_frame'.
23833 (display_mode_line, Fformat_mode_line): Replace calls to
23834 `push_frame_kboard' with `push_kboard'.
23835 (get_glyph_string_clip_rects): Add extra parentheses and
23836 braces to prevent compiler warnings.
23837 (calc_pixel_width_or_height): Add xassert to check that the
23838 frame is alive. Don't call `lookup_image' on a termcap frame.
23839 (message2_nolog, message3_nolog, redisplay_internal)
23840 (set_vertical_scroll_bar, redisplay_window, check_x_display_info)
23841 (x_set_scroll_bar_foreground, x_set_scroll_bar_background)
23842 (Fx_create_frame, Fxw_display_color_p, Fx_display_grayscale_p)
23843 (Fx_display_pixel_width, Fx_display_pixel_height)
23844 (Fx_display_planes, Fx_display_color_cells)
23845 (Fx_server_max_request_size, Fx_server_vendor, Fx_server_version)
23846 (Fx_display_screens, Fx_display_mm_height, Fx_display_mm_width)
23847 (Fx_display_backing_store, Fx_display_visual_class)
23848 (Fx_display_save_under, Fx_close_connection, x_create_tip_frame):
23849 Use FRAME_TERMINAL_P, FRAME_WINDOW_P, FRAME_TTY and FRAME_RIF.
23850
23851 * xfns.c (x_set_foreground_color x_set_background_color)
23852 (x_set_mouse_color, x_set_cursor_color, x_make_gc):
23853 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
23854 (Fx_create_frame, x_create_tip_frame, build_string, x_window)
23855 (Fx_create_frame, x_create_tip_frame): Don't create frames on a
23856 terminal that is being deleted.
23857 (Fx_create_frame): Use `store_frame_param' to set `window-system'
23858 frame parameter, and make sure it overrides any user-supplied setting.
23859 (Fx_close_connection, Fx_synchronize): Unify argument names with
23860 the rest of the DEFUNs.
23861
23862 * dispnew.c (Fsend_string_to_terminal): Update call to
23863 `get_tty_terminal'.
23864 (Fredraw_frame, Fsend_string_to_terminal)
23865 (Fsend_string_to_terminal, init_display): Use FRAME_RIF,
23866 FRAME_TERMCAP_P and FRAME_TTY.
23867 (window_change_signal): Don't believe width/height values that are
23868 impossibly small.
23869 (Vinitial_window_system): Rename from Vwindow_system.
23870 (termscript, Wcm, rif): Delete.
23871
23872 * termhooks.h (struct terminal): New struct containing the
23873 previously global text display hooks and new members NAME,
23874 DELETED and PARAM_ALIST.
23875 (FRAME_TERMINAL, TERMINAL_TERMINAL_CODING)
23876 (TERMINAL_KEYBOARD_CODING, TERMINAL_ACTIVE_P, FRAME_WINDOW_P)
23877 (FRAME_RIF): New macros.
23878 (get_terminal_param, get_device): New declarations.
23879 (termscript): Delete declaration.
23880
23881 * xterm.c (x_initialize): Use Fset_input_interrupt_mode.
23882 (XTflash, x_free_frame_resources, x_scroll_bar_create)
23883 (x_scroll_bar_set_handle): Use FRAME_BACKGROUND_PIXEL and
23884 FRAME_FOREGROUND_PIXEL.
23885 (x_fully_uncatch_errors): Disable definition.
23886 (x_scroll_bar_expose): Fix reference to foreground pixel.
23887 (XTread_socket): Disable loop on all X displays.
23888 (x_delete_terminal): Don't set terminal->deleted and let
23889 delete_terminal delete the frames on the terminal.
23890 (x_delete_display): Doc update to reflect changes in
23891 delete_terminal.
23892 (x_display_info) <terminal>: Move member earlier in the struct.
23893 (deleting_tty): Remove old variable.
23894 (Fsuspend_tty): Call clear_tty_hooks.
23895 (Fresume_tty, init_tty): Call set_tty_hooks.
23896 (Ftty_display_color_p, Ftty_display_color_cells): Don't throw
23897 errors on X frames.
23898 (x_catch_errors_unwind): Abort if x_error_message is NULL.
23899 (handle_one_xevent): Initialize `f' to NULL.
23900 (x_delete_terminal, x_create_terminal): New functions.
23901 (XTset_terminal_modes, XTreset_terminal_modes)
23902 (XTread_socket, x_connection_closed, x_term_init)
23903 (x_term_init, x_delete_display): Add terminal parameter.
23904 (x_term_init) [!HAVE_GTK_MULTIDISPLAY]: Refuse to create secondary
23905 X connections.
23906
23907 * frame.c: Include termchar.h.
23908 (Qterminal, Qterminal_live_p, Qburied_buffer_list, Qtty, Qtty_type)
23909 (Qwindow_system, Qenvironment, Qterm_environment_variable)
23910 (Qdisplay_environment_variable): New vars.
23911 (Fframep): Deal with output_initial.
23912 (Fframe-live-p): Doc fix.
23913 (Fwindow-system): New function.
23914 (x_set_screen_gamma, store_frame_param): Fix compilation errors.
23915 (make_terminal_frame): Don't create frames on a terminal that is
23916 being deleted. Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
23917 (store_frame_param): Check for found_for_frame before calling XFRAME.
23918 (Fmake_terminal_frame): Handle NULL tty names correctly.
23919 (syms_of_frame): Enhance doc string of `default-frame-alist'.
23920 (Fdelete_frame): Remove unused variable `count'. Don't allow other
23921 frames to refer to a deleted frame in their 'environment parameter.
23922 (Fframe_with_environment): New function.
23923 (syms_of_frame): Defsubr it. Initialize and staticpro Qenvironment.
23924 (get_future_frame_param): New function.
23925 (Fmake_terminal_frame): Use it.
23926 (x_set_frame_parameters, x_set_screen_gamma): Use FRAME_RIF.
23927
23928 * sysdep.c (init_sys_modes, reset_sys_modes): Update for renames.
23929 * sysdep.c (reset_sys_modes): Update for renames.
23930
23931 * keyboard.c (tty_read_avail_input): New function.
23932 (Fset_input_interrupt_mode, Fset_output_flow_control): New functions.
23933 (syms_of_keyboard): Defsubr them.
23934 (Fset_input_meta_mode, Fset_quit_char): New functions.
23935 (Fset_input_mode): Split to above functions.
23936 (read_char_minibuf_menu_prompt): Add wrong_kboard_jmpbuf
23937 parameter. Use it in call to `read_char'.
23938 (read_char): Declare. Update call to `read_char_minibuf_menu_prompt'.
23939 Set wrong_kboard_jmpbuf correctly in recursive calls.
23940 Use current_kboard to access Vkeyboard_translate_table.
23941 Enhance comment before extra longjmp to wrong_kboard_jmpbuf.
23942 Add wrong_kboard_jmpbuf parameter to allow for recursive calls.
23943 Update longjmp invocations. Remember the original current_kboard,
23944 and longjmp to `wrong_kboard_jmpbuf' when a filter, timer or sentinel
23945 changes it. Comment out unnecessary calls to
23946 `record_single_kboard_state' and `any_kboard_state'.
23947 Update recursive calls.
23948 (wrong_kboard_jmpbuf): Remove global variable.
23949 (read_key_sequence): Remove unused variable wrong_kboard_jmpbuf.
23950 Handle deleted interrupted_kboards correctly; that is a legal
23951 case. Add `wrong_kboard_jmpbuf' local variable. Update setjmp
23952 and read_char calls. Abort if interrupted_kboard died in read_char.
23953 (any_kboard_state, single_kboard_state)
23954 (push_frame_kboard): Remove function.
23955 (pop_kboard): Switch out of single_kboard mode if the kboard has
23956 been deleted. Remove unused variable. Help debugging by not
23957 changing current_kboard unnecessarily. Set current_kboard to the
23958 kboard of the selected frame when the stored kboard object has
23959 been deleted before pop_kboard.
23960 (temporarily_switch_to_single_kboard): Change first parameter to a
23961 frame pointer. Throw an error when caller wants to change kboards
23962 while in single_kboard mode. Don't push_kboard if we weren't in
23963 single kboard state. Don't pop_kboard if we popped into any
23964 kboard state.
23965 (restore_kboard_configuration): Abort if pop_kboard changed the
23966 kboard in single_kboard mode. Call pop_kboard only after setting
23967 up single_kboard mode.
23968 (Frecursive_edit): Switch to single_kboard mode only in nested
23969 command loops.
23970 (cmd_error, command_loop, command_loop_1, timer_check):
23971 Comment out unnecessary call to `any_kboard_state' and
23972 `record_single_kboard_state'.
23973 (delete_kboard): Exit single_kboard mode if we have just deleted
23974 that kboard. Use FRAME_KBOARD.
23975 (interrupt_signal): Use `Fkill_emacs' to exit Emacs, not
23976 `fatal_error_signal'.
23977 (record_single_kboard_state): Don't push_kboard if we weren't in
23978 single kboard state. Don't pop_kboard if we popped into any
23979 kboard state.
23980 (push_frame_kboard): Rename to push_kboard.
23981 (kbd_buffer_get_event): Use FRAME_TERMINAL.
23982 (read_avail_input): Read input from all terminals.
23983 (mark_kboards): Also mark Vkeyboard_translate_table.
23984 (kbd_buffer_store_event_hold): Simplify condition.
23985 (read_key_sequence): Reinitialize fkey and keytran at each replay.
23986 (Vkeyboard_translate_table): Move to struct kboard.
23987 (init_kboard): Initialize Vkeyboard_translate_table.
23988 (syms_of_keyboard): Use DEFVAR_KBOARD to define
23989 Vkeyboard_translate_table. Update doc strings. Update docs of
23990 local-function-key-map and function-key-map.
23991
23992 * terminal.c: New file.
23993
23994 * term.c: Include errno.h.
23995 (Vring_bell_function, device_list, initial_device)
23996 (next_device_id, ring_bell, update_begin, update_end)
23997 (set_terminal_window, cursor_to, raw_cursor_to)
23998 (clear_to_end, clear_frame, clear_end_of_line)
23999 (write_glyphs, insert_glyphs, delete_glyphs, ins_del_lines)
24000 (Fdisplay_name, create_device, delete_device): Move to terminal.c.
24001 (syms_of_term): Move their initialization to terminal.c.
24002 (get_tty_terminal, Fdisplay_tty_type, Ftty_display_color_p)
24003 (Ftty_display_color_cells)
24004 (Ftty_no_underline, Fsuspend_tty, Fresume_tty, create_tty_output)
24005 (clear_tty_hooks, set_tty_hooks)
24006 (init_tty, maybe_fatal): New functions.
24007 (Ftty_type): Return nil if terminal is not on a tty instead of
24008 throwing an error. Doc update.
24009 (syms_of_term) <Vsuspend_tty_functions, Vresume_tty_functions>:
24010 Doc update. Initialize new subrs and variables.
24011 (delete_tty): Use terminal->deleted.
24012 (tty_set_terminal_modes): Rename from set_terminal_modes.
24013 (tty_reset_terminal_modes): Rename from reset_terminal_modes.
24014 (set_scroll_region): Rename to `tty_set_scroll_region'.
24015 (turn_on_insert): Rename to `tty_turn_on_insert'.
24016 (turn_off_insert): Rename to `tty_turn_off_insert'.
24017 (turn_off_highlight): Rename to `tty_turn_off_highlight'.
24018 (turn_on_highlight): Rename to `tty_turn_on_highlight'.
24019 (toggle_highligh): Rename to `tty_toggle_highlight'.
24020 (background_highlight): Rename to `tty_background_highlight'.
24021 (highlight_if_desired): Rename to `tty_highlight_if_desired'.
24022 (tty_ring_bell, tty_update_end, tty_set_terminal_window)
24023 (tty_set_scroll_region, tty_background_highlight)
24024 (tty_cursor_to, tty_raw_cursor_to, tty_clear_to_end)
24025 (tty_clear_frame, tty_clear_end_of_line, tty_write_glyphs)
24026 (tty_insert_glyphs, tty_delete_glyphs, tty_ins_del_lines)
24027 (term_get_fkeys, tty_setup_colors, dissociate_if_controlling_tty):
24028 Add static modifier.
24029 (tty_reset_terminal_modes, tty_set_terminal_window)
24030 (tty_set_scroll_region, tty_background_highlight)
24031 (tty_highlight_if_desired, tty_cursor_to)
24032 (tty_raw_cursor_to, tty_clear_to_end, tty_clear_frame)
24033 (tty_clear_end_of_line, tty_write_glyphs, tty_insert_glyphs)
24034 (tty_delete_glyphs, tty_ins_del_lines, turn_on_face): Update for
24035 renames.
24036
24037 2007-08-28 Jan Djärv <jan.h.d@swipnet.se>
24038
24039 * keyboard.c: Qrtl is new.
24040 (parse_tool_bar_item): Handle :rtl keyword.
24041 (syms_of_keyboard): Intern :rtl keyword.
24042
24043 * dispextern.h (enum tool_bar_item_idx): Add TOOL_BAR_ITEM_RTL_IMAGE.
24044
24045 * gtkutil.c (xg_tool_bar_expose_callback): Just do SET_FRAME_GARBAGED
24046 so no Lisp code is executed.
24047 (file_for_image, find_rtl_image): New functions.
24048 (xg_get_image_for_pixmap): Use file_for_image.
24049 (update_frame_tool_bar): If direction is RTL, use RTL image if
24050 defined. Use Gtk stock images if defined.
24051
24052 2007-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24053
24054 * macterm.c (x_draw_composite_glyph_string_foreground): Draw rectangle
24055 for nonexistent or zero-width glyph in composition glyph.
24056
24057 2007-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
24058
24059 * m/amdx86-64.h: Redirect to intel386.h if compiling for i386.
24060
24061 * xdisp.c (Finvisible_p): New function.
24062 (syms_of_xdisp): defsubr it.
24063
24064 2007-08-24 Juanma Barranquero <lekktu@gmail.com>
24065
24066 * image.c (syms_of_image) <image-library-alist, cross-disabled-images>:
24067 Doc fixes.
24068
24069 2007-08-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24070
24071 * mac.c [MAC_OSX] (select_and_poll_event, sys_select): Fix last changes.
24072
24073 2007-08-24 Martin Rudalics <rudalics@gmx.at>
24074
24075 * fileio.c (Finsert_file_contents): Consult CHARS_MODIFF to tell
24076 whether decoding has modified buffer contents.
24077
24078 2007-08-24 Jason Rumney <jasonr@gnu.org>
24079
24080 * image.c [HAVE_NTGUI]: Define dynamic loaded functions for SVG.
24081 (Qgdk_pixbuf, Qglib) [HAVE_NTGUI]: New symbols.
24082 (syms_of_image) [HAVE_NTGUI]: Intern and staticpro them.
24083 (init_svg_functions) [HAVE_NTGUI]: New function.
24084 (fn_g_type_init, fn_g_object_unref, fn_g_error_free): New #defines.
24085 (svg_load_image): Use them.
24086 (svg_load_image) [HAVE_NTGUI]: Implement background.
24087
24088 2007-08-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24089
24090 * Makefile.in (RSVG_LIBS, RSVG_CFLAGS): New variables.
24091 (ALL_CFLAGS): Use ${RSVG_CFLAGS} instead of @RSVG_CFLAGS@.
24092 (LIBX): Remove @RSVG_LIBS@.
24093 (LIBES): Add $(RSVG_LIBS).
24094
24095 * image.c (svg_load_image): Blend with specified background if exists.
24096 Use IMAGE_BACKGROUND. Add Mac OS Support.
24097
24098 * mac.c (wakeup_from_rne_enabled_p) [MAC_OSX]: Remove variable.
24099 (ENABLE_WAKEUP_FROM_RNE, DISABLE_WAKEUP_FROM_RNE) [MAC_OSX]:
24100 Remove macros.
24101 [MAC_OSX] (socket_callback): Do nothing.
24102 [MAC_OSX] (select_and_poll_event): Use CFRunLoopRunInMode instead of
24103 ReceiveNextEvent.
24104 [MAC_OSX] (sys_select): Likewise. Don't set context as argument to
24105 socket_callback.
24106 (mac_wakeup_from_rne) [MAC_OSX]: Do nothing.
24107
24108 2007-08-22 Glenn Morris <rgm@gnu.org>
24109
24110 * image.c (x_find_image_file): Search in etc/images/ rather than etc/.
24111
24112 2007-08-22 Paul Pogonyshev <pogonyshev@gmx.net>
24113
24114 * Makefile.in (ALL_CFLAGS, LIBX): Add RSVG_LIBS.
24115
24116 * image.c: Add support for SVG images. Some additional comments
24117 by Joakim Verona <joakim@verona.se>. When HAVE_RSVG is defined:
24118 (svg_image_p): New function to test for SVG image.
24119 (svg_load): New function to load SVG image.
24120 (svg_load_image): New function, helper for svg_load.
24121 (Qsvg): New Lisp_object.
24122 (svg_keyword_index): New enum.
24123 (svg_format): New static `image_keyword' struct.
24124 (svg_type): New static `image_type' struct.
24125 (librsvg/rsvg.h): Include it.
24126
24127 2007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
24128
24129 * lread.c (load_warn_old_style_backquotes): Fix up array size typo.
24130
24131 2007-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
24132
24133 * lread.c (Qold_style_backquotes): New var.
24134 (syms_of_lread): Init and staticpro it.
24135 (load_warn_old_style_backquotes): New fun.
24136 (Fload): Use them to warn about old style backquotes.
24137 (end_of_file_error, Fload): Remove unused vars.
24138
24139 * lisp.h (Fclear_face_cache, Fx_send_client_event): Declare.
24140
24141 * lread.c (Vold_style_backquotes): New var.
24142 (syms_of_lread): Init and export it to Elisp.
24143 (read1): Set it when we find an old-style (back)quote.
24144
24145 2007-08-22 Jason Rumney <jasonr@gnu.org>
24146
24147 * w32reg.c (SYSTEM_DEFAULT_RESOURCES): Add missing NULL terminator.
24148
24149 2007-08-22 Katsumi Yamaoka <yamaoka@jpl.org>
24150
24151 * puresize.h (BASE_PURESIZE): Increase to 1140000.
24152
24153 2007-08-19 Richard Stallman <rms@gnu.org>
24154
24155 * eval.c (Ffunction, Fquote): Signal error if not 1 argument.
24156
24157 2007-08-19 Andreas Schwab <schwab@suse.de>
24158
24159 * alloc.c (pure): Round PURESIZE up.
24160
24161 2007-08-17 Jan Djärv <jan.h.d@swipnet.se>
24162
24163 * xterm.c (handle_one_xevent): Remove check that mouse click is in
24164 active frame.
24165
24166 2007-08-16 Richard Stallman <rms@gnu.org>
24167
24168 * eval.c (Fcommandp): Add parens to clarify.
24169
24170 * minibuf.c (Fall_completions): Use enum for type of table.
24171
24172 * emacs.c (USAGE2): Improve text.
24173
24174 2007-08-15 Philippe Waroquiers <philippe.waroquiers@eurocontrol.int>
24175
24176 * term.c (tty_default_color_capabilities): Declare static
24177 variables in file scope, to avoid HPUX compiler problem.
24178
24179 2007-08-13 Jan Djärv <jan.h.d@swipnet.se>
24180
24181 * gtkutil.c (update_frame_tool_bar): Use -1 as index
24182 to gtk_toolbar_insert.
24183
24184 2007-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
24185
24186 * fileio.c (Finsert_file_contents): Yet Another Int/Lisp_Object Mixup.
24187
24188 * insdel.c (reset_var_on_error): New fun.
24189 (signal_before_change, signal_after_change):
24190 Use it to reset (after|before)-change-functions to nil in case of error.
24191 Bind inhibit-modification-hooks to t.
24192 Don't bind (after|before)-change-functions to nil while they run.
24193
24194 2007-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24195
24196 * xterm.c (x_draw_image_glyph_string): Adjust stipple origin when
24197 filling pixmap with stippled background.
24198
24199 2007-08-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24200
24201 * macterm.c [TARGET_API_MAC_CARBON] (mac_handle_window_event):
24202 Don't use invisible frame as parent window for repositioning.
24203
24204 2007-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
24205
24206 * print.c (new_backquote_output): Rename from old_backquote_output.
24207 (print): Inverse its logic (according to its name) so as to match the
24208 behavior of new_backquote_flag in lread.c.
24209
24210 2007-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24211
24212 * gmalloc.c (posix_memalign): New function.
24213
24214 * macterm.c (frame_highlight, frame_unhighlight): Don't call
24215 ActivateControl/DeactivateControl here.
24216 [USE_MAC_TOOLBAR] (free_frame_tool_bar): Suppress animation when
24217 frame-notice-user-settings is non-nil.
24218 [USE_MAC_FONT_PANEL] (mac_handle_font_event): Also record parameter
24219 for kEventParamFMFontStyle.
24220 [TARGET_API_MAC_CARBON] (mac_handle_keyboard_event): Don't check
24221 mac_pass_command_to_system and mac_pass_control_to_system here.
24222 (XTread_socket): Call ActivateControl/DeactivateControl here.
24223 (XTread_socket) [TARGET_API_MAC_CARBON]:
24224 Check mac_pass_command_to_system and mac_pass_control_to_system here.
24225 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Add further workaround
24226 for window repositioning.
24227
24228 2007-08-08 Glenn Morris <rgm@gnu.org>
24229
24230 * Replace `iff' in doc-strings and comments.
24231
24232 2007-08-07 Chong Yidong <cyd@stupidchicken.com>
24233
24234 * xdisp.c (move_it_by_lines): Remove incorrect optimization.
24235
24236 2007-08-07 Martin Rudalics <rudalics@gmx.at>
24237
24238 * fileio.c (Finsert_file_contents): Run format-decode and
24239 after_insert_file_functions on entire buffer when REPLACE is
24240 non-nil and inhibit modification_hooks and point_motion_hooks.
24241 For consistency, run after_insert_file_functions iff something
24242 got inserted. Move signal_after_change and update_compositions
24243 after code running after_insert_file_functions. Make sure that
24244 undo_list doesn't record intermediate steps of the decoding process.
24245
24246 2007-08-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24247
24248 * emacs.c (main)
24249 [HAVE_GTK_AND_PTHREAD && !SYSTEM_MALLOC && !DOUG_LEA_MALLOC]:
24250 Call malloc_enable_thread on interactive startup.
24251
24252 * gmalloc.c (_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
24253 (LOCK, UNLOCK, LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS)
24254 [USE_PTHREAD]: Conditionalize with it.
24255 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
24256 (malloc_atfork_handler_child, malloc_enable_thread) [USE_PTHREAD]:
24257 New functions.
24258
24259 2007-08-06 Chong Yidong <cyd@stupidchicken.com>
24260
24261 * xdisp.c (redisplay_window): When restoring original buffer
24262 position, make sure it is still valid.
24263
24264 * image.c (png_load): Ignore png-supplied background color.
24265
24266 2007-08-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24267
24268 * mac.c [TARGET_API_MAC_CARBON] (cfdate_to_lisp): Obtain microsec value.
24269 Use kCFAbsoluteTimeIntervalSince1970.
24270
24271 * macmenu.c (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]:
24272 New variable.
24273 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Set it if dialog
24274 event loop should be quit.
24275 [TARGET_API_MAC_CARBON] (create_and_show_dialog) [!MAC_OSX]:
24276 Quit dialog event loop if quit_dialog_event_loop is set.
24277
24278 * macselect.c [!TARGET_API_MAC_CARBON]: Include Scrap.h.
24279 (Selection): New typedef. Use instead of ScrapRef.
24280 (mac_get_selection_from_symbol): Rename from get_scrap_from_symbol.
24281 (mac_valid_selection_target_p): Rename from valid_scrap_target_type_p.
24282 (mac_clear_selection): Rename from clear_scrap.
24283 (get_flavor_type_from_symbol): New argument SEL and subsume function of
24284 scrap_has_target_type. All uses changed.
24285 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
24286 (mac_selection_has_target_p): New functions.
24287 (mac_put_selection_value): Rename from put_scrap_string.
24288 (mac_get_selection_value): Rename from get_scrap_string.
24289 (mac_get_selection_target_list): Rename from get_scrap_target_type_list.
24290 (put_scrap_private_timestamp, scrap_has_target_type)
24291 (get_scrap_private_timestamp): Remove functions.
24292 (SCRAP_FLAVOR_TYPE_EMACS_TIMESTAMP): Remove define.
24293 (x_own_selection, x_get_local_selection):
24294 Use mac_valid_selection_value_p.
24295 (x_own_selection): Don't use put_scrap_private_timestamp.
24296 Record OWNERSHIP-INFO into Vselection_alist instead.
24297 (x_get_local_selection): Don't check type if request is local.
24298 (Fx_selection_owner_p): Don't use get_scrap_private_timestamp.
24299 Detect ownership change with OWNERSHIP-INFO in Vselection_alist instead.
24300
24301 2007-08-04 Jan Djärv <jan.h.d@swipnet.se>
24302
24303 * gtkutil.c (xg_tool_bar_callback): Generate two TOOL_BAR_EVENT:s,
24304 add comment explaining why.
24305
24306 2007-08-03 Richard Stallman <rms@gnu.org>
24307
24308 * fileio.c (Fvisited_file_modtime): Use make_time.
24309
24310 2007-08-01 Ryo Yoshitake <ryo@shiftmode.net> (tiny change)
24311
24312 * mac.c (init_mac_osx_environment): Adjust load-path on self-contained
24313 build.
24314
24315 2007-07-31 Stefan Monnier <monnier@iro.umontreal.ca>
24316
24317 * gtkutil.c (xg_tool_bar_callback): Generate a single TOOL_BAR_EVENT.
24318
24319 2007-07-30 Katsumi Yamaoka <yamaoka@jpl.org>
24320
24321 * puresize.h (BASE_PURESIZE): Increase to 1130000.
24322
24323 2007-07-30 Richard Stallman <rms@gnu.org>
24324
24325 * lread.c (readevalloop, read1): Treat NBSP as whitespace.
24326
24327 2007-07-29 Jan Djärv <jan.h.d@swipnet.se>
24328
24329 * gmalloc.c (__malloc_initialize): Remove pthread_once. Not needed.
24330
24331 2007-07-28 Nick Roberts <nickrob@snap.net.nz>
24332
24333 * xdisp.c (decode_mode_spec): Use '@' instead of 'R' to test for
24334 remote default-directory.
24335
24336 * buffer.c (mode-line-format): Update doc string.
24337
24338 2007-07-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24339
24340 * w32term.c (w32_draw_fringe_bitmap): Extend fringe background to
24341 scroll bar gap.
24342 (x_scroll_bar_create): Set bar->fringe_extended_p.
24343 (w32_set_vertical_scroll_bar): Put leftmost/rightmost scroll bars
24344 on frame edge. Check fringe background extension. Don't clear
24345 extended fringe background area.
24346
24347 * w32term.h (struct scroll_bar): New member fringe_extended_p.
24348 (w32_fill_area): Enclose multiple statements with do ... while (0).
24349
24350 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
24351 Extend fringe background to scroll bar gap.
24352 (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]:
24353 Set bar->fringe_extended_p.
24354 (XTset_vertical_scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
24355 Put leftmost/rightmost scroll bars on frame edge. Check fringe
24356 background extension. Don't clear extended fringe background area.
24357
24358 * xterm.h (struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
24359 New member fringe_extended_p.
24360
24361 2007-07-25 Glenn Morris <rgm@gnu.org>
24362
24363 * Relicense all FSF files to GPLv3 or later.
24364
24365 * COPYING: Switch to GPLv3.
24366
24367 2007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
24368
24369 * eval.c (Fcommandp): Pay attention to the `interactive-form' property.
24370
24371 * data.c (Finteractive_form): Check for the presence of an
24372 `interactive-form' symbol property more thoroughly.
24373
24374 * data.c (Finteractive_form): Use an `interactive-form' property if
24375 present, analogous to the function-documentation property.
24376
24377 2007-07-24 Jason Rumney <jasonr@gnu.org>
24378
24379 * w32fns.c (x_real_positions): Get real position from OS instead of
24380 calculating it.
24381
24382 2007-07-23 Jason Rumney <jasonr@gnu.org>
24383
24384 * filelock.c (current_lock_owner): Allow for @ sign in username.
24385
24386 2007-07-22 Nick Roberts <nickrob@snap.net.nz>
24387
24388 * xdisp.c (decode_mode_spec): Add case 'R' for to test for
24389 remote default-directory.
24390
24391 * buffer.c (mode-line-format): Describe above case in doc string.
24392
24393 2007-07-20 Eli Zaretskii <eliz@gnu.org>
24394
24395 * w32proc.c (IMAGE_NT_OPTIONAL_HDR32_MAGIC, IMAGE_OPTIONAL_HEADER32):
24396 Define if not defined.
24397
24398 2007-07-18 Jason Rumney <jasonr@gnu.org>
24399
24400 * w32proc.c (w32_executable_type): Handle 64 bit executables.
24401
24402 2007-07-18 Richard Stallman <rms@gnu.org>
24403
24404 * data.c (Fsetq_default): Doc fix.
24405
24406 * eval.c (Fsetq): Doc fix.
24407
24408 2007-07-18 Juanma Barranquero <lekktu@gmail.com>
24409
24410 * coding.c (Ffind_operation_coding_system):
24411 * eval.c (For, Fand): Doc fixes.
24412 Reported by Johan Bockgård.
24413
24414 2007-07-18 Jan Djärv <jan.h.d@swipnet.se>
24415
24416 * xfns.c (Fx_focus_frame): Call x_ewmh_activate_frame.
24417
24418 * xterm.h: Declare x_ewmh_activate_frame.
24419
24420 * xterm.c (x_ewmh_activate_frame): New function.
24421 (XTframe_raise_lower): Move code to x_ewmh_activate_frame.
24422
24423 2007-07-17 Martin Rudalics <rudalics@gmx.at>
24424
24425 * window.c (Fdisplay_buffer): If largest or LRU window is the
24426 only window, split it even if it is not eligible for splitting.
24427 This restores the original behavior broken by the 2007-07-15
24428 change.
24429
24430 2007-07-17 Glenn Morris <rgm@gnu.org>
24431
24432 * abbrev.c (abbrev_check_chars): New function.
24433 (Fdefine_global_abbrev, Fdefine_mode_abbrev):
24434 Call abbrev_check_chars to check abbrev characters are word
24435 constituents. Doc fix.
24436
24437 2007-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
24438
24439 * process.c (Fstart_process, Fmake_network_process)
24440 (read_process_output): Fix up last changes.
24441
24442 2007-07-16 Eli Zaretskii <eliz@gnu.org>
24443
24444 * makefile.w32-in (clean): Don't delete *~.
24445
24446 2007-07-16 Andreas Schwab <schwab@suse.de>
24447
24448 * window.c (Fdisplay_buffer): Use NILP.
24449 (Fset_window_scroll_bars): Likewise.
24450
24451 2007-07-15 Martin Rudalics <rudalics@gmx.at>
24452
24453 * window.c (window_min_size_2): New function.
24454 (window_min_size_1, size_window, Fdisplay_buffer)
24455 (Fsplit_window, adjust_window_trailing_edge): Use it to avoid
24456 windows without mode- or header-lines when window-min-height is
24457 too small.
24458 (size_window): Reset nodelete_p after testing it, following an
24459 earlier note by Kim F. Storm.
24460 (display_buffer): Do not set split_height_threshold to twice the
24461 value of window_min_height to avoid changing the value of a
24462 customizable variable. Rather explicitly check whether the
24463 height of the window that shall be splitted is at least as large
24464 as split_height_threshold.
24465 (Fwindow_full_width_p): New defun.
24466 (syms_of_window): Defsubr it.
24467
24468 * window.h: Add EXFUN for Fwindow_full_width_p.
24469
24470 2007-07-14 Jason Rumney <jasonr@gnu.org>
24471
24472 * process.c [WINDOWSNT]: Don't undefine AF_INET6.
24473
24474 2007-07-14 Richard Stallman <rms@gnu.org>
24475
24476 * eval.c (maybe_call_debugger): New function.
24477 (find_handler_clause): Use maybe_call_debugger.
24478 Call it when the handler says `debug'.
24479 Eliminate DEBUGGER_VALUE_PTR.
24480 (Fsignal): Eliminate debugger_value.
24481 (Qdebug): New variable.
24482 (syms_of_eval): Initialize it.
24483
24484 2007-07-14 Juanma Barranquero <lekktu@gmail.com>
24485
24486 * eval.c (Fprogn):
24487 * keyboard.c (Ftrack_mouse):
24488 * print.c (Fwith_output_to_temp_buffer):
24489 * window.c (Fsave_window_excursion): Doc fix.
24490
24491 2007-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
24492
24493 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 400.
24494
24495 2007-07-12 Stefan Monnier <monnier@iro.umontreal.ca>
24496
24497 * process.h (struct Lisp_Process): Turn slots infd, outfd,
24498 kill_without_query, pty_flag, tick, update_tick, decoding_carryover,
24499 inherit_coding_system_flag, filter_multibyte, adaptive_read_buffering,
24500 read_output_delay, and read_output_skip from Lisp_Objects to ints.
24501 Remove unused encoding_carryover.
24502 * process.c: Adjust all functions accordingly.
24503
24504 2007-07-12 Richard Stallman <rms@gnu.org>
24505
24506 * term.c: Include unistd.h only if HAVE_UNISTD_H.
24507
24508 2007-07-11 Jason Rumney <jasonr@gnu.org>
24509
24510 * makefile.w32-in (LIBS): Include OLE32.
24511
24512 * w32fns.c (w32_msg_pump) <WM_EMACS_CREATEWINDOW>: Initialize COM.
24513 (w32_msg_pump) <WM_DESTROY>: Uninitialize COM.
24514
24515 2007-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
24516
24517 * lisp.h (struct Lisp_Hash_Table): Turn next_weak into a bare pointer.
24518 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and turned
24519 from a Lisp_Object into a bare pointer.
24520 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
24521 Adjust the code correspondingly.
24522
24523 * alloc.c (emacs_blocked_free): Remove unused var `bytes_used_now'.
24524
24525 * term.c: Include unistd.h for ttyname, used in handle_one_term_event.
24526 (term_show_mouse_face): Remove unused var `j'.
24527 (handle_one_term_event): Remove unused vars `i' and `j'.
24528 Don't cast return value of ttyname since it's not necessary.
24529
24530 2007-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
24531
24532 * alloc.c (mark_maybe_pointer): Enforce mult-of-8 alignment when using
24533 USE_LSB_TAG. Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
24534
24535 * fns.c (map_char_table): Use an array of int for `indices' rather than
24536 an array of Lisp_Objects (which are only ever integers anyway).
24537 (Fmap_char_table): Update caller.
24538 * lisp.h: Update prototype.
24539 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap):
24540 * fontset.c (Ffontset_info):
24541 * casetab.c (set_case_table): Update callers.
24542
24543 * editfns.c (Ftranspose_regions): Use EMACS_INT for positions.
24544
24545 * keymap.c (struct accessible_keymaps_data)
24546 (struct where_is_internal_data): New structures.
24547 (accessible_keymaps_1, where_is_internal_1): Use them to change
24548 interface to adhere to the one used by map_keymap.
24549 (Faccessible_keymaps, where_is_internal): Use map_keymap.
24550 (accessible_keymaps_char_table, where_is_internal_2): Remove.
24551
24552 * keymap.h (map_keymap_function_t): More informative prototype.
24553
24554 2007-07-10 Guanpeng Xu <herberteuler@hotmail.com>
24555
24556 * search.c (Vinhibit_changing_match_data, search_regs_1): New vars.
24557 (looking_at_1): Don't change search_regs and last_thing_searched
24558 if `inhibit-changing-match-data' is non-nil.
24559 (string_match_1, search_buffer, set_search_regs): Likewise.
24560 (syms_of_search): Add Lisp level definition for
24561 `inhibit-changing-match-data' and set it to nil.
24562 (boyer_moore): If `inhibit-changing-match-data' is non-nil, compute
24563 start and end of the match, instead of using values in search_regs.
24564
24565 2007-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
24566
24567 * minibuf.c (Fcompleting_read): New value `confirm-only'
24568 for `require-match'.
24569
24570 2007-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
24571
24572 * fileio.c (Fdo_auto_save): Revert last patch installed unwillingly as
24573 part of the 2007-06-27 change to syms_of_fileio.
24574
24575 2007-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24576
24577 * macterm.c [USE_MAC_TSM] (mac_handle_text_input_event):
24578 Check WINDOWP before using XWINDOW. Consolidate return statements.
24579
24580 2007-06-27 Richard Stallman <rms@gnu.org>
24581
24582 * fileio.c (syms_of_fileio) <after-insert-file-functions>: Doc fix.
24583
24584 2007-06-27 Juanma Barranquero <lekktu@gmail.com>
24585
24586 * buffer.c (syms_of_buffer) <selective-display>: Fix typo in docstring.
24587
24588 2007-06-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24589
24590 * gmalloc.c [HAVE_GTK_AND_PTHREAD]: Check this after including config.h.
24591 (_aligned_blocks_mutex) [USE_PTHREAD]: New variable.
24592 (LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS): New macros.
24593 (_free_internal, memalign): Use them.
24594 (_malloc_mutex, _aligned_blocks_mutex) [USE_PTHREAD]:
24595 Initialize to PTHREAD_MUTEX_INITIALIZER.
24596 (malloc_initialize_1) [USE_PTHREAD]: Don't use recursive mutex.
24597 (morecore_nolock): Rename from morecore. All uses changed.
24598 Use only nolock versions of internal allocation functions.
24599 (_malloc_internal_nolock, _realloc_internal_nolock)
24600 (_free_internal_nolock): New functions created from
24601 _malloc_internal, _realloc_internal, and _free_internal.
24602 (_malloc_internal, _realloc_internal, _free_internal): Use them.
24603 Copy hook value to automatic variable before its use.
24604 (memalign): Copy hook value to automatic variable before its use.
24605
24606 2007-06-26 Kenichi Handa <handa@m17n.org>
24607
24608 * coding.c (Ffind_operation_coding_system): Docstring improved.
24609 (syms_of_coding): Docstring of `file-coding-system-alist' improved.
24610
24611 2007-06-25 David Kastrup <dak@gnu.org>
24612
24613 * keymap.c (Fcurrent_active_maps): Add `position' argument.
24614 (Fwhere_is_internal): Adjust call to `current-active-maps' to
24615 cater for additional parameter.
24616
24617 * keymap.h: Adjust number of parameters to `current-active-maps'.
24618
24619 * doc.c (Fsubstitute_command_keys): Adjust call of
24620 `current-active-maps'.
24621
24622 2007-06-25 David Kastrup <dak@gnu.org>
24623
24624 * callint.c (Fcall_interactively): Make the parsing of interactive
24625 specs somewhat more readable.
24626
24627 2007-06-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24628
24629 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe background
24630 to scroll bar gap also when bitmap fills fringe. Draw only foreground
24631 if extended background has already been filled.
24632
24633 2007-06-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24634
24635 * macgui.h (USE_CG_DRAWING): Don't require USE_ATSUI.
24636 (USE_MAC_TOOLBAR): Require USE_CG_DRAWING.
24637
24638 * macmenu.c (mac_dialog_modal_filter, Fx_popup_dialog) [MAC_OSX]:
24639 Put special treatment for Fmessage_box, Fyes_or_no_p, and Fy_or_n_p
24640 in #if 0 as it is not compatible with y-or-n-p-with-timeout.
24641 (timer_check) [TARGET_API_MAC_CARBON]: Add extern.
24642 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Use QuitEventLoop
24643 instead of QuitAppModalLoopForWindow. Consolidate QuitEventLoop calls.
24644 (pop_down_dialog) [TARGET_API_MAC_CARBON]: New function.
24645 [TARGET_API_MAC_CARBON] (create_and_show_dialog): Use it for unwind.
24646 Run timers during dialog popup.
24647 (Fmenu_or_popup_active_p) [TARGET_API_MAC_CARBON]: Use popup_activated.
24648
24649 2007-06-21 Jason Rumney <jasonr@gnu.org>
24650
24651 * image.c (convert_mono_to_color_image): Swap fore and background.
24652
24653 2007-06-20 Jason Rumney <jasonr@gnu.org>
24654
24655 * w32bdf.c (w32_BDF_to_x_font): Unmap memory when finished.
24656 (w32_free_bdf_font): Unmap memory not handle.
24657
24658 2007-06-20 Sam Steingold <sds@gnu.org>
24659
24660 * gmalloc.c (__morecore): Fix the declaration to comply with the
24661 definition.
24662
24663 2007-06-20 Juanma Barranquero <lekktu@gmail.com>
24664
24665 * w32term.c (w32_delete_display): Remove leftover declaration.
24666 (w32_define_cursor, w32_initialize): Make static.
24667
24668 * w32.c (_wsa_errlist): Fix typo in error message.
24669 (init_environment): Ignore any environment variable from the
24670 registry having a null value.
24671
24672 2007-06-20 Glenn Morris <rgm@gnu.org>
24673
24674 * Makefile.in (LIBGIF): Default to -lgif.
24675
24676 2007-06-17 Jason Rumney <jasonr@gnu.org>
24677
24678 * w32menu.c (add_menu_item): Don't use multibyte string functions on
24679 unicode strings.
24680
24681 2007-06-16 Juanma Barranquero <lekktu@gmail.com>
24682
24683 * xdisp.c (syms_of_xdisp) <auto-resize-tool-bars>:
24684 Fix typo in docstring.
24685
24686 2007-06-16 Eli Zaretskii <eliz@gnu.org>
24687
24688 * w32menu.c (add_menu_item): Escape `&' characters in menu items
24689 and their keybindings.
24690
24691 2007-06-15 Chong Yidong <cyd@stupidchicken.com>
24692
24693 * composite.c (update_compositions): Fix last fix.
24694
24695 2007-06-14 Jason Rumney <jasonr@gnu.org>
24696
24697 * w32.c (get_process_times_fn): New function pointer.
24698 (globals_of_w32): Intialize it if present in kernel32.dll.
24699 (w32_get_internal_run_time): New function.
24700
24701 * editfns.c (Fget_internal_run_time) [WINDOWSNT]: Use it.
24702
24703 2007-06-14 Kenichi Handa <handa@etlken.m17n.org>
24704
24705 * composite.c (update_compositions): Check the validness of
24706 compositions.
24707
24708 2007-06-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24709
24710 * frame.h (struct frame) [MAC_OS]: New member external_tool_bar.
24711 (FRAME_EXTERNAL_TOOL_BAR) [MAC_OS]: Use it.
24712
24713 * macfns.c (mac_window) [USE_MAC_TOOLBAR]: Set toolbar_win_gravity.
24714 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]: Set FRAME_EXTERNAL_TOOL_BAR.
24715
24716 * macgui.h (USE_MAC_TOOLBAR): New define.
24717
24718 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
24719 Return immediately unless popup is activated.
24720
24721 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe
24722 background to scroll bar gap.
24723 (x_scroll_bar_create) [MAC_OSX]: Set bar->fringe_extended_p.
24724 (XTset_vertical_scroll_bar) [MAC_OSX]: Put leftmost/rightmost
24725 scroll bars on frame edge. Check fringe background extension.
24726 Don't clear extended fringe background area.
24727 (TOOLBAR_IDENTIFIER, TOOLBAR_ICON_ITEM_IDENTIFIER)
24728 (TOOLBAR_ITEM_COMMAND_ID_OFFSET, TOOLBAR_ITEM_COMMAND_ID_P)
24729 (TOOLBAR_ITEM_COMMAND_ID_VALUE, TOOLBAR_ITEM_MAKE_COMMAND_ID):
24730 [USE_MAC_TOOLBAR]: New macros.
24731 (mac_move_window_with_gravity, mac_get_window_origin_with_gravity)
24732 (mac_handle_toolbar_event, mac_image_spec_to_cg_image)
24733 (mac_create_frame_tool_bar, update_frame_tool_bar, free_frame_tool_bar)
24734 (mac_tool_bar_note_mouse_movement, mac_handle_toolbar_command_event)
24735 [USE_MAC_TOOLBAR]: New functions.
24736 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Reposition window
24737 manually if previous repositioning has failed.
24738 (mac_handle_keyboard_event): Use precomputed event kind.
24739 (XTread_socket) [USE_MAC_TOOLBAR]: Handle click in structure region
24740 as tool bar item click. Handle mouse movement over tool bar items.
24741
24742 * macterm.h (struct mac_output) [USE_MAC_TOOLBAR]: New member
24743 toolbar_win_gravity.
24744 (struct scroll_bar) [MAC_OSX]: New member fringe_extended_p.
24745 (update_frame_tool_bar, free_frame_tool_bar) [USE_MAC_TOOLBAR]:
24746 Add externs.
24747
24748 * xdisp.c (update_tool_bar, redisplay_tool_bar, redisplay_window)
24749 [USE_MAC_TOOLBAR]: Sync with GTK+ tool bar display.
24750
24751 2007-06-14 Chong Yidong <cyd@stupidchicken.com>
24752
24753 * image.c (search_image_cache): Remove unused variable.
24754
24755 2007-06-13 Chong Yidong <cyd@stupidchicken.com>
24756
24757 * xfns.c, xmenu.c: Link to xaw3d if available.
24758
24759 2007-06-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24760
24761 * dispextern.h (struct image) [HAVE_WINDOW_SYSTEM]: New members
24762 frame_foreground and frame_background.
24763
24764 * image.c (lookup_image): Save frame foreground and background colors.
24765 (search_image_cache): Check if saved and current frame colors match.
24766
24767 2007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
24768
24769 * regex.c (regex_compile): Remove the `regnum' counter.
24770 Use bufp->re_nsub instead. Add support for \(?N:RE\).
24771
24772 2007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
24773
24774 * term.c: Include intervals.h to declare Fget_text_property.
24775
24776 2007-06-10 Jason Rumney <jasonr@gnu.org>
24777
24778 * w32fns.c (Fx_file_dialog): Take size from struct not pointer.
24779
24780 2007-06-08 Juanma Barranquero <lekktu@gmail.com>
24781
24782 * callint.c (Fcall_interactively):
24783 * editfns.c (Fdelete_and_extract_region):
24784 * fileio.c (Fread_file_name):
24785 * fns.c (Fmapconcat):
24786 * keyboard.c (cmd_error_internal):
24787 * keymap.c (Fkey_description):
24788 * lread.c (openp):
24789 * minibuf.c (read_minibuf):
24790 * search.c (wordify):
24791 * sunfns.c (sel_read):
24792 * xdisp.c (Fformat_mode_line, syms_of_xdisp):
24793 * xfns.c (x_default_scroll_bar_color_parameter):
24794 * xmenu.c (menu_help_callback):
24795 * xselect.c (Fx_get_atom_name):
24796 * xterm.c (x_term_init): Use empty_unibyte_string.
24797
24798 2007-06-08 Dmitry Antipov <dmantipov@yandex.ru> (tiny change)
24799
24800 * alloc.c (init_strings): Initialize canonical empty strings.
24801 (make_uninit_string, make_uninit_multibyte_string): Return appropriate
24802 canonical empty string when the requested size is 0.
24803
24804 * emacs.c (empty_unibyte_string): Rename from empty_string.
24805 (empty_multibyte_string): New canonical empty string.
24806 (syms_of_emacs): Don't initialize empty_string.
24807
24808 * lisp.h (STRING_SET_UNIBYTE): Return the canonical empty unibyte
24809 string, if appropriate.
24810 (empty_unibyte_string, empty_multibyte_string): New externs.
24811 (empty_string): Remove extern.
24812
24813 * lread.c (syms_of_lread): Use empty_unibyte_string.
24814
24815 2007-06-07 Jason Rumney <jasonr@gnu.org>
24816
24817 * s/ms-w32.h: Don't define HAVE_TZNAME.
24818
24819 * editfns.c (Fcurrent_time_zone): Remove hack for Japanese Windows.
24820
24821 2007-06-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24822
24823 * mac.c (xrm_get_preference_database): Remove BLOCK_INPUT.
24824
24825 * macfns.c (mac_get_window_bounds): Move extern to macterm.h.
24826 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use GetGlobalMouse.
24827
24828 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
24829 Don't call next handler.
24830 [TARGET_API_MAC_CARBON] (install_menu_target_item_handler):
24831 Remove argument. Install handler to application.
24832 (set_frame_menubar): Don't change deep_p.
24833 (mac_menu_show): Use FRAME_OUTER_TO_INNER_DIFF_X and
24834 FRAME_OUTER_TO_INNER_DIFF_Y.
24835 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
24836 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
24837 [HAVE_DIALOGS]: New macros.
24838 [HAVE_DIALOGS] (mac_handle_dialog_event, create_and_show_dialog):
24839 Use them.
24840 (fill_menubar) [TARGET_API_MAC_CARBON]: Use CFString.
24841
24842 * macselect.c [MAC_OSX] (install_service_handler): Rename from
24843 init_service_handler. All callers changed. Return OSStatus value.
24844
24845 * macterm.c (mac_begin_cg_clip): New arg F. Call SetPortWindowPort.
24846 All callers changed so as not to call SetPortWindowPort.
24847 (mac_begin_cg_clip) [USE_CG_DRAWING]: Call mac_prepare_for_quickdraw.
24848 (mac_draw_image_string_atsui) [USE_ATSUI]: New function created from
24849 mac_draw_string_common.
24850 (mac_draw_image_string_qd): Likewise.
24851 (mac_draw_string_common): Use them. Add INLINE.
24852 (XTmouse_position, x_scroll_bar_report_motion) [TARGET_API_MAC_CARBON]:
24853 Use FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y, and
24854 GetGlobalMouse.
24855 (x_set_mouse_pixel_position) [MAC_OSX]: Use FRAME_OUTER_TO_INNER_DIFF_X
24856 and FRAME_OUTER_TO_INNER_DIFF_Y.
24857 [TARGET_API_MAC_CARBON] (mac_handle_mouse_event): Likewise.
24858 [USE_MAC_TSM] (mac_handle_text_input_event): Likewise.
24859 (x_make_frame_visible) [TARGET_API_MAC_CARBON]: Move code for
24860 repositioning window to mac_handle_window_event.
24861 (x_make_frame_invisible) [TARGET_API_MAC_CARBON]: Move code for
24862 saving window location to mac_handle_window_event
24863 [USE_MAC_FONT_PANEL] (mac_show_hide_font_panel): Install handler here.
24864 (install_menu_target_item_handler): Remove argument in extern.
24865 [TARGET_API_MAC_CARBON] (mac_event_to_emacs_modifiers):
24866 Also accept command events.
24867 (do_keystroke): New function created from XTread_socket.
24868 (init_command_handler): Remove functions.
24869 [TARGET_API_MAC_CARBON] (mac_handle_window_event): Reposition window
24870 and save window location by kEventWindowShowing and kEventWindowHiding
24871 handlers here. Don't call next handler for window state change and
24872 focus events.
24873 (mac_handle_application_event, mac_handle_keyboard_event)
24874 [TARGET_API_MAC_CARBON]: New functions.
24875 (install_window_handler) [TARGET_API_MAC_CARBON]: Register handlers for
24876 kEventWindowShowing and kEventWindowHiding events. Move installation
24877 of mouse, font, text input and menu target item handlers to
24878 install_application_handler.
24879 (install_application_handler) [TARGET_API_MAC_CARBON]: New function.
24880 (mac_handle_cg_display_reconfig) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
24881 New function.
24882 (init_dm_notification_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
24883 Register it.
24884 (XTread_socket) [TARGET_API_MAC_CARBON]:
24885 Consolidate SendEventToEventTarget calls.
24886 Use FRAME_OUTER_TO_INNER_DIFF_X and FRAME_OUTER_TO_INNER_DIFF_Y.
24887 Move application activation handler to mac_handle_application_event.
24888 Move keyboard handler to mac_handle_keyboard_event.
24889 (XTread_socket) [!TARGET_API_MAC_CARBON]: Use do_keystroke.
24890 (mac_initialize) [TARGET_API_MAC_CARBON]: Don't call
24891 init_command_handler. Call install_application_handler.
24892
24893 * macterm.h (mac_get_window_bounds): Move extern from macfns.c.
24894 (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y): New macros.
24895
24896 2007-06-07 Glenn Morris <rgm@gnu.org>
24897
24898 * emacs.c (main): Use `emacs-copyright' in --version output.
24899
24900 2007-06-06 Chong Yidong <cyd@stupidchicken.com>
24901
24902 * image.c (xpm_load): Remove spurious call to xpm_init_color_cache.
24903
24904 2007-06-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24905
24906 * macfns.c (mac_window): Replace WindowPtr with WindowRef.
24907
24908 * macgui.h: Replace WindowPtr with WindowRef.
24909
24910 * macmenu.c: Replace MenuHandle and GetMenuHandle with MenuRef and
24911 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
24912 Replace ControlHandle with ControlRef.
24913 (install_menu_quit_handler): Rename arg MENU_HANDLE to ROOT_MENU.
24914
24915 * macterm.c: Replace MenuHandle and GetMenuHandle with MenuRef and
24916 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
24917 Replace ControlHandle with ControlRef.
24918 (USE_CARBON_EVENTS): Remove. Use TARGET_API_MAC_CARBON instead.
24919 [MAC_OS8] (do_get_menus): Rename variable `menu_handle' to `menu'.
24920
24921 * macterm.h (struct scroll_bar): Rename member control_handle_low
24922 and control_handle_high to control_ref_low and control_ref_high.
24923 All uses changed.
24924 (SCROLL_BAR_CONTROL_REF, SET_SCROLL_BAR_CONTROL_REF): Rename from
24925 SCROLL_BAR_CONTROL_HANDLE and SET_SCROLL_BAR_CONTROL_HANDLE,
24926 respectively. All uses changed.
24927 (XCreatePixmap, XCreatePixmapFromBitmapData, XSetWindowBackground)
24928 (install_window_handler, remove_window_handler): Replace WindowPtr
24929 with WindowRef in externs.
24930
24931 2007-06-05 Juanma Barranquero <lekktu@gmail.com>
24932
24933 * xfaces.c (Finternal_lisp_face_p): Signal error for face alias loops.
24934
24935 2007-06-03 Nick Roberts <nickrob@snap.net.nz>
24936
24937 * keyboard.c (discard_mouse_events): Add GPM_CLICK_EVENT case.
24938
24939 * frame.c (Fmouse_position, Fmouse_pixel_position):
24940 Condition on HAVE_GPM too.
24941
24942 * term.c (term_mouse_highlight): Remove unused variables.
24943 (Fterm_open_connection): Set gpm_zerobased to 1.
24944 (term_mouse_movement, term_mouse_click, handle_one_term_event):
24945 Use zero based co-ordinates.
24946 (handle_one_term_event): Report a drag as mouse movement too.
24947
24948 * Makefile.in (MOUSE_SUPPORT): Define for HAVE_GPM.
24949
24950 2007-06-03 Chong Yidong <cyd@stupidchicken.com>
24951
24952 * image.c (search_image_cache): New function. Require background
24953 color match if background color is unspecified in the image spec.
24954 (uncache_image, lookup_image): Use it.
24955
24956 2007-06-01 Juanma Barranquero <lekktu@gmail.com>
24957
24958 * window.c (Fshrink_window): Reflow docstring.
24959
24960 2007-06-02 Chong Yidong <cyd@stupidchicken.com>
24961
24962 * Version 22.1 released.
24963
24964 2007-06-01 Richard Stallman <rms@gnu.org>
24965
24966 * xfns.c (x_encode_text): Add GCPRO.
24967
24968 2007-06-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24969
24970 * xfns.c (x_set_name_internal): Save encoded name before
24971 x_encode_text in case string data is relocated.
24972
24973 2007-05-31 Richard Stallman <rms@gnu.org>
24974
24975 * buffer.c (syms_of_buffer): Doc fix.
24976
24977 2007-05-30 Nick Roberts <nickrob@snap.net.nz>
24978
24979 * sysdep.c (init_sys_modes): Add rather than replace with
24980 O_NONBLOCK.
24981
24982 * frame.c [HAVE_GPM] (Fset_mouse_pixel_position): Add call to
24983 term_mouse_moveto.
24984
24985 * termhooks.h (term_mouse_moveto): New extern.
24986
24987 * term.c (mouse_face_window): Rename...
24988 (Qmouse_face_window): ...to this.
24989 (term_show_mouse_face, term_clear_mouse_face)
24990 (term_mouse_highlight): Use Qmouse_face_window.
24991 (term_mouse_moveto): New function.
24992 (term_mouse_position): Make it work.
24993 (syms_of_term): Uncomment assignment to mouse_position_hook.
24994 Staticpro Qmouse_face_window.
24995
24996 2007-05-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24997
24998 * xdisp.c (redisplay_internal): Bind inhibit-point-motion-hooks to t
24999 around current_column call.
25000
25001 2007-05-26 Dan Nicolaescu <dann@ics.uci.edu>
25002
25003 * xfaces.c (syms_of_xfaces): Delete stray semicolon.
25004 * xdisp.c (next_element_from_buffer):
25005 * window.c (delete_window):
25006 * term.c (term_mouse_highlight):
25007 * msdos.c (getdefdir):
25008 * macterm.c (mac_create_bitmap_from_bitmap_data)
25009 (init_font_name_table):
25010 * fns.c (Fsxhash):
25011 * data.c (Fmake_local_variable):
25012 * ccl.c (ccl_driver): Likewise.
25013
25014 2007-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25015
25016 * macterm.c [USE_CARBON_EVENTS] (mac_handle_window_event):
25017 Call mac_wakeup_from_rne on window size change.
25018
25019 2007-05-25 Chong Yidong <cyd@stupidchicken.com>
25020
25021 * image.c (uncache_image): Fix typo.
25022
25023 2007-05-23 Johannes Weiner <hannes@saeurebad.de> (tiny change)
25024
25025 * keyboard.c (make_lispy_movement): Condition on HAVE_GPM too.
25026
25027 2007-05-22 Richard Stallman <rms@gnu.org>
25028
25029 * xterm.c (x_connection_closed): Remove NO_RETURN.
25030
25031 2007-05-22 Martin Rudalics <rudalics@gmx.at>
25032
25033 * syntax.c (scan_words): Fix arg to UPDATE_SYNTAX_TABLE_BACKWARD.
25034
25035 2007-05-21 Chong Yidong <cyd@stupidchicken.com>
25036
25037 * image.c (uncache_image): New function.
25038 (Fimage_refresh): New function.
25039
25040 2007-05-20 Jan Djärv <jan.h.d@swipnet.se>
25041
25042 * Makefile.in: Move GPM check outside HAVE_X_WINDOWS.
25043
25044 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
25045
25046 * config.in, keyboard.c, Makefile.in, sysdep.c, term.c,
25047 * termhooks.h: Use HAVE_GPM instead of HAVE_GPM_H.
25048
25049 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
25050
25051 * keyboard.c (make_lispy_event): Make case GPM_CLICK_EVENT
25052 conditional on [HAVE_GPM_H].
25053
25054 2007-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
25055
25056 * syntax.c (skip_chars): Update syntax-table only after we checked that
25057 the new location is valid.
25058
25059 2007-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25060
25061 * macterm.c (x_calc_absolute_position): Add BLOCK_INPUT around
25062 mac_get_window_bounds.
25063
25064 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
25065
25066 * Makefile.in (LIBGPM): Allow it to be set from configure.
25067 If set then link Emacs with it.
25068
25069 * config.in: Regenerate.
25070
25071 * lisp.h (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
25072 New externs.
25073
25074 * termhooks.h [HAVE_GPM_H] (enum event_kind): Add GPM_CLICK_EVENT.
25075 Include gpm.h.
25076 (handle_one_term_event, term_gpm): New externs.
25077
25078 * sysdep.c [HAVE_GPM_H] (init_sys_modes): Make gpm_fd nonblocking
25079 and allow it to be interrupted by SIGIO.
25080
25081 * process.c (gpm_wait_mask, max_gpm_desc): New variables.
25082 (wait_reading_process_output): Wait on gpm_fd too.
25083 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor)): New functions.
25084 (add_gpm_wait_descriptor_called_flag): New variable.
25085 (delete_keyboard_wait_descriptor): Check gpm_wait_mask.
25086
25087 * keyboard.c [HAVE_GPM_H] (Qmouse_fixup_help_message)
25088 (make_lispy_movement, tracking_off, Ftrack_mouse, some_mouse_moved)
25089 (show_help_echo, readable_events, kbd_buffer_get_event, init_keyboard):
25090 Extend HAVE_MOUSE ifdefs to HAVE_GPM_H.
25091 (make_lispy_event): Add case GPM_CLICK_EVENT.
25092 (read_avail_input): Handle mouse input.
25093
25094 * term.c (write_glyphs_with_face): New function.
25095 [HAVE_GPM_H]: Include buffer.h, sys/fcntl.h.
25096 (mouse_face_beg_row, mouse_face_beg_col, mouse_face_end_row)
25097 (mouse_face_end_col, mouse_face_past_end, mouse_face_window)
25098 (mouse_face_face_id, term_gpm, pos_x, pos_y)
25099 (last_mouse_x, last_mouse_y): New variables.
25100 (term_show_mouse_face, term_clear_mouse_face, fast_find_position)
25101 (term_mouse_highlight, term_mouse_movement, term_mouse_position)
25102 (term_mouse_click, handle_one_term_event, Fterm_open_connection)
25103 (Fterm_close_connection): New functions.
25104 (term_init): Initialise mouse_face_window.
25105
25106 2007-05-19 Chong Yidong <cyd@stupidchicken.com>
25107
25108 * xdisp.c (redisplay_window): If first window line is a
25109 continuation line, recompute the new window start instead of
25110 recentering.
25111
25112 2007-05-18 Glenn Morris <rgm@gnu.org>
25113
25114 * m/alpha.h (ORDINARY_LINK): No longer define on OpenBSD.
25115 Suggested by Alfred M. Szmidt <ams@gnu.org>.
25116
25117 2007-05-17 Glenn Morris <rgm@gnu.org>
25118
25119 * m/macppc.h (ORDINARY_LINK): No longer define on OpenBSD.
25120
25121 2007-05-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25122
25123 * macterm.c [USE_CARBON_EVENTS] (mac_convert_event_ref): Also convert
25124 dead key repeat and up events.
25125
25126 2007-05-14 Chong Yidong <cyd@stupidchicken.com>
25127
25128 * image.c (pbm_load): Check image size for monochrome pbm.
25129
25130 2007-05-13 Chong Yidong <cyd@stupidchicken.com>
25131
25132 * xterm.c (XTread_socket): Revert last change.
25133
25134 2007-05-12 Chong Yidong <cyd@stupidchicken.com>
25135
25136 * image.c (pbm_load): Correctly check image size for greyscale pbm.
25137
25138 * xterm.c (XTread_socket): Yet Another Uncaught X Error Crash (YAUXEC).
25139
25140 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
25141
25142 * editfns.c (Ftranspose_regions): Yet another int/Lisp_Object
25143 mixup (YAILOM).
25144
25145 2007-05-07 Andreas Schwab <schwab@suse.de>
25146
25147 * keymap.c (Flookup_key): Fix typo in last change.
25148
25149 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
25150
25151 * keymap.c (Fdefine_key, Flookup_key): Only do the 0x80->meta_modifier
25152 mapping for unibyte strings.
25153
25154 2007-05-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25155
25156 * macmenu.c (mac_dialog_show): Apply 2007-04-27 change for xmenu.c.
25157 (Fx_popup_dialog) [MAC_OSX]: Likewise.
25158
25159 2007-04-29 Richard Stallman <rms@gnu.org>
25160
25161 * insdel.c (replace_range): For undo, record insertion first.
25162
25163 2007-04-29 Andreas Schwab <schwab@suse.de>
25164
25165 * lisp.h (VECSIZE): Use OFFSETOF.
25166
25167 2007-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25168
25169 * xdisp.c (try_window_reusing_current_matrix): Fix number of
25170 disabled lines.
25171
25172 2007-04-28 Richard Stallman <rms@gnu.org>
25173
25174 * lread.c (read_escape): In a string, \s is always space.
25175
25176 2007-04-27 Jan Djärv <jan.h.d@swipnet.se>
25177
25178 * xmenu.c (xdialog_show): Call Fredisplay before showing the dialog.
25179
25180 * gtkutil.c (xg_update_menubar, create_menus): Create empty
25181 submenu for menu bar items.
25182
25183 See ChangeLog.10 for earlier changes.
25184
25185 ;; Local Variables:
25186 ;; coding: utf-8
25187 ;; add-log-time-zone-rule: t
25188 ;; End:
25189
25190 Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
25191
25192 This file is part of GNU Emacs.
25193
25194 GNU Emacs is free software: you can redistribute it and/or modify
25195 it under the terms of the GNU General Public License as published by
25196 the Free Software Foundation, either version 3 of the License, or
25197 (at your option) any later version.
25198
25199 GNU Emacs is distributed in the hope that it will be useful,
25200 but WITHOUT ANY WARRANTY; without even the implied warranty of
25201 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25202 GNU General Public License for more details.
25203
25204 You should have received a copy of the GNU General Public License
25205 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25206
25207 ;; arch-tag: dfb6ad96-1550-4905-9e53-d2059ee84c40